diff --git a/.github/workflows/automated-deployment-dev.yml b/.github/workflows/automated-deployment-dev.yml
index ad5458b..5cd3a93 100644
--- a/.github/workflows/automated-deployment-dev.yml
+++ b/.github/workflows/automated-deployment-dev.yml
@@ -29,5 +29,5 @@ jobs:
docker push ${{ secrets.CADDY_ECR_ENDPOINT }}/${{ secrets.CADDY_ECR_REPO_ID_DEV }}:${{ github.sha }}
- name: Deploy infrastructure
run: |
- aws cloudformation deploy --template-file infra/template.yaml --stack-name "caddy-dev" --capabilities CAPABILITY_NAMED_IAM --parameter-overrides StageName=dev MessageTableName=${{ vars.MESSAGES_TABLE_NAME_DEV }} ResponsesTableName=${{ vars.RESPONSES_TABLE_NAME_DEV }} UserTableName=${{ vars.USERS_TABLE_NAME_DEV }} OfficesTableName=${{ vars.OFFICES_TABLE_NAME_DEV }} EvaluationTableName=${{ vars.EVALUATION_TABLE_NAME_DEV }} OpensearchUrl=${{ secrets.OPENSEARCH_DEV_URL }} OpensearchIndex=${{ secrets.OPENSEARCH_INDEX }} CaddyServiceAccountSecretArn=${{ secrets.CADDY_SA_ARN_DEV }} CaddySupervisorServiceAccountSecretArn=${{ secrets.CADDY_SUPERVISOR_SA_ARN_DEV }} CaddyImage=${{ secrets.CADDY_ECR_ENDPOINT }}/${{ secrets.CADDY_ECR_REPO_ID_DEV }}:${{ github.sha }} CaddySupervisorGoogleCloudProject=${{ secrets.CADDY_SUPERVISOR_GOOGLE_CLOUD_PROJECT_DEV }} CaddyGoogleCloudProject=${{ secrets.CADDY_GOOGLE_CLOUD_PROJECT_DEV }} LLM=${{ vars.LLM }} DomainName=${{ secrets.CERT_DOMAIN }}
+ aws cloudformation deploy --template-file infra/template.yaml --stack-name "caddy-dev" --capabilities CAPABILITY_NAMED_IAM --parameter-overrides StageName=dev MessageTableName=${{ vars.MESSAGES_TABLE_NAME_DEV }} RoutesTableName=${{ vars.ROUTES_TABLE_NAME_DEV }} PromptsTableName=${{ vars.PROMPTS_TABLE_NAME_DEV }} ResponsesTableName=${{ vars.RESPONSES_TABLE_NAME_DEV }} UserTableName=${{ vars.USERS_TABLE_NAME_DEV }} OfficesTableName=${{ vars.OFFICES_TABLE_NAME_DEV }} EvaluationTableName=${{ vars.EVALUATION_TABLE_NAME_DEV }} OpensearchUrl=${{ secrets.OPENSEARCH_DEV_URL }} OpensearchIndex=${{ secrets.OPENSEARCH_INDEX }} CaddyServiceAccountSecretArn=${{ secrets.CADDY_SA_ARN_DEV }} CaddySupervisorServiceAccountSecretArn=${{ secrets.CADDY_SUPERVISOR_SA_ARN_DEV }} CaddyImage=${{ secrets.CADDY_ECR_ENDPOINT }}/${{ secrets.CADDY_ECR_REPO_ID_DEV }}:${{ github.sha }} CaddySupervisorGoogleCloudProject=${{ secrets.CADDY_SUPERVISOR_GOOGLE_CLOUD_PROJECT_DEV }} CaddyGoogleCloudProject=${{ secrets.CADDY_GOOGLE_CLOUD_PROJECT_DEV }} LLM=${{ vars.LLM }} DomainName=${{ secrets.CERT_DOMAIN }} MicrosoftAppIdSecretArn=${{ secrets.MICROSOFT_APP_ID_SECRET_ARN }} MicrosoftAppPasswordSecretArn=${{ secrets.MICROSOFT_APP_PASSWORD_SECRET_ARN }}
aws cloudformation deploy --template-file infra/opensearch.yaml --stack-name "caddy-opensearch-dev" --region eu-west-3 --capabilities CAPABILITY_NAMED_IAM --parameter-overrides StageName=dev CaddyRoleArn=${{ secrets.CADDY_ROLE_ARN_DEV }}
diff --git a/.github/workflows/automated-deployment-prod.yml b/.github/workflows/automated-deployment-prod.yml
index 664c576..924851e 100644
--- a/.github/workflows/automated-deployment-prod.yml
+++ b/.github/workflows/automated-deployment-prod.yml
@@ -29,5 +29,5 @@ jobs:
docker push ${{ secrets.CADDY_ECR_ENDPOINT }}/${{ secrets.CADDY_ECR_REPO_ID_PROD }}:${{ github.sha }}
- name: Deploy infrastructure
run: |
- aws cloudformation deploy --template-file infra/template.yaml --stack-name "caddy-prod" --capabilities CAPABILITY_NAMED_IAM --parameter-overrides StageName=prod MessageTableName=${{ vars.MESSAGES_TABLE_NAME_PROD }} ResponsesTableName=${{ vars.RESPONSES_TABLE_NAME_PROD }} UserTableName=${{ vars.USERS_TABLE_NAME_PROD }} OfficesTableName=${{ vars.OFFICES_TABLE_NAME_PROD }} EvaluationTableName=${{ vars.EVALUATION_TABLE_NAME_PROD }} OpensearchUrl=${{ secrets.OPENSEARCH_PROD_URL }} OpensearchIndex=${{ secrets.OPENSEARCH_INDEX }} CaddyServiceAccountSecretArn=${{ secrets.CADDY_SA_ARN_PROD }} CaddySupervisorServiceAccountSecretArn=${{ secrets.CADDY_SUPERVISOR_SA_ARN_PROD }} CaddyImage=${{ secrets.CADDY_ECR_ENDPOINT }}/${{ secrets.CADDY_ECR_REPO_ID_PROD }}:${{ github.sha }} CaddySupervisorGoogleCloudProject=${{ secrets.CADDY_SUPERVISOR_GOOGLE_CLOUD_PROJECT_PROD }} CaddyGoogleCloudProject=${{ secrets.CADDY_GOOGLE_CLOUD_PROJECT_PROD }} LLM=${{ vars.LLM }} DomainName=${{ secrets.CERT_DOMAIN }}
+ aws cloudformation deploy --template-file infra/template.yaml --stack-name "caddy-prod" --capabilities CAPABILITY_NAMED_IAM --parameter-overrides StageName=prod MessageTableName=${{ vars.MESSAGES_TABLE_NAME_PROD }} RoutesTableName=${{ vars.ROUTES_TABLE_NAME_PROD }} PromptsTableName=${{ vars.PROMPTS_TABLE_NAME_PROD }} ResponsesTableName=${{ vars.RESPONSES_TABLE_NAME_PROD }} UserTableName=${{ vars.USERS_TABLE_NAME_PROD }} OfficesTableName=${{ vars.OFFICES_TABLE_NAME_PROD }} EvaluationTableName=${{ vars.EVALUATION_TABLE_NAME_PROD }} OpensearchUrl=${{ secrets.OPENSEARCH_PROD_URL }} OpensearchIndex=${{ secrets.OPENSEARCH_INDEX }} CaddyServiceAccountSecretArn=${{ secrets.CADDY_SA_ARN_PROD }} CaddySupervisorServiceAccountSecretArn=${{ secrets.CADDY_SUPERVISOR_SA_ARN_PROD }} CaddyImage=${{ secrets.CADDY_ECR_ENDPOINT }}/${{ secrets.CADDY_ECR_REPO_ID_PROD }}:${{ github.sha }} CaddySupervisorGoogleCloudProject=${{ secrets.CADDY_SUPERVISOR_GOOGLE_CLOUD_PROJECT_PROD }} CaddyGoogleCloudProject=${{ secrets.CADDY_GOOGLE_CLOUD_PROJECT_PROD }} LLM=${{ vars.LLM }} DomainName=${{ secrets.CERT_DOMAIN }}
aws cloudformation deploy --template-file infra/opensearch.yaml --stack-name "caddy-opensearch-prod" --region eu-west-3 --capabilities CAPABILITY_NAMED_IAM --parameter-overrides StageName=prod CaddyRoleArn=${{ secrets.CADDY_ROLE_ARN_PROD }}
diff --git a/.python-version b/.python-version
new file mode 100644
index 0000000..871f80a
--- /dev/null
+++ b/.python-version
@@ -0,0 +1 @@
+3.12.3
diff --git a/README.md b/README.md
index 6751088..003cc04 100644
--- a/README.md
+++ b/README.md
@@ -49,6 +49,12 @@ To explore the connection to DynamoDB, I have attached the docker-compose file t
$ docker compose up
```
+If you get an error with docker, note you may need to change credsStore your .docker/config.json file with:
+
+```json
+"credStore": "desktop",
+```
+
## Testing
Running tests on platform agnostic Caddy components with pytest. Tests are stored in tests/caddy_components, and can be invoked by running the below:
@@ -95,3 +101,24 @@ For ease of deletion, you can remove all the created resources with
```bash
$ aws cloudformation delete-stack --stack-name "INSERT_CUSTOM_STACK_NAME"
```
+
+## Local Teams Deployment
+
+In azure (https://portal.azure.com/#home), creat an azure bot, and add app_id, app_password to the .env from configuration space.
+
+Then you need to build the container and provide a tunnel.
+
+```bash
+$ docker compose up
+```
+
+Go to ngrok dashboard (https://dashboard.ngrok.com/) and create a domain then expose the domain endpoint for local forwarding on the desired port i.e. 80
+
+```bash
+$ ngrok http --domain=insert-static-url 80
+```
+
+If you recieve a ngrok 381 errror, this is because ngrok has created an automatic edge. Delete the edge in ngrok dashboard and retry command
+
+In azure bot got to setting > configuration and add static-url with /microsoft-teams/chat into the messaging endpoint
+Then in channels use the open in teams button to test locally
\ No newline at end of file
diff --git a/caddy_chatbot/src/app.py b/caddy_chatbot/src/app.py
index 980a001..1bf584b 100644
--- a/caddy_chatbot/src/app.py
+++ b/caddy_chatbot/src/app.py
@@ -3,6 +3,7 @@
from caddy_core import components as caddy
from caddy_core.services import enrolment
+from caddy_core.utils.monitoring import logger
from integrations.google_chat.structures import GoogleChat
from integrations.google_chat.verification import (
@@ -10,6 +11,7 @@
verify_google_chat_supervision_request,
)
+from integrations.microsoft_teams.structures import MicrosoftTeams
from threading import Thread
@@ -26,17 +28,22 @@ def google_chat_endpoint(event=Depends(verify_google_chat_request)) -> dict:
"""
Handles inbound requests from Google Chat for Caddy
"""
+ logger.info("New Google Chat Request")
google_chat = GoogleChat()
user = event["user"]["email"]
domain = user.split("@")[1]
domain_enrolled, office = enrolment.check_domain_status(domain)
if domain_enrolled is not True:
+ logger.info("Domain not enrolled")
return google_chat.responses.DOMAIN_NOT_ENROLLED
+ logger.info("Domain is enrolled")
user_enrolled, user_record = enrolment.check_user_status(user)
if user_enrolled is not True:
+ logger.info("User is not enrolled")
return google_chat.responses.USER_NOT_ENROLLED
+ logger.info("User is enrolled")
included_in_rct = enrolment.check_rct_status(office)
if included_in_rct is True:
@@ -247,14 +254,39 @@ def google_chat_supervision_endpoint(
@app.post("/microsoft-teams/chat")
-def microsoft_teams_endpoint(request: Request):
- return JSONResponse(
- status_code=status.HTTP_200_OK, content={"text": "Request received"}
- )
+async def microsoft_teams_endpoint(request: Request):
+ event = await request.json()
+ print("POST request received", event)
+
+ microsoft_teams = MicrosoftTeams()
+
+ match event["type"]:
+ case "message":
+ query = microsoft_teams.format_message(event)
+ caddy.temporary_teams_invoke(microsoft_teams, query, event)
+ case "invoke":
+ match event["value"]["action"]["verb"]:
+ case "proceed":
+ # TODO Handle Proceed Route
+ print("Adviser choice was to proceed")
+ microsoft_teams.update_card(event)
+ return microsoft_teams.responses.OK
+ case "redacted_query":
+ # TODO Handle edit original query
+ print("Adviser choice was to edit original query")
+ redacted_card = microsoft_teams.messages.create_redacted_card(event)
+ microsoft_teams.update_card(event, card=redacted_card)
+ return microsoft_teams.responses.OK
+ case "approved":
+ microsoft_teams.handle_thumbs_up(event)
+ return microsoft_teams.responses.OK
+ case "rejected":
+ microsoft_teams.handle_thumbs_down(event)
+ return microsoft_teams.responses.OK
@app.post("/microsoft-teams/supervision")
-def microsoft_teams_supervision_endpoint(request: Request):
+async def microsoft_teams_supervision_endpoint(request: Request):
return JSONResponse(
status_code=status.HTTP_200_OK, content={"text": "Request received"}
)
diff --git a/caddy_chatbot/src/caddy_core/components.py b/caddy_chatbot/src/caddy_core/components.py
index a1c2151..9792c68 100644
--- a/caddy_chatbot/src/caddy_core/components.py
+++ b/caddy_chatbot/src/caddy_core/components.py
@@ -3,8 +3,7 @@
from fastapi import status
from langchain.prompts import PromptTemplate
-from caddy_core.utils.prompts.default_template import CADDY_PROMPT_TEMPLATE
-from caddy_core.utils.prompts.prompt import retrieve_route_specific_augmentation
+from caddy_core.utils.prompt import retrieve_route_specific_augmentation, get_prompt
from time import sleep
@@ -18,10 +17,10 @@
from caddy_core.utils.tables import (
evaluation_table,
- message_table,
responses_table,
users_table,
)
+from caddy_core.utils.monitoring import logger
from caddy_core.services.retrieval_chain import build_chain
from caddy_core.services import enrolment
from caddy_core.services.evaluation import execute_optional_modules
@@ -49,6 +48,7 @@ def rct_survey_reminder(event, user_record, chat_client):
def handle_message(caddy_message, chat_client):
+ logger.info("Running message handler")
module_values, survey_complete = check_existing_call(caddy_message)
if survey_complete is True:
@@ -107,10 +107,12 @@ def remove_role_played_responses(response: str) -> str:
"""
adviser_index = response.find("Adviser: ")
if adviser_index != -1:
+ logger.info("Removing role played response")
return True, response[:adviser_index].strip()
adviser_index = response.find("Advisor: ")
if adviser_index != -1:
+ logger.info("Removing role played response")
return True, response[:adviser_index].strip()
return False, response.strip()
@@ -128,9 +130,14 @@ def format_chat_history(user_messages: List) -> List:
"""
history_langchain_format = []
for message in user_messages:
- human = message["llmPrompt"]
- ai = message["llmAnswer"]
- history_langchain_format.append((human, ai))
+ human = message.get("llmPrompt")
+ ai = message.get("llmAnswer")
+
+ if human and ai:
+ history_langchain_format.append((human, ai))
+ elif human:
+ history_langchain_format.append((human, ""))
+
return history_langchain_format
@@ -147,7 +154,15 @@ def get_chat_history(message: UserMessage) -> List:
response = responses_table.query(
KeyConditionExpression=Key("threadId").eq(message.thread_id),
)
- history = format_chat_history(response["Items"])
+
+ sorted_items = sorted(
+ response["Items"],
+ key=lambda x: x.get(
+ "messageReceivedTimestamp", x.get("llmPromptTimestamp", "")
+ ),
+ )
+
+ history = format_chat_history(sorted_items)
return history
@@ -198,14 +213,14 @@ def format_chat_message(event: ProcessChatMessageEvent) -> UserMessage:
def store_message(message: UserMessage):
- message_table.put_item(
+ responses_table.put_item(
Item={
+ "threadId": str(message.thread_id),
"messageId": str(message.message_id),
"conversationId": str(message.conversation_id),
- "threadId": str(message.thread_id),
"client": message.client,
"userEmail": str(message.user_email),
- "message": message.message,
+ "llmPrompt": message.message,
"messageSentTimestamp": message.message_sent_timestamp,
"messageReceivedTimestamp": str(message.message_received_timestamp),
}
@@ -213,22 +228,22 @@ def store_message(message: UserMessage):
def store_response(response: LlmResponse):
- responses_table.put_item(
- Item={
- "responseId": str(response.response_id),
- "messageId": str(response.message_id),
- "threadId": str(response.thread_id),
- "llmPrompt": response.llm_prompt,
- "llmAnswer": response.llm_answer,
- "llmResponseJSon": response.llm_response_json,
- "llmPromptTimestamp": str(response.llm_prompt_timestamp),
- "llmResponseTimestamp": str(response.llm_response_timestamp),
- }
+ responses_table.update_item(
+ Key={"threadId": str(response.thread_id)},
+ UpdateExpression="set responseId = :rId, llmAnswer = :la, llmResponseJSon = :lrj, llmPromptTimestamp = :lpt, llmResponseTimestamp = :lrt, route = :route, context = :context",
+ ExpressionAttributeValues={
+ ":rId": response.response_id,
+ ":la": response.llm_answer,
+ ":lrj": response.llm_response_json,
+ ":lpt": str(response.llm_prompt_timestamp),
+ ":lrt": str(response.llm_response_timestamp),
+ ":route": response.route,
+ ":context": response.context,
+ },
)
def store_user_thanked_timestamp(ai_answer: LlmResponse):
- # Updating response in DynamoDB
responses_table.update_item(
Key={"threadId": ai_answer.thread_id},
UpdateExpression="set userThankedTimestamp=:t",
@@ -333,12 +348,12 @@ def check_existing_call(caddy_message) -> Tuple[Dict[str, Any], bool]:
def send_to_llm(caddy_query: UserMessage, chat_client):
query = caddy_query.message
-
+
domain = caddy_query.user_email.split("@")[1]
chat_history = get_chat_history(caddy_query)
- route_specific_augmentation = retrieve_route_specific_augmentation(query)
+ route_specific_augmentation, route = retrieve_route_specific_augmentation(query)
day_date_time = datetime.now(timezone("Europe/London")).strftime(
"%A %d %B %Y %H:%M"
@@ -348,7 +363,7 @@ def send_to_llm(caddy_query: UserMessage, chat_client):
office_regions = enrolment.get_office_coverage(office)
CADDY_PROMPT = PromptTemplate(
- template=CADDY_PROMPT_TEMPLATE,
+ template=get_prompt("CORE_PROMPT"),
input_variables=["context", "question"],
partial_variables={
"route_specific_augmentation": route_specific_augmentation,
@@ -486,6 +501,8 @@ def send_to_llm(caddy_query: UserMessage, chat_client):
llm_prompt_timestamp=ai_prompt_timestamp,
llm_response_json=json.dumps(response_card),
llm_response_timestamp=ai_response_timestamp,
+ route=route or "no_route",
+ context=[doc_without_embeddings(doc) for doc in caddy_response["context"]],
)
store_response(llm_response)
@@ -535,8 +552,13 @@ def send_to_llm(caddy_query: UserMessage, chat_client):
store_approver_received_timestamp(supervision_event)
+def doc_without_embeddings(doc):
+ doc_dict = doc.dict()
+ doc_dict.pop("state", None)
+ return doc_dict
+
+
def store_approver_received_timestamp(event: SupervisionEvent):
- # Updating response in DynamoDB
responses_table.update_item(
Key={"threadId": event.thread_id},
UpdateExpression="set approverReceivedTimestamp=:t",
@@ -545,12 +567,12 @@ def store_approver_received_timestamp(event: SupervisionEvent):
)
-def store_approver_event(approval_event: ApprovalEvent):
- # Updating response in DynamoDB
+def store_approver_event(thread_id: str, approval_event: ApprovalEvent):
responses_table.update_item(
- Key={"threadId": str(approval_event.thread_id)},
- UpdateExpression="set approverEmail=:email, approved=:approved, approvalTimestamp=:atime, userResponseTimestamp=:utime, supervisorMessage=:sMessage",
+ Key={"threadId": thread_id},
+ UpdateExpression="set responseId=:rId, approverEmail=:email, approved=:approved, approvalTimestamp=:atime, userResponseTimestamp=:utime, supervisorMessage=:sMessage",
ExpressionAttributeValues={
+ ":rId": approval_event.response_id,
":email": approval_event.approver_email,
":approved": approval_event.approved,
":atime": str(approval_event.approval_timestamp),
@@ -559,3 +581,42 @@ def store_approver_event(approval_event: ApprovalEvent):
},
ReturnValues="UPDATED_NEW",
)
+
+
+def temporary_teams_invoke(chat_client, query, event):
+ """
+ Temporary solution for Teams integration
+ """
+ route_specific_augmentation, _ = retrieve_route_specific_augmentation(query)
+
+ day_date_time = datetime.now(timezone("Europe/London")).strftime(
+ "%A %d %B %Y %H:%M"
+ )
+
+ office_regions = ["England"]
+
+ CADDY_PROMPT = PromptTemplate(
+ template=get_prompt("CORE_PROMPT"),
+ input_variables=["context", "question"],
+ partial_variables={
+ "route_specific_augmentation": route_specific_augmentation,
+ "day_date_time": day_date_time,
+ "office_regions": office_regions,
+ },
+ )
+
+ chain, ai_prompt_timestamp = build_chain(CADDY_PROMPT)
+
+ caddy_response = chain.invoke(
+ {
+ "input": query,
+ "chat_history": [],
+ }
+ )
+
+ _, caddy_response["answer"] = remove_role_played_responses(caddy_response["answer"])
+
+ chat_client.send_adviser_card(
+ event,
+ card=chat_client.messages.generate_response_card(caddy_response["answer"]),
+ )
diff --git a/caddy_chatbot/src/caddy_core/models.py b/caddy_chatbot/src/caddy_core/models.py
index 75e0fdf..7c79f8b 100644
--- a/caddy_chatbot/src/caddy_core/models.py
+++ b/caddy_chatbot/src/caddy_core/models.py
@@ -1,4 +1,4 @@
-from typing import Union
+from typing import Union, List, Any
from datetime import datetime
import uuid
import pydantic
@@ -35,6 +35,8 @@ class LlmResponse(pydantic.BaseModel):
llm_response_json: Union[pydantic.Json, None] = None
llm_prompt_timestamp: datetime
llm_response_timestamp: datetime
+ route: str
+ context: Union[List[Any], None]
class SupervisionEvent(pydantic.BaseModel):
diff --git a/caddy_chatbot/src/caddy_core/services/retrieval_chain.py b/caddy_chatbot/src/caddy_core/services/retrieval_chain.py
index 30a565b..e4b2d05 100644
--- a/caddy_chatbot/src/caddy_core/services/retrieval_chain.py
+++ b/caddy_chatbot/src/caddy_core/services/retrieval_chain.py
@@ -1,5 +1,4 @@
from langchain_community.chat_models import BedrockChat
-from langchain_community.embeddings import HuggingFaceEmbeddings
from langchain_community.embeddings import BedrockEmbeddings
from langchain_community.vectorstores import OpenSearchVectorSearch
from langchain_community.document_transformers import EmbeddingsClusteringFilter
@@ -19,6 +18,8 @@
from opensearchpy import RequestsHttpConnection
from requests_aws4auth import AWS4Auth
+from caddy_core.utils.monitoring import logger
+
import re
import os
from datetime import datetime
@@ -26,18 +27,16 @@
alternate_region = "eu-west-3"
opensearch_https = os.environ.get("OPENSEARCH_HTTPS")
-bedrock_embeddings = BedrockEmbeddings(
+embeddings = BedrockEmbeddings(
model_id="amazon.titan-embed-image-v1", region_name=alternate_region
)
-embeddings = HuggingFaceEmbeddings(model_name="model")
-
try:
session = boto3.Session()
credentials = session.get_credentials()
auth = AWS4Auth(
- region=os.environ.get("AWS_REGION"),
- service="es",
+ region=alternate_region,
+ service="aoss",
refreshable_credentials=credentials,
)
except NoCredentialsError:
@@ -65,6 +64,7 @@ def find_most_recent_caddy_vector_index():
# Initialize most_recent_index with the original index name as a fallback
most_recent_index = opensearch_index
+ logger.info(f"Index initalised with: {opensearch_index}")
# Pattern to match indexes of interest
pattern = re.compile(opensearch_index + r"_(\d{8})$")
@@ -73,6 +73,7 @@ def find_most_recent_caddy_vector_index():
index_list = client.indices.get("*")
most_recent_date = None
+ logger.info(f"Checking through {len(index_list)} indexes")
for index_name in index_list:
match = pattern.match(index_name)
if match:
@@ -80,14 +81,17 @@ def find_most_recent_caddy_vector_index():
extracted_date_str = match.group(1)
try:
extracted_date = datetime.strptime(extracted_date_str, "%Y%m%d")
+ logger.info(f"Date extracted from index: {extracted_date}")
# Update most recent date and index name if this index is more recent
if most_recent_date is None or extracted_date > most_recent_date:
+ logger.info(f"Setting as most recent date: {extracted_date}")
most_recent_date = extracted_date
most_recent_index = index_name
except ValueError:
# If the date is not valid, ignore this index
continue
+ logger.info(f"Most recent index is: {most_recent_index}")
return most_recent_index
@@ -145,7 +149,7 @@ def build_chain(CADDY_PROMPT):
)
llm = BedrockChat(
- model_id=os.environ.get("LLM"),
+ model_id=os.getenv("LLM"),
region_name=alternate_region,
model_kwargs={"temperature": 0.3, "top_k": 5, "max_tokens": 2000},
)
diff --git a/caddy_chatbot/src/caddy_core/services/router.py b/caddy_chatbot/src/caddy_core/services/router.py
index 15dd40b..35246a0 100644
--- a/caddy_chatbot/src/caddy_core/services/router.py
+++ b/caddy_chatbot/src/caddy_core/services/router.py
@@ -1,296 +1,80 @@
+import os
import boto3
+from botocore.exceptions import ClientError
+from datetime import datetime, timezone, timedelta
+
from semantic_router import Route, RouteLayer
from semantic_router.encoders import BedrockEncoder
-
-session = boto3.Session()
-credentials = session.get_credentials()
-embeddings = BedrockEncoder(
- access_key_id=credentials.access_key,
- secret_access_key=credentials.secret_key,
- session_token=credentials.token,
- region="eu-west-3",
-)
-
-benefits_and_tax_credits_route = Route(
- name="benefits_and_tax_credits",
- utterances=[
- "What are benefits available?",
- "How do I apply for tax credits?",
- "Can you explain the eligibility criteria for tax credits?",
- "Are there any changes to tax credits this year?",
- "How can I calculate my entitlement to benefits and tax credits?",
- "What documents do I need to provide for benefits and tax credits?",
- "Can you help me with a benefits and tax credits claim issue?",
- "Where can I find more information about benefits and tax credits?",
- ],
-)
-
-benefits_and_universal_credit_route = Route(
- name="benefits_and_universal_credit",
- utterances=[
- "What is Universal Credit?",
- "How do I apply for Universal Credit?",
- "What are the eligibility criteria for Universal Credit?",
- "Can you explain the Universal Credit claim process?",
- "What documents do I need to provide for a Universal Credit claim?",
- "How can I calculate my entitlement to Universal Credit?",
- "Can you help me with a Universal Credit claim issue?",
- "Where can I find more information about Universal Credit?",
- ],
-)
-
-charitable_support_and_food_banks_route = Route(
- name="charitable_support_and_food_banks",
- utterances=[
- "What are the eligibility criteria for receiving charitable support?",
- "How can someone apply for charitable support?",
- "What types of assistance do food banks provide?",
- "Are there any income limits or requirements to access food banks?",
- "What documentation is needed to receive charitable support?",
- "How can someone find local food banks?",
- "What other resources or services are available for individuals in need?",
- "Are there any restrictions or limitations on the frequency of accessing food banks?",
- ],
-)
-
-consumer_goods_and_services_route = Route(
- name="consumer_goods_and_services",
- utterances=[
- "What are my rights as a consumer?",
- "How can I make a complaint about a product or service?",
- "What are the refund and return policies for consumer goods?",
- "Can you help me with a dispute with a retailer?",
- "Where can I find information about consumer protection laws?",
- "What are the regulations for online shopping?",
- "How can I avoid scams and fraudulent sellers?",
- "Can you provide guidance on product warranties and guarantees?",
- ],
-)
-
-debt_route = Route(
- name="debt",
- utterances=[
- "What are the different types of debt?",
- "How can someone negotiate with creditors to reduce debt?",
- "What are the consequences of not paying off debt?",
- "Can you explain the debt collection process?",
- "What are the options for debt consolidation?",
- "How can someone deal with overwhelming debt?",
- "What are the rights and protections for individuals in debt?",
- "Can you provide guidance on bankruptcy and insolvency?",
- ],
-)
-
-education_route = Route(
- name="education",
- utterances=[
- "What are the available education options for my client?",
- "How can my client access financial support for education?",
- "What are the eligibility criteria for educational grants and scholarships?",
- "Can you explain the process of applying for student loans?",
- "What documentation is required for enrolling in educational programs?",
- "How can my client navigate the admissions process for schools and universities?",
- "Can you provide guidance on special education services and accommodations?",
- "What resources are available for adult education and vocational training?",
- "How can my client address issues related to bullying or discrimination in educational settings?",
- "Where can I find more information about educational rights and regulations?",
- ],
-)
-
-employment_route = Route(
- name="employment",
- utterances=[
- "What are the rights and responsibilities of employees?",
- "How can someone address workplace discrimination or harassment?",
- "What is the process for filing a complaint against an employer?",
- "Can you provide guidance on employment contracts and terms?",
- "What are the regulations for minimum wage and working hours?",
- "How can someone negotiate a fair salary or benefits package?",
- "Can you explain the process of redundancy and severance pay?",
- "What are the rights and protections for individuals facing unfair dismissal?",
- "How can someone access support for workplace health and safety issues?",
- "Where can I find more information about employment rights and regulations?",
- ],
-)
-
-financial_services_and_capability_route = Route(
- name="financial_services_and_capability",
- utterances=[
- "What financial services are available for individuals?",
- "How can someone access financial advice and guidance?",
- "Can you explain the process of opening a bank account?",
- "What are the options for managing debt and improving credit?",
- "How can someone access affordable loans or credit?",
- "Can you provide guidance on budgeting and saving?",
- "What resources are available for financial planning and retirement?",
- "How can someone protect themselves from financial scams and fraud?",
- "Where can I find more information about financial services and capability?",
- ],
-)
-
-gva_and_hate_crime_route = Route(
- name="gva_and_hate_crime",
- utterances=[
- "What support services are available for victims of gender-based violence and hate crimes?",
- "How can someone report a gender-based violence or hate crime incident?",
- "What legal protections are in place for victims of gender-based violence and hate crimes?",
- "Can you explain the process of obtaining a restraining order or protection order?",
- "What resources are available for counseling and emotional support for victims of gender-based violence and hate crimes?",
- "How can someone access emergency accommodation or safe houses?",
- "Can you provide guidance on safety planning for victims of gender-based violence and hate crimes?",
- "Where can I find more information about gender-based violence and hate crimes?",
- ],
-)
-
-health_and_community_care_route = Route(
- name="health_and_community_care",
- utterances=[
- "What are the available healthcare services in the area?",
- "How can someone access primary healthcare?",
- "Can you explain the process of registering with a general practitioner (GP)?",
- "What are the eligibility criteria for receiving community care services?",
- "How can someone apply for community care services?",
- "What types of support are available for individuals with specific health conditions?",
- "Are there any income limits or requirements to access community care services?",
- "What documentation is needed to receive community care services?",
- "How can someone find local healthcare providers and specialists?",
- "What other resources or services are available for individuals in need of healthcare and community care support?",
- "Are there any restrictions or limitations on the frequency of accessing community care services?",
- "Can you provide guidance on mental health support services?",
- "What are the options for accessing long-term care facilities?",
- "How can someone navigate the process of obtaining medical equipment or assistive devices?",
- "What are the rights and protections for individuals receiving healthcare and community care services?",
- "Where can I find more information about healthcare rights and regulations?",
- ],
-)
-
-housing_route = Route(
- name="housing",
- utterances=[
- "What are the rights and responsibilities of a tenant?",
- "How can someone find affordable housing options?",
- "Can you explain the process of renting a property?",
- "What are the regulations for tenancy agreements?",
- "How can someone address issues with their landlord?",
- "What are the options for dealing with eviction?",
- "Can you provide guidance on housing benefits and assistance programs?",
- "Where can I find more information about housing rights and regulations?",
- ],
-)
-
-immigration_and_asylum_route = Route(
- name="immigration_and_asylum",
- utterances=[
- "What are the eligibility criteria for different types of visas?",
- "How can someone apply for asylum in this country?",
- "What are the rights and protections for asylum seekers?",
- "Can you explain the process of appealing a visa or asylum decision?",
- "What are the options for family reunification for refugees?",
- "How can someone access legal representation for immigration cases?",
- "Can you provide guidance on immigration detention and removal?",
- "What are the requirements for obtaining citizenship or permanent residency?",
- "How can someone address issues with their immigration status?",
- "Where can I find more information about immigration and asylum rights and regulations?",
- ],
-)
-
-legal_route = Route(
- name="legal",
- utterances=[
- "What are the different types of legal cases?",
- "How can someone find a lawyer or legal representation?",
- "Can you explain the process of filing a lawsuit?",
- "What are the options for alternative dispute resolution?",
- "How can someone access legal aid or pro bono services?",
- "Can you provide guidance on court procedures and protocols?",
- "What are the rights and protections for individuals in the justice system?",
- "How can someone navigate the process of obtaining legal documents or records?",
- "Where can I find more information about the legal system, courts, and justice system?",
- ],
-)
-
-relationships_and_family_route = Route(
- name="relationships_and_family",
- utterances=[
- "What are the legal rights and responsibilities in a marriage or civil partnership?",
- "How can someone navigate the process of divorce or dissolution?",
- "What are the options for child custody and visitation rights?",
- "Can you provide guidance on child support and maintenance?",
- "What are the rights and protections for victims of domestic violence?",
- "How can someone address issues related to child protection and safeguarding?",
- "Can you explain the process of adoption or fostering?",
- "What resources are available for couples or families going through relationship breakdown?",
- "How can someone access counseling or mediation services for family disputes?",
- "Where can I find more information about relationship and family rights and regulations?",
- ],
-)
-
-tax_route = Route(
- name="tax",
- utterances=[
- "What are the different types of taxes?",
- "How can someone calculate their income tax?",
- "Can you explain the process of filing a tax return?",
- "What are the deductions and credits available for taxpayers?",
- "How can someone address issues with their tax payments?",
- "What are the options for resolving tax disputes?",
- "Can you provide guidance on self-employment taxes?",
- "What are the tax implications of owning a business?",
- "How can someone navigate the process of paying taxes as an employee (PAYE)?",
- "Where can I find more information about tax laws and regulations?",
- ],
-)
-
-travel_and_transport_route = Route(
- name="travel_and_transport",
- utterances=[
- "What are the available modes of public transportation in the area?",
- "How can someone plan their travel using public transportation?",
- "Can you explain the process of purchasing tickets for trains or buses?",
- "What are the options for traveling between different cities or regions?",
- "How can someone access information about train schedules and routes?",
- "Are there any discounts or concessions available for public transportation?",
- "Can you provide guidance on navigating public transportation systems?",
- "What are the rights and protections for passengers using public transportation?",
- "How can someone address issues with delays or cancellations of trains or buses?",
- "Where can I find more information about travel and transportation services?",
- ],
-)
-
-utilities_and_communications_route = Route(
- name="utilities_and_communications",
- utterances=[
- "How can someone reduce their energy bills?",
- "What assistance programs are available for individuals struggling to pay their energy bills?",
- "Can you explain the process of switching energy providers?",
- "What are the options for accessing affordable broadband services?",
- "How can someone address issues with their broadband connection?",
- "What support is available for individuals experiencing fuel poverty?",
- "Can you provide guidance on energy-saving measures for heating and cooling?",
- "What are the rights and protections for consumers in the energy and communications sectors?",
- "How can someone navigate the process of installing and using prepayment meters?",
- "Where can I find more information about energy crisis management and resources?",
- ],
-)
-
-routes = [
- benefits_and_tax_credits_route,
- benefits_and_universal_credit_route,
- charitable_support_and_food_banks_route,
- consumer_goods_and_services_route,
- debt_route,
- education_route,
- employment_route,
- financial_services_and_capability_route,
- gva_and_hate_crime_route,
- health_and_community_care_route,
- housing_route,
- immigration_and_asylum_route,
- legal_route,
- relationships_and_family_route,
- tax_route,
- travel_and_transport_route,
- utilities_and_communications_route,
-]
-
+from caddy_core.utils.monitoring import logger
+
+
+class AutoRefreshBedrockEncoder:
+ def __init__(self, region="eu-west-3", score_threshold=0.5):
+ self.region = region
+ self.score_threshold = score_threshold
+ self.encoder = None
+ self.refresh_credentials()
+
+ def refresh_credentials(self):
+ try:
+ sts_client = boto3.client("sts")
+ role_arn = os.environ.get("TASK_ROLE_ARN")
+ response = sts_client.assume_role(
+ RoleArn=role_arn,
+ RoleSessionName="CaddyTaskSession",
+ DurationSeconds=3600,
+ )
+
+ credentials = response["Credentials"]
+ self.encoder = BedrockEncoder(
+ access_key_id=credentials["AccessKeyId"],
+ secret_access_key=credentials["SecretAccessKey"],
+ session_token=credentials["SessionToken"],
+ region=self.region,
+ score_threshold=self.score_threshold,
+ )
+
+ self.expiration = credentials["Expiration"]
+ logger.info(
+ f"Refreshed credentials, new expiry time: {
+ self.expiration}"
+ )
+ except ClientError as e:
+ logger.error(f"Failed to refresh credentials: {e}")
+ raise
+
+ def __call__(self, *args, **kwargs):
+ if datetime.now(timezone.utc) >= self.expiration - timedelta(minutes=5):
+ logger.info("Credentials expiring soon, refreshing...")
+ self.refresh_credentials()
+
+ return self.encoder(*args, **kwargs)
+
+ def __getattr__(self, name):
+ if name == "score_threshold":
+ return self.score_threshold
+ return getattr(self.encoder, name)
+
+
+embeddings = AutoRefreshBedrockEncoder(region="eu-west-3", score_threshold=0.5)
+
+dynamodb = boto3.resource("dynamodb")
+table = dynamodb.Table(os.getenv("ROUTES_TABLE_NAME"))
+
+
+def get_routes_dynamically():
+ logger.info("Fetching routes")
+ response = table.scan()
+ routes = []
+ for item in response["Items"]:
+ utterances = item["utterances"]
+ if isinstance(utterances[0], list):
+ utterances = utterances[0]
+ route = Route(name=item["name"], utterances=utterances)
+ routes.append(route)
+ logger.info(f"Fetched {len(routes)} routes")
+ return routes
+
+
+routes = get_routes_dynamically()
get_route = RouteLayer(encoder=embeddings, routes=routes)
diff --git a/caddy_chatbot/src/caddy_core/utils/monitoring.py b/caddy_chatbot/src/caddy_core/utils/monitoring.py
new file mode 100644
index 0000000..df9f03b
--- /dev/null
+++ b/caddy_chatbot/src/caddy_core/utils/monitoring.py
@@ -0,0 +1,48 @@
+import logging
+import sys
+
+
+class Colours:
+ RESET = "\033[0m"
+ BOLD = "\033[1m"
+ BLACK = "\033[30m"
+ RED = "\033[31m"
+ GREEN = "\033[32m"
+ YELLOW = "\033[33m"
+ BLUE = "\033[34m"
+ MAGENTA = "\033[35m"
+ CYAN = "\033[36m"
+ WHITE = "\033[37m"
+
+
+class ColourFormatter(logging.Formatter):
+ COLOURS = {
+ "DEBUG": Colours.BLUE,
+ "INFO": Colours.MAGENTA,
+ "WARNING": Colours.YELLOW,
+ "ERROR": Colours.RED,
+ "CRITICAL": Colours.BOLD + Colours.RED,
+ }
+
+ def format(self, record):
+ log_message = super().format(record)
+ return f"{self.COLOURS.get(record.levelname, '')}{log_message}{Colours.RESET}"
+
+
+def setup_logger(name, level=logging.INFO):
+ """
+ Function to setup a colour-coded logger
+ """
+ logger = logging.getLogger(name)
+ logger.setLevel(level)
+
+ formatter = ColourFormatter("%(name)s | %(asctime)s | %(levelname)s | %(message)s")
+
+ handler = logging.StreamHandler(sys.stdout)
+ handler.setFormatter(formatter)
+ logger.addHandler(handler)
+
+ return logger
+
+
+logger = setup_logger("CADDY")
diff --git a/caddy_chatbot/src/caddy_core/utils/prompt.py b/caddy_chatbot/src/caddy_core/utils/prompt.py
new file mode 100644
index 0000000..40d1a8f
--- /dev/null
+++ b/caddy_chatbot/src/caddy_core/utils/prompt.py
@@ -0,0 +1,30 @@
+import os
+import boto3
+from botocore.exceptions import ClientError
+from datetime import datetime, timezone, timedelta
+
+from caddy_core.utils.monitoring import logger
+from caddy_core.services.router import get_route
+
+
+def get_prompt(prompt_name):
+ dynamodb = boto3.resource("dynamodb")
+ table = dynamodb.Table(os.getenv("PROMPTS_TABLE_NAME"))
+
+ response = table.get_item(Key={"PromptName": prompt_name})
+ logger.info(f"Fetched prompt: {prompt_name}")
+ return response["Item"]["Prompt"] if "Item" in response else None
+
+
+def retrieve_route_specific_augmentation(query):
+ route = get_route(query).name
+ logger.info(f"Route returned: {route}")
+
+ prompt_name = f"{route.upper()}_PROMPT"
+ route_specific_augmentation = get_prompt(prompt_name)
+
+ if route_specific_augmentation is None:
+ logger.info("Route not found, using fallback prompt")
+ route_specific_augmentation = get_prompt("FALLBACK_PROMPT")
+
+ return route_specific_augmentation, route
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/benefits_and_tax_credits.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/benefits_and_tax_credits.py
deleted file mode 100644
index e711e18..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/benefits_and_tax_credits.py
+++ /dev/null
@@ -1,28 +0,0 @@
-PROMPT = """
-For example, if the question is "I get PIP as Im disabled,
-but I also care for my elderly mum (aged 76). Can I claim Carers Allowance?"
-you could respond with:
------
-If your mum receives a disability benefit (middle/higher rate care component of DLA,
-daily living component of PIP, or AA), are not in gainful employment and you provide
-35 hours a week care you might be able to claim CA.
-
-If your mum gets a severe disability addition/premium in Pension Credit or Housing Benefit
-this will stop if you are paid Carers Allowance.
-
-If you get the daily living component of PIP, the DWP might look again at your PIP award
-if the activities you are able to carry out as a carer for your mum suggest that you dont
-need help with your own daily living activities. Being a carer and qualifying for PIP arent
-necessarily incompatible. It will depend on the reasons you get PIP and the tasks you carry
-out for your mum. For example, if you have a mental health condition and need prompting to carry
-out daily living tasks, but are physically able to carry them out there wouldnt be a contradiction
-in receiving PIP and being a carer.
-----
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to benefits and tax credits is likely to also
-be advised on universal credit, charitable support (such as grants) and food banks, debt and
-utilities, communications and energy issues. You must think step-by-step
-about the question identifying any evidence of these present in the query and formulate your response
-to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/benefits_and_universal_credit.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/benefits_and_universal_credit.py
deleted file mode 100644
index ef90c6d..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/benefits_and_universal_credit.py
+++ /dev/null
@@ -1,21 +0,0 @@
-PROMPT = """
-For example, if the question is "Ive moved into a leasehold flat and have to pay
-service charges of £40 per week. I get UC, can I get help to pay the charges?"
-you could respond with:
------
-Yes, a housing costs element in UC can be paid for service charges that you
-have to pay to occupy your home. They must be related to the provision of adequate
-accommodation. Examples of service charges that may be included are:
-
-Charges for using shared facilities, such as rubbish collection or communal lifts
-Charges for using essential items in your home, such as domestic appliances
-Charges window cleaning of upper floors
-----
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to benefits universal credit is likely to also
-be advised on benefits and tax credits, charitable support (such as grants) and food banks, debt
-and utilities, communications and energy issues. You must think step-by-step
-about the question identifying any evidence of these present in the query and formulate your response
-to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/charitable_support_and_food_banks.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/charitable_support_and_food_banks.py
deleted file mode 100644
index fe4353b..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/charitable_support_and_food_banks.py
+++ /dev/null
@@ -1,9 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to charitable support (such as grants) and food
-banks is likely to also be advised on utilities, communications and energy issues, debt, benefits such
-as universal credit, financial services and capability as well as housing. You must think step-by-step
-about the question identifying any evidence of these present in the query and formulate your response
-to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/consumer_goods_and_services.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/consumer_goods_and_services.py
deleted file mode 100644
index 2964f6b..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/consumer_goods_and_services.py
+++ /dev/null
@@ -1,49 +0,0 @@
-PROMPT = """
-For example, if the question is "I bought a used car 3 weeks ago on finance.
-Its a Vauxhall Corsa 63 registration. The brakes were making a noise so Ive had
-the car looked at and theyve said there are other faults and it shouldnt have
-passed its MOT. The garage I bought it from has given me £200 towards the repair
-cost but Ive spent £600 on urgent repairs and the other repairs will cost at least £750.
-I want to keep the car. Can I get the money back for the repair costs? The garage has given
-me £200 towards repair costs and say they wont pay anymore. Ive spoken to the finance company
-and they say they cant make the garage pay." you could respond with:
------
-Because you bought your car on finance, your contract is with the finance company
-and theyre the legal owner of the car. This means its their responsibility to sort
-out problems. The law says the car you bought should be of satisfactory quality and
-fit for purpose in relation to its age and usage. The car should also match the advert
-or description the garage used. Youre entitled to claim the cost of repairs if the car
-doesnt meet these requirements. If the repairs mean the car ends up being worth more than
-the age and condition of the car as it was when you bought it, it would be reasonable for the
-garage to reflect this in the amount they offer you towards the repair costs.
-
-It sounds like youve got evidence of the faults with the car from the garage you took it to.
-Check the finance companys complaints process to see how you can complain to them. Send a copy
-of your evidence to the finance company, explain that you think it means the vehicle you bought
-wasnt fit for purpose, isnt of satisfactory quality or doesnt match its description and ask them
-to refund the £400 giving them a deadline to sort the problem out - wed suggest 14 days. Theres
-a template letter on the Citizens Advice website you can use. If you send a letter, send it using
-Royal Mail Signed For and keep your proof of posting. If you send it by email, send it with a read
-receipt. When you reject a car, you need to stop using it.
-
-If the finance company doesnt sort the problem out within 8 weeks of you first complaining to them,
-or sends you their final response (sometimes called a deadlock letter) before 8 weeks, you can take
-your complaint to the Financial Ombudsman Service.
-
-If the MOT was done within the last 28 days you can let the Driver and Vehicle Standards Agency (DVSA)
-know that your car passed its MOT but you think it should have failed.
-
-Follow up questions
-When was the MOT?
-What mileage was the vehicle sold with?
-Did you speak to the garage you bought the car from before you had the vehicle inspected and got the
-urgent repairs done?
-----
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to consumer goods and services is likely to also
-be advised on utilities and communications, benefits and tax credits, debt, charitable support and
-food banks as well as financial services and capability. You must think step-by-step about the question
-identifying any evidence of these present in the query and formulate your response to the advisor
-accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/debt.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/debt.py
deleted file mode 100644
index 9f7abc7..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/debt.py
+++ /dev/null
@@ -1,144 +0,0 @@
-PROMPT = """
-For example, if the question is "Im 55 and I have a small pension pot. I owe £35,000 in various
-debts and want to get a DRO. I need my pension for later life. Can I get a DRO or do I need to go
-bankrupt? I have about £10,000 equity in my house but half of that is my husbands who no longer
-lives with me." you could respond with:
------
-You can't get a DRO as you have an interest in a property. You also owe more than £30,000
-which is the limit for a DRO, although not all debts count towards that. You could consider bankruptcy
-but should get debt advice. There are no eligibility criteria as such for bankruptcy, although it will
-cost you £680. You might be able to get help with this fee form a charity or trust fund and you can pay
-this in instalments. You should be aware that: Any unapproved pension will be classed as an asset and taken
-to pay your debts by the person that controls your bankruptcy, known as the Trustee, although you can ask
-your Trustee to make an agreement not to take your pension but it will be up to the Trustee. You have to
-ask them within 9 weeks of going bankrupt. You can apply to court to have the pension made exempt within
-13 weeks of your bankruptcy, and it will be up to the court what order to make. You should try to get
-legal advice on what arguments to raise, for instance, if you need to fund any care needs, whether the
-pension is approved by a foreign tax authority if the pension is from overseas etc
-You will not be forced to take any personal pension that is approved as these are protected by law from
-bankruptcy. However, as you are over 55, you will probably be able to take your pension if you want to.
-Therefore, the person that agrees you can go bankrupt, known as the Adjudicator, might decide you are still
-able to pay your debts if the value of your pension after taxes and costs, is more than your debts.
-You will not be forced to take your pension, but you might not get your bankruptcy order and you would not
-get your £680 refunded If you did go bankrupt and drew on your pension, any lump sum might then be claimed
-by the Trustee and any income you are paid will be used to assess whether you can make payments into an
-income payment arrangement or order, to repay bankruptcy debts. If you do get a bankruptcy order, the
-Trustee has 3 years to decide what to do with the equity in your home. They usually won't sell it for at
-least 1 year after you go bankrupt. You can try to delay this sale but might need to go to court to do so,
-and the court will only usually delay the sale further if you have exceptional circumstances. You and your
-husband probably have a 50/50 share of the equity, known as 'beneficial interest.' Therefore, your share
-of the equity is probably £5000. The Trustee is likely to value your home after 2 years and 3 months to
-see if there is more equity If you have more than £5000 equity as your share at that point, the Trustee
-may apply for a charging order or an order to sell your home. This might happen much sooner if your home
-goes up in value quickly. If you have less than £5000 the Trustee is unlikely to apply for a charging
-order or order for sale as there will not be anything left to pay creditors after costs, but this is
-just a guide of course. A third party could make an offer to buy your share of the property, to the
-Trustee. You should always take legal advice about this, and be certain that the third party will let you
-stay in the property You or your husband may claim to have more than 50 percent share in the equity, for instance
-if you paid the entire deposit for the house and used only your funds. This is a complicated area of law
-and you should get legal advice if you want to claim more or less than 50 percent share. You should decide this
-before going bankrupt but any agreement must be for the right consideration
-If you later go bankrupt and the Trustee believes you have given away all or part of your equity, in order
-not to pay creditors, you might have a longer bankruptcy period. This is known as a bankruptcy restriction
-order, and can last between 2-15 years. The Trustee might also try to seek payment from the other person to
-recover the lost value, or ask a court to reverse the transaction
-The Trustee can review any sale or transfer of assets if they occurred in the 5 years before your bankruptcy
-if the person you gave away or sold to, was an 'associate' like a business partner or family member. There
-is no time limit where the Trustee thinks you did this on purpose to avoid paying creditors
-The Trustee in bankruptcy may argue you have more than 50 perfect in order to claim more funds for creditors,
-but ultimately only a court can decide the shares
-The Trustee may still allow you to sell your home if this will raise more funds, but you should get their
-consent. However, if you own the home jointly with someone else, you do not need the Trustee's consent to
-sell You should also be aware that bankruptcy will not stop certain creditors chasing you for payment. These are
-court fines, family or child maintenance arrangements, social fund loans, student loans, debt incurred
-through fraud, and damages for negligence and injury
-----
-Another example is: "Can I get a breathing space to stop my creditors chasing me, and how long will it last?" you could respond with:
------
-You have to meet certain eligibility criteria such as not being subject to another insolvency procedure, you must live in E&W and owe a ‘qualifying debt.’ You must not be subject to a mental health crisis moratorium, standard breathing space moratorium, and not have had a standard breathing space moratorium that ended in the last 12 months.
-You must be unable or unlikely to pay some or all of your debts as they fall due, and the moratorium must be ‘appropriate.’ You must see a debt adviser to get a moratorium and they will decide whether it is appropriate, considering things like whether you can pay your debts, whether you will be able to enter a debt solution during or soon after your moratorium, and whether you need the moratorium time for the adviser to consider your options and put in place a recommendation for you.
-A breathing space moratorium typically will last 60 days.
-If you have a serious mental health condition and are in crisis treatment, you might be eligible for a mental health crisis moratorium. These last as long as your crisis treatment, plus 30 days. Most of the criteria above will apply, but you can have as many of these moratoria within 12 months as needed, so long as you are in crisis treatment. You will still need a debt adviser to enter you into the scheme, and an approved mental health professional will have to provide evidence that you are in crisis treatment.
-When the debt adviser is considering whether a mental health crisis moratorium is suitable, they might ask for more medical evidence from a mental health professional. They have to get a credit report on your behalf as well.
-The adviser might not have to consider whether you can move into a debt solution quickly, like in a standard breathing space, but they will need to work with you as much as you are able, to help with your debts. Your nominated point of contact (usually a health professional like a MH nurse) will have to provide evidence that you are still in crisis treatment, every 30 days. Otherwise your moratorium will end 30 days after the point they should have provided it.
-Some creditors can still chase you for money even in a standard or mental health crisis moratorium, such as for child maintenance, a court fine, a universal credit advance, social fund loan, student loan or any debt incurred through fraud. Any council tax arrears where the council has not sent a reminder can be chased, as well as any payments you have to make for damages for personal injury. If you have deductions to pay bills from your universal credit, these will continue, and if you agreed to have a pre-payment meter installed before your moratorium, that meter can be installed.
-You will also be expected to pay your ongoing bills during a standard moratorium.
------
-Another example is: "I’m about to get evicted by the bank but I don’t have anywhere to go. I’m worried as my employment contract says I might lose my job if I get a court judgment against me. Can you help me?" you could respond with:
------
-Debt answer: Most lenders will apply for a money judgment as well as possession, so you might need employment advice about your work contract.
-
-It’s important to know where you are in the eviction process. Before you are evicted your lender has to take you to court for a possession hearing. If the Judge gives the lender a possession order, you will be given a date to leave your home. On that date, if you do not move out, the lender will have to apply for a warrant of possession. That warrant allows bailiffs to return on a given date to evict you. If you do not leave they do have powers to use reasonable force to make you leave. If you have not yet been to court at all, you will have more opportunity to negotiate with the lender. If you feel able to, you should always contact your mortgage lender whatever the stage.
-
-If they have not yet taken you to court, they have a lot of rules to follow, and these continue up to actual possession. They might be able to help by agreeing a repayment plan, reducing your monthly payments temporarily if your income might increase in future, or by allowing you to miss payments for a few months (known as mortgage deferral). You would still have to make up these payments later. They might add your arrears on to the end of your mortgage, known as ‘capitalising’ arrears if you can afford to pay the slightly increased monthly amounts this would require. Always consider getting debt advice to help (link)
-
-As with any debt case, you should maximise your income as best you can (link to our pages) and also reduce non-essential expenditure where possible (link to our page). If you receive Universal Credit or another means tested benefit, you can apply to have some of the interest on your mortgage paid by an interest free loan, called support for mortgage interest. You have to apply for this support and will usually have to wait 13 weeks before it is paid, or 9 months on legacy benefits, like JSA, ESA or income support. If you get pension credit, payments start straight away.
-
-Assuming you agree you owe the mortgage and it was not incurred due to fraud or undue pressure, you should complete the defence form you are sent (called the N11M) if you are being taken to court for a possession hearing. You should also seek advice from a debt adviser or legal aid provider, if you qualify for legal aid, as your home is at risk. On the day of the hearing, you should also try to meet with the duty scheme solicitor at court. When completing the N11M you should check carefully whether the lender has included the right amount of arrears as they sometimes get this wrong if they add in other charges. You should return the N11M to the court, and send a copy to the lender’s solicitors, within 14 days of any hearing. If you miss this deadline, still send it in late. Even if you do not send it at all the court will let you take part in the hearing but they might make you pay more costs if they have to rearrange a hearing.
-
-You should complete the budget sheet on the N11M and prioritise paying your mortgage arrears. If you’re not sure how to prioritise your debts, you can read about this on our advice pages (link) and get advice from a debt adviser (link). If you are able to make an offer to pay the arrears, you should do so before the court hearing. The lender might agree to stop the court hearing, or at least agree to ask for suspended possession, based on you paying what you have offered alongside regular payments. This means you will not lose your home so long as the payments are made. In any case, you should start to pay what you can afford. Usually the court will give you up to the end of your agreement term to pay arrears back, but you should try to pay more quickly if possible.
-
-There are also lots of rules a lender has to follow before going to court. If they have not given you the chance to negotiate payments at all, or have refused offers that you think are reasonable, or if you have a complaint with them that has not been dealt with, you should raise this in section 27 of the N11M. The court might agree to rearrange (known as adjourning) the hearing for the lender to engage with you. Likewise, if you have made an application for support for mortgage interest and can prove this, alongside showing you can make the payments to cover anything SMI does not cover, you should raise this. The lender may have been wrong to have started the claim and the court might adjourn it.
-
-If you do not think you can pay your arrears back within the term of your agreement, or you cannot afford to pay the monthly contractual payments, it is more likely the court will agree to repossession. You might be able to apply for something called a time order in these circumstances, to ask the court to extend the period you pay back for, or to lower the interest rate to make payments affordable. You should get advice on this first though. With a time order the court can also consider more circumstances than just whether you can afford a particular amount, for example, whether an illness has caused the arrears or if a lender has behaved unfairly towards you by adding lots of charges or refusing offers that would have controlled the arrears earlier. They will decide what is ‘just’ in all of the circumstances although that might still mean giving possession to the lender.
-
-If you have already been to court and you are referring to the date that you are to be evicted, the situation is more urgent. If this is the date the court gave at the possession hearing, you do not have to leave on that day. If you do not leave, the lender will apply to court for a warrant to use bailiffs to forcibly evict you at a later date. You should get legal advice if possible, certainly if you qualify for legal aid (link). As you have nowhere to go, you could consider:
-
-● Applying on form N244 to suspend the possession date, or thee actual eviction, but you will have to show that you can make payments towards the arrears and maintain the contractual monthly payments (£14 unless you get fee remission - link)
-● Apply on form N244 (£14 unless fee remission - link) and seek a time order if you are unable to make an offer that will cover the arrears and monthly payment, or need interest to be reduced, or the term of the agreement extending to make things affordable
-● If the home is simply unaffordable, negotiate with the lender for more time maybe to sell, or see if they will help you sell it in a controlled way
-● You should only hand the keys back to the lender as a last resort as you will still be liable for the mortgage, insurances and bills
-
-On the day of any eviction, the bailiffs that the court will use, are allowed to use reasonable force and are likely to change the locks on your door. They should give you time to remove your goods and you should act quickly as soon as you get any notice of an eviction date.
-
-If your home is repossessed and sold at auction you are likely to get much less for it. It might not even cover the mortgage debt(s) and your lender will be able to chase you for the remainder of the debt.
-
-Finally, you might be able to get something called a ‘breathing space.’ This is free but you need to apply with the help of a debt adviser who will assess whether you are eligible and whether it is appropriate. You can find out more about Breathing Space here (link). Importantly:
-
-● breathing space will stop and enforcement of your mortgage for 60 days
-● if you have a hearing listed, that can still go ahead and a court might still grant possession, but it cannot be enforced for 60 days
-● if you are due to be evicted by bailiffs, this will also be paused for 60 days
-
-If you are receiving mental health crisis treatment you might be able to get a breathing space that lasts as long as your treatment, plus 30 days. Again a debt adviser will discuss this with you.
-
-The breathing space protections apply the day after application is submitted. Therefore, you will not be protected from eviction if you apply on the same day as your eviction unless the lender agrees to call off the bailiff.
-
-Employment: If you have been employed less than 2 years your employer can dismiss you for any reason - whether it’s fair or not. If you have more than 2 years service your employer can only dismiss you if it’s fair to do so - an employment tribunal would have to decide whether it was fair if you made a complaint to them. It might be fair if it was important for your work that you have no county court judgments against you, for example if you are responsible for finance or money at work. Get advice about whether it would be fair in your own case.
-
-Housing: If you are homeless or threatened with homelessness within 56 days then you can make a homelessness application to your Local Authority. It depends where you are in the process - a notice has been served or a possession order/warrant of eviction has been obtained to determine whether you will be accepted as homeless or threatened with homelessness.
-
-You can in theory make a homelessness application to any Local Authority however the Local Authority will consider whether you have a local connection to the area (you have lived in the area 6/12 months or 3 ⁄ 5 years, employment, family associations etc) when considering what further duties they owe you.
-
-The distinction between the both is that with “threatened with homelessness” the Local Authority would try and keep you in the property by preventing homelessness. This will depend on the amount of arrears and will usually include a referral for debt advice and following the advice the debt team have given above. With “homelessness” they will look to assist you to secure accommodation.
-
-If it is clear that homelessness cannot be prevented, then a homelessness application should be accepted. In order to carry out enquiries, the Local Authority must have reason to believe you may be homeless and may be eligible (this is purposely a lower threshold). Eligibility is ascertaining if someone has a recourse to public funds.
-
-You should be placed on a “relief duty” which is time limited for 56 days. The Local Authority should complete a housing needs assessment and personalised housing plan. If the client falls into a priority need category (has dependent children, vulnerable as a result of some special reason etc) they will be provided interim accommodation. If they do not fall into a priority need category, they will not be offered accommodation during the 56 relief duty period.
-
-As the end of the relief duty 56 day period approached, the Local Authority must satisfy themselves that the applicant is:-
-
-● Eligible
-● Homeless
-● In priority need
-● Has a local connection
-● Is unintentionally homeless
-
-For them to proceed to “main duty.”
-
-Main duty is not time limited and the burden is on the Local Authority to find you a permanent offer of accommodation. You will remain in interim accommodation and the Local Authority will need to find you a suitable offer of social or private rented accommodation.
-
-When considering “intentionality” the Local Authority Homelessness Officer must consider whether the mortgage arrears were a “deliberate act or omission.” Factors that can be used to argue an act was not deliberate would be unaffordability, increase in interest rates etc.
-
-If you are deemed to be intentionally homeless then you would not proceed to a main duty and the Local Authority would have little to no obligation to find you accommodation. If you are in priority need and are in interim accommodation, they will give you “reasonable time” to vacate which could be days or weeks. There are different rules for when someone is still owed a housing duty where they have been found intentionally homeless.
-
-You can also at the same time make a housing allocations application, either in tandem with the homelessness application or standalone. Some allocation policies exclude homeowners or give them very little priority however if the house is repossessed you may not have these barriers.
-
-You may look at finding suitable private rented accommodation. Most letting agents carry out credit checks and therefore it may be difficult to obtain private rented accommodation.
------
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to debt is also likely to be advised on benefits and tax
-credits, utilities, communications and energy supplier issues, charitable support (such as grants) and
-food banks. You must think step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/education.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/education.py
deleted file mode 100644
index 51ec3e9..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/education.py
+++ /dev/null
@@ -1,9 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to education is also likely to be advised on
-benefits and tax credits, universal credit, charitable support (such as grants) and food banks,
-debt and utilities, communications and energy supplier issues as we all debt. You must think
-step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/employment.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/employment.py
deleted file mode 100644
index 9e1e7d4..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/employment.py
+++ /dev/null
@@ -1,56 +0,0 @@
-PROMPT = """
-For example, if the question is "I am about to return to work after maternity leave, but I
-can’t continue working evenings and weekends because of childcare issues. My employer has
-rejected my flexible working request on the basis that all staff have to work evenings and
-weekends. Is this fair and what are my rights in this situation?" you could respond with:
------
-You are entitled to make a flexible working request to your employer to vary your terms and
-conditions of employment to suit your needs. Your employer must follow a fair process and
-can only refuse your request on certain grounds. You have the right to appeal against this decision.
-
-If your employer turned down your flexible working request on the basis that the same workplace
-rules apply to everyone regardless of their circumstances, you might be able to show this is
-discriminatory because the rule about working evenings and weekends has a bigger impact on you
-because you have childcare or caring responsibilities.
------
-Another example is: "I’ve been dismissed for redundancy after 22 years of employment. How much redundancy pay am I entitled to receive from my employer? Am I entitled to any other payments? I am 64 years old on the date of dismissal and my average weekly earning were £650" you could respond with:
------
-You are entitled to £19,290 statutory redundancy pay as a minimum amount, your contract of employment may say that you are entitled to more.
-
-You can check this using the Gov.uk Redundancy Pay calculator and by asking your employer if you are entitled to contractual redundancy pay.
-
-You are also entitled to be paid wages up to the date of dismissal and any accrued but untaken holiday pay. You are entitled to receive 12 weeks notice, which the employer can either make you work or make a payment in lieu of notice - there may be other contractual payments due on dismissal, depending on the terms and conditions of employment.
-----
-Another example is: "My client is abMy client is about to return to work after maternity leave, but she can’t continue working evenings and weekends because of childcare issues. Her employer has rejected her flexible working request on the basis that all staff have to work evenings and weekends. Is this fair and what are my client’s rights in this situation?" you could respond with:
------
-You are entitled to make a flexible working request to your employer to vary your terms and conditions of employment to suit your needs. Your employer must follow a fair process and can only refuse your request on certain grounds. You have the right to appeal against this decision.
-
-If your employer turned down your flexible working request on the basis that the same workplace rules apply to everyone regardless of their circumstances, you might be able to show this is discriminatory because the rule about working evenings and weekends has a bigger impact on you because you have childcare or caring responsibilities.
-
-If your employer refuses your flexible working request
------
-Another example is: "My client’s employer has refused to allow her to take paid time off on holiday and isn’t paying her correctly for all of the hours that she works. I want to know more about her employment rights and options in this situation. Does the fact that she is employed on a Health and Social Care Visa make any difference to your advice?" you could respond with:
------
-You are entitled to be paid correctly for all hours worked in accordance with your contract of employment. Failure to do so can be treated as a breach of contract or an unauthorised deductions from wages. It can also be a breach of the National Minimum Wage rules if your pay is below the minimum rate the law says you should be paid for your age group.
-
-You are also entitled to be paid at your normal rate of pay when you take holiday. The amount of paid holiday you are entitled to is a minimum of 28 days each year. In your first year of employment, your employer only has to pay you for as many days you have built up when you take your holiday.
-
-If your employer hasn’t paid you correctly for wages or holiday pay, you should speak to them about it. If this doesn’t work, you should make a formal complaint, known as a grievance. If you are still not satisfied, you can make a claim to an employment tribunal, but you must take action within 3 months of the last date that you were not paid correctly.
-
-If your complaint is about the National Minimum Wage, you can make a complaint to the Government’s National Minimum Wage Enforcement team.
-
-You can read more about what to do If your employer hasn’t paid you what they owe you
-
-Because you are on a Health and Social Care Visa, your right to work and live in the UK is linked to your sponsor employer. Sometimes complaints about employment rights can lead to problems with your employer, possibly causing the withdrawal of your Visa.
-
-You should speak to a Citizens Advice adviser about your situation before you decide to take action about your problems with wages.
------
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. These themes could be
-discrimation, dismissal, dispute resolution, employment tribunals and appeals. It's important to
-understand that a client seeking advice related to employment are also likely to be advised on
-benefits and tax credits, universal credit, debt, charitable support (such as grants) and food banks
-as well as financial services and capability. You must think step-by-step about the question
-identifying any evidence of these present in the query and formulate your response to the advisor
-accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/financial_services_and_capability.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/financial_services_and_capability.py
deleted file mode 100644
index 4199add..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/financial_services_and_capability.py
+++ /dev/null
@@ -1,8 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to financial services and capability is also
-likely to be advised on benefits and tax credits, debt, utilities, communications and energy
-supplier issues. You must think step-by-step about the question identifying any evidence
-of these present in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/gva_and_hate_crime.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/gva_and_hate_crime.py
deleted file mode 100644
index 8e15d3c..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/gva_and_hate_crime.py
+++ /dev/null
@@ -1,8 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to gender based violence and hate crimes is
-also likely to be advised on relationships and family, benefits and tax credits, housing, legal
-and universal credit. You must think step-by-step about the question identifying any evidence
-of these present in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/health_and_community_care.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/health_and_community_care.py
deleted file mode 100644
index fa96225..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/health_and_community_care.py
+++ /dev/null
@@ -1,8 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to health and community care are also likely
-to recieve advice on benefits and tax credits, universal credit, charitable support (such as
-grants), housing and debt. You must think step-by-step about the question identifying any
-evidence of these present in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/housing.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/housing.py
deleted file mode 100644
index 9ac9be5..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/housing.py
+++ /dev/null
@@ -1,37 +0,0 @@
-PROMPT = """
-For example, if the question is "I am a part time cleaner. I rent my house in Birmingham from my
-employer. He and his wife own the house but they are going through a divorce. My contract is for a
-fixed term of five years and ends on 06/06/2024. There isn’t a break clause but I really want to
-leave now if I find suitable accommodation. My employer has said that I can stay until the end of the
-fixed term but that I might need to leave earlier if he needs to sell the house as part of the divorce.
-Can I leave without a financial penalty?" you could respond with:
------
-Is the client a service occupier? Probably not as it is not necessary to live in accommodation for
-better performance of her duties.
-
-What is the client's security of tenure? She is an assured shorthold tenant.
-
-How can the tenancy be lawfully ended?
-Surrender: requires agreement of all the parties including the employer's wife.
-Client’s NTQ: not possible at the moment as there is no break clause. It can be used once the fixed
-term expires.
-Client can leave on the last day of the fixed term.
-Section 21 notice can only be used by LL on expiry of the fixed term.
-
-Tactics: It might be in her best interests to stay in the house as she might not be able to find
-alternative accommodation.
-----
-Another example is: "I am a single mother with two children ages 11 and 14. I made a homelessness application to Dacorum Borough Council as I was evicted from my private rental property due to rent arrears. I have been talking to friends that say I could be found intentionally homeless because of the rent arrears. Is this right?" you could respond with:
------
-The client could be intentionally homeless if the rent arrears were due to a deliberate act or omission. Look at whether the rent was affordable. Even if it was affordable, look at whether the client was on benefits and these hadn’t yet been paid which lead to the arrears.
-
-Also check to see if accommodation was reasonable for her to continue to occupy. For example, if she was at risk of domestic abuse in the accommodation, she wouldn’t be intentionally homeless even if the rent arrears were her fault.
------
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to housing are also likely to be advised on
-benefits and tax credits, universal credit, debt, charitable support (such as grants) and
-food banks as well as utilities, communications and energy supplier issues. You must think
-step-by-step about the question identifying any evidence of these present in the query and
-formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/immigration_and_asylum.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/immigration_and_asylum.py
deleted file mode 100644
index 2a39c31..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/immigration_and_asylum.py
+++ /dev/null
@@ -1,36 +0,0 @@
-PROMPT = """
-For example, if the question is "Ive had pre-settled status for 5 years in January next year.
-I want to know what I do next. Ive lived in the UK since 2018." you could respond with:
------
-You may apply for EU Settled status after you have had 5 years continuous residence in the UK.
-Residence is broken if you have spent 6 months or more outside the UK in any 12 month period.
-You are allowed a longer absence for important reasons such as COVID, pregnancy or military service.
-You should take advice if you have had longer absences to see if an exception applies.
-
-As you have already spent 5 years in the UK you can apply immediately. You should ensure that you
-apply before your pre-settled status expires. The Home Office will automatically extend your pre-settled
-status for 2 years in the month before it expires if you have not yet got settled status, whether you
-have applied or not.
-
-You can apply online. You will need to scan your passport using the 'EU Exit: ID Document Check'
-app using an Android phone, or an iPhone 7 or above. Automatic checks of HMRC and DWP records may
-confirm your residence. If not you will need to upload other documents. There is no fee for the
-application.
-
-EU Settled status entitles you to stay in the UK indefinitely, and you can be absent for up to 5
-years without losing it. You will be entitled to claim most benefits on the same basis as a British
-citizen and without having to prove you have an EU right to reside. Youll usually be able to apply for
-citizenship 12 months after youve got settled status.
-----
-Another example is: "I’m Nigerian and have pre-settled status, which is my only type of leave to remain. Can I claim Universal Credit, and will it affect my immigration status? " you could respond with:
------
-● Pre-settled status is not a qualifying right to reside for UC. To get UC, you will need to have a qualifying right to reside. For example, you might be the family member of an EEA national who has a qualifying right to reside, in which case you will also have a qualifying right to reside and be able to get UC.
-● Pre-settled status does not come with any restrictions on claiming public funds. You should however get immigration advice if you are not sure whether a benefit claim will affect your immigration status.
------
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to immigration and asylum are also likely to
-be advised on benefits and tax credits, universal credit, charitable support and food banks as well
-as housing. You must think step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/legal.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/legal.py
deleted file mode 100644
index 160b7e2..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/legal.py
+++ /dev/null
@@ -1,8 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to legal issues are also likely to be advised
-on benefits and tax credits, relationships and family, housing, debt and universal credit. You must think
-step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/relationships_and_family.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/relationships_and_family.py
deleted file mode 100644
index 252987b..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/relationships_and_family.py
+++ /dev/null
@@ -1,98 +0,0 @@
-PROMPT = """
-For example, if the question is "My husband has hurt me. What can I do? I am very
-worried about what might happen if he knows I have sought advice, or if I have to go to court."
-you could respond with:
------
-Explain that domestic abuse is not just physical but can also include controlling, threatening
-and coercive behaviour
-Explain that at any time if she feels in immediate danger she must call the police.
-Establish whether she wishes to remain in the home or move elsewhere with the children - given
-the house is owned it may be tactically better to remain if divorce proceedings are to follow but
-there may be financial considerations - assuming she wants to stay
-It would be possible to apply for a non molestation order and occupation order - explanation of what
-these orders are, how she is eligible (ie the law Pt IV FLA 1996) and how they operate, no fees etc
-Advise that an ex parte order would be appropriate if she is concerned as to his reaction and how that
-works ie without notice to him
-Advise that as there is domestic abuse, she may be eligible for legal aid subject to means and merits.
-Explain that legal aid may have to be paid back later via the statutory charge.
-To apply for a non mol / occ order either refer to Resolution to find a local lawyer (legal aid if eligible)
-or can apply via CourtNav on GOV or make an application herself on FL401 etc. Given there are likely
-to be wider issues eg divorce, children finances etc explain legal advice would be best if possible.
-Explain about going to court - the special measures that can be put in place and the ban on cross
-examination in person and possible IDVA support
-Signpost local support service for DA or orgs via CA page.
-Regarding the risk to the children, advise on possible S.8 Children Act 1989 proceedings (child
-arrangements orders) . Explain the welfare principle and checklist. Explain the no order principle.
-Advise on prohibited steps application to prevent possible removal. Advise re potential eligibility
-for legal aid as a result of DA evidence via GP subject to means /merits. Advise seeking further legal
-advice recommended. Explain the relevance of the children’s ages in ascertaining their wishes. Advise
-on the role of Cafcass . Explain court procedure and the possibility of a fact finding hearing in view
-of the DA allegations. Explain mediation MIAM required before Children applications but potentially be
-exempt given the DA allegations
-----
-Another example is: "I’ve escaped a physically abusive partner but they’ve left me with loads of debt. I’m scared they’ll come after me if I don’t pay so how can I protect myself?" you could respond with:
------
-I’ve escaped a physically abusive partner but they’ve left me with loads of debt. I’m scared they’ll come after me if I don’t pay so how can I protect myself?
-
-Debt answer: Firstly, you’re only responsible for a debt legally if your name is either on the contract, or you’re liable for a bill in law, for instance because you live at a property and have to pay council tax.
-
-The debts you might still be responsible for in law could be (these are examples, there may be others):
-● Loans or overdrafts in joint names
-● Any contract in your name
-● Council tax because you are one of the people liable at the time of the bill (find out who is liable for council tax - link)
-● Water as you were living at the property at the time
-● Gas and electricity as you either had your name on the contract, or you never changed the contract after moving in to a property
-
-Where there is joint liability, both you and your ex-partner are liable to pay. The creditor (the company or organisation you owe money to) can ask both of you to pay at the same time. They cannot collect twice the amount of debt, but do not have to split the debt 50/50%.
-
-Debts you are not legally liable to pay (these are examples, there maybe others):
-● Debts that were take in your name, fraudulently using your ID
-● Debt in your name but where you were forced to borrow under the threat of violence or emotional pressure
-● Bills where you were not the liable person such as gas or electricity when only your ex-partner was named on the bill
-● Council tax where your ex-partner lived with you and had a greater legal interest in the house, for instance they owned the house in their name, or they were your landlord, or a tenant but sublet to you
-
-You should get debt advice to look at all of your debts to see what you are legally liable for. In any case, where you feel able to, or with help, you can approach creditors to explain the situation. Any creditor that provided a loan that was fraudulently borrowed will investigate the fraud. They may need to get a police crime reference number although that is not essential.
-
-If you want to challenge a debt because you were put under pressure, you should get advice on this. You should get legal advice if you are able to but might have to pay for this. Usually, you will need evidence to say what happened, and show that you did not gain anything from the borrowing at all. This can be quite complicated, but each creditor should consider the complaint in full and sensitively. If the creditor has an ombudsman you can then refer the complaint to the ombudsman, for instance the Financial Ombudsman Service (FOS) for loans and other credit. You can see how to complain to an ombudsman here (link). They are all free services.
-
-Your creditors cannot give out your current address as this would break data protection law. If you feel able to, you should tell your creditors to only write to you at your new address or to write to a safe PO Box (you can find out how to open a safe mailbox or how to redirect post - link).
-
-Your bank will also have processes to help you open a new account or stop access to your account for your abuser. They can also de-link you from an account if you prefer, and remove an abuser as a named card holder on any credit cards. Surviving Economic Abuse has some great advice on their site (link).
-
-It is understandable that you might pay the debts that you are not responsible for, where you are really scared for your safety. If you did decide not to challenge any debts that you are not liable for, a debt adviser can look at your options. With some options, like bankruptcy, Debt Relief Orders and IVAs, your name is usually put on a public register along with your address. However, you can apply to court for a Person at Risk of Violence order (PARV) where there is a risk to the safety of you or your family. This is a court order that makes sure your details are not added to the register, or any court files. You do have to apply to court, and there is a fee (fee remission - link). You have to give a witness statement and only the court decides whether to give the order.
-
-You should also contact the credit reference agencies (CRAs) - these are Experian, Transunion and Equifax. You should add a notice of correction to your reports to say you no longer have any financial association with your ex-partner, and that you are an abuse survivor. Your ex-partner cannot access your credit reports. If you are worried about ongoing fraud, you could also pay to join CIFAS’ protective registration service (link). This is an extra service that credit lenders and banks will check before lending money. They will carry out additional checks to ensure the person applying for credit is who they say they are. It may slow down your own credit applications, but it will not affect your credit score, or day to day spending on cards.
-
-Finally, even if you feel you are liable for some debts, telling creditors about your situation might help, if you feel able. All types of creditors have rules and policies about how they collect debts, and most will have policies about how they treat people in vulnerable circumstances. For example, all banks and loan companies must have policies in place. Councils will have their own guidance on council tax collection that might say, for example, never to use bailiffs to collect from a person who has escaped domestic violence.
-
-You can get debt advice from (link). In addition Money Advice Plus is an organisation that has a specialist advice service for survivors of domestic abuse (link).
-
-Family Answer:
-Further information would be needed to establish whether the parties have been married - if so and divorce proceedings are to follow there are separate applications that can be made for financial provision . Whilst the family court cannot change who has responsibility for the debts (see debt answer) they can make property adjustment, capital lump sum payment orders and periodical payment orders which might assist with debt repayments if appropriate.
-
-Assuming the partners are unmarried.
-
-The answer needs to include the following:
-● Physical abuse can be reported to the police - if in immediate danger call 999
-● Economic abuse, as well as the physical abuse, now also comes within the definition of ‘Domestic Abuse’ following the Domestic abuse Act 2021 s1(4) “Economic abuse” means any behaviour that has a substantial adverse effect on B’s ability to—
-(a) acquire, use or maintain money or other property, or
-(b) obtain goods or services
-So if pressure was exerted to take out the debt or in terms of ongoing payment this may fall under the definition, also if the ex partner continues to run up debt in the client's name.
-● Economic abuse is not a criminal offence in itself but the behaviour of pressuring into debt, forcing repayment, or causing ongoing debt could be considered Coercive Control which is a criminal offence (explanation of requirements - personally connected/serious effect on you/abuser knew or ought to have known of effect)
-● If no longer living together (or were not living together at all) the behaviour would have to have happened since the 5 April 2023 or whilst they were living together to amount to a criminal offence but other remedies are still available
-● Therefore the coercive control could potentially be reported to the police alongside the physical abuse.
-● Protection can also be sought from the family courts - It would be possible to apply for a non molestation order - explanation expected of what these orders are, how she is eligible (ie the law Pt IV FLA 1996) and how they operate, no fees etc
-● Advise that an ex parte order (without notice to the abuser) would be appropriate if she is concerned that she is in immediate danger and needs urgent protection
-● Advise that as there is domestic abuse, she may be eligible for legal aid subject to means and merits . Explain that legal aid may have to be paid back later via the statutory charge.
-● To apply for a non mol order either refer to Resolution to find a local lawyer (legal aid if eligible) or can apply via CourtNav on GOV or make an application herself on FL401 etc (forms on GOV.UK). Explain legal advice would be best if possible.
-● As she has escaped her partner and scared he will come after her she needs to make sure her address is not included on the application or witness statements - she can complete Form C8 to apply separately to the court for her address to be withheld
-● Explain about going to court - the special measures that can be put in place and the ban on cross examination in person and possible IDVA support
-● Signpost local support services for DA or orgs via CA page or other appropriate signposting
------
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to relationships and family are also likely to be
-advised on benefits and tax credits, legal issues, universal credit, housing and debt. You must think
-step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/tax.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/tax.py
deleted file mode 100644
index 0879a7a..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/tax.py
+++ /dev/null
@@ -1,9 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to tax are also likely to be advised on benefits
-and tax credits, debt, universal credit, financial services and capability as well as utilities,
-communications and energy suppliers. You must think
-step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/travel_and_transport.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/travel_and_transport.py
deleted file mode 100644
index 2452a0e..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/travel_and_transport.py
+++ /dev/null
@@ -1,9 +0,0 @@
-PROMPT = """
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to travel and transport are also likely to
-be advised on benefits and tax credits, charitable support (such as grants) and food banks,
-universal credit, debt and utilities, communications and energy supplier issues. You must think
-step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/utilities_and_communications.py b/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/utilities_and_communications.py
deleted file mode 100644
index d7057d5..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/advice_area/utilities_and_communications.py
+++ /dev/null
@@ -1,71 +0,0 @@
-PROMPT = """
-For example, if the question is "My energy bill is much higher than I thought it should be.
-Is my meter faulty?" you could respond with:
------
-You shouldn't assume that there is a fault with the meter, because your bill is higher than expected.
-Meter faults happen, but they are very rare. It’s a good idea to check first if there are other reasons
-that may explain the increase.
-
-The first thing you’ll need to check is if your bill is accurate. You should check whether your bill is
-the bill estimated. It will have an E next to the reading in your bill if it is. If your bill closes on
-an estimate, it may be that it has been overestimated. Even if you’ve got a smart meter, it’s a good idea
-to check - your smart meter might not have been sending meter readings to the supplier.
-
-You should also check whether you are billed for the right meter. If you’ve switched suppliers, compare
-the meter reference number from their old supplier’s bill to their new supplier’s bill. Otherwise you’ll
-need to find the meter reference number on your network operator’s website and compare it.
-
-It’s also a good idea to compare the meter reading on the meter to the one you’ve got on the bill. If it’s
-similar, then you are probably billed for the correct usage. Check this on the meter and not your In Home
-Display. You can compare this with other bills and see whether your usage has gone up considerably. There
-might be reasons for this, like someone has started working from home, cold weather or a new appliance.
-
-If it isn’t usage and the bill is accurate you’ll need to look at whether there are any reasons for the
-ost going up. It might be that a fixed tariff has come to an end and your unit rates or daily charges
-(standing charges) have increased.
-
-If you can’t find any other reason for the increase in cost, then your meter might be faulty. This is
-very rare, but it can happen. To check whether it may be faulty you can start by switching off all
-electrical appliances in the home at the consumer unit and switch off power to the boiler. You should
-check if the numbers on the meter's display are still moving - if they are, the meter might be faulty.
-If your gas meter is still moving there could be a gas leak you should call the National Gas Emergencies
-number on 0800 111 999 from outside of the property.
-If you think your meter is faulty, complain to your supplier. They should investigate it within 5 working
-days and tell you what action they’ll take. If they take the meter out to be tested they might charge you.
-If your meter is found to be faulty they’ll refund you. You should ask your supplier about any costs
-that may be involved in getting the meter tested.
-
-Follow up questions
-Do they have a two rate meter? If so, do they know how to read the meter
-Are they able to afford to make the payments? If not, they may need a repayment plan or debt advice
-Is your supplier asking for any payments that are from more than 12 months ago?
-----
-Another example is: "I’m thinking about getting some energy efficiency measures installed privately. What do I need to think about before going ahead with any work?" you could respond with:
------
-Energy efficiency answer
-One of the first things to think about is your budget. You also need to consider which measures are suitable for your home and if you’re thinking about more than one measure, what’s best to do first.
-
-Your home’s Energy Performance Certificate (EPC) should tell you where your home’s energy efficiency needs improving and the approximate cost. You can work out the ‘payback period’ by dividing the cost of the work by the yearly saving in your energy bills. If you own your home, you can get recommendations for improvements you can make to your home on GOV.UK.
-Check if your mortgage provider offers any mortgage products linked to making energy efficiency improvements to your home.
-If you live in an older home, there are some extra things you might need to think about before making changes to your home. Find out more about energy efficiency and older houses on the Historic England website.
-If you’re a leaseholder, you might need to get permission from the owner of the freehold before you make any improvements. You can find out about making changes to your leasehold property on the Leasehold Advisory Service website.
-Contact your local council to check if there are support schemes or energy advice agencies in your area that can help. Find your local council's contact details on GOV.UK.
-You can also:
-● get advice on the Energy Saving Trust website
-● get advice on the Centre for Sustainable Energy website
-Consumer answer
-It’s important to use a reputable installer so you can trust them and to help protect you if anything goes wrong. The Microgeneration Certification (MCS) scheme is a quality mark for low carbon heating (for example, heat pumps) and renewable energy generation (for example, solar panels). Using an MCS certified installer ensures that equipment meets good standards of performance and that installers are technically safe and competent. You can find an MCS certified installer by using their ‘find an installer’ search.
-
-TrustMark is the government approved quality scheme. You can find a TrustMark installer by using their ‘find a business’ search.
-
-Both MCS and TrustMark have dispute resolution processes which can help if anything does go wrong.
-
-If you’re paying for the work yourself, think about how you pay for it. It’s worth using a credit card so you can benefit from what’s called s75 protection if something does go wrong. This means your card provider is jointly responsible - with the installer - for resolving the problem. You can read more about this on Citizens Advice website Getting your money back if you paid by card or Paypal.
------
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be
-cross-cutting - this means that the question will have multiple themes. It's important to
-understand that a client seeking advice related to utilities and communications, benefits and tax
-credits, debt, charitable support (such as grants) and food banks as well as consumer goods
-and services. You must think step-by-step about the question identifying any evidence of these present
-in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/default_template.py b/caddy_chatbot/src/caddy_core/utils/prompts/default_template.py
deleted file mode 100644
index f28ad3d..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/default_template.py
+++ /dev/null
@@ -1,68 +0,0 @@
-CADDY_PROMPT_TEMPLATE = """
-You are a friendly and helpful AI assistant at Citizens Advice, a charity in the United Kingdom that gives advice to citizens. \
-Advisors at Citizens Advice need to help citizens of the United Kingdom who come to Citizens Advice with a broad range of issues. \
-Your role as an AI assistant is to help the advisors with answering the questions that are given to them by citizens. You are not a replacement for adviser judgement \
-but you can help advisers make more informed decisions. You are truthful and create action points for the advisor from a range of sources where you provide specific details \
-from its context. If you don't know the answer to a question, truthfully says that you don't know, rather than making up an answer.
-
-Use the coverage area information to provide geographically relevant advice for the adviser that you are providing guidance to, as well as utilising the current date to inform the adviser when infomation may be out of date
-or would mean that a service or programme is not available at this time.
-
-This adviser has clients in this coverage area: {office_regions}
-Current day of the week, date and time is: {day_date_time}
-
-You MUST provide inline citations to relevant content used from the documents by using SOURCE_URL in place of x for [x] \
-For example [https://www.gov.uk/disability-benefits-helpline]
-Utilise the content inbetween the tags to provide these citations in your answer:
-
-{context}
-
-Based on the above information provided in the documents, provide a concise answer with citations for the advisers question. Make sure to include reference to any location names \
-stated in the question, and make sure your answer is relevant to the laws and rules of the location specified in the question. Using the current date \
-to ensure that any deadlines have not already passed.
-
-You are delivering your response to the adviser. \
-If the question discusses 'my client', your answer should refer to 'your client'. \
-You can refer to the documents as 'information available' \
-
-If more information is needed to definitively answer the question, number a step by step set of questions that the adviser should ask the client to find out this missing information. \
-And use language like 'could be' instead if 'is' - in the list of questions, use simple language. Under each numbered question, identidy the possible answers and explain what the \
-the advisor needs to do depending on the answer. It's important for consistency that you ALWAYS follow this format.
-
-Take particular note of the advice issue specific guidance in the tags below:
-
-{route_specific_augmentation}
-
-
-YOU MUST ANSWER THE QUESTION FIRST AS BEST AS YOU CAN, CITING THE REFERENCES USED, BEFORE SUGGESTING QUESTIONS TO ASK THE CLIENT.
-
-In your answer, use bold and HTML formatting to highlight the most question-relevant parts in your response.
-
-Provide a Brief Summary response at the top with a clear one line response to the question. Enclosed \
-in tags. Example Brief Summary:Client is not eligible for UC
-
-Adviser: {input}
-Assistant:"""
-
-
-CADDY_FALLBACK_EXAMPLE = """For example, if the question is "My client has moved into a leasehold flat and has to pay service charges of £40 per week. They receive Universal Credit, can they get help to pay \
-the charges?" you could respond with:
------
-Your client has moved into a leasehold flat and has to pay service charges of £40 per week. As they receive Universal Credit, they may be able to get help with paying the \
-service charges.
-
-To determine if your client can get help, you need to find out:
-
- - If your client bought the property under the Right to Buy scheme. If so, they may have the right to a loan to help pay the repairs element of the service charge. They would \
-need to claim this within 6 weeks of receiving the service charge demand.
- - If your client's landlord is a local authority, registered social landlord or private registered provider of social housing. If so, the landlord may be able to assist your client by purchasing a share in the leasehold flat. This would reduce or cancel the service charge. Your client can contact their landlord for more information.
- - If your client is having trouble paying the service charges, they could speak to their work coach about getting a Universal Credit budgeting advance. This is an interest-free loan that helps cover emergency household costs.
- - If the service charges put your client into debt or rent arrears, they may be able to get help from the council. The council might give extra money if the Universal Credit housing element does not cover all housing costs.
-
- So in summary, there are several options your client could explore to get assistance with paying service charges, including loans, their landlord purchasing a share in the property, extra money from the council, or Universal Credit budgeting advances. Let me know if you need any clarification or have additional questions.
-----
-NOTE: Advisors will ask you to provide advice on a citizen's question which can often be cross-cutting - this means that the question will have multiple themes. \
-It's important to understand that an issue related to a disabled person falling behind on their energy bills relates to \
-energy, debt, benefits as well as disability-based discrimination. You must think step-by-step about the question to indetify \
-the these present in the query and formulate your response to the advisor accordingly
-"""
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/issues_map.py b/caddy_chatbot/src/caddy_core/utils/prompts/issues_map.py
deleted file mode 100644
index de2b3b1..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/issues_map.py
+++ /dev/null
@@ -1,37 +0,0 @@
-from caddy_core.utils.prompts.advice_area import (
- benefits_and_tax_credits,
- benefits_and_universal_credit,
- charitable_support_and_food_banks,
- consumer_goods_and_services,
- debt,
- education,
- employment,
- financial_services_and_capability,
- gva_and_hate_crime,
- health_and_community_care,
- housing,
- immigration_and_asylum,
- legal,
- relationships_and_family,
- tax,
- travel_and_transport,
- utilities_and_communications,
-)
-
-BENEFITS_AND_TAX_CREDITS = benefits_and_tax_credits.PROMPT
-BENEFITS_AND_UNIVERSAL_CREDIT = benefits_and_universal_credit.PROMPT
-CHARITABLE_SUPPORT_AND_FOOD_BANKS = charitable_support_and_food_banks.PROMPT
-CONSUMER_GOODS_AND_SERVICES = consumer_goods_and_services.PROMPT
-DEBT = debt.PROMPT
-EDUCATION = education.PROMPT
-EMPLOYMENT = employment.PROMPT
-FINANCIAL_SERVICES_AND_CAPABILITY = financial_services_and_capability.PROMPT
-GVA_AND_HATE_CRIME = gva_and_hate_crime.PROMPT
-HEALTH_AND_COMMUNITY_CARE = health_and_community_care.PROMPT
-HOUSING = housing.PROMPT
-IMMIGRATION_AND_ASYLUM = immigration_and_asylum.PROMPT
-LEGAL = legal.PROMPT
-RELATIONSHIPS_AND_FAMILY = relationships_and_family.PROMPT
-TAX = tax.PROMPT
-TRAVEL_AND_TRANSPORT = travel_and_transport.PROMPT
-UTILITIES_AND_COMMUNICATIONS = utilities_and_communications.PROMPT
diff --git a/caddy_chatbot/src/caddy_core/utils/prompts/prompt.py b/caddy_chatbot/src/caddy_core/utils/prompts/prompt.py
deleted file mode 100644
index b2acba6..0000000
--- a/caddy_chatbot/src/caddy_core/utils/prompts/prompt.py
+++ /dev/null
@@ -1,50 +0,0 @@
-from caddy_core.services.router import get_route
-from caddy_core.utils.prompts import issues_map
-
-from caddy_core.utils.prompts.default_template import (
- CADDY_FALLBACK_EXAMPLE,
-)
-
-
-def retrieve_route_specific_augmentation(query):
- route = get_route(query).name
-
- match route:
- case "benefits_and_tax_credits":
- route_specific_augmentation = issues_map.BENEFITS_AND_TAX_CREDITS
- case "benefits_and_universal_credit":
- route_specific_augmentation = issues_map.BENEFITS_AND_UNIVERSAL_CREDIT
- case "charitable_support_and_food_banks":
- route_specific_augmentation = issues_map.CHARITABLE_SUPPORT_AND_FOOD_BANKS
- case "consumer_goods_and_services":
- route_specific_augmentation = issues_map.CONSUMER_GOODS_AND_SERVICES
- case "debt":
- route_specific_augmentation = issues_map.DEBT
- case "education":
- route_specific_augmentation = issues_map.EDUCATION
- case "employment":
- route_specific_augmentation = issues_map.EMPLOYMENT
- case "financial_services_and_capability":
- route_specific_augmentation = issues_map.FINANCIAL_SERVICES_AND_CAPABILITY
- case "gva_and_hate_crime":
- route_specific_augmentation = issues_map.GVA_AND_HATE_CRIME
- case "health_and_community_care":
- route_specific_augmentation = issues_map.HEALTH_AND_COMMUNITY_CARE
- case "housing":
- route_specific_augmentation = issues_map.HOUSING
- case "immigration_and_asylum":
- route_specific_augmentation = issues_map.IMMIGRATION_AND_ASYLUM
- case "legal":
- route_specific_augmentation = issues_map.LEGAL
- case "relationships_and_family":
- route_specific_augmentation = issues_map.RELATIONSHIPS_AND_FAMILY
- case "tax":
- route_specific_augmentation = issues_map.TAX
- case "travel_and_transport":
- route_specific_augmentation = issues_map.TRAVEL_AND_TRANSPORT
- case "utilities_and_communications":
- route_specific_augmentation = issues_map.UTILITIES_AND_COMMUNICATIONS
- case _:
- route_specific_augmentation = CADDY_FALLBACK_EXAMPLE
-
- return route_specific_augmentation
diff --git a/caddy_chatbot/src/integrations/google_chat/responses.py b/caddy_chatbot/src/integrations/google_chat/responses.py
index cea1e99..123eaf4 100644
--- a/caddy_chatbot/src/integrations/google_chat/responses.py
+++ b/caddy_chatbot/src/integrations/google_chat/responses.py
@@ -393,7 +393,7 @@ def control_group_selection(control_group_message, caddy_message) -> dict:
"buttonList": {
"buttons": [
{
- "text": "Forward query to supervisor",
+ "text": "I still need help, forward query to supervisor, then complete survey",
"onClick": {
"action": {
"function": "handle_control_group_forward",
@@ -407,7 +407,7 @@ def control_group_selection(control_group_message, caddy_message) -> dict:
},
},
{
- "text": "Complete control survey",
+ "text": "I no longer need help. Complete survey",
"onClick": {
"action": {
"function": "control_group_survey",
diff --git a/caddy_chatbot/src/integrations/google_chat/structures.py b/caddy_chatbot/src/integrations/google_chat/structures.py
index 01c9775..2137c3c 100644
--- a/caddy_chatbot/src/integrations/google_chat/structures.py
+++ b/caddy_chatbot/src/integrations/google_chat/structures.py
@@ -523,6 +523,21 @@ def get_post_call_survey_card(
section = {"widgets": []}
button_section = {"buttonList": {"buttons": []}}
+ copy_button = {
+ "text": "Copy caddy message",
+ "onClick": {
+ "action": {
+ "function": "copy_caddy_response",
+ "parameters": [
+ {"key": "threadId", "value": thread_id},
+ {"key": "event", "value": event},
+ ],
+ }
+ },
+ }
+
+ button_section["buttonList"]["buttons"].append(copy_button)
+
i = 0
for question_dict in post_call_survey_questions:
i += 1
@@ -589,7 +604,9 @@ def create_card(self, llm_response) -> Dict:
reference_links_section = {"header": "Reference links", "widgets": []}
- urls = re.findall(r"[(http[s]?://[^>]+)]", llm_response)
+ urls = re.findall(
+ r"[(?:SOURCE_URL:)?(http[s]?://[^>]+)]", llm_response
+ )
processed_urls = []
ref = 0
@@ -606,9 +623,14 @@ def create_card(self, llm_response) -> Dict:
resource = "Citizens Advice"
ref = ref + 1
+
llm_response = llm_response.replace(
f"[{url}]", f'[{ref} - {resource}]'
)
+ llm_response = llm_response.replace(
+ f"[SOURCE_URL:{url}]",
+ f'[{ref} - {resource}]',
+ )
reference_link = {
"textParagraph": {
@@ -855,8 +877,8 @@ def create_approved_card(
Returns:
Supervisor approved card
"""
- card["cardsV2"][0]["card"]["sections"].append(
- self.responses.approval_json_widget(approver, supervisor_notes)
+ card["cardsV2"][0]["card"]["sections"].insert(
+ 0, self.responses.approval_json_widget(approver, supervisor_notes)
)
return card
@@ -920,7 +942,7 @@ def received_approval(self, event):
approved=True,
approval_timestamp=event["eventTime"],
user_response_timestamp=datetime.now(),
- supervisor_message=None,
+ supervisor_message=supervisor_notes,
)
return user_email, user_space, thread_id, approval_event
@@ -997,7 +1019,7 @@ def handle_supervisor_rejection(self, event) -> None:
supervisor_message=supervisor_message,
)
- caddy.store_approver_event(rejection_event)
+ caddy.store_approver_event(thread_id, rejection_event)
def create_updated_supervision_card(
self, supervision_card, approver, approved, supervisor_message
@@ -1214,7 +1236,7 @@ def handle_supervisor_approval(self, event):
thread_id,
approval_event,
) = self.received_approval(event)
- caddy.store_approver_event(approval_event)
+ caddy.store_approver_event(thread_id, approval_event)
def continue_existing_interaction(self, event):
"""
diff --git a/caddy_chatbot/src/integrations/microsoft_teams/__init__.py b/caddy_chatbot/src/integrations/microsoft_teams/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/caddy_chatbot/src/integrations/microsoft_teams/content.py b/caddy_chatbot/src/integrations/microsoft_teams/content.py
new file mode 100644
index 0000000..3cd31e0
--- /dev/null
+++ b/caddy_chatbot/src/integrations/microsoft_teams/content.py
@@ -0,0 +1,180 @@
+from typing import List, Dict
+import re
+
+CADDY_PROCESSING = [
+ {
+ "type": "Container",
+ "items": [
+ {
+ "type": "TextBlock",
+ "text": f"🦉 Processing request...",
+ "weight": "bolder",
+ "size": "medium",
+ },
+ ],
+ },
+]
+
+
+def create_pii_detected_card(query: str) -> List[Dict]:
+ """
+ Takes a message query and returns a PII Detected field with optional redaction input
+ """
+ PII_DETECTED = [
+ {
+ "type": "RichTextBlock",
+ "inlines": [
+ {
+ "type": "TextRun",
+ "text": "PII Detected",
+ "color": "attention",
+ "weight": "bolder",
+ },
+ {
+ "type": "TextRun",
+ "text": " Please ensure all queries to Caddy are anonymised.",
+ "italic": True,
+ },
+ ],
+ },
+ {
+ "type": "RichTextBlock",
+ "id": "buttonText",
+ "inlines": [
+ {
+ "type": "TextRun",
+ "text": "Choose whether to proceed anyway or edit your original query",
+ }
+ ],
+ },
+ {
+ "type": "ActionSet",
+ "id": "redactionButtons",
+ "actions": [
+ {
+ "type": "Action.Execute",
+ "title": "Proceed without redaction",
+ "verb": "proceed",
+ "data": {"action": "proceed"},
+ },
+ {
+ "type": "Action.ToggleVisibility",
+ "title": "Edit original query",
+ "targetElements": [
+ {"elementId": "queryText", "isVisible": True},
+ {"elementId": "redactedQuerySubmission", "isVisible": True},
+ {"elementId": "redactionButtons", "isVisible": False},
+ {"elementId": "buttonText", "isVisible": False},
+ ],
+ },
+ ],
+ },
+ {"type": "Input.Text", "id": "queryText", "isVisible": False, "value": query},
+ {
+ "type": "ActionSet",
+ "id": "redactedQuerySubmission",
+ "isVisible": False,
+ "actions": [
+ {
+ "type": "Action.Execute",
+ "title": "Submit Redaction",
+ "verb": "redacted_query",
+ "data": {"action": "redacted_query"},
+ },
+ ],
+ },
+ ]
+ return PII_DETECTED
+
+
+def create_redacted_card(event) -> List[Dict]:
+ """
+ Takes in a redaction event and created a redacted query card
+ """
+ redacted_query = event["value"]["action"]["data"]["queryText"]
+ REDACTED = [
+ {
+ "type": "RichTextBlock",
+ "inlines": [
+ {
+ "type": "TextRun",
+ "text": "Query redacted: ",
+ "color": "good",
+ "weight": "bolder",
+ },
+ {"type": "TextRun", "text": redacted_query, "italic": True},
+ ],
+ }
+ ]
+ return REDACTED
+
+
+def generate_response_card(llm_response):
+ """
+ Creates a Teams Adaptive card given a Caddy response
+ """
+ caddy_response = [
+ {"type": "TextBlock", "text": llm_response, "wrap": True},
+ {"type": "ActionSet", "id": "referenceLinks", "actions": []},
+ {
+ "type": "ActionSet",
+ "id": "approvalButtons",
+ "actions": [
+ {
+ "type": "Action.Execute",
+ "title": "👍",
+ "verb": "approved",
+ "data": {"action": "approved"},
+ },
+ {
+ "type": "Action.Execute",
+ "title": "👎",
+ "verb": "rejected",
+ "data": {"action": "rejected"},
+ },
+ ],
+ },
+ ]
+
+ pattern = r"[(?:SOURCE_URL:)?(http[s]?://[^>]+)]"
+
+ urls = re.findall(pattern, llm_response)
+
+ processed_urls = []
+ ref = 0
+
+ for i, url in enumerate(urls):
+ if url in processed_urls:
+ continue
+
+ if "gov.uk" in url:
+ resource = "GOV UK"
+ elif "citizensadvice.org.uk/advisernet" in url:
+ resource = "Advisernet"
+ elif "citizensadvice.org.uk" in url:
+ resource = "Citizens Advice"
+
+ ref = ref + 1
+ llm_response = llm_response.replace(
+ f"[{url}]", f"[{ref} - {resource}]({url})"
+ )
+ llm_response = llm_response.replace(
+ f"[SOURCE_URL:{url}]", f"[{ref} - {resource}]({url})"
+ )
+
+ reference_link = {
+ "type": "Action.OpenUrl",
+ "title": f"{ref} - {url}",
+ "url": url,
+ }
+ caddy_response[1]["actions"].append(reference_link)
+
+ processed_urls.append(url)
+
+ llm_response = llm_response.replace("", "**").replace("", "**")
+ llm_response = llm_response.replace('', "_").replace(
+ "", "_"
+ )
+ caddy_response[0]["text"] = llm_response
+
+ return caddy_response
diff --git a/caddy_chatbot/src/integrations/microsoft_teams/responses.py b/caddy_chatbot/src/integrations/microsoft_teams/responses.py
new file mode 100644
index 0000000..e26892d
--- /dev/null
+++ b/caddy_chatbot/src/integrations/microsoft_teams/responses.py
@@ -0,0 +1,7 @@
+from fastapi import status
+from fastapi.responses import JSONResponse, Response
+
+# --- Status Responses --- #
+NO_CONTENT = Response(status_code=status.HTTP_204_NO_CONTENT)
+ACCEPTED = Response(status_code=status.HTTP_202_ACCEPTED)
+OK = Response(status_code=status.HTTP_200_OK)
diff --git a/caddy_chatbot/src/integrations/microsoft_teams/structures.py b/caddy_chatbot/src/integrations/microsoft_teams/structures.py
new file mode 100644
index 0000000..66a6edb
--- /dev/null
+++ b/caddy_chatbot/src/integrations/microsoft_teams/structures.py
@@ -0,0 +1,213 @@
+from .verification import get_access_token
+from integrations.microsoft_teams import content, responses
+from caddy_core.services.anonymise import analyse
+
+import requests
+
+
+class MicrosoftTeams:
+ def __init__(self):
+ self.client = "Microsoft Teams"
+ self.access_token = get_access_token()
+ self.messages = content
+ self.responses = responses
+ self.reaction_actions = {
+ "like": self.handle_thumbs_up,
+ "dislike": self.handle_thumbs_down,
+ } # TODO check works in teams with the emojis
+
+ def send_adviser_card(self, event, card=None):
+ """
+ Takes an incoming request from Teams Chat and returns a given response card
+ """
+ if card is None:
+ card = self.messages.CADDY_PROCESSING
+
+ conversation_id = event["conversation"]["id"]
+ activity_id = event["id"]
+ service_url = event["serviceUrl"]
+
+ response_url = (
+ f"{service_url}/v3/conversations/{conversation_id}/activities/{activity_id}"
+ )
+
+ headers = {
+ "Authorization": f"Bearer {self.access_token}",
+ "Content-Type": "application/json",
+ }
+
+ response_activity = {
+ "type": "message",
+ "from": event["recipient"],
+ "conversation": event["conversation"],
+ "recipient": event["from"],
+ "replyToId": activity_id,
+ "attachments": [
+ {
+ "contentType": "application/vnd.microsoft.card.adaptive",
+ "content": {
+ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
+ "type": "AdaptiveCard",
+ "version": "1.0",
+ "body": card,
+ },
+ }
+ ],
+ }
+
+ response = requests.post(response_url, json=response_activity, headers=headers)
+
+ print(response.json())
+
+ def update_card(self, event, card=None):
+ """
+ Updates an existing teams message given a card and action event
+ """
+ if card is None:
+ card = self.messages.CADDY_PROCESSING
+
+ conversation_id = event["conversation"]["id"]
+ activity_id = event["id"]
+ service_url = event["serviceUrl"]
+ reply_to_id = event["replyToId"]
+
+ response_url = (
+ f"{service_url}/v3/conversations/{conversation_id}/activities/{reply_to_id}"
+ )
+
+ headers = {
+ "Authorization": f"Bearer {self.access_token}",
+ "Content-Type": "application/json",
+ }
+
+ response_activity = {
+ "type": "message",
+ "from": event["recipient"],
+ "conversation": event["conversation"],
+ "recipient": event["from"],
+ "replyToId": activity_id,
+ "attachments": [
+ {
+ "contentType": "application/vnd.microsoft.card.adaptive",
+ "content": {
+ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
+ "type": "AdaptiveCard",
+ "version": "1.0",
+ "body": card,
+ },
+ }
+ ],
+ }
+
+ response = requests.put(response_url, json=response_activity, headers=headers)
+
+ print(response.json())
+
+ def format_message(self, event):
+ """
+ Receives a message from Microsoft Teams and formats it into a Caddy message event
+ """
+ message_string = event["text"].replace("@Caddy", "")
+
+ if "proceed" not in event:
+ pii_identified = analyse(message_string)
+
+ if pii_identified:
+ # Optionally redact PII from the message by importing redact from services.anonymise
+ # message_string = redact(message_string, pii_identified)
+
+ self.send_adviser_card(
+ event=event,
+ card=self.messages.create_pii_detected_card(message_string),
+ )
+
+ return "PII Detected"
+
+ self.send_adviser_card(event)
+
+ # TODO Format Message into Caddy event
+ return message_string
+
+ def handle_reaction_added(self, event):
+ """
+ Handles reactions added to a message, specifically for the sueprvisor space but currently applied to all
+ """
+ reaction_type = event["reactionsAdded"][0]["type"]
+ reply_to_id = event["replyToId"]
+
+ # Fetch original message or log activity based on reply_to_id if needed
+ response_text = (
+ f"Reaction '{reaction_type}' added to message with ID {reply_to_id}"
+ )
+ self.send_advisor_message_from_supervisor(event, response_text)
+
+ # TODO define a send_advisor_message_from_supervisor methods
+ # TODO return caddy message from supervisor channel to advisor
+
+ def handle_reaction_removed(self, event):
+ """
+ Handles reactions removed from a message, currently unsure if we need this
+ """
+ reaction_type = event["reactionsRemoved"][0]["type"]
+ reply_to_id = event["replyToId"]
+
+ # Fetch original message or log activity based on reply_to_id if needed
+
+ response_text = (
+ f"Reaction '{reaction_type}' removed from message with ID {reply_to_id}"
+ )
+ self.send_advisor_message_from_supervisor(event, response_text)
+
+ def handle_thumbs_up(self, event, removed=False):
+ """
+ Handle thumbs up reaction = an approval from supervisor
+ """
+ action = "removed" if removed else "added"
+ self.send_advisor_message_from_supervisor(
+ event,
+ f"Message approved {action} for message with ID {event['replyToId']}",
+ "share",
+ )
+
+ def handle_thumbs_down(self, event, removed=False):
+ """
+ Handle thumbs down reaction = no approval from supervisor, caddy message not sent
+ """
+ action = "removed" if removed else "added"
+ self.send_advisor_message_from_supervisor(
+ event,
+ f"Answer not approved {action} for message with ID {event['replyToId']}",
+ "donotshare",
+ )
+
+ def send_advisor_message_from_supervisor(self, event, text, type):
+ """
+ Sends a simple text message in response to an event.
+ """
+
+ if type == "donotshare":
+ print("No approval from supervisor")
+
+ conversation_id = event["conversation"]["id"]
+ service_url = event["serviceUrl"]
+
+ response_url = f"{service_url}/v3/conversations/{conversation_id}/activities"
+
+ headers = {
+ "Authorization": f"Bearer {self.access_token}",
+ "Content-Type": "application/json",
+ }
+
+ response_activity = {
+ "type": "message",
+ "from": event["recipient"],
+ "conversation": event["conversation"],
+ "recipient": event["from"],
+ "text": text,
+ }
+
+ response = requests.post(response_url, json=response_activity, headers=headers)
+
+ print(response.json())
+
+ # TODO make this have the details from caddy and the supervisor comments
diff --git a/caddy_chatbot/src/integrations/microsoft_teams/verification.py b/caddy_chatbot/src/integrations/microsoft_teams/verification.py
new file mode 100644
index 0000000..03af34f
--- /dev/null
+++ b/caddy_chatbot/src/integrations/microsoft_teams/verification.py
@@ -0,0 +1,32 @@
+import os
+import requests
+
+APP_ID = os.environ.get("MicrosoftAppId", "")
+APP_PASSWORD = os.environ.get("MicrosoftAppPassword", "")
+
+url = "https://login.microsoftonline.com/botframework.com/oauth2/v2.0/token"
+headers = {
+ "Host": "login.microsoftonline.com",
+ "Content-Type": "application/x-www-form-urlencoded",
+}
+
+authentication_data = {
+ "grant_type": "client_credentials",
+ "client_id": APP_ID,
+ "client_secret": APP_PASSWORD,
+ "scope": "https://api.botframework.com/.default",
+}
+
+
+def get_access_token():
+ """
+ Fetches an access token using the Bot credentials
+ """
+ response = requests.post(url, headers=headers, data=authentication_data)
+
+ if response.status_code == 200:
+ response_data = response.json()
+ access_token = response_data.get("access_token")
+ return access_token
+ else:
+ print("Failed to retrieve token:", response.text)
diff --git a/caddy_chatbot/src/model/1_Pooling/config.json b/caddy_chatbot/src/model/1_Pooling/config.json
deleted file mode 100644
index 02da4df..0000000
--- a/caddy_chatbot/src/model/1_Pooling/config.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "word_embedding_dimension": 768,
- "pooling_mode_cls_token": false,
- "pooling_mode_mean_tokens": true,
- "pooling_mode_max_tokens": false,
- "pooling_mode_mean_sqrt_len_tokens": false,
- "pooling_mode_weightedmean_tokens": false,
- "pooling_mode_lasttoken": false,
- "include_prompt": true
-}
diff --git a/caddy_chatbot/src/model/README.md b/caddy_chatbot/src/model/README.md
deleted file mode 100644
index 2dd37d1..0000000
--- a/caddy_chatbot/src/model/README.md
+++ /dev/null
@@ -1,177 +0,0 @@
----
-language: en
-license: apache-2.0
-library_name: sentence-transformers
-tags:
-- sentence-transformers
-- feature-extraction
-- sentence-similarity
-- transformers
-datasets:
-- s2orc
-- flax-sentence-embeddings/stackexchange_xml
-- ms_marco
-- gooaq
-- yahoo_answers_topics
-- code_search_net
-- search_qa
-- eli5
-- snli
-- multi_nli
-- wikihow
-- natural_questions
-- trivia_qa
-- embedding-data/sentence-compression
-- embedding-data/flickr30k-captions
-- embedding-data/altlex
-- embedding-data/simple-wiki
-- embedding-data/QQP
-- embedding-data/SPECTER
-- embedding-data/PAQ_pairs
-- embedding-data/WikiAnswers
-pipeline_tag: sentence-similarity
----
-
-
-# all-mpnet-base-v2
-This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
-
-## Usage (Sentence-Transformers)
-Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
-
-```
-pip install -U sentence-transformers
-```
-
-Then you can use the model like this:
-```python
-from sentence_transformers import SentenceTransformer
-sentences = ["This is an example sentence", "Each sentence is converted"]
-
-model = SentenceTransformer('sentence-transformers/all-mpnet-base-v2')
-embeddings = model.encode(sentences)
-print(embeddings)
-```
-
-## Usage (HuggingFace Transformers)
-Without [sentence-transformers](https://www.SBERT.net), you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.
-
-```python
-from transformers import AutoTokenizer, AutoModel
-import torch
-import torch.nn.functional as F
-
-#Mean Pooling - Take attention mask into account for correct averaging
-def mean_pooling(model_output, attention_mask):
- token_embeddings = model_output[0] #First element of model_output contains all token embeddings
- input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
- return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
-
-
-# Sentences we want sentence embeddings for
-sentences = ['This is an example sentence', 'Each sentence is converted']
-
-# Load model from HuggingFace Hub
-tokenizer = AutoTokenizer.from_pretrained('sentence-transformers/all-mpnet-base-v2')
-model = AutoModel.from_pretrained('sentence-transformers/all-mpnet-base-v2')
-
-# Tokenize sentences
-encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
-
-# Compute token embeddings
-with torch.no_grad():
- model_output = model(**encoded_input)
-
-# Perform pooling
-sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
-
-# Normalize embeddings
-sentence_embeddings = F.normalize(sentence_embeddings, p=2, dim=1)
-
-print("Sentence embeddings:")
-print(sentence_embeddings)
-```
-
-## Evaluation Results
-
-For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name=sentence-transformers/all-mpnet-base-v2)
-
-------
-
-## Background
-
-The project aims to train sentence embedding models on very large sentence level datasets using a self-supervised
-contrastive learning objective. We used the pretrained [`microsoft/mpnet-base`](https://huggingface.co/microsoft/mpnet-base) model and fine-tuned in on a
-1B sentence pairs dataset. We use a contrastive learning objective: given a sentence from the pair, the model should predict which out of a set of randomly sampled other sentences, was actually paired with it in our dataset.
-
-We developped this model during the
-[Community week using JAX/Flax for NLP & CV](https://discuss.huggingface.co/t/open-to-the-community-community-week-using-jax-flax-for-nlp-cv/7104),
-organized by Hugging Face. We developped this model as part of the project:
-[Train the Best Sentence Embedding Model Ever with 1B Training Pairs](https://discuss.huggingface.co/t/train-the-best-sentence-embedding-model-ever-with-1b-training-pairs/7354). We benefited from efficient hardware infrastructure to run the project: 7 TPUs v3-8, as well as intervention from Googles Flax, JAX, and Cloud team member about efficient deep learning frameworks.
-
-## Intended uses
-
-Our model is intented to be used as a sentence and short paragraph encoder. Given an input text, it ouptuts a vector which captures
-the semantic information. The sentence vector may be used for information retrieval, clustering or sentence similarity tasks.
-
-By default, input text longer than 384 word pieces is truncated.
-
-
-## Training procedure
-
-### Pre-training
-
-We use the pretrained [`microsoft/mpnet-base`](https://huggingface.co/microsoft/mpnet-base) model. Please refer to the model card for more detailed information about the pre-training procedure.
-
-### Fine-tuning
-
-We fine-tune the model using a contrastive objective. Formally, we compute the cosine similarity from each possible sentence pairs from the batch.
-We then apply the cross entropy loss by comparing with true pairs.
-
-#### Hyper parameters
-
-We trained ou model on a TPU v3-8. We train the model during 100k steps using a batch size of 1024 (128 per TPU core).
-We use a learning rate warm up of 500. The sequence length was limited to 128 tokens. We used the AdamW optimizer with
-a 2e-5 learning rate. The full training script is accessible in this current repository: `train_script.py`.
-
-#### Training data
-
-We use the concatenation from multiple datasets to fine-tune our model. The total number of sentence pairs is above 1 billion sentences.
-We sampled each dataset given a weighted probability which configuration is detailed in the `data_config.json` file.
-
-
-| Dataset | Paper | Number of training tuples |
-|--------------------------------------------------------|:----------------------------------------:|:--------------------------:|
-| [Reddit comments (2015-2018)](https://github.com/PolyAI-LDN/conversational-datasets/tree/master/reddit) | [paper](https://arxiv.org/abs/1904.06472) | 726,484,430 |
-| [S2ORC](https://github.com/allenai/s2orc) Citation pairs (Abstracts) | [paper](https://aclanthology.org/2020.acl-main.447/) | 116,288,806 |
-| [WikiAnswers](https://github.com/afader/oqa#wikianswers-corpus) Duplicate question pairs | [paper](https://doi.org/10.1145/2623330.2623677) | 77,427,422 |
-| [PAQ](https://github.com/facebookresearch/PAQ) (Question, Answer) pairs | [paper](https://arxiv.org/abs/2102.07033) | 64,371,441 |
-| [S2ORC](https://github.com/allenai/s2orc) Citation pairs (Titles) | [paper](https://aclanthology.org/2020.acl-main.447/) | 52,603,982 |
-| [S2ORC](https://github.com/allenai/s2orc) (Title, Abstract) | [paper](https://aclanthology.org/2020.acl-main.447/) | 41,769,185 |
-| [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_xml) (Title, Body) pairs | - | 25,316,456 |
-| [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_xml) (Title+Body, Answer) pairs | - | 21,396,559 |
-| [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_xml) (Title, Answer) pairs | - | 21,396,559 |
-| [MS MARCO](https://microsoft.github.io/msmarco/) triplets | [paper](https://doi.org/10.1145/3404835.3462804) | 9,144,553 |
-| [GOOAQ: Open Question Answering with Diverse Answer Types](https://github.com/allenai/gooaq) | [paper](https://arxiv.org/pdf/2104.08727.pdf) | 3,012,496 |
-| [Yahoo Answers](https://www.kaggle.com/soumikrakshit/yahoo-answers-dataset) (Title, Answer) | [paper](https://proceedings.neurips.cc/paper/2015/hash/250cf8b51c773f3f8dc8b4be867a9a02-Abstract.html) | 1,198,260 |
-| [Code Search](https://huggingface.co/datasets/code_search_net) | - | 1,151,414 |
-| [COCO](https://cocodataset.org/#home) Image captions | [paper](https://link.springer.com/chapter/10.1007%2F978-3-319-10602-1_48) | 828,395|
-| [SPECTER](https://github.com/allenai/specter) citation triplets | [paper](https://doi.org/10.18653/v1/2020.acl-main.207) | 684,100 |
-| [Yahoo Answers](https://www.kaggle.com/soumikrakshit/yahoo-answers-dataset) (Question, Answer) | [paper](https://proceedings.neurips.cc/paper/2015/hash/250cf8b51c773f3f8dc8b4be867a9a02-Abstract.html) | 681,164 |
-| [Yahoo Answers](https://www.kaggle.com/soumikrakshit/yahoo-answers-dataset) (Title, Question) | [paper](https://proceedings.neurips.cc/paper/2015/hash/250cf8b51c773f3f8dc8b4be867a9a02-Abstract.html) | 659,896 |
-| [SearchQA](https://huggingface.co/datasets/search_qa) | [paper](https://arxiv.org/abs/1704.05179) | 582,261 |
-| [Eli5](https://huggingface.co/datasets/eli5) | [paper](https://doi.org/10.18653/v1/p19-1346) | 325,475 |
-| [Flickr 30k](https://shannon.cs.illinois.edu/DenotationGraph/) | [paper](https://transacl.org/ojs/index.php/tacl/article/view/229/33) | 317,695 |
-| [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_xml) Duplicate questions (titles) | | 304,525 |
-| AllNLI ([SNLI](https://nlp.stanford.edu/projects/snli/) and [MultiNLI](https://cims.nyu.edu/~sbowman/multinli/) | [paper SNLI](https://doi.org/10.18653/v1/d15-1075), [paper MultiNLI](https://doi.org/10.18653/v1/n18-1101) | 277,230 |
-| [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_xml) Duplicate questions (bodies) | | 250,519 |
-| [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_xml) Duplicate questions (titles+bodies) | | 250,460 |
-| [Sentence Compression](https://github.com/google-research-datasets/sentence-compression) | [paper](https://www.aclweb.org/anthology/D13-1155/) | 180,000 |
-| [Wikihow](https://github.com/pvl/wikihow_pairs_dataset) | [paper](https://arxiv.org/abs/1810.09305) | 128,542 |
-| [Altlex](https://github.com/chridey/altlex/) | [paper](https://aclanthology.org/P16-1135.pdf) | 112,696 |
-| [Quora Question Triplets](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs) | - | 103,663 |
-| [Simple Wikipedia](https://cs.pomona.edu/~dkauchak/simplification/) | [paper](https://www.aclweb.org/anthology/P11-2117/) | 102,225 |
-| [Natural Questions (NQ)](https://ai.google.com/research/NaturalQuestions) | [paper](https://transacl.org/ojs/index.php/tacl/article/view/1455) | 100,231 |
-| [SQuAD2.0](https://rajpurkar.github.io/SQuAD-explorer/) | [paper](https://aclanthology.org/P18-2124.pdf) | 87,599 |
-| [TriviaQA](https://huggingface.co/datasets/trivia_qa) | - | 73,346 |
-| **Total** | | **1,170,060,424** |
diff --git a/caddy_chatbot/src/model/config.json b/caddy_chatbot/src/model/config.json
deleted file mode 100644
index e85d249..0000000
--- a/caddy_chatbot/src/model/config.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "_name_or_path": "sentence-transformers/all-mpnet-base-v2",
- "architectures": [
- "MPNetModel"
- ],
- "attention_probs_dropout_prob": 0.1,
- "bos_token_id": 0,
- "eos_token_id": 2,
- "hidden_act": "gelu",
- "hidden_dropout_prob": 0.1,
- "hidden_size": 768,
- "initializer_range": 0.02,
- "intermediate_size": 3072,
- "layer_norm_eps": 1e-05,
- "max_position_embeddings": 514,
- "model_type": "mpnet",
- "num_attention_heads": 12,
- "num_hidden_layers": 12,
- "pad_token_id": 1,
- "relative_attention_num_buckets": 32,
- "torch_dtype": "float32",
- "transformers_version": "4.38.1",
- "vocab_size": 30527
-}
diff --git a/caddy_chatbot/src/model/config_sentence_transformers.json b/caddy_chatbot/src/model/config_sentence_transformers.json
deleted file mode 100644
index 59bd020..0000000
--- a/caddy_chatbot/src/model/config_sentence_transformers.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "__version__": {
- "sentence_transformers": "2.0.0",
- "transformers": "4.6.1",
- "pytorch": "1.8.1"
- },
- "prompts": {},
- "default_prompt_name": null
-}
diff --git a/caddy_chatbot/src/model/model.safetensors b/caddy_chatbot/src/model/model.safetensors
deleted file mode 100644
index 9d48cf3..0000000
--- a/caddy_chatbot/src/model/model.safetensors
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:0b3c8c717335c801abb15983036a6f1df4b6943fd6b93717969efd96d22eeec6
-size 437967672
diff --git a/caddy_chatbot/src/model/modules.json b/caddy_chatbot/src/model/modules.json
deleted file mode 100644
index a32b46a..0000000
--- a/caddy_chatbot/src/model/modules.json
+++ /dev/null
@@ -1,20 +0,0 @@
-[
- {
- "idx": 0,
- "name": "0",
- "path": "",
- "type": "sentence_transformers.models.Transformer"
- },
- {
- "idx": 1,
- "name": "1",
- "path": "1_Pooling",
- "type": "sentence_transformers.models.Pooling"
- },
- {
- "idx": 2,
- "name": "2",
- "path": "2_Normalize",
- "type": "sentence_transformers.models.Normalize"
- }
-]
diff --git a/caddy_chatbot/src/model/sentence_bert_config.json b/caddy_chatbot/src/model/sentence_bert_config.json
deleted file mode 100644
index 96d3b40..0000000
--- a/caddy_chatbot/src/model/sentence_bert_config.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "max_seq_length": 384,
- "do_lower_case": false
-}
diff --git a/caddy_chatbot/src/model/special_tokens_map.json b/caddy_chatbot/src/model/special_tokens_map.json
deleted file mode 100644
index f8b386f..0000000
--- a/caddy_chatbot/src/model/special_tokens_map.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "bos_token": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- },
- "cls_token": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- },
- "eos_token": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- },
- "mask_token": {
- "content": "",
- "lstrip": true,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- },
- "pad_token": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- },
- "sep_token": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- },
- "unk_token": {
- "content": "[UNK]",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false
- }
-}
diff --git a/caddy_chatbot/src/model/tokenizer.json b/caddy_chatbot/src/model/tokenizer.json
deleted file mode 100644
index 70a2baa..0000000
--- a/caddy_chatbot/src/model/tokenizer.json
+++ /dev/null
@@ -1,30638 +0,0 @@
-{
- "version": "1.0",
- "truncation": {
- "direction": "Right",
- "max_length": 128,
- "strategy": "LongestFirst",
- "stride": 0
- },
- "padding": {
- "strategy": {
- "Fixed": 128
- },
- "direction": "Right",
- "pad_to_multiple_of": null,
- "pad_id": 1,
- "pad_type_id": 0,
- "pad_token": ""
- },
- "added_tokens": [
- {
- "id": 0,
- "content": "",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 1,
- "content": "",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 2,
- "content": "",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 3,
- "content": "",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": true,
- "special": true
- },
- {
- "id": 104,
- "content": "[UNK]",
- "single_word": false,
- "lstrip": false,
- "rstrip": false,
- "normalized": false,
- "special": true
- },
- {
- "id": 30526,
- "content": "",
- "single_word": false,
- "lstrip": true,
- "rstrip": false,
- "normalized": false,
- "special": true
- }
- ],
- "normalizer": {
- "type": "BertNormalizer",
- "clean_text": true,
- "handle_chinese_chars": true,
- "strip_accents": null,
- "lowercase": true
- },
- "pre_tokenizer": {
- "type": "BertPreTokenizer"
- },
- "post_processor": {
- "type": "RobertaProcessing",
- "sep": [
- "",
- 2
- ],
- "cls": [
- "",
- 0
- ],
- "trim_offsets": true,
- "add_prefix_space": false
- },
- "decoder": {
- "type": "WordPiece",
- "prefix": "##",
- "cleanup": true
- },
- "model": {
- "type": "WordPiece",
- "unk_token": "[UNK]",
- "continuing_subword_prefix": "##",
- "max_input_chars_per_word": 100,
- "vocab": {
- "": 0,
- "": 1,
- "": 2,
- "": 3,
- "[PAD]": 4,
- "[unused0]": 5,
- "[unused1]": 6,
- "[unused2]": 7,
- "[unused3]": 8,
- "[unused4]": 9,
- "[unused5]": 10,
- "[unused6]": 11,
- "[unused7]": 12,
- "[unused8]": 13,
- "[unused9]": 14,
- "[unused10]": 15,
- "[unused11]": 16,
- "[unused12]": 17,
- "[unused13]": 18,
- "[unused14]": 19,
- "[unused15]": 20,
- "[unused16]": 21,
- "[unused17]": 22,
- "[unused18]": 23,
- "[unused19]": 24,
- "[unused20]": 25,
- "[unused21]": 26,
- "[unused22]": 27,
- "[unused23]": 28,
- "[unused24]": 29,
- "[unused25]": 30,
- "[unused26]": 31,
- "[unused27]": 32,
- "[unused28]": 33,
- "[unused29]": 34,
- "[unused30]": 35,
- "[unused31]": 36,
- "[unused32]": 37,
- "[unused33]": 38,
- "[unused34]": 39,
- "[unused35]": 40,
- "[unused36]": 41,
- "[unused37]": 42,
- "[unused38]": 43,
- "[unused39]": 44,
- "[unused40]": 45,
- "[unused41]": 46,
- "[unused42]": 47,
- "[unused43]": 48,
- "[unused44]": 49,
- "[unused45]": 50,
- "[unused46]": 51,
- "[unused47]": 52,
- "[unused48]": 53,
- "[unused49]": 54,
- "[unused50]": 55,
- "[unused51]": 56,
- "[unused52]": 57,
- "[unused53]": 58,
- "[unused54]": 59,
- "[unused55]": 60,
- "[unused56]": 61,
- "[unused57]": 62,
- "[unused58]": 63,
- "[unused59]": 64,
- "[unused60]": 65,
- "[unused61]": 66,
- "[unused62]": 67,
- "[unused63]": 68,
- "[unused64]": 69,
- "[unused65]": 70,
- "[unused66]": 71,
- "[unused67]": 72,
- "[unused68]": 73,
- "[unused69]": 74,
- "[unused70]": 75,
- "[unused71]": 76,
- "[unused72]": 77,
- "[unused73]": 78,
- "[unused74]": 79,
- "[unused75]": 80,
- "[unused76]": 81,
- "[unused77]": 82,
- "[unused78]": 83,
- "[unused79]": 84,
- "[unused80]": 85,
- "[unused81]": 86,
- "[unused82]": 87,
- "[unused83]": 88,
- "[unused84]": 89,
- "[unused85]": 90,
- "[unused86]": 91,
- "[unused87]": 92,
- "[unused88]": 93,
- "[unused89]": 94,
- "[unused90]": 95,
- "[unused91]": 96,
- "[unused92]": 97,
- "[unused93]": 98,
- "[unused94]": 99,
- "[unused95]": 100,
- "[unused96]": 101,
- "[unused97]": 102,
- "[unused98]": 103,
- "[UNK]": 104,
- "[CLS]": 105,
- "[SEP]": 106,
- "[MASK]": 107,
- "[unused99]": 108,
- "[unused100]": 109,
- "[unused101]": 110,
- "[unused102]": 111,
- "[unused103]": 112,
- "[unused104]": 113,
- "[unused105]": 114,
- "[unused106]": 115,
- "[unused107]": 116,
- "[unused108]": 117,
- "[unused109]": 118,
- "[unused110]": 119,
- "[unused111]": 120,
- "[unused112]": 121,
- "[unused113]": 122,
- "[unused114]": 123,
- "[unused115]": 124,
- "[unused116]": 125,
- "[unused117]": 126,
- "[unused118]": 127,
- "[unused119]": 128,
- "[unused120]": 129,
- "[unused121]": 130,
- "[unused122]": 131,
- "[unused123]": 132,
- "[unused124]": 133,
- "[unused125]": 134,
- "[unused126]": 135,
- "[unused127]": 136,
- "[unused128]": 137,
- "[unused129]": 138,
- "[unused130]": 139,
- "[unused131]": 140,
- "[unused132]": 141,
- "[unused133]": 142,
- "[unused134]": 143,
- "[unused135]": 144,
- "[unused136]": 145,
- "[unused137]": 146,
- "[unused138]": 147,
- "[unused139]": 148,
- "[unused140]": 149,
- "[unused141]": 150,
- "[unused142]": 151,
- "[unused143]": 152,
- "[unused144]": 153,
- "[unused145]": 154,
- "[unused146]": 155,
- "[unused147]": 156,
- "[unused148]": 157,
- "[unused149]": 158,
- "[unused150]": 159,
- "[unused151]": 160,
- "[unused152]": 161,
- "[unused153]": 162,
- "[unused154]": 163,
- "[unused155]": 164,
- "[unused156]": 165,
- "[unused157]": 166,
- "[unused158]": 167,
- "[unused159]": 168,
- "[unused160]": 169,
- "[unused161]": 170,
- "[unused162]": 171,
- "[unused163]": 172,
- "[unused164]": 173,
- "[unused165]": 174,
- "[unused166]": 175,
- "[unused167]": 176,
- "[unused168]": 177,
- "[unused169]": 178,
- "[unused170]": 179,
- "[unused171]": 180,
- "[unused172]": 181,
- "[unused173]": 182,
- "[unused174]": 183,
- "[unused175]": 184,
- "[unused176]": 185,
- "[unused177]": 186,
- "[unused178]": 187,
- "[unused179]": 188,
- "[unused180]": 189,
- "[unused181]": 190,
- "[unused182]": 191,
- "[unused183]": 192,
- "[unused184]": 193,
- "[unused185]": 194,
- "[unused186]": 195,
- "[unused187]": 196,
- "[unused188]": 197,
- "[unused189]": 198,
- "[unused190]": 199,
- "[unused191]": 200,
- "[unused192]": 201,
- "[unused193]": 202,
- "[unused194]": 203,
- "[unused195]": 204,
- "[unused196]": 205,
- "[unused197]": 206,
- "[unused198]": 207,
- "[unused199]": 208,
- "[unused200]": 209,
- "[unused201]": 210,
- "[unused202]": 211,
- "[unused203]": 212,
- "[unused204]": 213,
- "[unused205]": 214,
- "[unused206]": 215,
- "[unused207]": 216,
- "[unused208]": 217,
- "[unused209]": 218,
- "[unused210]": 219,
- "[unused211]": 220,
- "[unused212]": 221,
- "[unused213]": 222,
- "[unused214]": 223,
- "[unused215]": 224,
- "[unused216]": 225,
- "[unused217]": 226,
- "[unused218]": 227,
- "[unused219]": 228,
- "[unused220]": 229,
- "[unused221]": 230,
- "[unused222]": 231,
- "[unused223]": 232,
- "[unused224]": 233,
- "[unused225]": 234,
- "[unused226]": 235,
- "[unused227]": 236,
- "[unused228]": 237,
- "[unused229]": 238,
- "[unused230]": 239,
- "[unused231]": 240,
- "[unused232]": 241,
- "[unused233]": 242,
- "[unused234]": 243,
- "[unused235]": 244,
- "[unused236]": 245,
- "[unused237]": 246,
- "[unused238]": 247,
- "[unused239]": 248,
- "[unused240]": 249,
- "[unused241]": 250,
- "[unused242]": 251,
- "[unused243]": 252,
- "[unused244]": 253,
- "[unused245]": 254,
- "[unused246]": 255,
- "[unused247]": 256,
- "[unused248]": 257,
- "[unused249]": 258,
- "[unused250]": 259,
- "[unused251]": 260,
- "[unused252]": 261,
- "[unused253]": 262,
- "[unused254]": 263,
- "[unused255]": 264,
- "[unused256]": 265,
- "[unused257]": 266,
- "[unused258]": 267,
- "[unused259]": 268,
- "[unused260]": 269,
- "[unused261]": 270,
- "[unused262]": 271,
- "[unused263]": 272,
- "[unused264]": 273,
- "[unused265]": 274,
- "[unused266]": 275,
- "[unused267]": 276,
- "[unused268]": 277,
- "[unused269]": 278,
- "[unused270]": 279,
- "[unused271]": 280,
- "[unused272]": 281,
- "[unused273]": 282,
- "[unused274]": 283,
- "[unused275]": 284,
- "[unused276]": 285,
- "[unused277]": 286,
- "[unused278]": 287,
- "[unused279]": 288,
- "[unused280]": 289,
- "[unused281]": 290,
- "[unused282]": 291,
- "[unused283]": 292,
- "[unused284]": 293,
- "[unused285]": 294,
- "[unused286]": 295,
- "[unused287]": 296,
- "[unused288]": 297,
- "[unused289]": 298,
- "[unused290]": 299,
- "[unused291]": 300,
- "[unused292]": 301,
- "[unused293]": 302,
- "[unused294]": 303,
- "[unused295]": 304,
- "[unused296]": 305,
- "[unused297]": 306,
- "[unused298]": 307,
- "[unused299]": 308,
- "[unused300]": 309,
- "[unused301]": 310,
- "[unused302]": 311,
- "[unused303]": 312,
- "[unused304]": 313,
- "[unused305]": 314,
- "[unused306]": 315,
- "[unused307]": 316,
- "[unused308]": 317,
- "[unused309]": 318,
- "[unused310]": 319,
- "[unused311]": 320,
- "[unused312]": 321,
- "[unused313]": 322,
- "[unused314]": 323,
- "[unused315]": 324,
- "[unused316]": 325,
- "[unused317]": 326,
- "[unused318]": 327,
- "[unused319]": 328,
- "[unused320]": 329,
- "[unused321]": 330,
- "[unused322]": 331,
- "[unused323]": 332,
- "[unused324]": 333,
- "[unused325]": 334,
- "[unused326]": 335,
- "[unused327]": 336,
- "[unused328]": 337,
- "[unused329]": 338,
- "[unused330]": 339,
- "[unused331]": 340,
- "[unused332]": 341,
- "[unused333]": 342,
- "[unused334]": 343,
- "[unused335]": 344,
- "[unused336]": 345,
- "[unused337]": 346,
- "[unused338]": 347,
- "[unused339]": 348,
- "[unused340]": 349,
- "[unused341]": 350,
- "[unused342]": 351,
- "[unused343]": 352,
- "[unused344]": 353,
- "[unused345]": 354,
- "[unused346]": 355,
- "[unused347]": 356,
- "[unused348]": 357,
- "[unused349]": 358,
- "[unused350]": 359,
- "[unused351]": 360,
- "[unused352]": 361,
- "[unused353]": 362,
- "[unused354]": 363,
- "[unused355]": 364,
- "[unused356]": 365,
- "[unused357]": 366,
- "[unused358]": 367,
- "[unused359]": 368,
- "[unused360]": 369,
- "[unused361]": 370,
- "[unused362]": 371,
- "[unused363]": 372,
- "[unused364]": 373,
- "[unused365]": 374,
- "[unused366]": 375,
- "[unused367]": 376,
- "[unused368]": 377,
- "[unused369]": 378,
- "[unused370]": 379,
- "[unused371]": 380,
- "[unused372]": 381,
- "[unused373]": 382,
- "[unused374]": 383,
- "[unused375]": 384,
- "[unused376]": 385,
- "[unused377]": 386,
- "[unused378]": 387,
- "[unused379]": 388,
- "[unused380]": 389,
- "[unused381]": 390,
- "[unused382]": 391,
- "[unused383]": 392,
- "[unused384]": 393,
- "[unused385]": 394,
- "[unused386]": 395,
- "[unused387]": 396,
- "[unused388]": 397,
- "[unused389]": 398,
- "[unused390]": 399,
- "[unused391]": 400,
- "[unused392]": 401,
- "[unused393]": 402,
- "[unused394]": 403,
- "[unused395]": 404,
- "[unused396]": 405,
- "[unused397]": 406,
- "[unused398]": 407,
- "[unused399]": 408,
- "[unused400]": 409,
- "[unused401]": 410,
- "[unused402]": 411,
- "[unused403]": 412,
- "[unused404]": 413,
- "[unused405]": 414,
- "[unused406]": 415,
- "[unused407]": 416,
- "[unused408]": 417,
- "[unused409]": 418,
- "[unused410]": 419,
- "[unused411]": 420,
- "[unused412]": 421,
- "[unused413]": 422,
- "[unused414]": 423,
- "[unused415]": 424,
- "[unused416]": 425,
- "[unused417]": 426,
- "[unused418]": 427,
- "[unused419]": 428,
- "[unused420]": 429,
- "[unused421]": 430,
- "[unused422]": 431,
- "[unused423]": 432,
- "[unused424]": 433,
- "[unused425]": 434,
- "[unused426]": 435,
- "[unused427]": 436,
- "[unused428]": 437,
- "[unused429]": 438,
- "[unused430]": 439,
- "[unused431]": 440,
- "[unused432]": 441,
- "[unused433]": 442,
- "[unused434]": 443,
- "[unused435]": 444,
- "[unused436]": 445,
- "[unused437]": 446,
- "[unused438]": 447,
- "[unused439]": 448,
- "[unused440]": 449,
- "[unused441]": 450,
- "[unused442]": 451,
- "[unused443]": 452,
- "[unused444]": 453,
- "[unused445]": 454,
- "[unused446]": 455,
- "[unused447]": 456,
- "[unused448]": 457,
- "[unused449]": 458,
- "[unused450]": 459,
- "[unused451]": 460,
- "[unused452]": 461,
- "[unused453]": 462,
- "[unused454]": 463,
- "[unused455]": 464,
- "[unused456]": 465,
- "[unused457]": 466,
- "[unused458]": 467,
- "[unused459]": 468,
- "[unused460]": 469,
- "[unused461]": 470,
- "[unused462]": 471,
- "[unused463]": 472,
- "[unused464]": 473,
- "[unused465]": 474,
- "[unused466]": 475,
- "[unused467]": 476,
- "[unused468]": 477,
- "[unused469]": 478,
- "[unused470]": 479,
- "[unused471]": 480,
- "[unused472]": 481,
- "[unused473]": 482,
- "[unused474]": 483,
- "[unused475]": 484,
- "[unused476]": 485,
- "[unused477]": 486,
- "[unused478]": 487,
- "[unused479]": 488,
- "[unused480]": 489,
- "[unused481]": 490,
- "[unused482]": 491,
- "[unused483]": 492,
- "[unused484]": 493,
- "[unused485]": 494,
- "[unused486]": 495,
- "[unused487]": 496,
- "[unused488]": 497,
- "[unused489]": 498,
- "[unused490]": 499,
- "[unused491]": 500,
- "[unused492]": 501,
- "[unused493]": 502,
- "[unused494]": 503,
- "[unused495]": 504,
- "[unused496]": 505,
- "[unused497]": 506,
- "[unused498]": 507,
- "[unused499]": 508,
- "[unused500]": 509,
- "[unused501]": 510,
- "[unused502]": 511,
- "[unused503]": 512,
- "[unused504]": 513,
- "[unused505]": 514,
- "[unused506]": 515,
- "[unused507]": 516,
- "[unused508]": 517,
- "[unused509]": 518,
- "[unused510]": 519,
- "[unused511]": 520,
- "[unused512]": 521,
- "[unused513]": 522,
- "[unused514]": 523,
- "[unused515]": 524,
- "[unused516]": 525,
- "[unused517]": 526,
- "[unused518]": 527,
- "[unused519]": 528,
- "[unused520]": 529,
- "[unused521]": 530,
- "[unused522]": 531,
- "[unused523]": 532,
- "[unused524]": 533,
- "[unused525]": 534,
- "[unused526]": 535,
- "[unused527]": 536,
- "[unused528]": 537,
- "[unused529]": 538,
- "[unused530]": 539,
- "[unused531]": 540,
- "[unused532]": 541,
- "[unused533]": 542,
- "[unused534]": 543,
- "[unused535]": 544,
- "[unused536]": 545,
- "[unused537]": 546,
- "[unused538]": 547,
- "[unused539]": 548,
- "[unused540]": 549,
- "[unused541]": 550,
- "[unused542]": 551,
- "[unused543]": 552,
- "[unused544]": 553,
- "[unused545]": 554,
- "[unused546]": 555,
- "[unused547]": 556,
- "[unused548]": 557,
- "[unused549]": 558,
- "[unused550]": 559,
- "[unused551]": 560,
- "[unused552]": 561,
- "[unused553]": 562,
- "[unused554]": 563,
- "[unused555]": 564,
- "[unused556]": 565,
- "[unused557]": 566,
- "[unused558]": 567,
- "[unused559]": 568,
- "[unused560]": 569,
- "[unused561]": 570,
- "[unused562]": 571,
- "[unused563]": 572,
- "[unused564]": 573,
- "[unused565]": 574,
- "[unused566]": 575,
- "[unused567]": 576,
- "[unused568]": 577,
- "[unused569]": 578,
- "[unused570]": 579,
- "[unused571]": 580,
- "[unused572]": 581,
- "[unused573]": 582,
- "[unused574]": 583,
- "[unused575]": 584,
- "[unused576]": 585,
- "[unused577]": 586,
- "[unused578]": 587,
- "[unused579]": 588,
- "[unused580]": 589,
- "[unused581]": 590,
- "[unused582]": 591,
- "[unused583]": 592,
- "[unused584]": 593,
- "[unused585]": 594,
- "[unused586]": 595,
- "[unused587]": 596,
- "[unused588]": 597,
- "[unused589]": 598,
- "[unused590]": 599,
- "[unused591]": 600,
- "[unused592]": 601,
- "[unused593]": 602,
- "[unused594]": 603,
- "[unused595]": 604,
- "[unused596]": 605,
- "[unused597]": 606,
- "[unused598]": 607,
- "[unused599]": 608,
- "[unused600]": 609,
- "[unused601]": 610,
- "[unused602]": 611,
- "[unused603]": 612,
- "[unused604]": 613,
- "[unused605]": 614,
- "[unused606]": 615,
- "[unused607]": 616,
- "[unused608]": 617,
- "[unused609]": 618,
- "[unused610]": 619,
- "[unused611]": 620,
- "[unused612]": 621,
- "[unused613]": 622,
- "[unused614]": 623,
- "[unused615]": 624,
- "[unused616]": 625,
- "[unused617]": 626,
- "[unused618]": 627,
- "[unused619]": 628,
- "[unused620]": 629,
- "[unused621]": 630,
- "[unused622]": 631,
- "[unused623]": 632,
- "[unused624]": 633,
- "[unused625]": 634,
- "[unused626]": 635,
- "[unused627]": 636,
- "[unused628]": 637,
- "[unused629]": 638,
- "[unused630]": 639,
- "[unused631]": 640,
- "[unused632]": 641,
- "[unused633]": 642,
- "[unused634]": 643,
- "[unused635]": 644,
- "[unused636]": 645,
- "[unused637]": 646,
- "[unused638]": 647,
- "[unused639]": 648,
- "[unused640]": 649,
- "[unused641]": 650,
- "[unused642]": 651,
- "[unused643]": 652,
- "[unused644]": 653,
- "[unused645]": 654,
- "[unused646]": 655,
- "[unused647]": 656,
- "[unused648]": 657,
- "[unused649]": 658,
- "[unused650]": 659,
- "[unused651]": 660,
- "[unused652]": 661,
- "[unused653]": 662,
- "[unused654]": 663,
- "[unused655]": 664,
- "[unused656]": 665,
- "[unused657]": 666,
- "[unused658]": 667,
- "[unused659]": 668,
- "[unused660]": 669,
- "[unused661]": 670,
- "[unused662]": 671,
- "[unused663]": 672,
- "[unused664]": 673,
- "[unused665]": 674,
- "[unused666]": 675,
- "[unused667]": 676,
- "[unused668]": 677,
- "[unused669]": 678,
- "[unused670]": 679,
- "[unused671]": 680,
- "[unused672]": 681,
- "[unused673]": 682,
- "[unused674]": 683,
- "[unused675]": 684,
- "[unused676]": 685,
- "[unused677]": 686,
- "[unused678]": 687,
- "[unused679]": 688,
- "[unused680]": 689,
- "[unused681]": 690,
- "[unused682]": 691,
- "[unused683]": 692,
- "[unused684]": 693,
- "[unused685]": 694,
- "[unused686]": 695,
- "[unused687]": 696,
- "[unused688]": 697,
- "[unused689]": 698,
- "[unused690]": 699,
- "[unused691]": 700,
- "[unused692]": 701,
- "[unused693]": 702,
- "[unused694]": 703,
- "[unused695]": 704,
- "[unused696]": 705,
- "[unused697]": 706,
- "[unused698]": 707,
- "[unused699]": 708,
- "[unused700]": 709,
- "[unused701]": 710,
- "[unused702]": 711,
- "[unused703]": 712,
- "[unused704]": 713,
- "[unused705]": 714,
- "[unused706]": 715,
- "[unused707]": 716,
- "[unused708]": 717,
- "[unused709]": 718,
- "[unused710]": 719,
- "[unused711]": 720,
- "[unused712]": 721,
- "[unused713]": 722,
- "[unused714]": 723,
- "[unused715]": 724,
- "[unused716]": 725,
- "[unused717]": 726,
- "[unused718]": 727,
- "[unused719]": 728,
- "[unused720]": 729,
- "[unused721]": 730,
- "[unused722]": 731,
- "[unused723]": 732,
- "[unused724]": 733,
- "[unused725]": 734,
- "[unused726]": 735,
- "[unused727]": 736,
- "[unused728]": 737,
- "[unused729]": 738,
- "[unused730]": 739,
- "[unused731]": 740,
- "[unused732]": 741,
- "[unused733]": 742,
- "[unused734]": 743,
- "[unused735]": 744,
- "[unused736]": 745,
- "[unused737]": 746,
- "[unused738]": 747,
- "[unused739]": 748,
- "[unused740]": 749,
- "[unused741]": 750,
- "[unused742]": 751,
- "[unused743]": 752,
- "[unused744]": 753,
- "[unused745]": 754,
- "[unused746]": 755,
- "[unused747]": 756,
- "[unused748]": 757,
- "[unused749]": 758,
- "[unused750]": 759,
- "[unused751]": 760,
- "[unused752]": 761,
- "[unused753]": 762,
- "[unused754]": 763,
- "[unused755]": 764,
- "[unused756]": 765,
- "[unused757]": 766,
- "[unused758]": 767,
- "[unused759]": 768,
- "[unused760]": 769,
- "[unused761]": 770,
- "[unused762]": 771,
- "[unused763]": 772,
- "[unused764]": 773,
- "[unused765]": 774,
- "[unused766]": 775,
- "[unused767]": 776,
- "[unused768]": 777,
- "[unused769]": 778,
- "[unused770]": 779,
- "[unused771]": 780,
- "[unused772]": 781,
- "[unused773]": 782,
- "[unused774]": 783,
- "[unused775]": 784,
- "[unused776]": 785,
- "[unused777]": 786,
- "[unused778]": 787,
- "[unused779]": 788,
- "[unused780]": 789,
- "[unused781]": 790,
- "[unused782]": 791,
- "[unused783]": 792,
- "[unused784]": 793,
- "[unused785]": 794,
- "[unused786]": 795,
- "[unused787]": 796,
- "[unused788]": 797,
- "[unused789]": 798,
- "[unused790]": 799,
- "[unused791]": 800,
- "[unused792]": 801,
- "[unused793]": 802,
- "[unused794]": 803,
- "[unused795]": 804,
- "[unused796]": 805,
- "[unused797]": 806,
- "[unused798]": 807,
- "[unused799]": 808,
- "[unused800]": 809,
- "[unused801]": 810,
- "[unused802]": 811,
- "[unused803]": 812,
- "[unused804]": 813,
- "[unused805]": 814,
- "[unused806]": 815,
- "[unused807]": 816,
- "[unused808]": 817,
- "[unused809]": 818,
- "[unused810]": 819,
- "[unused811]": 820,
- "[unused812]": 821,
- "[unused813]": 822,
- "[unused814]": 823,
- "[unused815]": 824,
- "[unused816]": 825,
- "[unused817]": 826,
- "[unused818]": 827,
- "[unused819]": 828,
- "[unused820]": 829,
- "[unused821]": 830,
- "[unused822]": 831,
- "[unused823]": 832,
- "[unused824]": 833,
- "[unused825]": 834,
- "[unused826]": 835,
- "[unused827]": 836,
- "[unused828]": 837,
- "[unused829]": 838,
- "[unused830]": 839,
- "[unused831]": 840,
- "[unused832]": 841,
- "[unused833]": 842,
- "[unused834]": 843,
- "[unused835]": 844,
- "[unused836]": 845,
- "[unused837]": 846,
- "[unused838]": 847,
- "[unused839]": 848,
- "[unused840]": 849,
- "[unused841]": 850,
- "[unused842]": 851,
- "[unused843]": 852,
- "[unused844]": 853,
- "[unused845]": 854,
- "[unused846]": 855,
- "[unused847]": 856,
- "[unused848]": 857,
- "[unused849]": 858,
- "[unused850]": 859,
- "[unused851]": 860,
- "[unused852]": 861,
- "[unused853]": 862,
- "[unused854]": 863,
- "[unused855]": 864,
- "[unused856]": 865,
- "[unused857]": 866,
- "[unused858]": 867,
- "[unused859]": 868,
- "[unused860]": 869,
- "[unused861]": 870,
- "[unused862]": 871,
- "[unused863]": 872,
- "[unused864]": 873,
- "[unused865]": 874,
- "[unused866]": 875,
- "[unused867]": 876,
- "[unused868]": 877,
- "[unused869]": 878,
- "[unused870]": 879,
- "[unused871]": 880,
- "[unused872]": 881,
- "[unused873]": 882,
- "[unused874]": 883,
- "[unused875]": 884,
- "[unused876]": 885,
- "[unused877]": 886,
- "[unused878]": 887,
- "[unused879]": 888,
- "[unused880]": 889,
- "[unused881]": 890,
- "[unused882]": 891,
- "[unused883]": 892,
- "[unused884]": 893,
- "[unused885]": 894,
- "[unused886]": 895,
- "[unused887]": 896,
- "[unused888]": 897,
- "[unused889]": 898,
- "[unused890]": 899,
- "[unused891]": 900,
- "[unused892]": 901,
- "[unused893]": 902,
- "[unused894]": 903,
- "[unused895]": 904,
- "[unused896]": 905,
- "[unused897]": 906,
- "[unused898]": 907,
- "[unused899]": 908,
- "[unused900]": 909,
- "[unused901]": 910,
- "[unused902]": 911,
- "[unused903]": 912,
- "[unused904]": 913,
- "[unused905]": 914,
- "[unused906]": 915,
- "[unused907]": 916,
- "[unused908]": 917,
- "[unused909]": 918,
- "[unused910]": 919,
- "[unused911]": 920,
- "[unused912]": 921,
- "[unused913]": 922,
- "[unused914]": 923,
- "[unused915]": 924,
- "[unused916]": 925,
- "[unused917]": 926,
- "[unused918]": 927,
- "[unused919]": 928,
- "[unused920]": 929,
- "[unused921]": 930,
- "[unused922]": 931,
- "[unused923]": 932,
- "[unused924]": 933,
- "[unused925]": 934,
- "[unused926]": 935,
- "[unused927]": 936,
- "[unused928]": 937,
- "[unused929]": 938,
- "[unused930]": 939,
- "[unused931]": 940,
- "[unused932]": 941,
- "[unused933]": 942,
- "[unused934]": 943,
- "[unused935]": 944,
- "[unused936]": 945,
- "[unused937]": 946,
- "[unused938]": 947,
- "[unused939]": 948,
- "[unused940]": 949,
- "[unused941]": 950,
- "[unused942]": 951,
- "[unused943]": 952,
- "[unused944]": 953,
- "[unused945]": 954,
- "[unused946]": 955,
- "[unused947]": 956,
- "[unused948]": 957,
- "[unused949]": 958,
- "[unused950]": 959,
- "[unused951]": 960,
- "[unused952]": 961,
- "[unused953]": 962,
- "[unused954]": 963,
- "[unused955]": 964,
- "[unused956]": 965,
- "[unused957]": 966,
- "[unused958]": 967,
- "[unused959]": 968,
- "[unused960]": 969,
- "[unused961]": 970,
- "[unused962]": 971,
- "[unused963]": 972,
- "[unused964]": 973,
- "[unused965]": 974,
- "[unused966]": 975,
- "[unused967]": 976,
- "[unused968]": 977,
- "[unused969]": 978,
- "[unused970]": 979,
- "[unused971]": 980,
- "[unused972]": 981,
- "[unused973]": 982,
- "[unused974]": 983,
- "[unused975]": 984,
- "[unused976]": 985,
- "[unused977]": 986,
- "[unused978]": 987,
- "[unused979]": 988,
- "[unused980]": 989,
- "[unused981]": 990,
- "[unused982]": 991,
- "[unused983]": 992,
- "[unused984]": 993,
- "[unused985]": 994,
- "[unused986]": 995,
- "[unused987]": 996,
- "[unused988]": 997,
- "[unused989]": 998,
- "[unused990]": 999,
- "[unused991]": 1000,
- "[unused992]": 1001,
- "[unused993]": 1002,
- "!": 1003,
- "\"": 1004,
- "#": 1005,
- "$": 1006,
- "%": 1007,
- "&": 1008,
- "'": 1009,
- "(": 1010,
- ")": 1011,
- "*": 1012,
- "+": 1013,
- ",": 1014,
- "-": 1015,
- ".": 1016,
- "/": 1017,
- "0": 1018,
- "1": 1019,
- "2": 1020,
- "3": 1021,
- "4": 1022,
- "5": 1023,
- "6": 1024,
- "7": 1025,
- "8": 1026,
- "9": 1027,
- ":": 1028,
- ";": 1029,
- "<": 1030,
- "=": 1031,
- ">": 1032,
- "?": 1033,
- "@": 1034,
- "[": 1035,
- "\\": 1036,
- "]": 1037,
- "^": 1038,
- "_": 1039,
- "`": 1040,
- "a": 1041,
- "b": 1042,
- "c": 1043,
- "d": 1044,
- "e": 1045,
- "f": 1046,
- "g": 1047,
- "h": 1048,
- "i": 1049,
- "j": 1050,
- "k": 1051,
- "l": 1052,
- "m": 1053,
- "n": 1054,
- "o": 1055,
- "p": 1056,
- "q": 1057,
- "r": 1058,
- "s": 1059,
- "t": 1060,
- "u": 1061,
- "v": 1062,
- "w": 1063,
- "x": 1064,
- "y": 1065,
- "z": 1066,
- "{": 1067,
- "|": 1068,
- "}": 1069,
- "~": 1070,
- "¡": 1071,
- "¢": 1072,
- "£": 1073,
- "¤": 1074,
- "¥": 1075,
- "¦": 1076,
- "§": 1077,
- "¨": 1078,
- "©": 1079,
- "ª": 1080,
- "«": 1081,
- "¬": 1082,
- "®": 1083,
- "°": 1084,
- "±": 1085,
- "²": 1086,
- "³": 1087,
- "´": 1088,
- "µ": 1089,
- "¶": 1090,
- "·": 1091,
- "¹": 1092,
- "º": 1093,
- "»": 1094,
- "¼": 1095,
- "½": 1096,
- "¾": 1097,
- "¿": 1098,
- "×": 1099,
- "ß": 1100,
- "æ": 1101,
- "ð": 1102,
- "÷": 1103,
- "ø": 1104,
- "þ": 1105,
- "đ": 1106,
- "ħ": 1107,
- "ı": 1108,
- "ł": 1109,
- "ŋ": 1110,
- "œ": 1111,
- "ƒ": 1112,
- "ɐ": 1113,
- "ɑ": 1114,
- "ɒ": 1115,
- "ɔ": 1116,
- "ɕ": 1117,
- "ə": 1118,
- "ɛ": 1119,
- "ɡ": 1120,
- "ɣ": 1121,
- "ɨ": 1122,
- "ɪ": 1123,
- "ɫ": 1124,
- "ɬ": 1125,
- "ɯ": 1126,
- "ɲ": 1127,
- "ɴ": 1128,
- "ɹ": 1129,
- "ɾ": 1130,
- "ʀ": 1131,
- "ʁ": 1132,
- "ʂ": 1133,
- "ʃ": 1134,
- "ʉ": 1135,
- "ʊ": 1136,
- "ʋ": 1137,
- "ʌ": 1138,
- "ʎ": 1139,
- "ʐ": 1140,
- "ʑ": 1141,
- "ʒ": 1142,
- "ʔ": 1143,
- "ʰ": 1144,
- "ʲ": 1145,
- "ʳ": 1146,
- "ʷ": 1147,
- "ʸ": 1148,
- "ʻ": 1149,
- "ʼ": 1150,
- "ʾ": 1151,
- "ʿ": 1152,
- "ˈ": 1153,
- "ː": 1154,
- "ˡ": 1155,
- "ˢ": 1156,
- "ˣ": 1157,
- "ˤ": 1158,
- "α": 1159,
- "β": 1160,
- "γ": 1161,
- "δ": 1162,
- "ε": 1163,
- "ζ": 1164,
- "η": 1165,
- "θ": 1166,
- "ι": 1167,
- "κ": 1168,
- "λ": 1169,
- "μ": 1170,
- "ν": 1171,
- "ξ": 1172,
- "ο": 1173,
- "π": 1174,
- "ρ": 1175,
- "ς": 1176,
- "σ": 1177,
- "τ": 1178,
- "υ": 1179,
- "φ": 1180,
- "χ": 1181,
- "ψ": 1182,
- "ω": 1183,
- "а": 1184,
- "б": 1185,
- "в": 1186,
- "г": 1187,
- "д": 1188,
- "е": 1189,
- "ж": 1190,
- "з": 1191,
- "и": 1192,
- "к": 1193,
- "л": 1194,
- "м": 1195,
- "н": 1196,
- "о": 1197,
- "п": 1198,
- "р": 1199,
- "с": 1200,
- "т": 1201,
- "у": 1202,
- "ф": 1203,
- "х": 1204,
- "ц": 1205,
- "ч": 1206,
- "ш": 1207,
- "щ": 1208,
- "ъ": 1209,
- "ы": 1210,
- "ь": 1211,
- "э": 1212,
- "ю": 1213,
- "я": 1214,
- "ђ": 1215,
- "є": 1216,
- "і": 1217,
- "ј": 1218,
- "љ": 1219,
- "њ": 1220,
- "ћ": 1221,
- "ӏ": 1222,
- "ա": 1223,
- "բ": 1224,
- "գ": 1225,
- "դ": 1226,
- "ե": 1227,
- "թ": 1228,
- "ի": 1229,
- "լ": 1230,
- "կ": 1231,
- "հ": 1232,
- "մ": 1233,
- "յ": 1234,
- "ն": 1235,
- "ո": 1236,
- "պ": 1237,
- "ս": 1238,
- "վ": 1239,
- "տ": 1240,
- "ր": 1241,
- "ւ": 1242,
- "ք": 1243,
- "־": 1244,
- "א": 1245,
- "ב": 1246,
- "ג": 1247,
- "ד": 1248,
- "ה": 1249,
- "ו": 1250,
- "ז": 1251,
- "ח": 1252,
- "ט": 1253,
- "י": 1254,
- "ך": 1255,
- "כ": 1256,
- "ל": 1257,
- "ם": 1258,
- "מ": 1259,
- "ן": 1260,
- "נ": 1261,
- "ס": 1262,
- "ע": 1263,
- "ף": 1264,
- "פ": 1265,
- "ץ": 1266,
- "צ": 1267,
- "ק": 1268,
- "ר": 1269,
- "ש": 1270,
- "ת": 1271,
- "،": 1272,
- "ء": 1273,
- "ا": 1274,
- "ب": 1275,
- "ة": 1276,
- "ت": 1277,
- "ث": 1278,
- "ج": 1279,
- "ح": 1280,
- "خ": 1281,
- "د": 1282,
- "ذ": 1283,
- "ر": 1284,
- "ز": 1285,
- "س": 1286,
- "ش": 1287,
- "ص": 1288,
- "ض": 1289,
- "ط": 1290,
- "ظ": 1291,
- "ع": 1292,
- "غ": 1293,
- "ـ": 1294,
- "ف": 1295,
- "ق": 1296,
- "ك": 1297,
- "ل": 1298,
- "م": 1299,
- "ن": 1300,
- "ه": 1301,
- "و": 1302,
- "ى": 1303,
- "ي": 1304,
- "ٹ": 1305,
- "پ": 1306,
- "چ": 1307,
- "ک": 1308,
- "گ": 1309,
- "ں": 1310,
- "ھ": 1311,
- "ہ": 1312,
- "ی": 1313,
- "ے": 1314,
- "अ": 1315,
- "आ": 1316,
- "उ": 1317,
- "ए": 1318,
- "क": 1319,
- "ख": 1320,
- "ग": 1321,
- "च": 1322,
- "ज": 1323,
- "ट": 1324,
- "ड": 1325,
- "ण": 1326,
- "त": 1327,
- "थ": 1328,
- "द": 1329,
- "ध": 1330,
- "न": 1331,
- "प": 1332,
- "ब": 1333,
- "भ": 1334,
- "म": 1335,
- "य": 1336,
- "र": 1337,
- "ल": 1338,
- "व": 1339,
- "श": 1340,
- "ष": 1341,
- "स": 1342,
- "ह": 1343,
- "ा": 1344,
- "ि": 1345,
- "ी": 1346,
- "ो": 1347,
- "।": 1348,
- "॥": 1349,
- "ং": 1350,
- "অ": 1351,
- "আ": 1352,
- "ই": 1353,
- "উ": 1354,
- "এ": 1355,
- "ও": 1356,
- "ক": 1357,
- "খ": 1358,
- "গ": 1359,
- "চ": 1360,
- "ছ": 1361,
- "জ": 1362,
- "ট": 1363,
- "ড": 1364,
- "ণ": 1365,
- "ত": 1366,
- "থ": 1367,
- "দ": 1368,
- "ধ": 1369,
- "ন": 1370,
- "প": 1371,
- "ব": 1372,
- "ভ": 1373,
- "ম": 1374,
- "য": 1375,
- "র": 1376,
- "ল": 1377,
- "শ": 1378,
- "ষ": 1379,
- "স": 1380,
- "হ": 1381,
- "া": 1382,
- "ি": 1383,
- "ী": 1384,
- "ে": 1385,
- "க": 1386,
- "ச": 1387,
- "ட": 1388,
- "த": 1389,
- "ந": 1390,
- "ன": 1391,
- "ப": 1392,
- "ம": 1393,
- "ய": 1394,
- "ர": 1395,
- "ல": 1396,
- "ள": 1397,
- "வ": 1398,
- "ா": 1399,
- "ி": 1400,
- "ு": 1401,
- "ே": 1402,
- "ை": 1403,
- "ನ": 1404,
- "ರ": 1405,
- "ಾ": 1406,
- "ක": 1407,
- "ය": 1408,
- "ර": 1409,
- "ල": 1410,
- "ව": 1411,
- "ා": 1412,
- "ก": 1413,
- "ง": 1414,
- "ต": 1415,
- "ท": 1416,
- "น": 1417,
- "พ": 1418,
- "ม": 1419,
- "ย": 1420,
- "ร": 1421,
- "ล": 1422,
- "ว": 1423,
- "ส": 1424,
- "อ": 1425,
- "า": 1426,
- "เ": 1427,
- "་": 1428,
- "།": 1429,
- "ག": 1430,
- "ང": 1431,
- "ད": 1432,
- "ན": 1433,
- "པ": 1434,
- "བ": 1435,
- "མ": 1436,
- "འ": 1437,
- "ར": 1438,
- "ལ": 1439,
- "ས": 1440,
- "မ": 1441,
- "ა": 1442,
- "ბ": 1443,
- "გ": 1444,
- "დ": 1445,
- "ე": 1446,
- "ვ": 1447,
- "თ": 1448,
- "ი": 1449,
- "კ": 1450,
- "ლ": 1451,
- "მ": 1452,
- "ნ": 1453,
- "ო": 1454,
- "რ": 1455,
- "ს": 1456,
- "ტ": 1457,
- "უ": 1458,
- "ᄀ": 1459,
- "ᄂ": 1460,
- "ᄃ": 1461,
- "ᄅ": 1462,
- "ᄆ": 1463,
- "ᄇ": 1464,
- "ᄉ": 1465,
- "ᄊ": 1466,
- "ᄋ": 1467,
- "ᄌ": 1468,
- "ᄎ": 1469,
- "ᄏ": 1470,
- "ᄐ": 1471,
- "ᄑ": 1472,
- "ᄒ": 1473,
- "ᅡ": 1474,
- "ᅢ": 1475,
- "ᅥ": 1476,
- "ᅦ": 1477,
- "ᅧ": 1478,
- "ᅩ": 1479,
- "ᅪ": 1480,
- "ᅭ": 1481,
- "ᅮ": 1482,
- "ᅯ": 1483,
- "ᅲ": 1484,
- "ᅳ": 1485,
- "ᅴ": 1486,
- "ᅵ": 1487,
- "ᆨ": 1488,
- "ᆫ": 1489,
- "ᆯ": 1490,
- "ᆷ": 1491,
- "ᆸ": 1492,
- "ᆼ": 1493,
- "ᴬ": 1494,
- "ᴮ": 1495,
- "ᴰ": 1496,
- "ᴵ": 1497,
- "ᴺ": 1498,
- "ᵀ": 1499,
- "ᵃ": 1500,
- "ᵇ": 1501,
- "ᵈ": 1502,
- "ᵉ": 1503,
- "ᵍ": 1504,
- "ᵏ": 1505,
- "ᵐ": 1506,
- "ᵒ": 1507,
- "ᵖ": 1508,
- "ᵗ": 1509,
- "ᵘ": 1510,
- "ᵢ": 1511,
- "ᵣ": 1512,
- "ᵤ": 1513,
- "ᵥ": 1514,
- "ᶜ": 1515,
- "ᶠ": 1516,
- "‐": 1517,
- "‑": 1518,
- "‒": 1519,
- "–": 1520,
- "—": 1521,
- "―": 1522,
- "‖": 1523,
- "‘": 1524,
- "’": 1525,
- "‚": 1526,
- "“": 1527,
- "”": 1528,
- "„": 1529,
- "†": 1530,
- "‡": 1531,
- "•": 1532,
- "…": 1533,
- "‰": 1534,
- "′": 1535,
- "″": 1536,
- "›": 1537,
- "‿": 1538,
- "⁄": 1539,
- "⁰": 1540,
- "ⁱ": 1541,
- "⁴": 1542,
- "⁵": 1543,
- "⁶": 1544,
- "⁷": 1545,
- "⁸": 1546,
- "⁹": 1547,
- "⁺": 1548,
- "⁻": 1549,
- "ⁿ": 1550,
- "₀": 1551,
- "₁": 1552,
- "₂": 1553,
- "₃": 1554,
- "₄": 1555,
- "₅": 1556,
- "₆": 1557,
- "₇": 1558,
- "₈": 1559,
- "₉": 1560,
- "₊": 1561,
- "₍": 1562,
- "₎": 1563,
- "ₐ": 1564,
- "ₑ": 1565,
- "ₒ": 1566,
- "ₓ": 1567,
- "ₕ": 1568,
- "ₖ": 1569,
- "ₗ": 1570,
- "ₘ": 1571,
- "ₙ": 1572,
- "ₚ": 1573,
- "ₛ": 1574,
- "ₜ": 1575,
- "₤": 1576,
- "₩": 1577,
- "€": 1578,
- "₱": 1579,
- "₹": 1580,
- "ℓ": 1581,
- "№": 1582,
- "ℝ": 1583,
- "™": 1584,
- "⅓": 1585,
- "⅔": 1586,
- "←": 1587,
- "↑": 1588,
- "→": 1589,
- "↓": 1590,
- "↔": 1591,
- "↦": 1592,
- "⇄": 1593,
- "⇌": 1594,
- "⇒": 1595,
- "∂": 1596,
- "∅": 1597,
- "∆": 1598,
- "∇": 1599,
- "∈": 1600,
- "−": 1601,
- "∗": 1602,
- "∘": 1603,
- "√": 1604,
- "∞": 1605,
- "∧": 1606,
- "∨": 1607,
- "∩": 1608,
- "∪": 1609,
- "≈": 1610,
- "≡": 1611,
- "≤": 1612,
- "≥": 1613,
- "⊂": 1614,
- "⊆": 1615,
- "⊕": 1616,
- "⊗": 1617,
- "⋅": 1618,
- "─": 1619,
- "│": 1620,
- "■": 1621,
- "▪": 1622,
- "●": 1623,
- "★": 1624,
- "☆": 1625,
- "☉": 1626,
- "♠": 1627,
- "♣": 1628,
- "♥": 1629,
- "♦": 1630,
- "♭": 1631,
- "♯": 1632,
- "⟨": 1633,
- "⟩": 1634,
- "ⱼ": 1635,
- "⺩": 1636,
- "⺼": 1637,
- "⽥": 1638,
- "、": 1639,
- "。": 1640,
- "〈": 1641,
- "〉": 1642,
- "《": 1643,
- "》": 1644,
- "「": 1645,
- "」": 1646,
- "『": 1647,
- "』": 1648,
- "〜": 1649,
- "あ": 1650,
- "い": 1651,
- "う": 1652,
- "え": 1653,
- "お": 1654,
- "か": 1655,
- "き": 1656,
- "く": 1657,
- "け": 1658,
- "こ": 1659,
- "さ": 1660,
- "し": 1661,
- "す": 1662,
- "せ": 1663,
- "そ": 1664,
- "た": 1665,
- "ち": 1666,
- "っ": 1667,
- "つ": 1668,
- "て": 1669,
- "と": 1670,
- "な": 1671,
- "に": 1672,
- "ぬ": 1673,
- "ね": 1674,
- "の": 1675,
- "は": 1676,
- "ひ": 1677,
- "ふ": 1678,
- "へ": 1679,
- "ほ": 1680,
- "ま": 1681,
- "み": 1682,
- "む": 1683,
- "め": 1684,
- "も": 1685,
- "や": 1686,
- "ゆ": 1687,
- "よ": 1688,
- "ら": 1689,
- "り": 1690,
- "る": 1691,
- "れ": 1692,
- "ろ": 1693,
- "を": 1694,
- "ん": 1695,
- "ァ": 1696,
- "ア": 1697,
- "ィ": 1698,
- "イ": 1699,
- "ウ": 1700,
- "ェ": 1701,
- "エ": 1702,
- "オ": 1703,
- "カ": 1704,
- "キ": 1705,
- "ク": 1706,
- "ケ": 1707,
- "コ": 1708,
- "サ": 1709,
- "シ": 1710,
- "ス": 1711,
- "セ": 1712,
- "タ": 1713,
- "チ": 1714,
- "ッ": 1715,
- "ツ": 1716,
- "テ": 1717,
- "ト": 1718,
- "ナ": 1719,
- "ニ": 1720,
- "ノ": 1721,
- "ハ": 1722,
- "ヒ": 1723,
- "フ": 1724,
- "ヘ": 1725,
- "ホ": 1726,
- "マ": 1727,
- "ミ": 1728,
- "ム": 1729,
- "メ": 1730,
- "モ": 1731,
- "ャ": 1732,
- "ュ": 1733,
- "ョ": 1734,
- "ラ": 1735,
- "リ": 1736,
- "ル": 1737,
- "レ": 1738,
- "ロ": 1739,
- "ワ": 1740,
- "ン": 1741,
- "・": 1742,
- "ー": 1743,
- "一": 1744,
- "三": 1745,
- "上": 1746,
- "下": 1747,
- "不": 1748,
- "世": 1749,
- "中": 1750,
- "主": 1751,
- "久": 1752,
- "之": 1753,
- "也": 1754,
- "事": 1755,
- "二": 1756,
- "五": 1757,
- "井": 1758,
- "京": 1759,
- "人": 1760,
- "亻": 1761,
- "仁": 1762,
- "介": 1763,
- "代": 1764,
- "仮": 1765,
- "伊": 1766,
- "会": 1767,
- "佐": 1768,
- "侍": 1769,
- "保": 1770,
- "信": 1771,
- "健": 1772,
- "元": 1773,
- "光": 1774,
- "八": 1775,
- "公": 1776,
- "内": 1777,
- "出": 1778,
- "分": 1779,
- "前": 1780,
- "劉": 1781,
- "力": 1782,
- "加": 1783,
- "勝": 1784,
- "北": 1785,
- "区": 1786,
- "十": 1787,
- "千": 1788,
- "南": 1789,
- "博": 1790,
- "原": 1791,
- "口": 1792,
- "古": 1793,
- "史": 1794,
- "司": 1795,
- "合": 1796,
- "吉": 1797,
- "同": 1798,
- "名": 1799,
- "和": 1800,
- "囗": 1801,
- "四": 1802,
- "国": 1803,
- "國": 1804,
- "土": 1805,
- "地": 1806,
- "坂": 1807,
- "城": 1808,
- "堂": 1809,
- "場": 1810,
- "士": 1811,
- "夏": 1812,
- "外": 1813,
- "大": 1814,
- "天": 1815,
- "太": 1816,
- "夫": 1817,
- "奈": 1818,
- "女": 1819,
- "子": 1820,
- "学": 1821,
- "宀": 1822,
- "宇": 1823,
- "安": 1824,
- "宗": 1825,
- "定": 1826,
- "宣": 1827,
- "宮": 1828,
- "家": 1829,
- "宿": 1830,
- "寺": 1831,
- "將": 1832,
- "小": 1833,
- "尚": 1834,
- "山": 1835,
- "岡": 1836,
- "島": 1837,
- "崎": 1838,
- "川": 1839,
- "州": 1840,
- "巿": 1841,
- "帝": 1842,
- "平": 1843,
- "年": 1844,
- "幸": 1845,
- "广": 1846,
- "弘": 1847,
- "張": 1848,
- "彳": 1849,
- "後": 1850,
- "御": 1851,
- "德": 1852,
- "心": 1853,
- "忄": 1854,
- "志": 1855,
- "忠": 1856,
- "愛": 1857,
- "成": 1858,
- "我": 1859,
- "戦": 1860,
- "戸": 1861,
- "手": 1862,
- "扌": 1863,
- "政": 1864,
- "文": 1865,
- "新": 1866,
- "方": 1867,
- "日": 1868,
- "明": 1869,
- "星": 1870,
- "春": 1871,
- "昭": 1872,
- "智": 1873,
- "曲": 1874,
- "書": 1875,
- "月": 1876,
- "有": 1877,
- "朝": 1878,
- "木": 1879,
- "本": 1880,
- "李": 1881,
- "村": 1882,
- "東": 1883,
- "松": 1884,
- "林": 1885,
- "森": 1886,
- "楊": 1887,
- "樹": 1888,
- "橋": 1889,
- "歌": 1890,
- "止": 1891,
- "正": 1892,
- "武": 1893,
- "比": 1894,
- "氏": 1895,
- "民": 1896,
- "水": 1897,
- "氵": 1898,
- "氷": 1899,
- "永": 1900,
- "江": 1901,
- "沢": 1902,
- "河": 1903,
- "治": 1904,
- "法": 1905,
- "海": 1906,
- "清": 1907,
- "漢": 1908,
- "瀬": 1909,
- "火": 1910,
- "版": 1911,
- "犬": 1912,
- "王": 1913,
- "生": 1914,
- "田": 1915,
- "男": 1916,
- "疒": 1917,
- "発": 1918,
- "白": 1919,
- "的": 1920,
- "皇": 1921,
- "目": 1922,
- "相": 1923,
- "省": 1924,
- "真": 1925,
- "石": 1926,
- "示": 1927,
- "社": 1928,
- "神": 1929,
- "福": 1930,
- "禾": 1931,
- "秀": 1932,
- "秋": 1933,
- "空": 1934,
- "立": 1935,
- "章": 1936,
- "竹": 1937,
- "糹": 1938,
- "美": 1939,
- "義": 1940,
- "耳": 1941,
- "良": 1942,
- "艹": 1943,
- "花": 1944,
- "英": 1945,
- "華": 1946,
- "葉": 1947,
- "藤": 1948,
- "行": 1949,
- "街": 1950,
- "西": 1951,
- "見": 1952,
- "訁": 1953,
- "語": 1954,
- "谷": 1955,
- "貝": 1956,
- "貴": 1957,
- "車": 1958,
- "軍": 1959,
- "辶": 1960,
- "道": 1961,
- "郎": 1962,
- "郡": 1963,
- "部": 1964,
- "都": 1965,
- "里": 1966,
- "野": 1967,
- "金": 1968,
- "鈴": 1969,
- "镇": 1970,
- "長": 1971,
- "門": 1972,
- "間": 1973,
- "阝": 1974,
- "阿": 1975,
- "陳": 1976,
- "陽": 1977,
- "雄": 1978,
- "青": 1979,
- "面": 1980,
- "風": 1981,
- "食": 1982,
- "香": 1983,
- "馬": 1984,
- "高": 1985,
- "龍": 1986,
- "龸": 1987,
- "fi": 1988,
- "fl": 1989,
- "!": 1990,
- "(": 1991,
- ")": 1992,
- ",": 1993,
- "-": 1994,
- ".": 1995,
- "/": 1996,
- ":": 1997,
- "?": 1998,
- "~": 1999,
- "the": 2000,
- "of": 2001,
- "and": 2002,
- "in": 2003,
- "to": 2004,
- "was": 2005,
- "he": 2006,
- "is": 2007,
- "as": 2008,
- "for": 2009,
- "on": 2010,
- "with": 2011,
- "that": 2012,
- "it": 2013,
- "his": 2014,
- "by": 2015,
- "at": 2016,
- "from": 2017,
- "her": 2018,
- "##s": 2019,
- "she": 2020,
- "you": 2021,
- "had": 2022,
- "an": 2023,
- "were": 2024,
- "but": 2025,
- "be": 2026,
- "this": 2027,
- "are": 2028,
- "not": 2029,
- "my": 2030,
- "they": 2031,
- "one": 2032,
- "which": 2033,
- "or": 2034,
- "have": 2035,
- "him": 2036,
- "me": 2037,
- "first": 2038,
- "all": 2039,
- "also": 2040,
- "their": 2041,
- "has": 2042,
- "up": 2043,
- "who": 2044,
- "out": 2045,
- "been": 2046,
- "when": 2047,
- "after": 2048,
- "there": 2049,
- "into": 2050,
- "new": 2051,
- "two": 2052,
- "its": 2053,
- "##a": 2054,
- "time": 2055,
- "would": 2056,
- "no": 2057,
- "what": 2058,
- "about": 2059,
- "said": 2060,
- "we": 2061,
- "over": 2062,
- "then": 2063,
- "other": 2064,
- "so": 2065,
- "more": 2066,
- "##e": 2067,
- "can": 2068,
- "if": 2069,
- "like": 2070,
- "back": 2071,
- "them": 2072,
- "only": 2073,
- "some": 2074,
- "could": 2075,
- "##i": 2076,
- "where": 2077,
- "just": 2078,
- "##ing": 2079,
- "during": 2080,
- "before": 2081,
- "##n": 2082,
- "do": 2083,
- "##o": 2084,
- "made": 2085,
- "school": 2086,
- "through": 2087,
- "than": 2088,
- "now": 2089,
- "years": 2090,
- "most": 2091,
- "world": 2092,
- "may": 2093,
- "between": 2094,
- "down": 2095,
- "well": 2096,
- "three": 2097,
- "##d": 2098,
- "year": 2099,
- "while": 2100,
- "will": 2101,
- "##ed": 2102,
- "##r": 2103,
- "##y": 2104,
- "later": 2105,
- "##t": 2106,
- "city": 2107,
- "under": 2108,
- "around": 2109,
- "did": 2110,
- "such": 2111,
- "being": 2112,
- "used": 2113,
- "state": 2114,
- "people": 2115,
- "part": 2116,
- "know": 2117,
- "against": 2118,
- "your": 2119,
- "many": 2120,
- "second": 2121,
- "university": 2122,
- "both": 2123,
- "national": 2124,
- "##er": 2125,
- "these": 2126,
- "don": 2127,
- "known": 2128,
- "off": 2129,
- "way": 2130,
- "until": 2131,
- "re": 2132,
- "how": 2133,
- "even": 2134,
- "get": 2135,
- "head": 2136,
- "...": 2137,
- "didn": 2138,
- "##ly": 2139,
- "team": 2140,
- "american": 2141,
- "because": 2142,
- "de": 2143,
- "##l": 2144,
- "born": 2145,
- "united": 2146,
- "film": 2147,
- "since": 2148,
- "still": 2149,
- "long": 2150,
- "work": 2151,
- "south": 2152,
- "us": 2153,
- "became": 2154,
- "any": 2155,
- "high": 2156,
- "again": 2157,
- "day": 2158,
- "family": 2159,
- "see": 2160,
- "right": 2161,
- "man": 2162,
- "eyes": 2163,
- "house": 2164,
- "season": 2165,
- "war": 2166,
- "states": 2167,
- "including": 2168,
- "took": 2169,
- "life": 2170,
- "north": 2171,
- "same": 2172,
- "each": 2173,
- "called": 2174,
- "name": 2175,
- "much": 2176,
- "place": 2177,
- "however": 2178,
- "go": 2179,
- "four": 2180,
- "group": 2181,
- "another": 2182,
- "found": 2183,
- "won": 2184,
- "area": 2185,
- "here": 2186,
- "going": 2187,
- "10": 2188,
- "away": 2189,
- "series": 2190,
- "left": 2191,
- "home": 2192,
- "music": 2193,
- "best": 2194,
- "make": 2195,
- "hand": 2196,
- "number": 2197,
- "company": 2198,
- "several": 2199,
- "never": 2200,
- "last": 2201,
- "john": 2202,
- "000": 2203,
- "very": 2204,
- "album": 2205,
- "take": 2206,
- "end": 2207,
- "good": 2208,
- "too": 2209,
- "following": 2210,
- "released": 2211,
- "game": 2212,
- "played": 2213,
- "little": 2214,
- "began": 2215,
- "district": 2216,
- "##m": 2217,
- "old": 2218,
- "want": 2219,
- "those": 2220,
- "side": 2221,
- "held": 2222,
- "own": 2223,
- "early": 2224,
- "county": 2225,
- "ll": 2226,
- "league": 2227,
- "use": 2228,
- "west": 2229,
- "##u": 2230,
- "face": 2231,
- "think": 2232,
- "##es": 2233,
- "2010": 2234,
- "government": 2235,
- "##h": 2236,
- "march": 2237,
- "came": 2238,
- "small": 2239,
- "general": 2240,
- "town": 2241,
- "june": 2242,
- "##on": 2243,
- "line": 2244,
- "based": 2245,
- "something": 2246,
- "##k": 2247,
- "september": 2248,
- "thought": 2249,
- "looked": 2250,
- "along": 2251,
- "international": 2252,
- "2011": 2253,
- "air": 2254,
- "july": 2255,
- "club": 2256,
- "went": 2257,
- "january": 2258,
- "october": 2259,
- "our": 2260,
- "august": 2261,
- "april": 2262,
- "york": 2263,
- "12": 2264,
- "few": 2265,
- "2012": 2266,
- "2008": 2267,
- "east": 2268,
- "show": 2269,
- "member": 2270,
- "college": 2271,
- "2009": 2272,
- "father": 2273,
- "public": 2274,
- "##us": 2275,
- "come": 2276,
- "men": 2277,
- "five": 2278,
- "set": 2279,
- "station": 2280,
- "church": 2281,
- "##c": 2282,
- "next": 2283,
- "former": 2284,
- "november": 2285,
- "room": 2286,
- "party": 2287,
- "located": 2288,
- "december": 2289,
- "2013": 2290,
- "age": 2291,
- "got": 2292,
- "2007": 2293,
- "##g": 2294,
- "system": 2295,
- "let": 2296,
- "love": 2297,
- "2006": 2298,
- "though": 2299,
- "every": 2300,
- "2014": 2301,
- "look": 2302,
- "song": 2303,
- "water": 2304,
- "century": 2305,
- "without": 2306,
- "body": 2307,
- "black": 2308,
- "night": 2309,
- "within": 2310,
- "great": 2311,
- "women": 2312,
- "single": 2313,
- "ve": 2314,
- "building": 2315,
- "large": 2316,
- "population": 2317,
- "river": 2318,
- "named": 2319,
- "band": 2320,
- "white": 2321,
- "started": 2322,
- "##an": 2323,
- "once": 2324,
- "15": 2325,
- "20": 2326,
- "should": 2327,
- "18": 2328,
- "2015": 2329,
- "service": 2330,
- "top": 2331,
- "built": 2332,
- "british": 2333,
- "open": 2334,
- "death": 2335,
- "king": 2336,
- "moved": 2337,
- "local": 2338,
- "times": 2339,
- "children": 2340,
- "february": 2341,
- "book": 2342,
- "why": 2343,
- "11": 2344,
- "door": 2345,
- "need": 2346,
- "president": 2347,
- "order": 2348,
- "final": 2349,
- "road": 2350,
- "wasn": 2351,
- "although": 2352,
- "due": 2353,
- "major": 2354,
- "died": 2355,
- "village": 2356,
- "third": 2357,
- "knew": 2358,
- "2016": 2359,
- "asked": 2360,
- "turned": 2361,
- "st": 2362,
- "wanted": 2363,
- "say": 2364,
- "##p": 2365,
- "together": 2366,
- "received": 2367,
- "main": 2368,
- "son": 2369,
- "served": 2370,
- "different": 2371,
- "##en": 2372,
- "behind": 2373,
- "himself": 2374,
- "felt": 2375,
- "members": 2376,
- "power": 2377,
- "football": 2378,
- "law": 2379,
- "voice": 2380,
- "play": 2381,
- "##in": 2382,
- "near": 2383,
- "park": 2384,
- "history": 2385,
- "30": 2386,
- "having": 2387,
- "2005": 2388,
- "16": 2389,
- "##man": 2390,
- "saw": 2391,
- "mother": 2392,
- "##al": 2393,
- "army": 2394,
- "point": 2395,
- "front": 2396,
- "help": 2397,
- "english": 2398,
- "street": 2399,
- "art": 2400,
- "late": 2401,
- "hands": 2402,
- "games": 2403,
- "award": 2404,
- "##ia": 2405,
- "young": 2406,
- "14": 2407,
- "put": 2408,
- "published": 2409,
- "country": 2410,
- "division": 2411,
- "across": 2412,
- "told": 2413,
- "13": 2414,
- "often": 2415,
- "ever": 2416,
- "french": 2417,
- "london": 2418,
- "center": 2419,
- "six": 2420,
- "red": 2421,
- "2017": 2422,
- "led": 2423,
- "days": 2424,
- "include": 2425,
- "light": 2426,
- "25": 2427,
- "find": 2428,
- "tell": 2429,
- "among": 2430,
- "species": 2431,
- "really": 2432,
- "according": 2433,
- "central": 2434,
- "half": 2435,
- "2004": 2436,
- "form": 2437,
- "original": 2438,
- "gave": 2439,
- "office": 2440,
- "making": 2441,
- "enough": 2442,
- "lost": 2443,
- "full": 2444,
- "opened": 2445,
- "must": 2446,
- "included": 2447,
- "live": 2448,
- "given": 2449,
- "german": 2450,
- "player": 2451,
- "run": 2452,
- "business": 2453,
- "woman": 2454,
- "community": 2455,
- "cup": 2456,
- "might": 2457,
- "million": 2458,
- "land": 2459,
- "2000": 2460,
- "court": 2461,
- "development": 2462,
- "17": 2463,
- "short": 2464,
- "round": 2465,
- "ii": 2466,
- "km": 2467,
- "seen": 2468,
- "class": 2469,
- "story": 2470,
- "always": 2471,
- "become": 2472,
- "sure": 2473,
- "research": 2474,
- "almost": 2475,
- "director": 2476,
- "council": 2477,
- "la": 2478,
- "##2": 2479,
- "career": 2480,
- "things": 2481,
- "using": 2482,
- "island": 2483,
- "##z": 2484,
- "couldn": 2485,
- "car": 2486,
- "##is": 2487,
- "24": 2488,
- "close": 2489,
- "force": 2490,
- "##1": 2491,
- "better": 2492,
- "free": 2493,
- "support": 2494,
- "control": 2495,
- "field": 2496,
- "students": 2497,
- "2003": 2498,
- "education": 2499,
- "married": 2500,
- "##b": 2501,
- "nothing": 2502,
- "worked": 2503,
- "others": 2504,
- "record": 2505,
- "big": 2506,
- "inside": 2507,
- "level": 2508,
- "anything": 2509,
- "continued": 2510,
- "give": 2511,
- "james": 2512,
- "##3": 2513,
- "military": 2514,
- "established": 2515,
- "non": 2516,
- "returned": 2517,
- "feel": 2518,
- "does": 2519,
- "title": 2520,
- "written": 2521,
- "thing": 2522,
- "feet": 2523,
- "william": 2524,
- "far": 2525,
- "co": 2526,
- "association": 2527,
- "hard": 2528,
- "already": 2529,
- "2002": 2530,
- "##ra": 2531,
- "championship": 2532,
- "human": 2533,
- "western": 2534,
- "100": 2535,
- "##na": 2536,
- "department": 2537,
- "hall": 2538,
- "role": 2539,
- "various": 2540,
- "production": 2541,
- "21": 2542,
- "19": 2543,
- "heart": 2544,
- "2001": 2545,
- "living": 2546,
- "fire": 2547,
- "version": 2548,
- "##ers": 2549,
- "##f": 2550,
- "television": 2551,
- "royal": 2552,
- "##4": 2553,
- "produced": 2554,
- "working": 2555,
- "act": 2556,
- "case": 2557,
- "society": 2558,
- "region": 2559,
- "present": 2560,
- "radio": 2561,
- "period": 2562,
- "looking": 2563,
- "least": 2564,
- "total": 2565,
- "keep": 2566,
- "england": 2567,
- "wife": 2568,
- "program": 2569,
- "per": 2570,
- "brother": 2571,
- "mind": 2572,
- "special": 2573,
- "22": 2574,
- "##le": 2575,
- "am": 2576,
- "works": 2577,
- "soon": 2578,
- "##6": 2579,
- "political": 2580,
- "george": 2581,
- "services": 2582,
- "taken": 2583,
- "created": 2584,
- "##7": 2585,
- "further": 2586,
- "able": 2587,
- "reached": 2588,
- "david": 2589,
- "union": 2590,
- "joined": 2591,
- "upon": 2592,
- "done": 2593,
- "important": 2594,
- "social": 2595,
- "information": 2596,
- "either": 2597,
- "##ic": 2598,
- "##x": 2599,
- "appeared": 2600,
- "position": 2601,
- "ground": 2602,
- "lead": 2603,
- "rock": 2604,
- "dark": 2605,
- "election": 2606,
- "23": 2607,
- "board": 2608,
- "france": 2609,
- "hair": 2610,
- "course": 2611,
- "arms": 2612,
- "site": 2613,
- "police": 2614,
- "girl": 2615,
- "instead": 2616,
- "real": 2617,
- "sound": 2618,
- "##v": 2619,
- "words": 2620,
- "moment": 2621,
- "##te": 2622,
- "someone": 2623,
- "##8": 2624,
- "summer": 2625,
- "project": 2626,
- "announced": 2627,
- "san": 2628,
- "less": 2629,
- "wrote": 2630,
- "past": 2631,
- "followed": 2632,
- "##5": 2633,
- "blue": 2634,
- "founded": 2635,
- "al": 2636,
- "finally": 2637,
- "india": 2638,
- "taking": 2639,
- "records": 2640,
- "america": 2641,
- "##ne": 2642,
- "1999": 2643,
- "design": 2644,
- "considered": 2645,
- "northern": 2646,
- "god": 2647,
- "stop": 2648,
- "battle": 2649,
- "toward": 2650,
- "european": 2651,
- "outside": 2652,
- "described": 2653,
- "track": 2654,
- "today": 2655,
- "playing": 2656,
- "language": 2657,
- "28": 2658,
- "call": 2659,
- "26": 2660,
- "heard": 2661,
- "professional": 2662,
- "low": 2663,
- "australia": 2664,
- "miles": 2665,
- "california": 2666,
- "win": 2667,
- "yet": 2668,
- "green": 2669,
- "##ie": 2670,
- "trying": 2671,
- "blood": 2672,
- "##ton": 2673,
- "southern": 2674,
- "science": 2675,
- "maybe": 2676,
- "everything": 2677,
- "match": 2678,
- "square": 2679,
- "27": 2680,
- "mouth": 2681,
- "video": 2682,
- "race": 2683,
- "recorded": 2684,
- "leave": 2685,
- "above": 2686,
- "##9": 2687,
- "daughter": 2688,
- "points": 2689,
- "space": 2690,
- "1998": 2691,
- "museum": 2692,
- "change": 2693,
- "middle": 2694,
- "common": 2695,
- "##0": 2696,
- "move": 2697,
- "tv": 2698,
- "post": 2699,
- "##ta": 2700,
- "lake": 2701,
- "seven": 2702,
- "tried": 2703,
- "elected": 2704,
- "closed": 2705,
- "ten": 2706,
- "paul": 2707,
- "minister": 2708,
- "##th": 2709,
- "months": 2710,
- "start": 2711,
- "chief": 2712,
- "return": 2713,
- "canada": 2714,
- "person": 2715,
- "sea": 2716,
- "release": 2717,
- "similar": 2718,
- "modern": 2719,
- "brought": 2720,
- "rest": 2721,
- "hit": 2722,
- "formed": 2723,
- "mr": 2724,
- "##la": 2725,
- "1997": 2726,
- "floor": 2727,
- "event": 2728,
- "doing": 2729,
- "thomas": 2730,
- "1996": 2731,
- "robert": 2732,
- "care": 2733,
- "killed": 2734,
- "training": 2735,
- "star": 2736,
- "week": 2737,
- "needed": 2738,
- "turn": 2739,
- "finished": 2740,
- "railway": 2741,
- "rather": 2742,
- "news": 2743,
- "health": 2744,
- "sent": 2745,
- "example": 2746,
- "ran": 2747,
- "term": 2748,
- "michael": 2749,
- "coming": 2750,
- "currently": 2751,
- "yes": 2752,
- "forces": 2753,
- "despite": 2754,
- "gold": 2755,
- "areas": 2756,
- "50": 2757,
- "stage": 2758,
- "fact": 2759,
- "29": 2760,
- "dead": 2761,
- "says": 2762,
- "popular": 2763,
- "2018": 2764,
- "originally": 2765,
- "germany": 2766,
- "probably": 2767,
- "developed": 2768,
- "result": 2769,
- "pulled": 2770,
- "friend": 2771,
- "stood": 2772,
- "money": 2773,
- "running": 2774,
- "mi": 2775,
- "signed": 2776,
- "word": 2777,
- "songs": 2778,
- "child": 2779,
- "eventually": 2780,
- "met": 2781,
- "tour": 2782,
- "average": 2783,
- "teams": 2784,
- "minutes": 2785,
- "festival": 2786,
- "current": 2787,
- "deep": 2788,
- "kind": 2789,
- "1995": 2790,
- "decided": 2791,
- "usually": 2792,
- "eastern": 2793,
- "seemed": 2794,
- "##ness": 2795,
- "episode": 2796,
- "bed": 2797,
- "added": 2798,
- "table": 2799,
- "indian": 2800,
- "private": 2801,
- "charles": 2802,
- "route": 2803,
- "available": 2804,
- "idea": 2805,
- "throughout": 2806,
- "centre": 2807,
- "addition": 2808,
- "appointed": 2809,
- "style": 2810,
- "1994": 2811,
- "books": 2812,
- "eight": 2813,
- "construction": 2814,
- "press": 2815,
- "mean": 2816,
- "wall": 2817,
- "friends": 2818,
- "remained": 2819,
- "schools": 2820,
- "study": 2821,
- "##ch": 2822,
- "##um": 2823,
- "institute": 2824,
- "oh": 2825,
- "chinese": 2826,
- "sometimes": 2827,
- "events": 2828,
- "possible": 2829,
- "1992": 2830,
- "australian": 2831,
- "type": 2832,
- "brown": 2833,
- "forward": 2834,
- "talk": 2835,
- "process": 2836,
- "food": 2837,
- "debut": 2838,
- "seat": 2839,
- "performance": 2840,
- "committee": 2841,
- "features": 2842,
- "character": 2843,
- "arts": 2844,
- "herself": 2845,
- "else": 2846,
- "lot": 2847,
- "strong": 2848,
- "russian": 2849,
- "range": 2850,
- "hours": 2851,
- "peter": 2852,
- "arm": 2853,
- "##da": 2854,
- "morning": 2855,
- "dr": 2856,
- "sold": 2857,
- "##ry": 2858,
- "quickly": 2859,
- "directed": 2860,
- "1993": 2861,
- "guitar": 2862,
- "china": 2863,
- "##w": 2864,
- "31": 2865,
- "list": 2866,
- "##ma": 2867,
- "performed": 2868,
- "media": 2869,
- "uk": 2870,
- "players": 2871,
- "smile": 2872,
- "##rs": 2873,
- "myself": 2874,
- "40": 2875,
- "placed": 2876,
- "coach": 2877,
- "province": 2878,
- "towards": 2879,
- "wouldn": 2880,
- "leading": 2881,
- "whole": 2882,
- "boy": 2883,
- "official": 2884,
- "designed": 2885,
- "grand": 2886,
- "census": 2887,
- "##el": 2888,
- "europe": 2889,
- "attack": 2890,
- "japanese": 2891,
- "henry": 2892,
- "1991": 2893,
- "##re": 2894,
- "##os": 2895,
- "cross": 2896,
- "getting": 2897,
- "alone": 2898,
- "action": 2899,
- "lower": 2900,
- "network": 2901,
- "wide": 2902,
- "washington": 2903,
- "japan": 2904,
- "1990": 2905,
- "hospital": 2906,
- "believe": 2907,
- "changed": 2908,
- "sister": 2909,
- "##ar": 2910,
- "hold": 2911,
- "gone": 2912,
- "sir": 2913,
- "hadn": 2914,
- "ship": 2915,
- "##ka": 2916,
- "studies": 2917,
- "academy": 2918,
- "shot": 2919,
- "rights": 2920,
- "below": 2921,
- "base": 2922,
- "bad": 2923,
- "involved": 2924,
- "kept": 2925,
- "largest": 2926,
- "##ist": 2927,
- "bank": 2928,
- "future": 2929,
- "especially": 2930,
- "beginning": 2931,
- "mark": 2932,
- "movement": 2933,
- "section": 2934,
- "female": 2935,
- "magazine": 2936,
- "plan": 2937,
- "professor": 2938,
- "lord": 2939,
- "longer": 2940,
- "##ian": 2941,
- "sat": 2942,
- "walked": 2943,
- "hill": 2944,
- "actually": 2945,
- "civil": 2946,
- "energy": 2947,
- "model": 2948,
- "families": 2949,
- "size": 2950,
- "thus": 2951,
- "aircraft": 2952,
- "completed": 2953,
- "includes": 2954,
- "data": 2955,
- "captain": 2956,
- "##or": 2957,
- "fight": 2958,
- "vocals": 2959,
- "featured": 2960,
- "richard": 2961,
- "bridge": 2962,
- "fourth": 2963,
- "1989": 2964,
- "officer": 2965,
- "stone": 2966,
- "hear": 2967,
- "##ism": 2968,
- "means": 2969,
- "medical": 2970,
- "groups": 2971,
- "management": 2972,
- "self": 2973,
- "lips": 2974,
- "competition": 2975,
- "entire": 2976,
- "lived": 2977,
- "technology": 2978,
- "leaving": 2979,
- "federal": 2980,
- "tournament": 2981,
- "bit": 2982,
- "passed": 2983,
- "hot": 2984,
- "independent": 2985,
- "awards": 2986,
- "kingdom": 2987,
- "mary": 2988,
- "spent": 2989,
- "fine": 2990,
- "doesn": 2991,
- "reported": 2992,
- "##ling": 2993,
- "jack": 2994,
- "fall": 2995,
- "raised": 2996,
- "itself": 2997,
- "stay": 2998,
- "true": 2999,
- "studio": 3000,
- "1988": 3001,
- "sports": 3002,
- "replaced": 3003,
- "paris": 3004,
- "systems": 3005,
- "saint": 3006,
- "leader": 3007,
- "theatre": 3008,
- "whose": 3009,
- "market": 3010,
- "capital": 3011,
- "parents": 3012,
- "spanish": 3013,
- "canadian": 3014,
- "earth": 3015,
- "##ity": 3016,
- "cut": 3017,
- "degree": 3018,
- "writing": 3019,
- "bay": 3020,
- "christian": 3021,
- "awarded": 3022,
- "natural": 3023,
- "higher": 3024,
- "bill": 3025,
- "##as": 3026,
- "coast": 3027,
- "provided": 3028,
- "previous": 3029,
- "senior": 3030,
- "ft": 3031,
- "valley": 3032,
- "organization": 3033,
- "stopped": 3034,
- "onto": 3035,
- "countries": 3036,
- "parts": 3037,
- "conference": 3038,
- "queen": 3039,
- "security": 3040,
- "interest": 3041,
- "saying": 3042,
- "allowed": 3043,
- "master": 3044,
- "earlier": 3045,
- "phone": 3046,
- "matter": 3047,
- "smith": 3048,
- "winning": 3049,
- "try": 3050,
- "happened": 3051,
- "moving": 3052,
- "campaign": 3053,
- "los": 3054,
- "##ley": 3055,
- "breath": 3056,
- "nearly": 3057,
- "mid": 3058,
- "1987": 3059,
- "certain": 3060,
- "girls": 3061,
- "date": 3062,
- "italian": 3063,
- "african": 3064,
- "standing": 3065,
- "fell": 3066,
- "artist": 3067,
- "##ted": 3068,
- "shows": 3069,
- "deal": 3070,
- "mine": 3071,
- "industry": 3072,
- "1986": 3073,
- "##ng": 3074,
- "everyone": 3075,
- "republic": 3076,
- "provide": 3077,
- "collection": 3078,
- "library": 3079,
- "student": 3080,
- "##ville": 3081,
- "primary": 3082,
- "owned": 3083,
- "older": 3084,
- "via": 3085,
- "heavy": 3086,
- "1st": 3087,
- "makes": 3088,
- "##able": 3089,
- "attention": 3090,
- "anyone": 3091,
- "africa": 3092,
- "##ri": 3093,
- "stated": 3094,
- "length": 3095,
- "ended": 3096,
- "fingers": 3097,
- "command": 3098,
- "staff": 3099,
- "skin": 3100,
- "foreign": 3101,
- "opening": 3102,
- "governor": 3103,
- "okay": 3104,
- "medal": 3105,
- "kill": 3106,
- "sun": 3107,
- "cover": 3108,
- "job": 3109,
- "1985": 3110,
- "introduced": 3111,
- "chest": 3112,
- "hell": 3113,
- "feeling": 3114,
- "##ies": 3115,
- "success": 3116,
- "meet": 3117,
- "reason": 3118,
- "standard": 3119,
- "meeting": 3120,
- "novel": 3121,
- "1984": 3122,
- "trade": 3123,
- "source": 3124,
- "buildings": 3125,
- "##land": 3126,
- "rose": 3127,
- "guy": 3128,
- "goal": 3129,
- "##ur": 3130,
- "chapter": 3131,
- "native": 3132,
- "husband": 3133,
- "previously": 3134,
- "unit": 3135,
- "limited": 3136,
- "entered": 3137,
- "weeks": 3138,
- "producer": 3139,
- "operations": 3140,
- "mountain": 3141,
- "takes": 3142,
- "covered": 3143,
- "forced": 3144,
- "related": 3145,
- "roman": 3146,
- "complete": 3147,
- "successful": 3148,
- "key": 3149,
- "texas": 3150,
- "cold": 3151,
- "##ya": 3152,
- "channel": 3153,
- "1980": 3154,
- "traditional": 3155,
- "films": 3156,
- "dance": 3157,
- "clear": 3158,
- "approximately": 3159,
- "500": 3160,
- "nine": 3161,
- "van": 3162,
- "prince": 3163,
- "question": 3164,
- "active": 3165,
- "tracks": 3166,
- "ireland": 3167,
- "regional": 3168,
- "silver": 3169,
- "author": 3170,
- "personal": 3171,
- "sense": 3172,
- "operation": 3173,
- "##ine": 3174,
- "economic": 3175,
- "1983": 3176,
- "holding": 3177,
- "twenty": 3178,
- "isbn": 3179,
- "additional": 3180,
- "speed": 3181,
- "hour": 3182,
- "edition": 3183,
- "regular": 3184,
- "historic": 3185,
- "places": 3186,
- "whom": 3187,
- "shook": 3188,
- "movie": 3189,
- "km²": 3190,
- "secretary": 3191,
- "prior": 3192,
- "report": 3193,
- "chicago": 3194,
- "read": 3195,
- "foundation": 3196,
- "view": 3197,
- "engine": 3198,
- "scored": 3199,
- "1982": 3200,
- "units": 3201,
- "ask": 3202,
- "airport": 3203,
- "property": 3204,
- "ready": 3205,
- "immediately": 3206,
- "lady": 3207,
- "month": 3208,
- "listed": 3209,
- "contract": 3210,
- "##de": 3211,
- "manager": 3212,
- "themselves": 3213,
- "lines": 3214,
- "##ki": 3215,
- "navy": 3216,
- "writer": 3217,
- "meant": 3218,
- "##ts": 3219,
- "runs": 3220,
- "##ro": 3221,
- "practice": 3222,
- "championships": 3223,
- "singer": 3224,
- "glass": 3225,
- "commission": 3226,
- "required": 3227,
- "forest": 3228,
- "starting": 3229,
- "culture": 3230,
- "generally": 3231,
- "giving": 3232,
- "access": 3233,
- "attended": 3234,
- "test": 3235,
- "couple": 3236,
- "stand": 3237,
- "catholic": 3238,
- "martin": 3239,
- "caught": 3240,
- "executive": 3241,
- "##less": 3242,
- "eye": 3243,
- "##ey": 3244,
- "thinking": 3245,
- "chair": 3246,
- "quite": 3247,
- "shoulder": 3248,
- "1979": 3249,
- "hope": 3250,
- "decision": 3251,
- "plays": 3252,
- "defeated": 3253,
- "municipality": 3254,
- "whether": 3255,
- "structure": 3256,
- "offered": 3257,
- "slowly": 3258,
- "pain": 3259,
- "ice": 3260,
- "direction": 3261,
- "##ion": 3262,
- "paper": 3263,
- "mission": 3264,
- "1981": 3265,
- "mostly": 3266,
- "200": 3267,
- "noted": 3268,
- "individual": 3269,
- "managed": 3270,
- "nature": 3271,
- "lives": 3272,
- "plant": 3273,
- "##ha": 3274,
- "helped": 3275,
- "except": 3276,
- "studied": 3277,
- "computer": 3278,
- "figure": 3279,
- "relationship": 3280,
- "issue": 3281,
- "significant": 3282,
- "loss": 3283,
- "die": 3284,
- "smiled": 3285,
- "gun": 3286,
- "ago": 3287,
- "highest": 3288,
- "1972": 3289,
- "##am": 3290,
- "male": 3291,
- "bring": 3292,
- "goals": 3293,
- "mexico": 3294,
- "problem": 3295,
- "distance": 3296,
- "commercial": 3297,
- "completely": 3298,
- "location": 3299,
- "annual": 3300,
- "famous": 3301,
- "drive": 3302,
- "1976": 3303,
- "neck": 3304,
- "1978": 3305,
- "surface": 3306,
- "caused": 3307,
- "italy": 3308,
- "understand": 3309,
- "greek": 3310,
- "highway": 3311,
- "wrong": 3312,
- "hotel": 3313,
- "comes": 3314,
- "appearance": 3315,
- "joseph": 3316,
- "double": 3317,
- "issues": 3318,
- "musical": 3319,
- "companies": 3320,
- "castle": 3321,
- "income": 3322,
- "review": 3323,
- "assembly": 3324,
- "bass": 3325,
- "initially": 3326,
- "parliament": 3327,
- "artists": 3328,
- "experience": 3329,
- "1974": 3330,
- "particular": 3331,
- "walk": 3332,
- "foot": 3333,
- "engineering": 3334,
- "talking": 3335,
- "window": 3336,
- "dropped": 3337,
- "##ter": 3338,
- "miss": 3339,
- "baby": 3340,
- "boys": 3341,
- "break": 3342,
- "1975": 3343,
- "stars": 3344,
- "edge": 3345,
- "remember": 3346,
- "policy": 3347,
- "carried": 3348,
- "train": 3349,
- "stadium": 3350,
- "bar": 3351,
- "sex": 3352,
- "angeles": 3353,
- "evidence": 3354,
- "##ge": 3355,
- "becoming": 3356,
- "assistant": 3357,
- "soviet": 3358,
- "1977": 3359,
- "upper": 3360,
- "step": 3361,
- "wing": 3362,
- "1970": 3363,
- "youth": 3364,
- "financial": 3365,
- "reach": 3366,
- "##ll": 3367,
- "actor": 3368,
- "numerous": 3369,
- "##se": 3370,
- "##st": 3371,
- "nodded": 3372,
- "arrived": 3373,
- "##ation": 3374,
- "minute": 3375,
- "##nt": 3376,
- "believed": 3377,
- "sorry": 3378,
- "complex": 3379,
- "beautiful": 3380,
- "victory": 3381,
- "associated": 3382,
- "temple": 3383,
- "1968": 3384,
- "1973": 3385,
- "chance": 3386,
- "perhaps": 3387,
- "metal": 3388,
- "##son": 3389,
- "1945": 3390,
- "bishop": 3391,
- "##et": 3392,
- "lee": 3393,
- "launched": 3394,
- "particularly": 3395,
- "tree": 3396,
- "le": 3397,
- "retired": 3398,
- "subject": 3399,
- "prize": 3400,
- "contains": 3401,
- "yeah": 3402,
- "theory": 3403,
- "empire": 3404,
- "##ce": 3405,
- "suddenly": 3406,
- "waiting": 3407,
- "trust": 3408,
- "recording": 3409,
- "##to": 3410,
- "happy": 3411,
- "terms": 3412,
- "camp": 3413,
- "champion": 3414,
- "1971": 3415,
- "religious": 3416,
- "pass": 3417,
- "zealand": 3418,
- "names": 3419,
- "2nd": 3420,
- "port": 3421,
- "ancient": 3422,
- "tom": 3423,
- "corner": 3424,
- "represented": 3425,
- "watch": 3426,
- "legal": 3427,
- "anti": 3428,
- "justice": 3429,
- "cause": 3430,
- "watched": 3431,
- "brothers": 3432,
- "45": 3433,
- "material": 3434,
- "changes": 3435,
- "simply": 3436,
- "response": 3437,
- "louis": 3438,
- "fast": 3439,
- "##ting": 3440,
- "answer": 3441,
- "60": 3442,
- "historical": 3443,
- "1969": 3444,
- "stories": 3445,
- "straight": 3446,
- "create": 3447,
- "feature": 3448,
- "increased": 3449,
- "rate": 3450,
- "administration": 3451,
- "virginia": 3452,
- "el": 3453,
- "activities": 3454,
- "cultural": 3455,
- "overall": 3456,
- "winner": 3457,
- "programs": 3458,
- "basketball": 3459,
- "legs": 3460,
- "guard": 3461,
- "beyond": 3462,
- "cast": 3463,
- "doctor": 3464,
- "mm": 3465,
- "flight": 3466,
- "results": 3467,
- "remains": 3468,
- "cost": 3469,
- "effect": 3470,
- "winter": 3471,
- "##ble": 3472,
- "larger": 3473,
- "islands": 3474,
- "problems": 3475,
- "chairman": 3476,
- "grew": 3477,
- "commander": 3478,
- "isn": 3479,
- "1967": 3480,
- "pay": 3481,
- "failed": 3482,
- "selected": 3483,
- "hurt": 3484,
- "fort": 3485,
- "box": 3486,
- "regiment": 3487,
- "majority": 3488,
- "journal": 3489,
- "35": 3490,
- "edward": 3491,
- "plans": 3492,
- "##ke": 3493,
- "##ni": 3494,
- "shown": 3495,
- "pretty": 3496,
- "irish": 3497,
- "characters": 3498,
- "directly": 3499,
- "scene": 3500,
- "likely": 3501,
- "operated": 3502,
- "allow": 3503,
- "spring": 3504,
- "##j": 3505,
- "junior": 3506,
- "matches": 3507,
- "looks": 3508,
- "mike": 3509,
- "houses": 3510,
- "fellow": 3511,
- "##tion": 3512,
- "beach": 3513,
- "marriage": 3514,
- "##ham": 3515,
- "##ive": 3516,
- "rules": 3517,
- "oil": 3518,
- "65": 3519,
- "florida": 3520,
- "expected": 3521,
- "nearby": 3522,
- "congress": 3523,
- "sam": 3524,
- "peace": 3525,
- "recent": 3526,
- "iii": 3527,
- "wait": 3528,
- "subsequently": 3529,
- "cell": 3530,
- "##do": 3531,
- "variety": 3532,
- "serving": 3533,
- "agreed": 3534,
- "please": 3535,
- "poor": 3536,
- "joe": 3537,
- "pacific": 3538,
- "attempt": 3539,
- "wood": 3540,
- "democratic": 3541,
- "piece": 3542,
- "prime": 3543,
- "##ca": 3544,
- "rural": 3545,
- "mile": 3546,
- "touch": 3547,
- "appears": 3548,
- "township": 3549,
- "1964": 3550,
- "1966": 3551,
- "soldiers": 3552,
- "##men": 3553,
- "##ized": 3554,
- "1965": 3555,
- "pennsylvania": 3556,
- "closer": 3557,
- "fighting": 3558,
- "claimed": 3559,
- "score": 3560,
- "jones": 3561,
- "physical": 3562,
- "editor": 3563,
- "##ous": 3564,
- "filled": 3565,
- "genus": 3566,
- "specific": 3567,
- "sitting": 3568,
- "super": 3569,
- "mom": 3570,
- "##va": 3571,
- "therefore": 3572,
- "supported": 3573,
- "status": 3574,
- "fear": 3575,
- "cases": 3576,
- "store": 3577,
- "meaning": 3578,
- "wales": 3579,
- "minor": 3580,
- "spain": 3581,
- "tower": 3582,
- "focus": 3583,
- "vice": 3584,
- "frank": 3585,
- "follow": 3586,
- "parish": 3587,
- "separate": 3588,
- "golden": 3589,
- "horse": 3590,
- "fifth": 3591,
- "remaining": 3592,
- "branch": 3593,
- "32": 3594,
- "presented": 3595,
- "stared": 3596,
- "##id": 3597,
- "uses": 3598,
- "secret": 3599,
- "forms": 3600,
- "##co": 3601,
- "baseball": 3602,
- "exactly": 3603,
- "##ck": 3604,
- "choice": 3605,
- "note": 3606,
- "discovered": 3607,
- "travel": 3608,
- "composed": 3609,
- "truth": 3610,
- "russia": 3611,
- "ball": 3612,
- "color": 3613,
- "kiss": 3614,
- "dad": 3615,
- "wind": 3616,
- "continue": 3617,
- "ring": 3618,
- "referred": 3619,
- "numbers": 3620,
- "digital": 3621,
- "greater": 3622,
- "##ns": 3623,
- "metres": 3624,
- "slightly": 3625,
- "direct": 3626,
- "increase": 3627,
- "1960": 3628,
- "responsible": 3629,
- "crew": 3630,
- "rule": 3631,
- "trees": 3632,
- "troops": 3633,
- "##no": 3634,
- "broke": 3635,
- "goes": 3636,
- "individuals": 3637,
- "hundred": 3638,
- "weight": 3639,
- "creek": 3640,
- "sleep": 3641,
- "memory": 3642,
- "defense": 3643,
- "provides": 3644,
- "ordered": 3645,
- "code": 3646,
- "value": 3647,
- "jewish": 3648,
- "windows": 3649,
- "1944": 3650,
- "safe": 3651,
- "judge": 3652,
- "whatever": 3653,
- "corps": 3654,
- "realized": 3655,
- "growing": 3656,
- "pre": 3657,
- "##ga": 3658,
- "cities": 3659,
- "alexander": 3660,
- "gaze": 3661,
- "lies": 3662,
- "spread": 3663,
- "scott": 3664,
- "letter": 3665,
- "showed": 3666,
- "situation": 3667,
- "mayor": 3668,
- "transport": 3669,
- "watching": 3670,
- "workers": 3671,
- "extended": 3672,
- "##li": 3673,
- "expression": 3674,
- "normal": 3675,
- "##ment": 3676,
- "chart": 3677,
- "multiple": 3678,
- "border": 3679,
- "##ba": 3680,
- "host": 3681,
- "##ner": 3682,
- "daily": 3683,
- "mrs": 3684,
- "walls": 3685,
- "piano": 3686,
- "##ko": 3687,
- "heat": 3688,
- "cannot": 3689,
- "##ate": 3690,
- "earned": 3691,
- "products": 3692,
- "drama": 3693,
- "era": 3694,
- "authority": 3695,
- "seasons": 3696,
- "join": 3697,
- "grade": 3698,
- "##io": 3699,
- "sign": 3700,
- "difficult": 3701,
- "machine": 3702,
- "1963": 3703,
- "territory": 3704,
- "mainly": 3705,
- "##wood": 3706,
- "stations": 3707,
- "squadron": 3708,
- "1962": 3709,
- "stepped": 3710,
- "iron": 3711,
- "19th": 3712,
- "##led": 3713,
- "serve": 3714,
- "appear": 3715,
- "sky": 3716,
- "speak": 3717,
- "broken": 3718,
- "charge": 3719,
- "knowledge": 3720,
- "kilometres": 3721,
- "removed": 3722,
- "ships": 3723,
- "article": 3724,
- "campus": 3725,
- "simple": 3726,
- "##ty": 3727,
- "pushed": 3728,
- "britain": 3729,
- "##ve": 3730,
- "leaves": 3731,
- "recently": 3732,
- "cd": 3733,
- "soft": 3734,
- "boston": 3735,
- "latter": 3736,
- "easy": 3737,
- "acquired": 3738,
- "poland": 3739,
- "##sa": 3740,
- "quality": 3741,
- "officers": 3742,
- "presence": 3743,
- "planned": 3744,
- "nations": 3745,
- "mass": 3746,
- "broadcast": 3747,
- "jean": 3748,
- "share": 3749,
- "image": 3750,
- "influence": 3751,
- "wild": 3752,
- "offer": 3753,
- "emperor": 3754,
- "electric": 3755,
- "reading": 3756,
- "headed": 3757,
- "ability": 3758,
- "promoted": 3759,
- "yellow": 3760,
- "ministry": 3761,
- "1942": 3762,
- "throat": 3763,
- "smaller": 3764,
- "politician": 3765,
- "##by": 3766,
- "latin": 3767,
- "spoke": 3768,
- "cars": 3769,
- "williams": 3770,
- "males": 3771,
- "lack": 3772,
- "pop": 3773,
- "80": 3774,
- "##ier": 3775,
- "acting": 3776,
- "seeing": 3777,
- "consists": 3778,
- "##ti": 3779,
- "estate": 3780,
- "1961": 3781,
- "pressure": 3782,
- "johnson": 3783,
- "newspaper": 3784,
- "jr": 3785,
- "chris": 3786,
- "olympics": 3787,
- "online": 3788,
- "conditions": 3789,
- "beat": 3790,
- "elements": 3791,
- "walking": 3792,
- "vote": 3793,
- "##field": 3794,
- "needs": 3795,
- "carolina": 3796,
- "text": 3797,
- "featuring": 3798,
- "global": 3799,
- "block": 3800,
- "shirt": 3801,
- "levels": 3802,
- "francisco": 3803,
- "purpose": 3804,
- "females": 3805,
- "et": 3806,
- "dutch": 3807,
- "duke": 3808,
- "ahead": 3809,
- "gas": 3810,
- "twice": 3811,
- "safety": 3812,
- "serious": 3813,
- "turning": 3814,
- "highly": 3815,
- "lieutenant": 3816,
- "firm": 3817,
- "maria": 3818,
- "amount": 3819,
- "mixed": 3820,
- "daniel": 3821,
- "proposed": 3822,
- "perfect": 3823,
- "agreement": 3824,
- "affairs": 3825,
- "3rd": 3826,
- "seconds": 3827,
- "contemporary": 3828,
- "paid": 3829,
- "1943": 3830,
- "prison": 3831,
- "save": 3832,
- "kitchen": 3833,
- "label": 3834,
- "administrative": 3835,
- "intended": 3836,
- "constructed": 3837,
- "academic": 3838,
- "nice": 3839,
- "teacher": 3840,
- "races": 3841,
- "1956": 3842,
- "formerly": 3843,
- "corporation": 3844,
- "ben": 3845,
- "nation": 3846,
- "issued": 3847,
- "shut": 3848,
- "1958": 3849,
- "drums": 3850,
- "housing": 3851,
- "victoria": 3852,
- "seems": 3853,
- "opera": 3854,
- "1959": 3855,
- "graduated": 3856,
- "function": 3857,
- "von": 3858,
- "mentioned": 3859,
- "picked": 3860,
- "build": 3861,
- "recognized": 3862,
- "shortly": 3863,
- "protection": 3864,
- "picture": 3865,
- "notable": 3866,
- "exchange": 3867,
- "elections": 3868,
- "1980s": 3869,
- "loved": 3870,
- "percent": 3871,
- "racing": 3872,
- "fish": 3873,
- "elizabeth": 3874,
- "garden": 3875,
- "volume": 3876,
- "hockey": 3877,
- "1941": 3878,
- "beside": 3879,
- "settled": 3880,
- "##ford": 3881,
- "1940": 3882,
- "competed": 3883,
- "replied": 3884,
- "drew": 3885,
- "1948": 3886,
- "actress": 3887,
- "marine": 3888,
- "scotland": 3889,
- "steel": 3890,
- "glanced": 3891,
- "farm": 3892,
- "steve": 3893,
- "1957": 3894,
- "risk": 3895,
- "tonight": 3896,
- "positive": 3897,
- "magic": 3898,
- "singles": 3899,
- "effects": 3900,
- "gray": 3901,
- "screen": 3902,
- "dog": 3903,
- "##ja": 3904,
- "residents": 3905,
- "bus": 3906,
- "sides": 3907,
- "none": 3908,
- "secondary": 3909,
- "literature": 3910,
- "polish": 3911,
- "destroyed": 3912,
- "flying": 3913,
- "founder": 3914,
- "households": 3915,
- "1939": 3916,
- "lay": 3917,
- "reserve": 3918,
- "usa": 3919,
- "gallery": 3920,
- "##ler": 3921,
- "1946": 3922,
- "industrial": 3923,
- "younger": 3924,
- "approach": 3925,
- "appearances": 3926,
- "urban": 3927,
- "ones": 3928,
- "1950": 3929,
- "finish": 3930,
- "avenue": 3931,
- "powerful": 3932,
- "fully": 3933,
- "growth": 3934,
- "page": 3935,
- "honor": 3936,
- "jersey": 3937,
- "projects": 3938,
- "advanced": 3939,
- "revealed": 3940,
- "basic": 3941,
- "90": 3942,
- "infantry": 3943,
- "pair": 3944,
- "equipment": 3945,
- "visit": 3946,
- "33": 3947,
- "evening": 3948,
- "search": 3949,
- "grant": 3950,
- "effort": 3951,
- "solo": 3952,
- "treatment": 3953,
- "buried": 3954,
- "republican": 3955,
- "primarily": 3956,
- "bottom": 3957,
- "owner": 3958,
- "1970s": 3959,
- "israel": 3960,
- "gives": 3961,
- "jim": 3962,
- "dream": 3963,
- "bob": 3964,
- "remain": 3965,
- "spot": 3966,
- "70": 3967,
- "notes": 3968,
- "produce": 3969,
- "champions": 3970,
- "contact": 3971,
- "ed": 3972,
- "soul": 3973,
- "accepted": 3974,
- "ways": 3975,
- "del": 3976,
- "##ally": 3977,
- "losing": 3978,
- "split": 3979,
- "price": 3980,
- "capacity": 3981,
- "basis": 3982,
- "trial": 3983,
- "questions": 3984,
- "##ina": 3985,
- "1955": 3986,
- "20th": 3987,
- "guess": 3988,
- "officially": 3989,
- "memorial": 3990,
- "naval": 3991,
- "initial": 3992,
- "##ization": 3993,
- "whispered": 3994,
- "median": 3995,
- "engineer": 3996,
- "##ful": 3997,
- "sydney": 3998,
- "##go": 3999,
- "columbia": 4000,
- "strength": 4001,
- "300": 4002,
- "1952": 4003,
- "tears": 4004,
- "senate": 4005,
- "00": 4006,
- "card": 4007,
- "asian": 4008,
- "agent": 4009,
- "1947": 4010,
- "software": 4011,
- "44": 4012,
- "draw": 4013,
- "warm": 4014,
- "supposed": 4015,
- "com": 4016,
- "pro": 4017,
- "##il": 4018,
- "transferred": 4019,
- "leaned": 4020,
- "##at": 4021,
- "candidate": 4022,
- "escape": 4023,
- "mountains": 4024,
- "asia": 4025,
- "potential": 4026,
- "activity": 4027,
- "entertainment": 4028,
- "seem": 4029,
- "traffic": 4030,
- "jackson": 4031,
- "murder": 4032,
- "36": 4033,
- "slow": 4034,
- "product": 4035,
- "orchestra": 4036,
- "haven": 4037,
- "agency": 4038,
- "bbc": 4039,
- "taught": 4040,
- "website": 4041,
- "comedy": 4042,
- "unable": 4043,
- "storm": 4044,
- "planning": 4045,
- "albums": 4046,
- "rugby": 4047,
- "environment": 4048,
- "scientific": 4049,
- "grabbed": 4050,
- "protect": 4051,
- "##hi": 4052,
- "boat": 4053,
- "typically": 4054,
- "1954": 4055,
- "1953": 4056,
- "damage": 4057,
- "principal": 4058,
- "divided": 4059,
- "dedicated": 4060,
- "mount": 4061,
- "ohio": 4062,
- "##berg": 4063,
- "pick": 4064,
- "fought": 4065,
- "driver": 4066,
- "##der": 4067,
- "empty": 4068,
- "shoulders": 4069,
- "sort": 4070,
- "thank": 4071,
- "berlin": 4072,
- "prominent": 4073,
- "account": 4074,
- "freedom": 4075,
- "necessary": 4076,
- "efforts": 4077,
- "alex": 4078,
- "headquarters": 4079,
- "follows": 4080,
- "alongside": 4081,
- "des": 4082,
- "simon": 4083,
- "andrew": 4084,
- "suggested": 4085,
- "operating": 4086,
- "learning": 4087,
- "steps": 4088,
- "1949": 4089,
- "sweet": 4090,
- "technical": 4091,
- "begin": 4092,
- "easily": 4093,
- "34": 4094,
- "teeth": 4095,
- "speaking": 4096,
- "settlement": 4097,
- "scale": 4098,
- "##sh": 4099,
- "renamed": 4100,
- "ray": 4101,
- "max": 4102,
- "enemy": 4103,
- "semi": 4104,
- "joint": 4105,
- "compared": 4106,
- "##rd": 4107,
- "scottish": 4108,
- "leadership": 4109,
- "analysis": 4110,
- "offers": 4111,
- "georgia": 4112,
- "pieces": 4113,
- "captured": 4114,
- "animal": 4115,
- "deputy": 4116,
- "guest": 4117,
- "organized": 4118,
- "##lin": 4119,
- "tony": 4120,
- "combined": 4121,
- "method": 4122,
- "challenge": 4123,
- "1960s": 4124,
- "huge": 4125,
- "wants": 4126,
- "battalion": 4127,
- "sons": 4128,
- "rise": 4129,
- "crime": 4130,
- "types": 4131,
- "facilities": 4132,
- "telling": 4133,
- "path": 4134,
- "1951": 4135,
- "platform": 4136,
- "sit": 4137,
- "1990s": 4138,
- "##lo": 4139,
- "tells": 4140,
- "assigned": 4141,
- "rich": 4142,
- "pull": 4143,
- "##ot": 4144,
- "commonly": 4145,
- "alive": 4146,
- "##za": 4147,
- "letters": 4148,
- "concept": 4149,
- "conducted": 4150,
- "wearing": 4151,
- "happen": 4152,
- "bought": 4153,
- "becomes": 4154,
- "holy": 4155,
- "gets": 4156,
- "ocean": 4157,
- "defeat": 4158,
- "languages": 4159,
- "purchased": 4160,
- "coffee": 4161,
- "occurred": 4162,
- "titled": 4163,
- "##q": 4164,
- "declared": 4165,
- "applied": 4166,
- "sciences": 4167,
- "concert": 4168,
- "sounds": 4169,
- "jazz": 4170,
- "brain": 4171,
- "##me": 4172,
- "painting": 4173,
- "fleet": 4174,
- "tax": 4175,
- "nick": 4176,
- "##ius": 4177,
- "michigan": 4178,
- "count": 4179,
- "animals": 4180,
- "leaders": 4181,
- "episodes": 4182,
- "##line": 4183,
- "content": 4184,
- "##den": 4185,
- "birth": 4186,
- "##it": 4187,
- "clubs": 4188,
- "64": 4189,
- "palace": 4190,
- "critical": 4191,
- "refused": 4192,
- "fair": 4193,
- "leg": 4194,
- "laughed": 4195,
- "returning": 4196,
- "surrounding": 4197,
- "participated": 4198,
- "formation": 4199,
- "lifted": 4200,
- "pointed": 4201,
- "connected": 4202,
- "rome": 4203,
- "medicine": 4204,
- "laid": 4205,
- "taylor": 4206,
- "santa": 4207,
- "powers": 4208,
- "adam": 4209,
- "tall": 4210,
- "shared": 4211,
- "focused": 4212,
- "knowing": 4213,
- "yards": 4214,
- "entrance": 4215,
- "falls": 4216,
- "##wa": 4217,
- "calling": 4218,
- "##ad": 4219,
- "sources": 4220,
- "chosen": 4221,
- "beneath": 4222,
- "resources": 4223,
- "yard": 4224,
- "##ite": 4225,
- "nominated": 4226,
- "silence": 4227,
- "zone": 4228,
- "defined": 4229,
- "##que": 4230,
- "gained": 4231,
- "thirty": 4232,
- "38": 4233,
- "bodies": 4234,
- "moon": 4235,
- "##ard": 4236,
- "adopted": 4237,
- "christmas": 4238,
- "widely": 4239,
- "register": 4240,
- "apart": 4241,
- "iran": 4242,
- "premier": 4243,
- "serves": 4244,
- "du": 4245,
- "unknown": 4246,
- "parties": 4247,
- "##les": 4248,
- "generation": 4249,
- "##ff": 4250,
- "continues": 4251,
- "quick": 4252,
- "fields": 4253,
- "brigade": 4254,
- "quiet": 4255,
- "teaching": 4256,
- "clothes": 4257,
- "impact": 4258,
- "weapons": 4259,
- "partner": 4260,
- "flat": 4261,
- "theater": 4262,
- "supreme": 4263,
- "1938": 4264,
- "37": 4265,
- "relations": 4266,
- "##tor": 4267,
- "plants": 4268,
- "suffered": 4269,
- "1936": 4270,
- "wilson": 4271,
- "kids": 4272,
- "begins": 4273,
- "##age": 4274,
- "1918": 4275,
- "seats": 4276,
- "armed": 4277,
- "internet": 4278,
- "models": 4279,
- "worth": 4280,
- "laws": 4281,
- "400": 4282,
- "communities": 4283,
- "classes": 4284,
- "background": 4285,
- "knows": 4286,
- "thanks": 4287,
- "quarter": 4288,
- "reaching": 4289,
- "humans": 4290,
- "carry": 4291,
- "killing": 4292,
- "format": 4293,
- "kong": 4294,
- "hong": 4295,
- "setting": 4296,
- "75": 4297,
- "architecture": 4298,
- "disease": 4299,
- "railroad": 4300,
- "inc": 4301,
- "possibly": 4302,
- "wish": 4303,
- "arthur": 4304,
- "thoughts": 4305,
- "harry": 4306,
- "doors": 4307,
- "density": 4308,
- "##di": 4309,
- "crowd": 4310,
- "illinois": 4311,
- "stomach": 4312,
- "tone": 4313,
- "unique": 4314,
- "reports": 4315,
- "anyway": 4316,
- "##ir": 4317,
- "liberal": 4318,
- "der": 4319,
- "vehicle": 4320,
- "thick": 4321,
- "dry": 4322,
- "drug": 4323,
- "faced": 4324,
- "largely": 4325,
- "facility": 4326,
- "theme": 4327,
- "holds": 4328,
- "creation": 4329,
- "strange": 4330,
- "colonel": 4331,
- "##mi": 4332,
- "revolution": 4333,
- "bell": 4334,
- "politics": 4335,
- "turns": 4336,
- "silent": 4337,
- "rail": 4338,
- "relief": 4339,
- "independence": 4340,
- "combat": 4341,
- "shape": 4342,
- "write": 4343,
- "determined": 4344,
- "sales": 4345,
- "learned": 4346,
- "4th": 4347,
- "finger": 4348,
- "oxford": 4349,
- "providing": 4350,
- "1937": 4351,
- "heritage": 4352,
- "fiction": 4353,
- "situated": 4354,
- "designated": 4355,
- "allowing": 4356,
- "distribution": 4357,
- "hosted": 4358,
- "##est": 4359,
- "sight": 4360,
- "interview": 4361,
- "estimated": 4362,
- "reduced": 4363,
- "##ria": 4364,
- "toronto": 4365,
- "footballer": 4366,
- "keeping": 4367,
- "guys": 4368,
- "damn": 4369,
- "claim": 4370,
- "motion": 4371,
- "sport": 4372,
- "sixth": 4373,
- "stayed": 4374,
- "##ze": 4375,
- "en": 4376,
- "rear": 4377,
- "receive": 4378,
- "handed": 4379,
- "twelve": 4380,
- "dress": 4381,
- "audience": 4382,
- "granted": 4383,
- "brazil": 4384,
- "##well": 4385,
- "spirit": 4386,
- "##ated": 4387,
- "noticed": 4388,
- "etc": 4389,
- "olympic": 4390,
- "representative": 4391,
- "eric": 4392,
- "tight": 4393,
- "trouble": 4394,
- "reviews": 4395,
- "drink": 4396,
- "vampire": 4397,
- "missing": 4398,
- "roles": 4399,
- "ranked": 4400,
- "newly": 4401,
- "household": 4402,
- "finals": 4403,
- "wave": 4404,
- "critics": 4405,
- "##ee": 4406,
- "phase": 4407,
- "massachusetts": 4408,
- "pilot": 4409,
- "unlike": 4410,
- "philadelphia": 4411,
- "bright": 4412,
- "guns": 4413,
- "crown": 4414,
- "organizations": 4415,
- "roof": 4416,
- "42": 4417,
- "respectively": 4418,
- "clearly": 4419,
- "tongue": 4420,
- "marked": 4421,
- "circle": 4422,
- "fox": 4423,
- "korea": 4424,
- "bronze": 4425,
- "brian": 4426,
- "expanded": 4427,
- "sexual": 4428,
- "supply": 4429,
- "yourself": 4430,
- "inspired": 4431,
- "labour": 4432,
- "fc": 4433,
- "##ah": 4434,
- "reference": 4435,
- "vision": 4436,
- "draft": 4437,
- "connection": 4438,
- "brand": 4439,
- "reasons": 4440,
- "1935": 4441,
- "classic": 4442,
- "driving": 4443,
- "trip": 4444,
- "jesus": 4445,
- "cells": 4446,
- "entry": 4447,
- "1920": 4448,
- "neither": 4449,
- "trail": 4450,
- "claims": 4451,
- "atlantic": 4452,
- "orders": 4453,
- "labor": 4454,
- "nose": 4455,
- "afraid": 4456,
- "identified": 4457,
- "intelligence": 4458,
- "calls": 4459,
- "cancer": 4460,
- "attacked": 4461,
- "passing": 4462,
- "stephen": 4463,
- "positions": 4464,
- "imperial": 4465,
- "grey": 4466,
- "jason": 4467,
- "39": 4468,
- "sunday": 4469,
- "48": 4470,
- "swedish": 4471,
- "avoid": 4472,
- "extra": 4473,
- "uncle": 4474,
- "message": 4475,
- "covers": 4476,
- "allows": 4477,
- "surprise": 4478,
- "materials": 4479,
- "fame": 4480,
- "hunter": 4481,
- "##ji": 4482,
- "1930": 4483,
- "citizens": 4484,
- "figures": 4485,
- "davis": 4486,
- "environmental": 4487,
- "confirmed": 4488,
- "shit": 4489,
- "titles": 4490,
- "di": 4491,
- "performing": 4492,
- "difference": 4493,
- "acts": 4494,
- "attacks": 4495,
- "##ov": 4496,
- "existing": 4497,
- "votes": 4498,
- "opportunity": 4499,
- "nor": 4500,
- "shop": 4501,
- "entirely": 4502,
- "trains": 4503,
- "opposite": 4504,
- "pakistan": 4505,
- "##pa": 4506,
- "develop": 4507,
- "resulted": 4508,
- "representatives": 4509,
- "actions": 4510,
- "reality": 4511,
- "pressed": 4512,
- "##ish": 4513,
- "barely": 4514,
- "wine": 4515,
- "conversation": 4516,
- "faculty": 4517,
- "northwest": 4518,
- "ends": 4519,
- "documentary": 4520,
- "nuclear": 4521,
- "stock": 4522,
- "grace": 4523,
- "sets": 4524,
- "eat": 4525,
- "alternative": 4526,
- "##ps": 4527,
- "bag": 4528,
- "resulting": 4529,
- "creating": 4530,
- "surprised": 4531,
- "cemetery": 4532,
- "1919": 4533,
- "drop": 4534,
- "finding": 4535,
- "sarah": 4536,
- "cricket": 4537,
- "streets": 4538,
- "tradition": 4539,
- "ride": 4540,
- "1933": 4541,
- "exhibition": 4542,
- "target": 4543,
- "ear": 4544,
- "explained": 4545,
- "rain": 4546,
- "composer": 4547,
- "injury": 4548,
- "apartment": 4549,
- "municipal": 4550,
- "educational": 4551,
- "occupied": 4552,
- "netherlands": 4553,
- "clean": 4554,
- "billion": 4555,
- "constitution": 4556,
- "learn": 4557,
- "1914": 4558,
- "maximum": 4559,
- "classical": 4560,
- "francis": 4561,
- "lose": 4562,
- "opposition": 4563,
- "jose": 4564,
- "ontario": 4565,
- "bear": 4566,
- "core": 4567,
- "hills": 4568,
- "rolled": 4569,
- "ending": 4570,
- "drawn": 4571,
- "permanent": 4572,
- "fun": 4573,
- "##tes": 4574,
- "##lla": 4575,
- "lewis": 4576,
- "sites": 4577,
- "chamber": 4578,
- "ryan": 4579,
- "##way": 4580,
- "scoring": 4581,
- "height": 4582,
- "1934": 4583,
- "##house": 4584,
- "lyrics": 4585,
- "staring": 4586,
- "55": 4587,
- "officials": 4588,
- "1917": 4589,
- "snow": 4590,
- "oldest": 4591,
- "##tic": 4592,
- "orange": 4593,
- "##ger": 4594,
- "qualified": 4595,
- "interior": 4596,
- "apparently": 4597,
- "succeeded": 4598,
- "thousand": 4599,
- "dinner": 4600,
- "lights": 4601,
- "existence": 4602,
- "fans": 4603,
- "heavily": 4604,
- "41": 4605,
- "greatest": 4606,
- "conservative": 4607,
- "send": 4608,
- "bowl": 4609,
- "plus": 4610,
- "enter": 4611,
- "catch": 4612,
- "##un": 4613,
- "economy": 4614,
- "duty": 4615,
- "1929": 4616,
- "speech": 4617,
- "authorities": 4618,
- "princess": 4619,
- "performances": 4620,
- "versions": 4621,
- "shall": 4622,
- "graduate": 4623,
- "pictures": 4624,
- "effective": 4625,
- "remembered": 4626,
- "poetry": 4627,
- "desk": 4628,
- "crossed": 4629,
- "starring": 4630,
- "starts": 4631,
- "passenger": 4632,
- "sharp": 4633,
- "##ant": 4634,
- "acres": 4635,
- "ass": 4636,
- "weather": 4637,
- "falling": 4638,
- "rank": 4639,
- "fund": 4640,
- "supporting": 4641,
- "check": 4642,
- "adult": 4643,
- "publishing": 4644,
- "heads": 4645,
- "cm": 4646,
- "southeast": 4647,
- "lane": 4648,
- "##burg": 4649,
- "application": 4650,
- "bc": 4651,
- "##ura": 4652,
- "les": 4653,
- "condition": 4654,
- "transfer": 4655,
- "prevent": 4656,
- "display": 4657,
- "ex": 4658,
- "regions": 4659,
- "earl": 4660,
- "federation": 4661,
- "cool": 4662,
- "relatively": 4663,
- "answered": 4664,
- "besides": 4665,
- "1928": 4666,
- "obtained": 4667,
- "portion": 4668,
- "##town": 4669,
- "mix": 4670,
- "##ding": 4671,
- "reaction": 4672,
- "liked": 4673,
- "dean": 4674,
- "express": 4675,
- "peak": 4676,
- "1932": 4677,
- "##tte": 4678,
- "counter": 4679,
- "religion": 4680,
- "chain": 4681,
- "rare": 4682,
- "miller": 4683,
- "convention": 4684,
- "aid": 4685,
- "lie": 4686,
- "vehicles": 4687,
- "mobile": 4688,
- "perform": 4689,
- "squad": 4690,
- "wonder": 4691,
- "lying": 4692,
- "crazy": 4693,
- "sword": 4694,
- "##ping": 4695,
- "attempted": 4696,
- "centuries": 4697,
- "weren": 4698,
- "philosophy": 4699,
- "category": 4700,
- "##ize": 4701,
- "anna": 4702,
- "interested": 4703,
- "47": 4704,
- "sweden": 4705,
- "wolf": 4706,
- "frequently": 4707,
- "abandoned": 4708,
- "kg": 4709,
- "literary": 4710,
- "alliance": 4711,
- "task": 4712,
- "entitled": 4713,
- "##ay": 4714,
- "threw": 4715,
- "promotion": 4716,
- "factory": 4717,
- "tiny": 4718,
- "soccer": 4719,
- "visited": 4720,
- "matt": 4721,
- "fm": 4722,
- "achieved": 4723,
- "52": 4724,
- "defence": 4725,
- "internal": 4726,
- "persian": 4727,
- "43": 4728,
- "methods": 4729,
- "##ging": 4730,
- "arrested": 4731,
- "otherwise": 4732,
- "cambridge": 4733,
- "programming": 4734,
- "villages": 4735,
- "elementary": 4736,
- "districts": 4737,
- "rooms": 4738,
- "criminal": 4739,
- "conflict": 4740,
- "worry": 4741,
- "trained": 4742,
- "1931": 4743,
- "attempts": 4744,
- "waited": 4745,
- "signal": 4746,
- "bird": 4747,
- "truck": 4748,
- "subsequent": 4749,
- "programme": 4750,
- "##ol": 4751,
- "ad": 4752,
- "49": 4753,
- "communist": 4754,
- "details": 4755,
- "faith": 4756,
- "sector": 4757,
- "patrick": 4758,
- "carrying": 4759,
- "laugh": 4760,
- "##ss": 4761,
- "controlled": 4762,
- "korean": 4763,
- "showing": 4764,
- "origin": 4765,
- "fuel": 4766,
- "evil": 4767,
- "1927": 4768,
- "##ent": 4769,
- "brief": 4770,
- "identity": 4771,
- "darkness": 4772,
- "address": 4773,
- "pool": 4774,
- "missed": 4775,
- "publication": 4776,
- "web": 4777,
- "planet": 4778,
- "ian": 4779,
- "anne": 4780,
- "wings": 4781,
- "invited": 4782,
- "##tt": 4783,
- "briefly": 4784,
- "standards": 4785,
- "kissed": 4786,
- "##be": 4787,
- "ideas": 4788,
- "climate": 4789,
- "causing": 4790,
- "walter": 4791,
- "worse": 4792,
- "albert": 4793,
- "articles": 4794,
- "winners": 4795,
- "desire": 4796,
- "aged": 4797,
- "northeast": 4798,
- "dangerous": 4799,
- "gate": 4800,
- "doubt": 4801,
- "1922": 4802,
- "wooden": 4803,
- "multi": 4804,
- "##ky": 4805,
- "poet": 4806,
- "rising": 4807,
- "funding": 4808,
- "46": 4809,
- "communications": 4810,
- "communication": 4811,
- "violence": 4812,
- "copies": 4813,
- "prepared": 4814,
- "ford": 4815,
- "investigation": 4816,
- "skills": 4817,
- "1924": 4818,
- "pulling": 4819,
- "electronic": 4820,
- "##ak": 4821,
- "##ial": 4822,
- "##han": 4823,
- "containing": 4824,
- "ultimately": 4825,
- "offices": 4826,
- "singing": 4827,
- "understanding": 4828,
- "restaurant": 4829,
- "tomorrow": 4830,
- "fashion": 4831,
- "christ": 4832,
- "ward": 4833,
- "da": 4834,
- "pope": 4835,
- "stands": 4836,
- "5th": 4837,
- "flow": 4838,
- "studios": 4839,
- "aired": 4840,
- "commissioned": 4841,
- "contained": 4842,
- "exist": 4843,
- "fresh": 4844,
- "americans": 4845,
- "##per": 4846,
- "wrestling": 4847,
- "approved": 4848,
- "kid": 4849,
- "employed": 4850,
- "respect": 4851,
- "suit": 4852,
- "1925": 4853,
- "angel": 4854,
- "asking": 4855,
- "increasing": 4856,
- "frame": 4857,
- "angry": 4858,
- "selling": 4859,
- "1950s": 4860,
- "thin": 4861,
- "finds": 4862,
- "##nd": 4863,
- "temperature": 4864,
- "statement": 4865,
- "ali": 4866,
- "explain": 4867,
- "inhabitants": 4868,
- "towns": 4869,
- "extensive": 4870,
- "narrow": 4871,
- "51": 4872,
- "jane": 4873,
- "flowers": 4874,
- "images": 4875,
- "promise": 4876,
- "somewhere": 4877,
- "object": 4878,
- "fly": 4879,
- "closely": 4880,
- "##ls": 4881,
- "1912": 4882,
- "bureau": 4883,
- "cape": 4884,
- "1926": 4885,
- "weekly": 4886,
- "presidential": 4887,
- "legislative": 4888,
- "1921": 4889,
- "##ai": 4890,
- "##au": 4891,
- "launch": 4892,
- "founding": 4893,
- "##ny": 4894,
- "978": 4895,
- "##ring": 4896,
- "artillery": 4897,
- "strike": 4898,
- "un": 4899,
- "institutions": 4900,
- "roll": 4901,
- "writers": 4902,
- "landing": 4903,
- "chose": 4904,
- "kevin": 4905,
- "anymore": 4906,
- "pp": 4907,
- "##ut": 4908,
- "attorney": 4909,
- "fit": 4910,
- "dan": 4911,
- "billboard": 4912,
- "receiving": 4913,
- "agricultural": 4914,
- "breaking": 4915,
- "sought": 4916,
- "dave": 4917,
- "admitted": 4918,
- "lands": 4919,
- "mexican": 4920,
- "##bury": 4921,
- "charlie": 4922,
- "specifically": 4923,
- "hole": 4924,
- "iv": 4925,
- "howard": 4926,
- "credit": 4927,
- "moscow": 4928,
- "roads": 4929,
- "accident": 4930,
- "1923": 4931,
- "proved": 4932,
- "wear": 4933,
- "struck": 4934,
- "hey": 4935,
- "guards": 4936,
- "stuff": 4937,
- "slid": 4938,
- "expansion": 4939,
- "1915": 4940,
- "cat": 4941,
- "anthony": 4942,
- "##kin": 4943,
- "melbourne": 4944,
- "opposed": 4945,
- "sub": 4946,
- "southwest": 4947,
- "architect": 4948,
- "failure": 4949,
- "plane": 4950,
- "1916": 4951,
- "##ron": 4952,
- "map": 4953,
- "camera": 4954,
- "tank": 4955,
- "listen": 4956,
- "regarding": 4957,
- "wet": 4958,
- "introduction": 4959,
- "metropolitan": 4960,
- "link": 4961,
- "ep": 4962,
- "fighter": 4963,
- "inch": 4964,
- "grown": 4965,
- "gene": 4966,
- "anger": 4967,
- "fixed": 4968,
- "buy": 4969,
- "dvd": 4970,
- "khan": 4971,
- "domestic": 4972,
- "worldwide": 4973,
- "chapel": 4974,
- "mill": 4975,
- "functions": 4976,
- "examples": 4977,
- "##head": 4978,
- "developing": 4979,
- "1910": 4980,
- "turkey": 4981,
- "hits": 4982,
- "pocket": 4983,
- "antonio": 4984,
- "papers": 4985,
- "grow": 4986,
- "unless": 4987,
- "circuit": 4988,
- "18th": 4989,
- "concerned": 4990,
- "attached": 4991,
- "journalist": 4992,
- "selection": 4993,
- "journey": 4994,
- "converted": 4995,
- "provincial": 4996,
- "painted": 4997,
- "hearing": 4998,
- "aren": 4999,
- "bands": 5000,
- "negative": 5001,
- "aside": 5002,
- "wondered": 5003,
- "knight": 5004,
- "lap": 5005,
- "survey": 5006,
- "ma": 5007,
- "##ow": 5008,
- "noise": 5009,
- "billy": 5010,
- "##ium": 5011,
- "shooting": 5012,
- "guide": 5013,
- "bedroom": 5014,
- "priest": 5015,
- "resistance": 5016,
- "motor": 5017,
- "homes": 5018,
- "sounded": 5019,
- "giant": 5020,
- "##mer": 5021,
- "150": 5022,
- "scenes": 5023,
- "equal": 5024,
- "comic": 5025,
- "patients": 5026,
- "hidden": 5027,
- "solid": 5028,
- "actual": 5029,
- "bringing": 5030,
- "afternoon": 5031,
- "touched": 5032,
- "funds": 5033,
- "wedding": 5034,
- "consisted": 5035,
- "marie": 5036,
- "canal": 5037,
- "sr": 5038,
- "kim": 5039,
- "treaty": 5040,
- "turkish": 5041,
- "recognition": 5042,
- "residence": 5043,
- "cathedral": 5044,
- "broad": 5045,
- "knees": 5046,
- "incident": 5047,
- "shaped": 5048,
- "fired": 5049,
- "norwegian": 5050,
- "handle": 5051,
- "cheek": 5052,
- "contest": 5053,
- "represent": 5054,
- "##pe": 5055,
- "representing": 5056,
- "beauty": 5057,
- "##sen": 5058,
- "birds": 5059,
- "advantage": 5060,
- "emergency": 5061,
- "wrapped": 5062,
- "drawing": 5063,
- "notice": 5064,
- "pink": 5065,
- "broadcasting": 5066,
- "##ong": 5067,
- "somehow": 5068,
- "bachelor": 5069,
- "seventh": 5070,
- "collected": 5071,
- "registered": 5072,
- "establishment": 5073,
- "alan": 5074,
- "assumed": 5075,
- "chemical": 5076,
- "personnel": 5077,
- "roger": 5078,
- "retirement": 5079,
- "jeff": 5080,
- "portuguese": 5081,
- "wore": 5082,
- "tied": 5083,
- "device": 5084,
- "threat": 5085,
- "progress": 5086,
- "advance": 5087,
- "##ised": 5088,
- "banks": 5089,
- "hired": 5090,
- "manchester": 5091,
- "nfl": 5092,
- "teachers": 5093,
- "structures": 5094,
- "forever": 5095,
- "##bo": 5096,
- "tennis": 5097,
- "helping": 5098,
- "saturday": 5099,
- "sale": 5100,
- "applications": 5101,
- "junction": 5102,
- "hip": 5103,
- "incorporated": 5104,
- "neighborhood": 5105,
- "dressed": 5106,
- "ceremony": 5107,
- "##ds": 5108,
- "influenced": 5109,
- "hers": 5110,
- "visual": 5111,
- "stairs": 5112,
- "decades": 5113,
- "inner": 5114,
- "kansas": 5115,
- "hung": 5116,
- "hoped": 5117,
- "gain": 5118,
- "scheduled": 5119,
- "downtown": 5120,
- "engaged": 5121,
- "austria": 5122,
- "clock": 5123,
- "norway": 5124,
- "certainly": 5125,
- "pale": 5126,
- "protected": 5127,
- "1913": 5128,
- "victor": 5129,
- "employees": 5130,
- "plate": 5131,
- "putting": 5132,
- "surrounded": 5133,
- "##ists": 5134,
- "finishing": 5135,
- "blues": 5136,
- "tropical": 5137,
- "##ries": 5138,
- "minnesota": 5139,
- "consider": 5140,
- "philippines": 5141,
- "accept": 5142,
- "54": 5143,
- "retrieved": 5144,
- "1900": 5145,
- "concern": 5146,
- "anderson": 5147,
- "properties": 5148,
- "institution": 5149,
- "gordon": 5150,
- "successfully": 5151,
- "vietnam": 5152,
- "##dy": 5153,
- "backing": 5154,
- "outstanding": 5155,
- "muslim": 5156,
- "crossing": 5157,
- "folk": 5158,
- "producing": 5159,
- "usual": 5160,
- "demand": 5161,
- "occurs": 5162,
- "observed": 5163,
- "lawyer": 5164,
- "educated": 5165,
- "##ana": 5166,
- "kelly": 5167,
- "string": 5168,
- "pleasure": 5169,
- "budget": 5170,
- "items": 5171,
- "quietly": 5172,
- "colorado": 5173,
- "philip": 5174,
- "typical": 5175,
- "##worth": 5176,
- "derived": 5177,
- "600": 5178,
- "survived": 5179,
- "asks": 5180,
- "mental": 5181,
- "##ide": 5182,
- "56": 5183,
- "jake": 5184,
- "jews": 5185,
- "distinguished": 5186,
- "ltd": 5187,
- "1911": 5188,
- "sri": 5189,
- "extremely": 5190,
- "53": 5191,
- "athletic": 5192,
- "loud": 5193,
- "thousands": 5194,
- "worried": 5195,
- "shadow": 5196,
- "transportation": 5197,
- "horses": 5198,
- "weapon": 5199,
- "arena": 5200,
- "importance": 5201,
- "users": 5202,
- "tim": 5203,
- "objects": 5204,
- "contributed": 5205,
- "dragon": 5206,
- "douglas": 5207,
- "aware": 5208,
- "senator": 5209,
- "johnny": 5210,
- "jordan": 5211,
- "sisters": 5212,
- "engines": 5213,
- "flag": 5214,
- "investment": 5215,
- "samuel": 5216,
- "shock": 5217,
- "capable": 5218,
- "clark": 5219,
- "row": 5220,
- "wheel": 5221,
- "refers": 5222,
- "session": 5223,
- "familiar": 5224,
- "biggest": 5225,
- "wins": 5226,
- "hate": 5227,
- "maintained": 5228,
- "drove": 5229,
- "hamilton": 5230,
- "request": 5231,
- "expressed": 5232,
- "injured": 5233,
- "underground": 5234,
- "churches": 5235,
- "walker": 5236,
- "wars": 5237,
- "tunnel": 5238,
- "passes": 5239,
- "stupid": 5240,
- "agriculture": 5241,
- "softly": 5242,
- "cabinet": 5243,
- "regarded": 5244,
- "joining": 5245,
- "indiana": 5246,
- "##ea": 5247,
- "##ms": 5248,
- "push": 5249,
- "dates": 5250,
- "spend": 5251,
- "behavior": 5252,
- "woods": 5253,
- "protein": 5254,
- "gently": 5255,
- "chase": 5256,
- "morgan": 5257,
- "mention": 5258,
- "burning": 5259,
- "wake": 5260,
- "combination": 5261,
- "occur": 5262,
- "mirror": 5263,
- "leads": 5264,
- "jimmy": 5265,
- "indeed": 5266,
- "impossible": 5267,
- "singapore": 5268,
- "paintings": 5269,
- "covering": 5270,
- "##nes": 5271,
- "soldier": 5272,
- "locations": 5273,
- "attendance": 5274,
- "sell": 5275,
- "historian": 5276,
- "wisconsin": 5277,
- "invasion": 5278,
- "argued": 5279,
- "painter": 5280,
- "diego": 5281,
- "changing": 5282,
- "egypt": 5283,
- "##don": 5284,
- "experienced": 5285,
- "inches": 5286,
- "##ku": 5287,
- "missouri": 5288,
- "vol": 5289,
- "grounds": 5290,
- "spoken": 5291,
- "switzerland": 5292,
- "##gan": 5293,
- "reform": 5294,
- "rolling": 5295,
- "ha": 5296,
- "forget": 5297,
- "massive": 5298,
- "resigned": 5299,
- "burned": 5300,
- "allen": 5301,
- "tennessee": 5302,
- "locked": 5303,
- "values": 5304,
- "improved": 5305,
- "##mo": 5306,
- "wounded": 5307,
- "universe": 5308,
- "sick": 5309,
- "dating": 5310,
- "facing": 5311,
- "pack": 5312,
- "purchase": 5313,
- "user": 5314,
- "##pur": 5315,
- "moments": 5316,
- "##ul": 5317,
- "merged": 5318,
- "anniversary": 5319,
- "1908": 5320,
- "coal": 5321,
- "brick": 5322,
- "understood": 5323,
- "causes": 5324,
- "dynasty": 5325,
- "queensland": 5326,
- "establish": 5327,
- "stores": 5328,
- "crisis": 5329,
- "promote": 5330,
- "hoping": 5331,
- "views": 5332,
- "cards": 5333,
- "referee": 5334,
- "extension": 5335,
- "##si": 5336,
- "raise": 5337,
- "arizona": 5338,
- "improve": 5339,
- "colonial": 5340,
- "formal": 5341,
- "charged": 5342,
- "##rt": 5343,
- "palm": 5344,
- "lucky": 5345,
- "hide": 5346,
- "rescue": 5347,
- "faces": 5348,
- "95": 5349,
- "feelings": 5350,
- "candidates": 5351,
- "juan": 5352,
- "##ell": 5353,
- "goods": 5354,
- "6th": 5355,
- "courses": 5356,
- "weekend": 5357,
- "59": 5358,
- "luke": 5359,
- "cash": 5360,
- "fallen": 5361,
- "##om": 5362,
- "delivered": 5363,
- "affected": 5364,
- "installed": 5365,
- "carefully": 5366,
- "tries": 5367,
- "swiss": 5368,
- "hollywood": 5369,
- "costs": 5370,
- "lincoln": 5371,
- "responsibility": 5372,
- "##he": 5373,
- "shore": 5374,
- "file": 5375,
- "proper": 5376,
- "normally": 5377,
- "maryland": 5378,
- "assistance": 5379,
- "jump": 5380,
- "constant": 5381,
- "offering": 5382,
- "friendly": 5383,
- "waters": 5384,
- "persons": 5385,
- "realize": 5386,
- "contain": 5387,
- "trophy": 5388,
- "800": 5389,
- "partnership": 5390,
- "factor": 5391,
- "58": 5392,
- "musicians": 5393,
- "cry": 5394,
- "bound": 5395,
- "oregon": 5396,
- "indicated": 5397,
- "hero": 5398,
- "houston": 5399,
- "medium": 5400,
- "##ure": 5401,
- "consisting": 5402,
- "somewhat": 5403,
- "##ara": 5404,
- "57": 5405,
- "cycle": 5406,
- "##che": 5407,
- "beer": 5408,
- "moore": 5409,
- "frederick": 5410,
- "gotten": 5411,
- "eleven": 5412,
- "worst": 5413,
- "weak": 5414,
- "approached": 5415,
- "arranged": 5416,
- "chin": 5417,
- "loan": 5418,
- "universal": 5419,
- "bond": 5420,
- "fifteen": 5421,
- "pattern": 5422,
- "disappeared": 5423,
- "##ney": 5424,
- "translated": 5425,
- "##zed": 5426,
- "lip": 5427,
- "arab": 5428,
- "capture": 5429,
- "interests": 5430,
- "insurance": 5431,
- "##chi": 5432,
- "shifted": 5433,
- "cave": 5434,
- "prix": 5435,
- "warning": 5436,
- "sections": 5437,
- "courts": 5438,
- "coat": 5439,
- "plot": 5440,
- "smell": 5441,
- "feed": 5442,
- "golf": 5443,
- "favorite": 5444,
- "maintain": 5445,
- "knife": 5446,
- "vs": 5447,
- "voted": 5448,
- "degrees": 5449,
- "finance": 5450,
- "quebec": 5451,
- "opinion": 5452,
- "translation": 5453,
- "manner": 5454,
- "ruled": 5455,
- "operate": 5456,
- "productions": 5457,
- "choose": 5458,
- "musician": 5459,
- "discovery": 5460,
- "confused": 5461,
- "tired": 5462,
- "separated": 5463,
- "stream": 5464,
- "techniques": 5465,
- "committed": 5466,
- "attend": 5467,
- "ranking": 5468,
- "kings": 5469,
- "throw": 5470,
- "passengers": 5471,
- "measure": 5472,
- "horror": 5473,
- "fan": 5474,
- "mining": 5475,
- "sand": 5476,
- "danger": 5477,
- "salt": 5478,
- "calm": 5479,
- "decade": 5480,
- "dam": 5481,
- "require": 5482,
- "runner": 5483,
- "##ik": 5484,
- "rush": 5485,
- "associate": 5486,
- "greece": 5487,
- "##ker": 5488,
- "rivers": 5489,
- "consecutive": 5490,
- "matthew": 5491,
- "##ski": 5492,
- "sighed": 5493,
- "sq": 5494,
- "documents": 5495,
- "steam": 5496,
- "edited": 5497,
- "closing": 5498,
- "tie": 5499,
- "accused": 5500,
- "1905": 5501,
- "##ini": 5502,
- "islamic": 5503,
- "distributed": 5504,
- "directors": 5505,
- "organisation": 5506,
- "bruce": 5507,
- "7th": 5508,
- "breathing": 5509,
- "mad": 5510,
- "lit": 5511,
- "arrival": 5512,
- "concrete": 5513,
- "taste": 5514,
- "08": 5515,
- "composition": 5516,
- "shaking": 5517,
- "faster": 5518,
- "amateur": 5519,
- "adjacent": 5520,
- "stating": 5521,
- "1906": 5522,
- "twin": 5523,
- "flew": 5524,
- "##ran": 5525,
- "tokyo": 5526,
- "publications": 5527,
- "##tone": 5528,
- "obviously": 5529,
- "ridge": 5530,
- "storage": 5531,
- "1907": 5532,
- "carl": 5533,
- "pages": 5534,
- "concluded": 5535,
- "desert": 5536,
- "driven": 5537,
- "universities": 5538,
- "ages": 5539,
- "terminal": 5540,
- "sequence": 5541,
- "borough": 5542,
- "250": 5543,
- "constituency": 5544,
- "creative": 5545,
- "cousin": 5546,
- "economics": 5547,
- "dreams": 5548,
- "margaret": 5549,
- "notably": 5550,
- "reduce": 5551,
- "montreal": 5552,
- "mode": 5553,
- "17th": 5554,
- "ears": 5555,
- "saved": 5556,
- "jan": 5557,
- "vocal": 5558,
- "##ica": 5559,
- "1909": 5560,
- "andy": 5561,
- "##jo": 5562,
- "riding": 5563,
- "roughly": 5564,
- "threatened": 5565,
- "##ise": 5566,
- "meters": 5567,
- "meanwhile": 5568,
- "landed": 5569,
- "compete": 5570,
- "repeated": 5571,
- "grass": 5572,
- "czech": 5573,
- "regularly": 5574,
- "charges": 5575,
- "tea": 5576,
- "sudden": 5577,
- "appeal": 5578,
- "##ung": 5579,
- "solution": 5580,
- "describes": 5581,
- "pierre": 5582,
- "classification": 5583,
- "glad": 5584,
- "parking": 5585,
- "##ning": 5586,
- "belt": 5587,
- "physics": 5588,
- "99": 5589,
- "rachel": 5590,
- "add": 5591,
- "hungarian": 5592,
- "participate": 5593,
- "expedition": 5594,
- "damaged": 5595,
- "gift": 5596,
- "childhood": 5597,
- "85": 5598,
- "fifty": 5599,
- "##red": 5600,
- "mathematics": 5601,
- "jumped": 5602,
- "letting": 5603,
- "defensive": 5604,
- "mph": 5605,
- "##ux": 5606,
- "##gh": 5607,
- "testing": 5608,
- "##hip": 5609,
- "hundreds": 5610,
- "shoot": 5611,
- "owners": 5612,
- "matters": 5613,
- "smoke": 5614,
- "israeli": 5615,
- "kentucky": 5616,
- "dancing": 5617,
- "mounted": 5618,
- "grandfather": 5619,
- "emma": 5620,
- "designs": 5621,
- "profit": 5622,
- "argentina": 5623,
- "##gs": 5624,
- "truly": 5625,
- "li": 5626,
- "lawrence": 5627,
- "cole": 5628,
- "begun": 5629,
- "detroit": 5630,
- "willing": 5631,
- "branches": 5632,
- "smiling": 5633,
- "decide": 5634,
- "miami": 5635,
- "enjoyed": 5636,
- "recordings": 5637,
- "##dale": 5638,
- "poverty": 5639,
- "ethnic": 5640,
- "gay": 5641,
- "##bi": 5642,
- "gary": 5643,
- "arabic": 5644,
- "09": 5645,
- "accompanied": 5646,
- "##one": 5647,
- "##ons": 5648,
- "fishing": 5649,
- "determine": 5650,
- "residential": 5651,
- "acid": 5652,
- "##ary": 5653,
- "alice": 5654,
- "returns": 5655,
- "starred": 5656,
- "mail": 5657,
- "##ang": 5658,
- "jonathan": 5659,
- "strategy": 5660,
- "##ue": 5661,
- "net": 5662,
- "forty": 5663,
- "cook": 5664,
- "businesses": 5665,
- "equivalent": 5666,
- "commonwealth": 5667,
- "distinct": 5668,
- "ill": 5669,
- "##cy": 5670,
- "seriously": 5671,
- "##ors": 5672,
- "##ped": 5673,
- "shift": 5674,
- "harris": 5675,
- "replace": 5676,
- "rio": 5677,
- "imagine": 5678,
- "formula": 5679,
- "ensure": 5680,
- "##ber": 5681,
- "additionally": 5682,
- "scheme": 5683,
- "conservation": 5684,
- "occasionally": 5685,
- "purposes": 5686,
- "feels": 5687,
- "favor": 5688,
- "##and": 5689,
- "##ore": 5690,
- "1930s": 5691,
- "contrast": 5692,
- "hanging": 5693,
- "hunt": 5694,
- "movies": 5695,
- "1904": 5696,
- "instruments": 5697,
- "victims": 5698,
- "danish": 5699,
- "christopher": 5700,
- "busy": 5701,
- "demon": 5702,
- "sugar": 5703,
- "earliest": 5704,
- "colony": 5705,
- "studying": 5706,
- "balance": 5707,
- "duties": 5708,
- "##ks": 5709,
- "belgium": 5710,
- "slipped": 5711,
- "carter": 5712,
- "05": 5713,
- "visible": 5714,
- "stages": 5715,
- "iraq": 5716,
- "fifa": 5717,
- "##im": 5718,
- "commune": 5719,
- "forming": 5720,
- "zero": 5721,
- "07": 5722,
- "continuing": 5723,
- "talked": 5724,
- "counties": 5725,
- "legend": 5726,
- "bathroom": 5727,
- "option": 5728,
- "tail": 5729,
- "clay": 5730,
- "daughters": 5731,
- "afterwards": 5732,
- "severe": 5733,
- "jaw": 5734,
- "visitors": 5735,
- "##ded": 5736,
- "devices": 5737,
- "aviation": 5738,
- "russell": 5739,
- "kate": 5740,
- "##vi": 5741,
- "entering": 5742,
- "subjects": 5743,
- "##ino": 5744,
- "temporary": 5745,
- "swimming": 5746,
- "forth": 5747,
- "smooth": 5748,
- "ghost": 5749,
- "audio": 5750,
- "bush": 5751,
- "operates": 5752,
- "rocks": 5753,
- "movements": 5754,
- "signs": 5755,
- "eddie": 5756,
- "##tz": 5757,
- "ann": 5758,
- "voices": 5759,
- "honorary": 5760,
- "06": 5761,
- "memories": 5762,
- "dallas": 5763,
- "pure": 5764,
- "measures": 5765,
- "racial": 5766,
- "promised": 5767,
- "66": 5768,
- "harvard": 5769,
- "ceo": 5770,
- "16th": 5771,
- "parliamentary": 5772,
- "indicate": 5773,
- "benefit": 5774,
- "flesh": 5775,
- "dublin": 5776,
- "louisiana": 5777,
- "1902": 5778,
- "1901": 5779,
- "patient": 5780,
- "sleeping": 5781,
- "1903": 5782,
- "membership": 5783,
- "coastal": 5784,
- "medieval": 5785,
- "wanting": 5786,
- "element": 5787,
- "scholars": 5788,
- "rice": 5789,
- "62": 5790,
- "limit": 5791,
- "survive": 5792,
- "makeup": 5793,
- "rating": 5794,
- "definitely": 5795,
- "collaboration": 5796,
- "obvious": 5797,
- "##tan": 5798,
- "boss": 5799,
- "ms": 5800,
- "baron": 5801,
- "birthday": 5802,
- "linked": 5803,
- "soil": 5804,
- "diocese": 5805,
- "##lan": 5806,
- "ncaa": 5807,
- "##mann": 5808,
- "offensive": 5809,
- "shell": 5810,
- "shouldn": 5811,
- "waist": 5812,
- "##tus": 5813,
- "plain": 5814,
- "ross": 5815,
- "organ": 5816,
- "resolution": 5817,
- "manufacturing": 5818,
- "adding": 5819,
- "relative": 5820,
- "kennedy": 5821,
- "98": 5822,
- "whilst": 5823,
- "moth": 5824,
- "marketing": 5825,
- "gardens": 5826,
- "crash": 5827,
- "72": 5828,
- "heading": 5829,
- "partners": 5830,
- "credited": 5831,
- "carlos": 5832,
- "moves": 5833,
- "cable": 5834,
- "##zi": 5835,
- "marshall": 5836,
- "##out": 5837,
- "depending": 5838,
- "bottle": 5839,
- "represents": 5840,
- "rejected": 5841,
- "responded": 5842,
- "existed": 5843,
- "04": 5844,
- "jobs": 5845,
- "denmark": 5846,
- "lock": 5847,
- "##ating": 5848,
- "treated": 5849,
- "graham": 5850,
- "routes": 5851,
- "talent": 5852,
- "commissioner": 5853,
- "drugs": 5854,
- "secure": 5855,
- "tests": 5856,
- "reign": 5857,
- "restored": 5858,
- "photography": 5859,
- "##gi": 5860,
- "contributions": 5861,
- "oklahoma": 5862,
- "designer": 5863,
- "disc": 5864,
- "grin": 5865,
- "seattle": 5866,
- "robin": 5867,
- "paused": 5868,
- "atlanta": 5869,
- "unusual": 5870,
- "##gate": 5871,
- "praised": 5872,
- "las": 5873,
- "laughing": 5874,
- "satellite": 5875,
- "hungary": 5876,
- "visiting": 5877,
- "##sky": 5878,
- "interesting": 5879,
- "factors": 5880,
- "deck": 5881,
- "poems": 5882,
- "norman": 5883,
- "##water": 5884,
- "stuck": 5885,
- "speaker": 5886,
- "rifle": 5887,
- "domain": 5888,
- "premiered": 5889,
- "##her": 5890,
- "dc": 5891,
- "comics": 5892,
- "actors": 5893,
- "01": 5894,
- "reputation": 5895,
- "eliminated": 5896,
- "8th": 5897,
- "ceiling": 5898,
- "prisoners": 5899,
- "script": 5900,
- "##nce": 5901,
- "leather": 5902,
- "austin": 5903,
- "mississippi": 5904,
- "rapidly": 5905,
- "admiral": 5906,
- "parallel": 5907,
- "charlotte": 5908,
- "guilty": 5909,
- "tools": 5910,
- "gender": 5911,
- "divisions": 5912,
- "fruit": 5913,
- "##bs": 5914,
- "laboratory": 5915,
- "nelson": 5916,
- "fantasy": 5917,
- "marry": 5918,
- "rapid": 5919,
- "aunt": 5920,
- "tribe": 5921,
- "requirements": 5922,
- "aspects": 5923,
- "suicide": 5924,
- "amongst": 5925,
- "adams": 5926,
- "bone": 5927,
- "ukraine": 5928,
- "abc": 5929,
- "kick": 5930,
- "sees": 5931,
- "edinburgh": 5932,
- "clothing": 5933,
- "column": 5934,
- "rough": 5935,
- "gods": 5936,
- "hunting": 5937,
- "broadway": 5938,
- "gathered": 5939,
- "concerns": 5940,
- "##ek": 5941,
- "spending": 5942,
- "ty": 5943,
- "12th": 5944,
- "snapped": 5945,
- "requires": 5946,
- "solar": 5947,
- "bones": 5948,
- "cavalry": 5949,
- "##tta": 5950,
- "iowa": 5951,
- "drinking": 5952,
- "waste": 5953,
- "index": 5954,
- "franklin": 5955,
- "charity": 5956,
- "thompson": 5957,
- "stewart": 5958,
- "tip": 5959,
- "flash": 5960,
- "landscape": 5961,
- "friday": 5962,
- "enjoy": 5963,
- "singh": 5964,
- "poem": 5965,
- "listening": 5966,
- "##back": 5967,
- "eighth": 5968,
- "fred": 5969,
- "differences": 5970,
- "adapted": 5971,
- "bomb": 5972,
- "ukrainian": 5973,
- "surgery": 5974,
- "corporate": 5975,
- "masters": 5976,
- "anywhere": 5977,
- "##more": 5978,
- "waves": 5979,
- "odd": 5980,
- "sean": 5981,
- "portugal": 5982,
- "orleans": 5983,
- "dick": 5984,
- "debate": 5985,
- "kent": 5986,
- "eating": 5987,
- "puerto": 5988,
- "cleared": 5989,
- "96": 5990,
- "expect": 5991,
- "cinema": 5992,
- "97": 5993,
- "guitarist": 5994,
- "blocks": 5995,
- "electrical": 5996,
- "agree": 5997,
- "involving": 5998,
- "depth": 5999,
- "dying": 6000,
- "panel": 6001,
- "struggle": 6002,
- "##ged": 6003,
- "peninsula": 6004,
- "adults": 6005,
- "novels": 6006,
- "emerged": 6007,
- "vienna": 6008,
- "metro": 6009,
- "debuted": 6010,
- "shoes": 6011,
- "tamil": 6012,
- "songwriter": 6013,
- "meets": 6014,
- "prove": 6015,
- "beating": 6016,
- "instance": 6017,
- "heaven": 6018,
- "scared": 6019,
- "sending": 6020,
- "marks": 6021,
- "artistic": 6022,
- "passage": 6023,
- "superior": 6024,
- "03": 6025,
- "significantly": 6026,
- "shopping": 6027,
- "##tive": 6028,
- "retained": 6029,
- "##izing": 6030,
- "malaysia": 6031,
- "technique": 6032,
- "cheeks": 6033,
- "##ola": 6034,
- "warren": 6035,
- "maintenance": 6036,
- "destroy": 6037,
- "extreme": 6038,
- "allied": 6039,
- "120": 6040,
- "appearing": 6041,
- "##yn": 6042,
- "fill": 6043,
- "advice": 6044,
- "alabama": 6045,
- "qualifying": 6046,
- "policies": 6047,
- "cleveland": 6048,
- "hat": 6049,
- "battery": 6050,
- "smart": 6051,
- "authors": 6052,
- "10th": 6053,
- "soundtrack": 6054,
- "acted": 6055,
- "dated": 6056,
- "lb": 6057,
- "glance": 6058,
- "equipped": 6059,
- "coalition": 6060,
- "funny": 6061,
- "outer": 6062,
- "ambassador": 6063,
- "roy": 6064,
- "possibility": 6065,
- "couples": 6066,
- "campbell": 6067,
- "dna": 6068,
- "loose": 6069,
- "ethan": 6070,
- "supplies": 6071,
- "1898": 6072,
- "gonna": 6073,
- "88": 6074,
- "monster": 6075,
- "##res": 6076,
- "shake": 6077,
- "agents": 6078,
- "frequency": 6079,
- "springs": 6080,
- "dogs": 6081,
- "practices": 6082,
- "61": 6083,
- "gang": 6084,
- "plastic": 6085,
- "easier": 6086,
- "suggests": 6087,
- "gulf": 6088,
- "blade": 6089,
- "exposed": 6090,
- "colors": 6091,
- "industries": 6092,
- "markets": 6093,
- "pan": 6094,
- "nervous": 6095,
- "electoral": 6096,
- "charts": 6097,
- "legislation": 6098,
- "ownership": 6099,
- "##idae": 6100,
- "mac": 6101,
- "appointment": 6102,
- "shield": 6103,
- "copy": 6104,
- "assault": 6105,
- "socialist": 6106,
- "abbey": 6107,
- "monument": 6108,
- "license": 6109,
- "throne": 6110,
- "employment": 6111,
- "jay": 6112,
- "93": 6113,
- "replacement": 6114,
- "charter": 6115,
- "cloud": 6116,
- "powered": 6117,
- "suffering": 6118,
- "accounts": 6119,
- "oak": 6120,
- "connecticut": 6121,
- "strongly": 6122,
- "wright": 6123,
- "colour": 6124,
- "crystal": 6125,
- "13th": 6126,
- "context": 6127,
- "welsh": 6128,
- "networks": 6129,
- "voiced": 6130,
- "gabriel": 6131,
- "jerry": 6132,
- "##cing": 6133,
- "forehead": 6134,
- "mp": 6135,
- "##ens": 6136,
- "manage": 6137,
- "schedule": 6138,
- "totally": 6139,
- "remix": 6140,
- "##ii": 6141,
- "forests": 6142,
- "occupation": 6143,
- "print": 6144,
- "nicholas": 6145,
- "brazilian": 6146,
- "strategic": 6147,
- "vampires": 6148,
- "engineers": 6149,
- "76": 6150,
- "roots": 6151,
- "seek": 6152,
- "correct": 6153,
- "instrumental": 6154,
- "und": 6155,
- "alfred": 6156,
- "backed": 6157,
- "hop": 6158,
- "##des": 6159,
- "stanley": 6160,
- "robinson": 6161,
- "traveled": 6162,
- "wayne": 6163,
- "welcome": 6164,
- "austrian": 6165,
- "achieve": 6166,
- "67": 6167,
- "exit": 6168,
- "rates": 6169,
- "1899": 6170,
- "strip": 6171,
- "whereas": 6172,
- "##cs": 6173,
- "sing": 6174,
- "deeply": 6175,
- "adventure": 6176,
- "bobby": 6177,
- "rick": 6178,
- "jamie": 6179,
- "careful": 6180,
- "components": 6181,
- "cap": 6182,
- "useful": 6183,
- "personality": 6184,
- "knee": 6185,
- "##shi": 6186,
- "pushing": 6187,
- "hosts": 6188,
- "02": 6189,
- "protest": 6190,
- "ca": 6191,
- "ottoman": 6192,
- "symphony": 6193,
- "##sis": 6194,
- "63": 6195,
- "boundary": 6196,
- "1890": 6197,
- "processes": 6198,
- "considering": 6199,
- "considerable": 6200,
- "tons": 6201,
- "##work": 6202,
- "##ft": 6203,
- "##nia": 6204,
- "cooper": 6205,
- "trading": 6206,
- "dear": 6207,
- "conduct": 6208,
- "91": 6209,
- "illegal": 6210,
- "apple": 6211,
- "revolutionary": 6212,
- "holiday": 6213,
- "definition": 6214,
- "harder": 6215,
- "##van": 6216,
- "jacob": 6217,
- "circumstances": 6218,
- "destruction": 6219,
- "##lle": 6220,
- "popularity": 6221,
- "grip": 6222,
- "classified": 6223,
- "liverpool": 6224,
- "donald": 6225,
- "baltimore": 6226,
- "flows": 6227,
- "seeking": 6228,
- "honour": 6229,
- "approval": 6230,
- "92": 6231,
- "mechanical": 6232,
- "till": 6233,
- "happening": 6234,
- "statue": 6235,
- "critic": 6236,
- "increasingly": 6237,
- "immediate": 6238,
- "describe": 6239,
- "commerce": 6240,
- "stare": 6241,
- "##ster": 6242,
- "indonesia": 6243,
- "meat": 6244,
- "rounds": 6245,
- "boats": 6246,
- "baker": 6247,
- "orthodox": 6248,
- "depression": 6249,
- "formally": 6250,
- "worn": 6251,
- "naked": 6252,
- "claire": 6253,
- "muttered": 6254,
- "sentence": 6255,
- "11th": 6256,
- "emily": 6257,
- "document": 6258,
- "77": 6259,
- "criticism": 6260,
- "wished": 6261,
- "vessel": 6262,
- "spiritual": 6263,
- "bent": 6264,
- "virgin": 6265,
- "parker": 6266,
- "minimum": 6267,
- "murray": 6268,
- "lunch": 6269,
- "danny": 6270,
- "printed": 6271,
- "compilation": 6272,
- "keyboards": 6273,
- "false": 6274,
- "blow": 6275,
- "belonged": 6276,
- "68": 6277,
- "raising": 6278,
- "78": 6279,
- "cutting": 6280,
- "##board": 6281,
- "pittsburgh": 6282,
- "##up": 6283,
- "9th": 6284,
- "shadows": 6285,
- "81": 6286,
- "hated": 6287,
- "indigenous": 6288,
- "jon": 6289,
- "15th": 6290,
- "barry": 6291,
- "scholar": 6292,
- "ah": 6293,
- "##zer": 6294,
- "oliver": 6295,
- "##gy": 6296,
- "stick": 6297,
- "susan": 6298,
- "meetings": 6299,
- "attracted": 6300,
- "spell": 6301,
- "romantic": 6302,
- "##ver": 6303,
- "ye": 6304,
- "1895": 6305,
- "photo": 6306,
- "demanded": 6307,
- "customers": 6308,
- "##ac": 6309,
- "1896": 6310,
- "logan": 6311,
- "revival": 6312,
- "keys": 6313,
- "modified": 6314,
- "commanded": 6315,
- "jeans": 6316,
- "##ious": 6317,
- "upset": 6318,
- "raw": 6319,
- "phil": 6320,
- "detective": 6321,
- "hiding": 6322,
- "resident": 6323,
- "vincent": 6324,
- "##bly": 6325,
- "experiences": 6326,
- "diamond": 6327,
- "defeating": 6328,
- "coverage": 6329,
- "lucas": 6330,
- "external": 6331,
- "parks": 6332,
- "franchise": 6333,
- "helen": 6334,
- "bible": 6335,
- "successor": 6336,
- "percussion": 6337,
- "celebrated": 6338,
- "il": 6339,
- "lift": 6340,
- "profile": 6341,
- "clan": 6342,
- "romania": 6343,
- "##ied": 6344,
- "mills": 6345,
- "##su": 6346,
- "nobody": 6347,
- "achievement": 6348,
- "shrugged": 6349,
- "fault": 6350,
- "1897": 6351,
- "rhythm": 6352,
- "initiative": 6353,
- "breakfast": 6354,
- "carbon": 6355,
- "700": 6356,
- "69": 6357,
- "lasted": 6358,
- "violent": 6359,
- "74": 6360,
- "wound": 6361,
- "ken": 6362,
- "killer": 6363,
- "gradually": 6364,
- "filmed": 6365,
- "°c": 6366,
- "dollars": 6367,
- "processing": 6368,
- "94": 6369,
- "remove": 6370,
- "criticized": 6371,
- "guests": 6372,
- "sang": 6373,
- "chemistry": 6374,
- "##vin": 6375,
- "legislature": 6376,
- "disney": 6377,
- "##bridge": 6378,
- "uniform": 6379,
- "escaped": 6380,
- "integrated": 6381,
- "proposal": 6382,
- "purple": 6383,
- "denied": 6384,
- "liquid": 6385,
- "karl": 6386,
- "influential": 6387,
- "morris": 6388,
- "nights": 6389,
- "stones": 6390,
- "intense": 6391,
- "experimental": 6392,
- "twisted": 6393,
- "71": 6394,
- "84": 6395,
- "##ld": 6396,
- "pace": 6397,
- "nazi": 6398,
- "mitchell": 6399,
- "ny": 6400,
- "blind": 6401,
- "reporter": 6402,
- "newspapers": 6403,
- "14th": 6404,
- "centers": 6405,
- "burn": 6406,
- "basin": 6407,
- "forgotten": 6408,
- "surviving": 6409,
- "filed": 6410,
- "collections": 6411,
- "monastery": 6412,
- "losses": 6413,
- "manual": 6414,
- "couch": 6415,
- "description": 6416,
- "appropriate": 6417,
- "merely": 6418,
- "tag": 6419,
- "missions": 6420,
- "sebastian": 6421,
- "restoration": 6422,
- "replacing": 6423,
- "triple": 6424,
- "73": 6425,
- "elder": 6426,
- "julia": 6427,
- "warriors": 6428,
- "benjamin": 6429,
- "julian": 6430,
- "convinced": 6431,
- "stronger": 6432,
- "amazing": 6433,
- "declined": 6434,
- "versus": 6435,
- "merchant": 6436,
- "happens": 6437,
- "output": 6438,
- "finland": 6439,
- "bare": 6440,
- "barbara": 6441,
- "absence": 6442,
- "ignored": 6443,
- "dawn": 6444,
- "injuries": 6445,
- "##port": 6446,
- "producers": 6447,
- "##ram": 6448,
- "82": 6449,
- "luis": 6450,
- "##ities": 6451,
- "kw": 6452,
- "admit": 6453,
- "expensive": 6454,
- "electricity": 6455,
- "nba": 6456,
- "exception": 6457,
- "symbol": 6458,
- "##ving": 6459,
- "ladies": 6460,
- "shower": 6461,
- "sheriff": 6462,
- "characteristics": 6463,
- "##je": 6464,
- "aimed": 6465,
- "button": 6466,
- "ratio": 6467,
- "effectively": 6468,
- "summit": 6469,
- "angle": 6470,
- "jury": 6471,
- "bears": 6472,
- "foster": 6473,
- "vessels": 6474,
- "pants": 6475,
- "executed": 6476,
- "evans": 6477,
- "dozen": 6478,
- "advertising": 6479,
- "kicked": 6480,
- "patrol": 6481,
- "1889": 6482,
- "competitions": 6483,
- "lifetime": 6484,
- "principles": 6485,
- "athletics": 6486,
- "##logy": 6487,
- "birmingham": 6488,
- "sponsored": 6489,
- "89": 6490,
- "rob": 6491,
- "nomination": 6492,
- "1893": 6493,
- "acoustic": 6494,
- "##sm": 6495,
- "creature": 6496,
- "longest": 6497,
- "##tra": 6498,
- "credits": 6499,
- "harbor": 6500,
- "dust": 6501,
- "josh": 6502,
- "##so": 6503,
- "territories": 6504,
- "milk": 6505,
- "infrastructure": 6506,
- "completion": 6507,
- "thailand": 6508,
- "indians": 6509,
- "leon": 6510,
- "archbishop": 6511,
- "##sy": 6512,
- "assist": 6513,
- "pitch": 6514,
- "blake": 6515,
- "arrangement": 6516,
- "girlfriend": 6517,
- "serbian": 6518,
- "operational": 6519,
- "hence": 6520,
- "sad": 6521,
- "scent": 6522,
- "fur": 6523,
- "dj": 6524,
- "sessions": 6525,
- "hp": 6526,
- "refer": 6527,
- "rarely": 6528,
- "##ora": 6529,
- "exists": 6530,
- "1892": 6531,
- "##ten": 6532,
- "scientists": 6533,
- "dirty": 6534,
- "penalty": 6535,
- "burst": 6536,
- "portrait": 6537,
- "seed": 6538,
- "79": 6539,
- "pole": 6540,
- "limits": 6541,
- "rival": 6542,
- "1894": 6543,
- "stable": 6544,
- "alpha": 6545,
- "grave": 6546,
- "constitutional": 6547,
- "alcohol": 6548,
- "arrest": 6549,
- "flower": 6550,
- "mystery": 6551,
- "devil": 6552,
- "architectural": 6553,
- "relationships": 6554,
- "greatly": 6555,
- "habitat": 6556,
- "##istic": 6557,
- "larry": 6558,
- "progressive": 6559,
- "remote": 6560,
- "cotton": 6561,
- "##ics": 6562,
- "##ok": 6563,
- "preserved": 6564,
- "reaches": 6565,
- "##ming": 6566,
- "cited": 6567,
- "86": 6568,
- "vast": 6569,
- "scholarship": 6570,
- "decisions": 6571,
- "cbs": 6572,
- "joy": 6573,
- "teach": 6574,
- "1885": 6575,
- "editions": 6576,
- "knocked": 6577,
- "eve": 6578,
- "searching": 6579,
- "partly": 6580,
- "participation": 6581,
- "gap": 6582,
- "animated": 6583,
- "fate": 6584,
- "excellent": 6585,
- "##ett": 6586,
- "na": 6587,
- "87": 6588,
- "alternate": 6589,
- "saints": 6590,
- "youngest": 6591,
- "##ily": 6592,
- "climbed": 6593,
- "##ita": 6594,
- "##tors": 6595,
- "suggest": 6596,
- "##ct": 6597,
- "discussion": 6598,
- "staying": 6599,
- "choir": 6600,
- "lakes": 6601,
- "jacket": 6602,
- "revenue": 6603,
- "nevertheless": 6604,
- "peaked": 6605,
- "instrument": 6606,
- "wondering": 6607,
- "annually": 6608,
- "managing": 6609,
- "neil": 6610,
- "1891": 6611,
- "signing": 6612,
- "terry": 6613,
- "##ice": 6614,
- "apply": 6615,
- "clinical": 6616,
- "brooklyn": 6617,
- "aim": 6618,
- "catherine": 6619,
- "fuck": 6620,
- "farmers": 6621,
- "figured": 6622,
- "ninth": 6623,
- "pride": 6624,
- "hugh": 6625,
- "evolution": 6626,
- "ordinary": 6627,
- "involvement": 6628,
- "comfortable": 6629,
- "shouted": 6630,
- "tech": 6631,
- "encouraged": 6632,
- "taiwan": 6633,
- "representation": 6634,
- "sharing": 6635,
- "##lia": 6636,
- "##em": 6637,
- "panic": 6638,
- "exact": 6639,
- "cargo": 6640,
- "competing": 6641,
- "fat": 6642,
- "cried": 6643,
- "83": 6644,
- "1920s": 6645,
- "occasions": 6646,
- "pa": 6647,
- "cabin": 6648,
- "borders": 6649,
- "utah": 6650,
- "marcus": 6651,
- "##isation": 6652,
- "badly": 6653,
- "muscles": 6654,
- "##ance": 6655,
- "victorian": 6656,
- "transition": 6657,
- "warner": 6658,
- "bet": 6659,
- "permission": 6660,
- "##rin": 6661,
- "slave": 6662,
- "terrible": 6663,
- "similarly": 6664,
- "shares": 6665,
- "seth": 6666,
- "uefa": 6667,
- "possession": 6668,
- "medals": 6669,
- "benefits": 6670,
- "colleges": 6671,
- "lowered": 6672,
- "perfectly": 6673,
- "mall": 6674,
- "transit": 6675,
- "##ye": 6676,
- "##kar": 6677,
- "publisher": 6678,
- "##ened": 6679,
- "harrison": 6680,
- "deaths": 6681,
- "elevation": 6682,
- "##ae": 6683,
- "asleep": 6684,
- "machines": 6685,
- "sigh": 6686,
- "ash": 6687,
- "hardly": 6688,
- "argument": 6689,
- "occasion": 6690,
- "parent": 6691,
- "leo": 6692,
- "decline": 6693,
- "1888": 6694,
- "contribution": 6695,
- "##ua": 6696,
- "concentration": 6697,
- "1000": 6698,
- "opportunities": 6699,
- "hispanic": 6700,
- "guardian": 6701,
- "extent": 6702,
- "emotions": 6703,
- "hips": 6704,
- "mason": 6705,
- "volumes": 6706,
- "bloody": 6707,
- "controversy": 6708,
- "diameter": 6709,
- "steady": 6710,
- "mistake": 6711,
- "phoenix": 6712,
- "identify": 6713,
- "violin": 6714,
- "##sk": 6715,
- "departure": 6716,
- "richmond": 6717,
- "spin": 6718,
- "funeral": 6719,
- "enemies": 6720,
- "1864": 6721,
- "gear": 6722,
- "literally": 6723,
- "connor": 6724,
- "random": 6725,
- "sergeant": 6726,
- "grab": 6727,
- "confusion": 6728,
- "1865": 6729,
- "transmission": 6730,
- "informed": 6731,
- "op": 6732,
- "leaning": 6733,
- "sacred": 6734,
- "suspended": 6735,
- "thinks": 6736,
- "gates": 6737,
- "portland": 6738,
- "luck": 6739,
- "agencies": 6740,
- "yours": 6741,
- "hull": 6742,
- "expert": 6743,
- "muscle": 6744,
- "layer": 6745,
- "practical": 6746,
- "sculpture": 6747,
- "jerusalem": 6748,
- "latest": 6749,
- "lloyd": 6750,
- "statistics": 6751,
- "deeper": 6752,
- "recommended": 6753,
- "warrior": 6754,
- "arkansas": 6755,
- "mess": 6756,
- "supports": 6757,
- "greg": 6758,
- "eagle": 6759,
- "1880": 6760,
- "recovered": 6761,
- "rated": 6762,
- "concerts": 6763,
- "rushed": 6764,
- "##ano": 6765,
- "stops": 6766,
- "eggs": 6767,
- "files": 6768,
- "premiere": 6769,
- "keith": 6770,
- "##vo": 6771,
- "delhi": 6772,
- "turner": 6773,
- "pit": 6774,
- "affair": 6775,
- "belief": 6776,
- "paint": 6777,
- "##zing": 6778,
- "mate": 6779,
- "##ach": 6780,
- "##ev": 6781,
- "victim": 6782,
- "##ology": 6783,
- "withdrew": 6784,
- "bonus": 6785,
- "styles": 6786,
- "fled": 6787,
- "##ud": 6788,
- "glasgow": 6789,
- "technologies": 6790,
- "funded": 6791,
- "nbc": 6792,
- "adaptation": 6793,
- "##ata": 6794,
- "portrayed": 6795,
- "cooperation": 6796,
- "supporters": 6797,
- "judges": 6798,
- "bernard": 6799,
- "justin": 6800,
- "hallway": 6801,
- "ralph": 6802,
- "##ick": 6803,
- "graduating": 6804,
- "controversial": 6805,
- "distant": 6806,
- "continental": 6807,
- "spider": 6808,
- "bite": 6809,
- "##ho": 6810,
- "recognize": 6811,
- "intention": 6812,
- "mixing": 6813,
- "##ese": 6814,
- "egyptian": 6815,
- "bow": 6816,
- "tourism": 6817,
- "suppose": 6818,
- "claiming": 6819,
- "tiger": 6820,
- "dominated": 6821,
- "participants": 6822,
- "vi": 6823,
- "##ru": 6824,
- "nurse": 6825,
- "partially": 6826,
- "tape": 6827,
- "##rum": 6828,
- "psychology": 6829,
- "##rn": 6830,
- "essential": 6831,
- "touring": 6832,
- "duo": 6833,
- "voting": 6834,
- "civilian": 6835,
- "emotional": 6836,
- "channels": 6837,
- "##king": 6838,
- "apparent": 6839,
- "hebrew": 6840,
- "1887": 6841,
- "tommy": 6842,
- "carrier": 6843,
- "intersection": 6844,
- "beast": 6845,
- "hudson": 6846,
- "##gar": 6847,
- "##zo": 6848,
- "lab": 6849,
- "nova": 6850,
- "bench": 6851,
- "discuss": 6852,
- "costa": 6853,
- "##ered": 6854,
- "detailed": 6855,
- "behalf": 6856,
- "drivers": 6857,
- "unfortunately": 6858,
- "obtain": 6859,
- "##lis": 6860,
- "rocky": 6861,
- "##dae": 6862,
- "siege": 6863,
- "friendship": 6864,
- "honey": 6865,
- "##rian": 6866,
- "1861": 6867,
- "amy": 6868,
- "hang": 6869,
- "posted": 6870,
- "governments": 6871,
- "collins": 6872,
- "respond": 6873,
- "wildlife": 6874,
- "preferred": 6875,
- "operator": 6876,
- "##po": 6877,
- "laura": 6878,
- "pregnant": 6879,
- "videos": 6880,
- "dennis": 6881,
- "suspected": 6882,
- "boots": 6883,
- "instantly": 6884,
- "weird": 6885,
- "automatic": 6886,
- "businessman": 6887,
- "alleged": 6888,
- "placing": 6889,
- "throwing": 6890,
- "ph": 6891,
- "mood": 6892,
- "1862": 6893,
- "perry": 6894,
- "venue": 6895,
- "jet": 6896,
- "remainder": 6897,
- "##lli": 6898,
- "##ci": 6899,
- "passion": 6900,
- "biological": 6901,
- "boyfriend": 6902,
- "1863": 6903,
- "dirt": 6904,
- "buffalo": 6905,
- "ron": 6906,
- "segment": 6907,
- "fa": 6908,
- "abuse": 6909,
- "##era": 6910,
- "genre": 6911,
- "thrown": 6912,
- "stroke": 6913,
- "colored": 6914,
- "stress": 6915,
- "exercise": 6916,
- "displayed": 6917,
- "##gen": 6918,
- "struggled": 6919,
- "##tti": 6920,
- "abroad": 6921,
- "dramatic": 6922,
- "wonderful": 6923,
- "thereafter": 6924,
- "madrid": 6925,
- "component": 6926,
- "widespread": 6927,
- "##sed": 6928,
- "tale": 6929,
- "citizen": 6930,
- "todd": 6931,
- "monday": 6932,
- "1886": 6933,
- "vancouver": 6934,
- "overseas": 6935,
- "forcing": 6936,
- "crying": 6937,
- "descent": 6938,
- "##ris": 6939,
- "discussed": 6940,
- "substantial": 6941,
- "ranks": 6942,
- "regime": 6943,
- "1870": 6944,
- "provinces": 6945,
- "switch": 6946,
- "drum": 6947,
- "zane": 6948,
- "ted": 6949,
- "tribes": 6950,
- "proof": 6951,
- "lp": 6952,
- "cream": 6953,
- "researchers": 6954,
- "volunteer": 6955,
- "manor": 6956,
- "silk": 6957,
- "milan": 6958,
- "donated": 6959,
- "allies": 6960,
- "venture": 6961,
- "principle": 6962,
- "delivery": 6963,
- "enterprise": 6964,
- "##ves": 6965,
- "##ans": 6966,
- "bars": 6967,
- "traditionally": 6968,
- "witch": 6969,
- "reminded": 6970,
- "copper": 6971,
- "##uk": 6972,
- "pete": 6973,
- "inter": 6974,
- "links": 6975,
- "colin": 6976,
- "grinned": 6977,
- "elsewhere": 6978,
- "competitive": 6979,
- "frequent": 6980,
- "##oy": 6981,
- "scream": 6982,
- "##hu": 6983,
- "tension": 6984,
- "texts": 6985,
- "submarine": 6986,
- "finnish": 6987,
- "defending": 6988,
- "defend": 6989,
- "pat": 6990,
- "detail": 6991,
- "1884": 6992,
- "affiliated": 6993,
- "stuart": 6994,
- "themes": 6995,
- "villa": 6996,
- "periods": 6997,
- "tool": 6998,
- "belgian": 6999,
- "ruling": 7000,
- "crimes": 7001,
- "answers": 7002,
- "folded": 7003,
- "licensed": 7004,
- "resort": 7005,
- "demolished": 7006,
- "hans": 7007,
- "lucy": 7008,
- "1881": 7009,
- "lion": 7010,
- "traded": 7011,
- "photographs": 7012,
- "writes": 7013,
- "craig": 7014,
- "##fa": 7015,
- "trials": 7016,
- "generated": 7017,
- "beth": 7018,
- "noble": 7019,
- "debt": 7020,
- "percentage": 7021,
- "yorkshire": 7022,
- "erected": 7023,
- "ss": 7024,
- "viewed": 7025,
- "grades": 7026,
- "confidence": 7027,
- "ceased": 7028,
- "islam": 7029,
- "telephone": 7030,
- "retail": 7031,
- "##ible": 7032,
- "chile": 7033,
- "m²": 7034,
- "roberts": 7035,
- "sixteen": 7036,
- "##ich": 7037,
- "commented": 7038,
- "hampshire": 7039,
- "innocent": 7040,
- "dual": 7041,
- "pounds": 7042,
- "checked": 7043,
- "regulations": 7044,
- "afghanistan": 7045,
- "sung": 7046,
- "rico": 7047,
- "liberty": 7048,
- "assets": 7049,
- "bigger": 7050,
- "options": 7051,
- "angels": 7052,
- "relegated": 7053,
- "tribute": 7054,
- "wells": 7055,
- "attending": 7056,
- "leaf": 7057,
- "##yan": 7058,
- "butler": 7059,
- "romanian": 7060,
- "forum": 7061,
- "monthly": 7062,
- "lisa": 7063,
- "patterns": 7064,
- "gmina": 7065,
- "##tory": 7066,
- "madison": 7067,
- "hurricane": 7068,
- "rev": 7069,
- "##ians": 7070,
- "bristol": 7071,
- "##ula": 7072,
- "elite": 7073,
- "valuable": 7074,
- "disaster": 7075,
- "democracy": 7076,
- "awareness": 7077,
- "germans": 7078,
- "freyja": 7079,
- "##ins": 7080,
- "loop": 7081,
- "absolutely": 7082,
- "paying": 7083,
- "populations": 7084,
- "maine": 7085,
- "sole": 7086,
- "prayer": 7087,
- "spencer": 7088,
- "releases": 7089,
- "doorway": 7090,
- "bull": 7091,
- "##ani": 7092,
- "lover": 7093,
- "midnight": 7094,
- "conclusion": 7095,
- "##sson": 7096,
- "thirteen": 7097,
- "lily": 7098,
- "mediterranean": 7099,
- "##lt": 7100,
- "nhl": 7101,
- "proud": 7102,
- "sample": 7103,
- "##hill": 7104,
- "drummer": 7105,
- "guinea": 7106,
- "##ova": 7107,
- "murphy": 7108,
- "climb": 7109,
- "##ston": 7110,
- "instant": 7111,
- "attributed": 7112,
- "horn": 7113,
- "ain": 7114,
- "railways": 7115,
- "steven": 7116,
- "##ao": 7117,
- "autumn": 7118,
- "ferry": 7119,
- "opponent": 7120,
- "root": 7121,
- "traveling": 7122,
- "secured": 7123,
- "corridor": 7124,
- "stretched": 7125,
- "tales": 7126,
- "sheet": 7127,
- "trinity": 7128,
- "cattle": 7129,
- "helps": 7130,
- "indicates": 7131,
- "manhattan": 7132,
- "murdered": 7133,
- "fitted": 7134,
- "1882": 7135,
- "gentle": 7136,
- "grandmother": 7137,
- "mines": 7138,
- "shocked": 7139,
- "vegas": 7140,
- "produces": 7141,
- "##light": 7142,
- "caribbean": 7143,
- "##ou": 7144,
- "belong": 7145,
- "continuous": 7146,
- "desperate": 7147,
- "drunk": 7148,
- "historically": 7149,
- "trio": 7150,
- "waved": 7151,
- "raf": 7152,
- "dealing": 7153,
- "nathan": 7154,
- "bat": 7155,
- "murmured": 7156,
- "interrupted": 7157,
- "residing": 7158,
- "scientist": 7159,
- "pioneer": 7160,
- "harold": 7161,
- "aaron": 7162,
- "##net": 7163,
- "delta": 7164,
- "attempting": 7165,
- "minority": 7166,
- "mini": 7167,
- "believes": 7168,
- "chorus": 7169,
- "tend": 7170,
- "lots": 7171,
- "eyed": 7172,
- "indoor": 7173,
- "load": 7174,
- "shots": 7175,
- "updated": 7176,
- "jail": 7177,
- "##llo": 7178,
- "concerning": 7179,
- "connecting": 7180,
- "wealth": 7181,
- "##ved": 7182,
- "slaves": 7183,
- "arrive": 7184,
- "rangers": 7185,
- "sufficient": 7186,
- "rebuilt": 7187,
- "##wick": 7188,
- "cardinal": 7189,
- "flood": 7190,
- "muhammad": 7191,
- "whenever": 7192,
- "relation": 7193,
- "runners": 7194,
- "moral": 7195,
- "repair": 7196,
- "viewers": 7197,
- "arriving": 7198,
- "revenge": 7199,
- "punk": 7200,
- "assisted": 7201,
- "bath": 7202,
- "fairly": 7203,
- "breathe": 7204,
- "lists": 7205,
- "innings": 7206,
- "illustrated": 7207,
- "whisper": 7208,
- "nearest": 7209,
- "voters": 7210,
- "clinton": 7211,
- "ties": 7212,
- "ultimate": 7213,
- "screamed": 7214,
- "beijing": 7215,
- "lions": 7216,
- "andre": 7217,
- "fictional": 7218,
- "gathering": 7219,
- "comfort": 7220,
- "radar": 7221,
- "suitable": 7222,
- "dismissed": 7223,
- "hms": 7224,
- "ban": 7225,
- "pine": 7226,
- "wrist": 7227,
- "atmosphere": 7228,
- "voivodeship": 7229,
- "bid": 7230,
- "timber": 7231,
- "##ned": 7232,
- "##nan": 7233,
- "giants": 7234,
- "##ane": 7235,
- "cameron": 7236,
- "recovery": 7237,
- "uss": 7238,
- "identical": 7239,
- "categories": 7240,
- "switched": 7241,
- "serbia": 7242,
- "laughter": 7243,
- "noah": 7244,
- "ensemble": 7245,
- "therapy": 7246,
- "peoples": 7247,
- "touching": 7248,
- "##off": 7249,
- "locally": 7250,
- "pearl": 7251,
- "platforms": 7252,
- "everywhere": 7253,
- "ballet": 7254,
- "tables": 7255,
- "lanka": 7256,
- "herbert": 7257,
- "outdoor": 7258,
- "toured": 7259,
- "derek": 7260,
- "1883": 7261,
- "spaces": 7262,
- "contested": 7263,
- "swept": 7264,
- "1878": 7265,
- "exclusive": 7266,
- "slight": 7267,
- "connections": 7268,
- "##dra": 7269,
- "winds": 7270,
- "prisoner": 7271,
- "collective": 7272,
- "bangladesh": 7273,
- "tube": 7274,
- "publicly": 7275,
- "wealthy": 7276,
- "thai": 7277,
- "##ys": 7278,
- "isolated": 7279,
- "select": 7280,
- "##ric": 7281,
- "insisted": 7282,
- "pen": 7283,
- "fortune": 7284,
- "ticket": 7285,
- "spotted": 7286,
- "reportedly": 7287,
- "animation": 7288,
- "enforcement": 7289,
- "tanks": 7290,
- "110": 7291,
- "decides": 7292,
- "wider": 7293,
- "lowest": 7294,
- "owen": 7295,
- "##time": 7296,
- "nod": 7297,
- "hitting": 7298,
- "##hn": 7299,
- "gregory": 7300,
- "furthermore": 7301,
- "magazines": 7302,
- "fighters": 7303,
- "solutions": 7304,
- "##ery": 7305,
- "pointing": 7306,
- "requested": 7307,
- "peru": 7308,
- "reed": 7309,
- "chancellor": 7310,
- "knights": 7311,
- "mask": 7312,
- "worker": 7313,
- "eldest": 7314,
- "flames": 7315,
- "reduction": 7316,
- "1860": 7317,
- "volunteers": 7318,
- "##tis": 7319,
- "reporting": 7320,
- "##hl": 7321,
- "wire": 7322,
- "advisory": 7323,
- "endemic": 7324,
- "origins": 7325,
- "settlers": 7326,
- "pursue": 7327,
- "knock": 7328,
- "consumer": 7329,
- "1876": 7330,
- "eu": 7331,
- "compound": 7332,
- "creatures": 7333,
- "mansion": 7334,
- "sentenced": 7335,
- "ivan": 7336,
- "deployed": 7337,
- "guitars": 7338,
- "frowned": 7339,
- "involves": 7340,
- "mechanism": 7341,
- "kilometers": 7342,
- "perspective": 7343,
- "shops": 7344,
- "maps": 7345,
- "terminus": 7346,
- "duncan": 7347,
- "alien": 7348,
- "fist": 7349,
- "bridges": 7350,
- "##pers": 7351,
- "heroes": 7352,
- "fed": 7353,
- "derby": 7354,
- "swallowed": 7355,
- "##ros": 7356,
- "patent": 7357,
- "sara": 7358,
- "illness": 7359,
- "characterized": 7360,
- "adventures": 7361,
- "slide": 7362,
- "hawaii": 7363,
- "jurisdiction": 7364,
- "##op": 7365,
- "organised": 7366,
- "##side": 7367,
- "adelaide": 7368,
- "walks": 7369,
- "biology": 7370,
- "se": 7371,
- "##ties": 7372,
- "rogers": 7373,
- "swing": 7374,
- "tightly": 7375,
- "boundaries": 7376,
- "##rie": 7377,
- "prepare": 7378,
- "implementation": 7379,
- "stolen": 7380,
- "##sha": 7381,
- "certified": 7382,
- "colombia": 7383,
- "edwards": 7384,
- "garage": 7385,
- "##mm": 7386,
- "recalled": 7387,
- "##ball": 7388,
- "rage": 7389,
- "harm": 7390,
- "nigeria": 7391,
- "breast": 7392,
- "##ren": 7393,
- "furniture": 7394,
- "pupils": 7395,
- "settle": 7396,
- "##lus": 7397,
- "cuba": 7398,
- "balls": 7399,
- "client": 7400,
- "alaska": 7401,
- "21st": 7402,
- "linear": 7403,
- "thrust": 7404,
- "celebration": 7405,
- "latino": 7406,
- "genetic": 7407,
- "terror": 7408,
- "##cia": 7409,
- "##ening": 7410,
- "lightning": 7411,
- "fee": 7412,
- "witness": 7413,
- "lodge": 7414,
- "establishing": 7415,
- "skull": 7416,
- "##ique": 7417,
- "earning": 7418,
- "hood": 7419,
- "##ei": 7420,
- "rebellion": 7421,
- "wang": 7422,
- "sporting": 7423,
- "warned": 7424,
- "missile": 7425,
- "devoted": 7426,
- "activist": 7427,
- "porch": 7428,
- "worship": 7429,
- "fourteen": 7430,
- "package": 7431,
- "1871": 7432,
- "decorated": 7433,
- "##shire": 7434,
- "housed": 7435,
- "##ock": 7436,
- "chess": 7437,
- "sailed": 7438,
- "doctors": 7439,
- "oscar": 7440,
- "joan": 7441,
- "treat": 7442,
- "garcia": 7443,
- "harbour": 7444,
- "jeremy": 7445,
- "##ire": 7446,
- "traditions": 7447,
- "dominant": 7448,
- "jacques": 7449,
- "##gon": 7450,
- "##wan": 7451,
- "relocated": 7452,
- "1879": 7453,
- "amendment": 7454,
- "sized": 7455,
- "companion": 7456,
- "simultaneously": 7457,
- "volleyball": 7458,
- "spun": 7459,
- "acre": 7460,
- "increases": 7461,
- "stopping": 7462,
- "loves": 7463,
- "belongs": 7464,
- "affect": 7465,
- "drafted": 7466,
- "tossed": 7467,
- "scout": 7468,
- "battles": 7469,
- "1875": 7470,
- "filming": 7471,
- "shoved": 7472,
- "munich": 7473,
- "tenure": 7474,
- "vertical": 7475,
- "romance": 7476,
- "pc": 7477,
- "##cher": 7478,
- "argue": 7479,
- "##ical": 7480,
- "craft": 7481,
- "ranging": 7482,
- "www": 7483,
- "opens": 7484,
- "honest": 7485,
- "tyler": 7486,
- "yesterday": 7487,
- "virtual": 7488,
- "##let": 7489,
- "muslims": 7490,
- "reveal": 7491,
- "snake": 7492,
- "immigrants": 7493,
- "radical": 7494,
- "screaming": 7495,
- "speakers": 7496,
- "firing": 7497,
- "saving": 7498,
- "belonging": 7499,
- "ease": 7500,
- "lighting": 7501,
- "prefecture": 7502,
- "blame": 7503,
- "farmer": 7504,
- "hungry": 7505,
- "grows": 7506,
- "rubbed": 7507,
- "beam": 7508,
- "sur": 7509,
- "subsidiary": 7510,
- "##cha": 7511,
- "armenian": 7512,
- "sao": 7513,
- "dropping": 7514,
- "conventional": 7515,
- "##fer": 7516,
- "microsoft": 7517,
- "reply": 7518,
- "qualify": 7519,
- "spots": 7520,
- "1867": 7521,
- "sweat": 7522,
- "festivals": 7523,
- "##ken": 7524,
- "immigration": 7525,
- "physician": 7526,
- "discover": 7527,
- "exposure": 7528,
- "sandy": 7529,
- "explanation": 7530,
- "isaac": 7531,
- "implemented": 7532,
- "##fish": 7533,
- "hart": 7534,
- "initiated": 7535,
- "connect": 7536,
- "stakes": 7537,
- "presents": 7538,
- "heights": 7539,
- "householder": 7540,
- "pleased": 7541,
- "tourist": 7542,
- "regardless": 7543,
- "slip": 7544,
- "closest": 7545,
- "##ction": 7546,
- "surely": 7547,
- "sultan": 7548,
- "brings": 7549,
- "riley": 7550,
- "preparation": 7551,
- "aboard": 7552,
- "slammed": 7553,
- "baptist": 7554,
- "experiment": 7555,
- "ongoing": 7556,
- "interstate": 7557,
- "organic": 7558,
- "playoffs": 7559,
- "##ika": 7560,
- "1877": 7561,
- "130": 7562,
- "##tar": 7563,
- "hindu": 7564,
- "error": 7565,
- "tours": 7566,
- "tier": 7567,
- "plenty": 7568,
- "arrangements": 7569,
- "talks": 7570,
- "trapped": 7571,
- "excited": 7572,
- "sank": 7573,
- "ho": 7574,
- "athens": 7575,
- "1872": 7576,
- "denver": 7577,
- "welfare": 7578,
- "suburb": 7579,
- "athletes": 7580,
- "trick": 7581,
- "diverse": 7582,
- "belly": 7583,
- "exclusively": 7584,
- "yelled": 7585,
- "1868": 7586,
- "##med": 7587,
- "conversion": 7588,
- "##ette": 7589,
- "1874": 7590,
- "internationally": 7591,
- "computers": 7592,
- "conductor": 7593,
- "abilities": 7594,
- "sensitive": 7595,
- "hello": 7596,
- "dispute": 7597,
- "measured": 7598,
- "globe": 7599,
- "rocket": 7600,
- "prices": 7601,
- "amsterdam": 7602,
- "flights": 7603,
- "tigers": 7604,
- "inn": 7605,
- "municipalities": 7606,
- "emotion": 7607,
- "references": 7608,
- "3d": 7609,
- "##mus": 7610,
- "explains": 7611,
- "airlines": 7612,
- "manufactured": 7613,
- "pm": 7614,
- "archaeological": 7615,
- "1873": 7616,
- "interpretation": 7617,
- "devon": 7618,
- "comment": 7619,
- "##ites": 7620,
- "settlements": 7621,
- "kissing": 7622,
- "absolute": 7623,
- "improvement": 7624,
- "suite": 7625,
- "impressed": 7626,
- "barcelona": 7627,
- "sullivan": 7628,
- "jefferson": 7629,
- "towers": 7630,
- "jesse": 7631,
- "julie": 7632,
- "##tin": 7633,
- "##lu": 7634,
- "grandson": 7635,
- "hi": 7636,
- "gauge": 7637,
- "regard": 7638,
- "rings": 7639,
- "interviews": 7640,
- "trace": 7641,
- "raymond": 7642,
- "thumb": 7643,
- "departments": 7644,
- "burns": 7645,
- "serial": 7646,
- "bulgarian": 7647,
- "scores": 7648,
- "demonstrated": 7649,
- "##ix": 7650,
- "1866": 7651,
- "kyle": 7652,
- "alberta": 7653,
- "underneath": 7654,
- "romanized": 7655,
- "##ward": 7656,
- "relieved": 7657,
- "acquisition": 7658,
- "phrase": 7659,
- "cliff": 7660,
- "reveals": 7661,
- "han": 7662,
- "cuts": 7663,
- "merger": 7664,
- "custom": 7665,
- "##dar": 7666,
- "nee": 7667,
- "gilbert": 7668,
- "graduation": 7669,
- "##nts": 7670,
- "assessment": 7671,
- "cafe": 7672,
- "difficulty": 7673,
- "demands": 7674,
- "swung": 7675,
- "democrat": 7676,
- "jennifer": 7677,
- "commons": 7678,
- "1940s": 7679,
- "grove": 7680,
- "##yo": 7681,
- "completing": 7682,
- "focuses": 7683,
- "sum": 7684,
- "substitute": 7685,
- "bearing": 7686,
- "stretch": 7687,
- "reception": 7688,
- "##py": 7689,
- "reflected": 7690,
- "essentially": 7691,
- "destination": 7692,
- "pairs": 7693,
- "##ched": 7694,
- "survival": 7695,
- "resource": 7696,
- "##bach": 7697,
- "promoting": 7698,
- "doubles": 7699,
- "messages": 7700,
- "tear": 7701,
- "##down": 7702,
- "##fully": 7703,
- "parade": 7704,
- "florence": 7705,
- "harvey": 7706,
- "incumbent": 7707,
- "partial": 7708,
- "framework": 7709,
- "900": 7710,
- "pedro": 7711,
- "frozen": 7712,
- "procedure": 7713,
- "olivia": 7714,
- "controls": 7715,
- "##mic": 7716,
- "shelter": 7717,
- "personally": 7718,
- "temperatures": 7719,
- "##od": 7720,
- "brisbane": 7721,
- "tested": 7722,
- "sits": 7723,
- "marble": 7724,
- "comprehensive": 7725,
- "oxygen": 7726,
- "leonard": 7727,
- "##kov": 7728,
- "inaugural": 7729,
- "iranian": 7730,
- "referring": 7731,
- "quarters": 7732,
- "attitude": 7733,
- "##ivity": 7734,
- "mainstream": 7735,
- "lined": 7736,
- "mars": 7737,
- "dakota": 7738,
- "norfolk": 7739,
- "unsuccessful": 7740,
- "##°": 7741,
- "explosion": 7742,
- "helicopter": 7743,
- "congressional": 7744,
- "##sing": 7745,
- "inspector": 7746,
- "bitch": 7747,
- "seal": 7748,
- "departed": 7749,
- "divine": 7750,
- "##ters": 7751,
- "coaching": 7752,
- "examination": 7753,
- "punishment": 7754,
- "manufacturer": 7755,
- "sink": 7756,
- "columns": 7757,
- "unincorporated": 7758,
- "signals": 7759,
- "nevada": 7760,
- "squeezed": 7761,
- "dylan": 7762,
- "dining": 7763,
- "photos": 7764,
- "martial": 7765,
- "manuel": 7766,
- "eighteen": 7767,
- "elevator": 7768,
- "brushed": 7769,
- "plates": 7770,
- "ministers": 7771,
- "ivy": 7772,
- "congregation": 7773,
- "##len": 7774,
- "slept": 7775,
- "specialized": 7776,
- "taxes": 7777,
- "curve": 7778,
- "restricted": 7779,
- "negotiations": 7780,
- "likes": 7781,
- "statistical": 7782,
- "arnold": 7783,
- "inspiration": 7784,
- "execution": 7785,
- "bold": 7786,
- "intermediate": 7787,
- "significance": 7788,
- "margin": 7789,
- "ruler": 7790,
- "wheels": 7791,
- "gothic": 7792,
- "intellectual": 7793,
- "dependent": 7794,
- "listened": 7795,
- "eligible": 7796,
- "buses": 7797,
- "widow": 7798,
- "syria": 7799,
- "earn": 7800,
- "cincinnati": 7801,
- "collapsed": 7802,
- "recipient": 7803,
- "secrets": 7804,
- "accessible": 7805,
- "philippine": 7806,
- "maritime": 7807,
- "goddess": 7808,
- "clerk": 7809,
- "surrender": 7810,
- "breaks": 7811,
- "playoff": 7812,
- "database": 7813,
- "##ified": 7814,
- "##lon": 7815,
- "ideal": 7816,
- "beetle": 7817,
- "aspect": 7818,
- "soap": 7819,
- "regulation": 7820,
- "strings": 7821,
- "expand": 7822,
- "anglo": 7823,
- "shorter": 7824,
- "crosses": 7825,
- "retreat": 7826,
- "tough": 7827,
- "coins": 7828,
- "wallace": 7829,
- "directions": 7830,
- "pressing": 7831,
- "##oon": 7832,
- "shipping": 7833,
- "locomotives": 7834,
- "comparison": 7835,
- "topics": 7836,
- "nephew": 7837,
- "##mes": 7838,
- "distinction": 7839,
- "honors": 7840,
- "travelled": 7841,
- "sierra": 7842,
- "ibn": 7843,
- "##over": 7844,
- "fortress": 7845,
- "sa": 7846,
- "recognised": 7847,
- "carved": 7848,
- "1869": 7849,
- "clients": 7850,
- "##dan": 7851,
- "intent": 7852,
- "##mar": 7853,
- "coaches": 7854,
- "describing": 7855,
- "bread": 7856,
- "##ington": 7857,
- "beaten": 7858,
- "northwestern": 7859,
- "##ona": 7860,
- "merit": 7861,
- "youtube": 7862,
- "collapse": 7863,
- "challenges": 7864,
- "em": 7865,
- "historians": 7866,
- "objective": 7867,
- "submitted": 7868,
- "virus": 7869,
- "attacking": 7870,
- "drake": 7871,
- "assume": 7872,
- "##ere": 7873,
- "diseases": 7874,
- "marc": 7875,
- "stem": 7876,
- "leeds": 7877,
- "##cus": 7878,
- "##ab": 7879,
- "farming": 7880,
- "glasses": 7881,
- "##lock": 7882,
- "visits": 7883,
- "nowhere": 7884,
- "fellowship": 7885,
- "relevant": 7886,
- "carries": 7887,
- "restaurants": 7888,
- "experiments": 7889,
- "101": 7890,
- "constantly": 7891,
- "bases": 7892,
- "targets": 7893,
- "shah": 7894,
- "tenth": 7895,
- "opponents": 7896,
- "verse": 7897,
- "territorial": 7898,
- "##ira": 7899,
- "writings": 7900,
- "corruption": 7901,
- "##hs": 7902,
- "instruction": 7903,
- "inherited": 7904,
- "reverse": 7905,
- "emphasis": 7906,
- "##vic": 7907,
- "employee": 7908,
- "arch": 7909,
- "keeps": 7910,
- "rabbi": 7911,
- "watson": 7912,
- "payment": 7913,
- "uh": 7914,
- "##ala": 7915,
- "nancy": 7916,
- "##tre": 7917,
- "venice": 7918,
- "fastest": 7919,
- "sexy": 7920,
- "banned": 7921,
- "adrian": 7922,
- "properly": 7923,
- "ruth": 7924,
- "touchdown": 7925,
- "dollar": 7926,
- "boards": 7927,
- "metre": 7928,
- "circles": 7929,
- "edges": 7930,
- "favour": 7931,
- "comments": 7932,
- "ok": 7933,
- "travels": 7934,
- "liberation": 7935,
- "scattered": 7936,
- "firmly": 7937,
- "##ular": 7938,
- "holland": 7939,
- "permitted": 7940,
- "diesel": 7941,
- "kenya": 7942,
- "den": 7943,
- "originated": 7944,
- "##ral": 7945,
- "demons": 7946,
- "resumed": 7947,
- "dragged": 7948,
- "rider": 7949,
- "##rus": 7950,
- "servant": 7951,
- "blinked": 7952,
- "extend": 7953,
- "torn": 7954,
- "##ias": 7955,
- "##sey": 7956,
- "input": 7957,
- "meal": 7958,
- "everybody": 7959,
- "cylinder": 7960,
- "kinds": 7961,
- "camps": 7962,
- "##fe": 7963,
- "bullet": 7964,
- "logic": 7965,
- "##wn": 7966,
- "croatian": 7967,
- "evolved": 7968,
- "healthy": 7969,
- "fool": 7970,
- "chocolate": 7971,
- "wise": 7972,
- "preserve": 7973,
- "pradesh": 7974,
- "##ess": 7975,
- "respective": 7976,
- "1850": 7977,
- "##ew": 7978,
- "chicken": 7979,
- "artificial": 7980,
- "gross": 7981,
- "corresponding": 7982,
- "convicted": 7983,
- "cage": 7984,
- "caroline": 7985,
- "dialogue": 7986,
- "##dor": 7987,
- "narrative": 7988,
- "stranger": 7989,
- "mario": 7990,
- "br": 7991,
- "christianity": 7992,
- "failing": 7993,
- "trent": 7994,
- "commanding": 7995,
- "buddhist": 7996,
- "1848": 7997,
- "maurice": 7998,
- "focusing": 7999,
- "yale": 8000,
- "bike": 8001,
- "altitude": 8002,
- "##ering": 8003,
- "mouse": 8004,
- "revised": 8005,
- "##sley": 8006,
- "veteran": 8007,
- "##ig": 8008,
- "pulls": 8009,
- "theology": 8010,
- "crashed": 8011,
- "campaigns": 8012,
- "legion": 8013,
- "##ability": 8014,
- "drag": 8015,
- "excellence": 8016,
- "customer": 8017,
- "cancelled": 8018,
- "intensity": 8019,
- "excuse": 8020,
- "##lar": 8021,
- "liga": 8022,
- "participating": 8023,
- "contributing": 8024,
- "printing": 8025,
- "##burn": 8026,
- "variable": 8027,
- "##rk": 8028,
- "curious": 8029,
- "bin": 8030,
- "legacy": 8031,
- "renaissance": 8032,
- "##my": 8033,
- "symptoms": 8034,
- "binding": 8035,
- "vocalist": 8036,
- "dancer": 8037,
- "##nie": 8038,
- "grammar": 8039,
- "gospel": 8040,
- "democrats": 8041,
- "ya": 8042,
- "enters": 8043,
- "sc": 8044,
- "diplomatic": 8045,
- "hitler": 8046,
- "##ser": 8047,
- "clouds": 8048,
- "mathematical": 8049,
- "quit": 8050,
- "defended": 8051,
- "oriented": 8052,
- "##heim": 8053,
- "fundamental": 8054,
- "hardware": 8055,
- "impressive": 8056,
- "equally": 8057,
- "convince": 8058,
- "confederate": 8059,
- "guilt": 8060,
- "chuck": 8061,
- "sliding": 8062,
- "##ware": 8063,
- "magnetic": 8064,
- "narrowed": 8065,
- "petersburg": 8066,
- "bulgaria": 8067,
- "otto": 8068,
- "phd": 8069,
- "skill": 8070,
- "##ama": 8071,
- "reader": 8072,
- "hopes": 8073,
- "pitcher": 8074,
- "reservoir": 8075,
- "hearts": 8076,
- "automatically": 8077,
- "expecting": 8078,
- "mysterious": 8079,
- "bennett": 8080,
- "extensively": 8081,
- "imagined": 8082,
- "seeds": 8083,
- "monitor": 8084,
- "fix": 8085,
- "##ative": 8086,
- "journalism": 8087,
- "struggling": 8088,
- "signature": 8089,
- "ranch": 8090,
- "encounter": 8091,
- "photographer": 8092,
- "observation": 8093,
- "protests": 8094,
- "##pin": 8095,
- "influences": 8096,
- "##hr": 8097,
- "calendar": 8098,
- "##all": 8099,
- "cruz": 8100,
- "croatia": 8101,
- "locomotive": 8102,
- "hughes": 8103,
- "naturally": 8104,
- "shakespeare": 8105,
- "basement": 8106,
- "hook": 8107,
- "uncredited": 8108,
- "faded": 8109,
- "theories": 8110,
- "approaches": 8111,
- "dare": 8112,
- "phillips": 8113,
- "filling": 8114,
- "fury": 8115,
- "obama": 8116,
- "##ain": 8117,
- "efficient": 8118,
- "arc": 8119,
- "deliver": 8120,
- "min": 8121,
- "raid": 8122,
- "breeding": 8123,
- "inducted": 8124,
- "leagues": 8125,
- "efficiency": 8126,
- "axis": 8127,
- "montana": 8128,
- "eagles": 8129,
- "##ked": 8130,
- "supplied": 8131,
- "instructions": 8132,
- "karen": 8133,
- "picking": 8134,
- "indicating": 8135,
- "trap": 8136,
- "anchor": 8137,
- "practically": 8138,
- "christians": 8139,
- "tomb": 8140,
- "vary": 8141,
- "occasional": 8142,
- "electronics": 8143,
- "lords": 8144,
- "readers": 8145,
- "newcastle": 8146,
- "faint": 8147,
- "innovation": 8148,
- "collect": 8149,
- "situations": 8150,
- "engagement": 8151,
- "160": 8152,
- "claude": 8153,
- "mixture": 8154,
- "##feld": 8155,
- "peer": 8156,
- "tissue": 8157,
- "logo": 8158,
- "lean": 8159,
- "##ration": 8160,
- "°f": 8161,
- "floors": 8162,
- "##ven": 8163,
- "architects": 8164,
- "reducing": 8165,
- "##our": 8166,
- "##ments": 8167,
- "rope": 8168,
- "1859": 8169,
- "ottawa": 8170,
- "##har": 8171,
- "samples": 8172,
- "banking": 8173,
- "declaration": 8174,
- "proteins": 8175,
- "resignation": 8176,
- "francois": 8177,
- "saudi": 8178,
- "advocate": 8179,
- "exhibited": 8180,
- "armor": 8181,
- "twins": 8182,
- "divorce": 8183,
- "##ras": 8184,
- "abraham": 8185,
- "reviewed": 8186,
- "jo": 8187,
- "temporarily": 8188,
- "matrix": 8189,
- "physically": 8190,
- "pulse": 8191,
- "curled": 8192,
- "##ena": 8193,
- "difficulties": 8194,
- "bengal": 8195,
- "usage": 8196,
- "##ban": 8197,
- "annie": 8198,
- "riders": 8199,
- "certificate": 8200,
- "##pi": 8201,
- "holes": 8202,
- "warsaw": 8203,
- "distinctive": 8204,
- "jessica": 8205,
- "##mon": 8206,
- "mutual": 8207,
- "1857": 8208,
- "customs": 8209,
- "circular": 8210,
- "eugene": 8211,
- "removal": 8212,
- "loaded": 8213,
- "mere": 8214,
- "vulnerable": 8215,
- "depicted": 8216,
- "generations": 8217,
- "dame": 8218,
- "heir": 8219,
- "enormous": 8220,
- "lightly": 8221,
- "climbing": 8222,
- "pitched": 8223,
- "lessons": 8224,
- "pilots": 8225,
- "nepal": 8226,
- "ram": 8227,
- "google": 8228,
- "preparing": 8229,
- "brad": 8230,
- "louise": 8231,
- "renowned": 8232,
- "##₂": 8233,
- "liam": 8234,
- "##ably": 8235,
- "plaza": 8236,
- "shaw": 8237,
- "sophie": 8238,
- "brilliant": 8239,
- "bills": 8240,
- "##bar": 8241,
- "##nik": 8242,
- "fucking": 8243,
- "mainland": 8244,
- "server": 8245,
- "pleasant": 8246,
- "seized": 8247,
- "veterans": 8248,
- "jerked": 8249,
- "fail": 8250,
- "beta": 8251,
- "brush": 8252,
- "radiation": 8253,
- "stored": 8254,
- "warmth": 8255,
- "southeastern": 8256,
- "nate": 8257,
- "sin": 8258,
- "raced": 8259,
- "berkeley": 8260,
- "joke": 8261,
- "athlete": 8262,
- "designation": 8263,
- "trunk": 8264,
- "##low": 8265,
- "roland": 8266,
- "qualification": 8267,
- "archives": 8268,
- "heels": 8269,
- "artwork": 8270,
- "receives": 8271,
- "judicial": 8272,
- "reserves": 8273,
- "##bed": 8274,
- "woke": 8275,
- "installation": 8276,
- "abu": 8277,
- "floating": 8278,
- "fake": 8279,
- "lesser": 8280,
- "excitement": 8281,
- "interface": 8282,
- "concentrated": 8283,
- "addressed": 8284,
- "characteristic": 8285,
- "amanda": 8286,
- "saxophone": 8287,
- "monk": 8288,
- "auto": 8289,
- "##bus": 8290,
- "releasing": 8291,
- "egg": 8292,
- "dies": 8293,
- "interaction": 8294,
- "defender": 8295,
- "ce": 8296,
- "outbreak": 8297,
- "glory": 8298,
- "loving": 8299,
- "##bert": 8300,
- "sequel": 8301,
- "consciousness": 8302,
- "http": 8303,
- "awake": 8304,
- "ski": 8305,
- "enrolled": 8306,
- "##ress": 8307,
- "handling": 8308,
- "rookie": 8309,
- "brow": 8310,
- "somebody": 8311,
- "biography": 8312,
- "warfare": 8313,
- "amounts": 8314,
- "contracts": 8315,
- "presentation": 8316,
- "fabric": 8317,
- "dissolved": 8318,
- "challenged": 8319,
- "meter": 8320,
- "psychological": 8321,
- "lt": 8322,
- "elevated": 8323,
- "rally": 8324,
- "accurate": 8325,
- "##tha": 8326,
- "hospitals": 8327,
- "undergraduate": 8328,
- "specialist": 8329,
- "venezuela": 8330,
- "exhibit": 8331,
- "shed": 8332,
- "nursing": 8333,
- "protestant": 8334,
- "fluid": 8335,
- "structural": 8336,
- "footage": 8337,
- "jared": 8338,
- "consistent": 8339,
- "prey": 8340,
- "##ska": 8341,
- "succession": 8342,
- "reflect": 8343,
- "exile": 8344,
- "lebanon": 8345,
- "wiped": 8346,
- "suspect": 8347,
- "shanghai": 8348,
- "resting": 8349,
- "integration": 8350,
- "preservation": 8351,
- "marvel": 8352,
- "variant": 8353,
- "pirates": 8354,
- "sheep": 8355,
- "rounded": 8356,
- "capita": 8357,
- "sailing": 8358,
- "colonies": 8359,
- "manuscript": 8360,
- "deemed": 8361,
- "variations": 8362,
- "clarke": 8363,
- "functional": 8364,
- "emerging": 8365,
- "boxing": 8366,
- "relaxed": 8367,
- "curse": 8368,
- "azerbaijan": 8369,
- "heavyweight": 8370,
- "nickname": 8371,
- "editorial": 8372,
- "rang": 8373,
- "grid": 8374,
- "tightened": 8375,
- "earthquake": 8376,
- "flashed": 8377,
- "miguel": 8378,
- "rushing": 8379,
- "##ches": 8380,
- "improvements": 8381,
- "boxes": 8382,
- "brooks": 8383,
- "180": 8384,
- "consumption": 8385,
- "molecular": 8386,
- "felix": 8387,
- "societies": 8388,
- "repeatedly": 8389,
- "variation": 8390,
- "aids": 8391,
- "civic": 8392,
- "graphics": 8393,
- "professionals": 8394,
- "realm": 8395,
- "autonomous": 8396,
- "receiver": 8397,
- "delayed": 8398,
- "workshop": 8399,
- "militia": 8400,
- "chairs": 8401,
- "trump": 8402,
- "canyon": 8403,
- "##point": 8404,
- "harsh": 8405,
- "extending": 8406,
- "lovely": 8407,
- "happiness": 8408,
- "##jan": 8409,
- "stake": 8410,
- "eyebrows": 8411,
- "embassy": 8412,
- "wellington": 8413,
- "hannah": 8414,
- "##ella": 8415,
- "sony": 8416,
- "corners": 8417,
- "bishops": 8418,
- "swear": 8419,
- "cloth": 8420,
- "contents": 8421,
- "xi": 8422,
- "namely": 8423,
- "commenced": 8424,
- "1854": 8425,
- "stanford": 8426,
- "nashville": 8427,
- "courage": 8428,
- "graphic": 8429,
- "commitment": 8430,
- "garrison": 8431,
- "##bin": 8432,
- "hamlet": 8433,
- "clearing": 8434,
- "rebels": 8435,
- "attraction": 8436,
- "literacy": 8437,
- "cooking": 8438,
- "ruins": 8439,
- "temples": 8440,
- "jenny": 8441,
- "humanity": 8442,
- "celebrate": 8443,
- "hasn": 8444,
- "freight": 8445,
- "sixty": 8446,
- "rebel": 8447,
- "bastard": 8448,
- "##art": 8449,
- "newton": 8450,
- "##ada": 8451,
- "deer": 8452,
- "##ges": 8453,
- "##ching": 8454,
- "smiles": 8455,
- "delaware": 8456,
- "singers": 8457,
- "##ets": 8458,
- "approaching": 8459,
- "assists": 8460,
- "flame": 8461,
- "##ph": 8462,
- "boulevard": 8463,
- "barrel": 8464,
- "planted": 8465,
- "##ome": 8466,
- "pursuit": 8467,
- "##sia": 8468,
- "consequences": 8469,
- "posts": 8470,
- "shallow": 8471,
- "invitation": 8472,
- "rode": 8473,
- "depot": 8474,
- "ernest": 8475,
- "kane": 8476,
- "rod": 8477,
- "concepts": 8478,
- "preston": 8479,
- "topic": 8480,
- "chambers": 8481,
- "striking": 8482,
- "blast": 8483,
- "arrives": 8484,
- "descendants": 8485,
- "montgomery": 8486,
- "ranges": 8487,
- "worlds": 8488,
- "##lay": 8489,
- "##ari": 8490,
- "span": 8491,
- "chaos": 8492,
- "praise": 8493,
- "##ag": 8494,
- "fewer": 8495,
- "1855": 8496,
- "sanctuary": 8497,
- "mud": 8498,
- "fbi": 8499,
- "##ions": 8500,
- "programmes": 8501,
- "maintaining": 8502,
- "unity": 8503,
- "harper": 8504,
- "bore": 8505,
- "handsome": 8506,
- "closure": 8507,
- "tournaments": 8508,
- "thunder": 8509,
- "nebraska": 8510,
- "linda": 8511,
- "facade": 8512,
- "puts": 8513,
- "satisfied": 8514,
- "argentine": 8515,
- "dale": 8516,
- "cork": 8517,
- "dome": 8518,
- "panama": 8519,
- "##yl": 8520,
- "1858": 8521,
- "tasks": 8522,
- "experts": 8523,
- "##ates": 8524,
- "feeding": 8525,
- "equation": 8526,
- "##las": 8527,
- "##ida": 8528,
- "##tu": 8529,
- "engage": 8530,
- "bryan": 8531,
- "##ax": 8532,
- "um": 8533,
- "quartet": 8534,
- "melody": 8535,
- "disbanded": 8536,
- "sheffield": 8537,
- "blocked": 8538,
- "gasped": 8539,
- "delay": 8540,
- "kisses": 8541,
- "maggie": 8542,
- "connects": 8543,
- "##non": 8544,
- "sts": 8545,
- "poured": 8546,
- "creator": 8547,
- "publishers": 8548,
- "##we": 8549,
- "guided": 8550,
- "ellis": 8551,
- "extinct": 8552,
- "hug": 8553,
- "gaining": 8554,
- "##ord": 8555,
- "complicated": 8556,
- "##bility": 8557,
- "poll": 8558,
- "clenched": 8559,
- "investigate": 8560,
- "##use": 8561,
- "thereby": 8562,
- "quantum": 8563,
- "spine": 8564,
- "cdp": 8565,
- "humor": 8566,
- "kills": 8567,
- "administered": 8568,
- "semifinals": 8569,
- "##du": 8570,
- "encountered": 8571,
- "ignore": 8572,
- "##bu": 8573,
- "commentary": 8574,
- "##maker": 8575,
- "bother": 8576,
- "roosevelt": 8577,
- "140": 8578,
- "plains": 8579,
- "halfway": 8580,
- "flowing": 8581,
- "cultures": 8582,
- "crack": 8583,
- "imprisoned": 8584,
- "neighboring": 8585,
- "airline": 8586,
- "##ses": 8587,
- "##view": 8588,
- "##mate": 8589,
- "##ec": 8590,
- "gather": 8591,
- "wolves": 8592,
- "marathon": 8593,
- "transformed": 8594,
- "##ill": 8595,
- "cruise": 8596,
- "organisations": 8597,
- "carol": 8598,
- "punch": 8599,
- "exhibitions": 8600,
- "numbered": 8601,
- "alarm": 8602,
- "ratings": 8603,
- "daddy": 8604,
- "silently": 8605,
- "##stein": 8606,
- "queens": 8607,
- "colours": 8608,
- "impression": 8609,
- "guidance": 8610,
- "liu": 8611,
- "tactical": 8612,
- "##rat": 8613,
- "marshal": 8614,
- "della": 8615,
- "arrow": 8616,
- "##ings": 8617,
- "rested": 8618,
- "feared": 8619,
- "tender": 8620,
- "owns": 8621,
- "bitter": 8622,
- "advisor": 8623,
- "escort": 8624,
- "##ides": 8625,
- "spare": 8626,
- "farms": 8627,
- "grants": 8628,
- "##ene": 8629,
- "dragons": 8630,
- "encourage": 8631,
- "colleagues": 8632,
- "cameras": 8633,
- "##und": 8634,
- "sucked": 8635,
- "pile": 8636,
- "spirits": 8637,
- "prague": 8638,
- "statements": 8639,
- "suspension": 8640,
- "landmark": 8641,
- "fence": 8642,
- "torture": 8643,
- "recreation": 8644,
- "bags": 8645,
- "permanently": 8646,
- "survivors": 8647,
- "pond": 8648,
- "spy": 8649,
- "predecessor": 8650,
- "bombing": 8651,
- "coup": 8652,
- "##og": 8653,
- "protecting": 8654,
- "transformation": 8655,
- "glow": 8656,
- "##lands": 8657,
- "##book": 8658,
- "dug": 8659,
- "priests": 8660,
- "andrea": 8661,
- "feat": 8662,
- "barn": 8663,
- "jumping": 8664,
- "##chen": 8665,
- "##ologist": 8666,
- "##con": 8667,
- "casualties": 8668,
- "stern": 8669,
- "auckland": 8670,
- "pipe": 8671,
- "serie": 8672,
- "revealing": 8673,
- "ba": 8674,
- "##bel": 8675,
- "trevor": 8676,
- "mercy": 8677,
- "spectrum": 8678,
- "yang": 8679,
- "consist": 8680,
- "governing": 8681,
- "collaborated": 8682,
- "possessed": 8683,
- "epic": 8684,
- "comprises": 8685,
- "blew": 8686,
- "shane": 8687,
- "##ack": 8688,
- "lopez": 8689,
- "honored": 8690,
- "magical": 8691,
- "sacrifice": 8692,
- "judgment": 8693,
- "perceived": 8694,
- "hammer": 8695,
- "mtv": 8696,
- "baronet": 8697,
- "tune": 8698,
- "das": 8699,
- "missionary": 8700,
- "sheets": 8701,
- "350": 8702,
- "neutral": 8703,
- "oral": 8704,
- "threatening": 8705,
- "attractive": 8706,
- "shade": 8707,
- "aims": 8708,
- "seminary": 8709,
- "##master": 8710,
- "estates": 8711,
- "1856": 8712,
- "michel": 8713,
- "wounds": 8714,
- "refugees": 8715,
- "manufacturers": 8716,
- "##nic": 8717,
- "mercury": 8718,
- "syndrome": 8719,
- "porter": 8720,
- "##iya": 8721,
- "##din": 8722,
- "hamburg": 8723,
- "identification": 8724,
- "upstairs": 8725,
- "purse": 8726,
- "widened": 8727,
- "pause": 8728,
- "cared": 8729,
- "breathed": 8730,
- "affiliate": 8731,
- "santiago": 8732,
- "prevented": 8733,
- "celtic": 8734,
- "fisher": 8735,
- "125": 8736,
- "recruited": 8737,
- "byzantine": 8738,
- "reconstruction": 8739,
- "farther": 8740,
- "##mp": 8741,
- "diet": 8742,
- "sake": 8743,
- "au": 8744,
- "spite": 8745,
- "sensation": 8746,
- "##ert": 8747,
- "blank": 8748,
- "separation": 8749,
- "105": 8750,
- "##hon": 8751,
- "vladimir": 8752,
- "armies": 8753,
- "anime": 8754,
- "##lie": 8755,
- "accommodate": 8756,
- "orbit": 8757,
- "cult": 8758,
- "sofia": 8759,
- "archive": 8760,
- "##ify": 8761,
- "##box": 8762,
- "founders": 8763,
- "sustained": 8764,
- "disorder": 8765,
- "honours": 8766,
- "northeastern": 8767,
- "mia": 8768,
- "crops": 8769,
- "violet": 8770,
- "threats": 8771,
- "blanket": 8772,
- "fires": 8773,
- "canton": 8774,
- "followers": 8775,
- "southwestern": 8776,
- "prototype": 8777,
- "voyage": 8778,
- "assignment": 8779,
- "altered": 8780,
- "moderate": 8781,
- "protocol": 8782,
- "pistol": 8783,
- "##eo": 8784,
- "questioned": 8785,
- "brass": 8786,
- "lifting": 8787,
- "1852": 8788,
- "math": 8789,
- "authored": 8790,
- "##ual": 8791,
- "doug": 8792,
- "dimensional": 8793,
- "dynamic": 8794,
- "##san": 8795,
- "1851": 8796,
- "pronounced": 8797,
- "grateful": 8798,
- "quest": 8799,
- "uncomfortable": 8800,
- "boom": 8801,
- "presidency": 8802,
- "stevens": 8803,
- "relating": 8804,
- "politicians": 8805,
- "chen": 8806,
- "barrier": 8807,
- "quinn": 8808,
- "diana": 8809,
- "mosque": 8810,
- "tribal": 8811,
- "cheese": 8812,
- "palmer": 8813,
- "portions": 8814,
- "sometime": 8815,
- "chester": 8816,
- "treasure": 8817,
- "wu": 8818,
- "bend": 8819,
- "download": 8820,
- "millions": 8821,
- "reforms": 8822,
- "registration": 8823,
- "##osa": 8824,
- "consequently": 8825,
- "monitoring": 8826,
- "ate": 8827,
- "preliminary": 8828,
- "brandon": 8829,
- "invented": 8830,
- "ps": 8831,
- "eaten": 8832,
- "exterior": 8833,
- "intervention": 8834,
- "ports": 8835,
- "documented": 8836,
- "log": 8837,
- "displays": 8838,
- "lecture": 8839,
- "sally": 8840,
- "favourite": 8841,
- "##itz": 8842,
- "vermont": 8843,
- "lo": 8844,
- "invisible": 8845,
- "isle": 8846,
- "breed": 8847,
- "##ator": 8848,
- "journalists": 8849,
- "relay": 8850,
- "speaks": 8851,
- "backward": 8852,
- "explore": 8853,
- "midfielder": 8854,
- "actively": 8855,
- "stefan": 8856,
- "procedures": 8857,
- "cannon": 8858,
- "blond": 8859,
- "kenneth": 8860,
- "centered": 8861,
- "servants": 8862,
- "chains": 8863,
- "libraries": 8864,
- "malcolm": 8865,
- "essex": 8866,
- "henri": 8867,
- "slavery": 8868,
- "##hal": 8869,
- "facts": 8870,
- "fairy": 8871,
- "coached": 8872,
- "cassie": 8873,
- "cats": 8874,
- "washed": 8875,
- "cop": 8876,
- "##fi": 8877,
- "announcement": 8878,
- "item": 8879,
- "2000s": 8880,
- "vinyl": 8881,
- "activated": 8882,
- "marco": 8883,
- "frontier": 8884,
- "growled": 8885,
- "curriculum": 8886,
- "##das": 8887,
- "loyal": 8888,
- "accomplished": 8889,
- "leslie": 8890,
- "ritual": 8891,
- "kenny": 8892,
- "##00": 8893,
- "vii": 8894,
- "napoleon": 8895,
- "hollow": 8896,
- "hybrid": 8897,
- "jungle": 8898,
- "stationed": 8899,
- "friedrich": 8900,
- "counted": 8901,
- "##ulated": 8902,
- "platinum": 8903,
- "theatrical": 8904,
- "seated": 8905,
- "col": 8906,
- "rubber": 8907,
- "glen": 8908,
- "1840": 8909,
- "diversity": 8910,
- "healing": 8911,
- "extends": 8912,
- "id": 8913,
- "provisions": 8914,
- "administrator": 8915,
- "columbus": 8916,
- "##oe": 8917,
- "tributary": 8918,
- "te": 8919,
- "assured": 8920,
- "org": 8921,
- "##uous": 8922,
- "prestigious": 8923,
- "examined": 8924,
- "lectures": 8925,
- "grammy": 8926,
- "ronald": 8927,
- "associations": 8928,
- "bailey": 8929,
- "allan": 8930,
- "essays": 8931,
- "flute": 8932,
- "believing": 8933,
- "consultant": 8934,
- "proceedings": 8935,
- "travelling": 8936,
- "1853": 8937,
- "kit": 8938,
- "kerala": 8939,
- "yugoslavia": 8940,
- "buddy": 8941,
- "methodist": 8942,
- "##ith": 8943,
- "burial": 8944,
- "centres": 8945,
- "batman": 8946,
- "##nda": 8947,
- "discontinued": 8948,
- "bo": 8949,
- "dock": 8950,
- "stockholm": 8951,
- "lungs": 8952,
- "severely": 8953,
- "##nk": 8954,
- "citing": 8955,
- "manga": 8956,
- "##ugh": 8957,
- "steal": 8958,
- "mumbai": 8959,
- "iraqi": 8960,
- "robot": 8961,
- "celebrity": 8962,
- "bride": 8963,
- "broadcasts": 8964,
- "abolished": 8965,
- "pot": 8966,
- "joel": 8967,
- "overhead": 8968,
- "franz": 8969,
- "packed": 8970,
- "reconnaissance": 8971,
- "johann": 8972,
- "acknowledged": 8973,
- "introduce": 8974,
- "handled": 8975,
- "doctorate": 8976,
- "developments": 8977,
- "drinks": 8978,
- "alley": 8979,
- "palestine": 8980,
- "##nis": 8981,
- "##aki": 8982,
- "proceeded": 8983,
- "recover": 8984,
- "bradley": 8985,
- "grain": 8986,
- "patch": 8987,
- "afford": 8988,
- "infection": 8989,
- "nationalist": 8990,
- "legendary": 8991,
- "##ath": 8992,
- "interchange": 8993,
- "virtually": 8994,
- "gen": 8995,
- "gravity": 8996,
- "exploration": 8997,
- "amber": 8998,
- "vital": 8999,
- "wishes": 9000,
- "powell": 9001,
- "doctrine": 9002,
- "elbow": 9003,
- "screenplay": 9004,
- "##bird": 9005,
- "contribute": 9006,
- "indonesian": 9007,
- "pet": 9008,
- "creates": 9009,
- "##com": 9010,
- "enzyme": 9011,
- "kylie": 9012,
- "discipline": 9013,
- "drops": 9014,
- "manila": 9015,
- "hunger": 9016,
- "##ien": 9017,
- "layers": 9018,
- "suffer": 9019,
- "fever": 9020,
- "bits": 9021,
- "monica": 9022,
- "keyboard": 9023,
- "manages": 9024,
- "##hood": 9025,
- "searched": 9026,
- "appeals": 9027,
- "##bad": 9028,
- "testament": 9029,
- "grande": 9030,
- "reid": 9031,
- "##war": 9032,
- "beliefs": 9033,
- "congo": 9034,
- "##ification": 9035,
- "##dia": 9036,
- "si": 9037,
- "requiring": 9038,
- "##via": 9039,
- "casey": 9040,
- "1849": 9041,
- "regret": 9042,
- "streak": 9043,
- "rape": 9044,
- "depends": 9045,
- "syrian": 9046,
- "sprint": 9047,
- "pound": 9048,
- "tourists": 9049,
- "upcoming": 9050,
- "pub": 9051,
- "##xi": 9052,
- "tense": 9053,
- "##els": 9054,
- "practiced": 9055,
- "echo": 9056,
- "nationwide": 9057,
- "guild": 9058,
- "motorcycle": 9059,
- "liz": 9060,
- "##zar": 9061,
- "chiefs": 9062,
- "desired": 9063,
- "elena": 9064,
- "bye": 9065,
- "precious": 9066,
- "absorbed": 9067,
- "relatives": 9068,
- "booth": 9069,
- "pianist": 9070,
- "##mal": 9071,
- "citizenship": 9072,
- "exhausted": 9073,
- "wilhelm": 9074,
- "##ceae": 9075,
- "##hed": 9076,
- "noting": 9077,
- "quarterback": 9078,
- "urge": 9079,
- "hectares": 9080,
- "##gue": 9081,
- "ace": 9082,
- "holly": 9083,
- "##tal": 9084,
- "blonde": 9085,
- "davies": 9086,
- "parked": 9087,
- "sustainable": 9088,
- "stepping": 9089,
- "twentieth": 9090,
- "airfield": 9091,
- "galaxy": 9092,
- "nest": 9093,
- "chip": 9094,
- "##nell": 9095,
- "tan": 9096,
- "shaft": 9097,
- "paulo": 9098,
- "requirement": 9099,
- "##zy": 9100,
- "paradise": 9101,
- "tobacco": 9102,
- "trans": 9103,
- "renewed": 9104,
- "vietnamese": 9105,
- "##cker": 9106,
- "##ju": 9107,
- "suggesting": 9108,
- "catching": 9109,
- "holmes": 9110,
- "enjoying": 9111,
- "md": 9112,
- "trips": 9113,
- "colt": 9114,
- "holder": 9115,
- "butterfly": 9116,
- "nerve": 9117,
- "reformed": 9118,
- "cherry": 9119,
- "bowling": 9120,
- "trailer": 9121,
- "carriage": 9122,
- "goodbye": 9123,
- "appreciate": 9124,
- "toy": 9125,
- "joshua": 9126,
- "interactive": 9127,
- "enabled": 9128,
- "involve": 9129,
- "##kan": 9130,
- "collar": 9131,
- "determination": 9132,
- "bunch": 9133,
- "facebook": 9134,
- "recall": 9135,
- "shorts": 9136,
- "superintendent": 9137,
- "episcopal": 9138,
- "frustration": 9139,
- "giovanni": 9140,
- "nineteenth": 9141,
- "laser": 9142,
- "privately": 9143,
- "array": 9144,
- "circulation": 9145,
- "##ovic": 9146,
- "armstrong": 9147,
- "deals": 9148,
- "painful": 9149,
- "permit": 9150,
- "discrimination": 9151,
- "##wi": 9152,
- "aires": 9153,
- "retiring": 9154,
- "cottage": 9155,
- "ni": 9156,
- "##sta": 9157,
- "horizon": 9158,
- "ellen": 9159,
- "jamaica": 9160,
- "ripped": 9161,
- "fernando": 9162,
- "chapters": 9163,
- "playstation": 9164,
- "patron": 9165,
- "lecturer": 9166,
- "navigation": 9167,
- "behaviour": 9168,
- "genes": 9169,
- "georgian": 9170,
- "export": 9171,
- "solomon": 9172,
- "rivals": 9173,
- "swift": 9174,
- "seventeen": 9175,
- "rodriguez": 9176,
- "princeton": 9177,
- "independently": 9178,
- "sox": 9179,
- "1847": 9180,
- "arguing": 9181,
- "entity": 9182,
- "casting": 9183,
- "hank": 9184,
- "criteria": 9185,
- "oakland": 9186,
- "geographic": 9187,
- "milwaukee": 9188,
- "reflection": 9189,
- "expanding": 9190,
- "conquest": 9191,
- "dubbed": 9192,
- "##tv": 9193,
- "halt": 9194,
- "brave": 9195,
- "brunswick": 9196,
- "doi": 9197,
- "arched": 9198,
- "curtis": 9199,
- "divorced": 9200,
- "predominantly": 9201,
- "somerset": 9202,
- "streams": 9203,
- "ugly": 9204,
- "zoo": 9205,
- "horrible": 9206,
- "curved": 9207,
- "buenos": 9208,
- "fierce": 9209,
- "dictionary": 9210,
- "vector": 9211,
- "theological": 9212,
- "unions": 9213,
- "handful": 9214,
- "stability": 9215,
- "chan": 9216,
- "punjab": 9217,
- "segments": 9218,
- "##lly": 9219,
- "altar": 9220,
- "ignoring": 9221,
- "gesture": 9222,
- "monsters": 9223,
- "pastor": 9224,
- "##stone": 9225,
- "thighs": 9226,
- "unexpected": 9227,
- "operators": 9228,
- "abruptly": 9229,
- "coin": 9230,
- "compiled": 9231,
- "associates": 9232,
- "improving": 9233,
- "migration": 9234,
- "pin": 9235,
- "##ose": 9236,
- "compact": 9237,
- "collegiate": 9238,
- "reserved": 9239,
- "##urs": 9240,
- "quarterfinals": 9241,
- "roster": 9242,
- "restore": 9243,
- "assembled": 9244,
- "hurry": 9245,
- "oval": 9246,
- "##cies": 9247,
- "1846": 9248,
- "flags": 9249,
- "martha": 9250,
- "##del": 9251,
- "victories": 9252,
- "sharply": 9253,
- "##rated": 9254,
- "argues": 9255,
- "deadly": 9256,
- "neo": 9257,
- "drawings": 9258,
- "symbols": 9259,
- "performer": 9260,
- "##iel": 9261,
- "griffin": 9262,
- "restrictions": 9263,
- "editing": 9264,
- "andrews": 9265,
- "java": 9266,
- "journals": 9267,
- "arabia": 9268,
- "compositions": 9269,
- "dee": 9270,
- "pierce": 9271,
- "removing": 9272,
- "hindi": 9273,
- "casino": 9274,
- "runway": 9275,
- "civilians": 9276,
- "minds": 9277,
- "nasa": 9278,
- "hotels": 9279,
- "##zation": 9280,
- "refuge": 9281,
- "rent": 9282,
- "retain": 9283,
- "potentially": 9284,
- "conferences": 9285,
- "suburban": 9286,
- "conducting": 9287,
- "##tto": 9288,
- "##tions": 9289,
- "##tle": 9290,
- "descended": 9291,
- "massacre": 9292,
- "##cal": 9293,
- "ammunition": 9294,
- "terrain": 9295,
- "fork": 9296,
- "souls": 9297,
- "counts": 9298,
- "chelsea": 9299,
- "durham": 9300,
- "drives": 9301,
- "cab": 9302,
- "##bank": 9303,
- "perth": 9304,
- "realizing": 9305,
- "palestinian": 9306,
- "finn": 9307,
- "simpson": 9308,
- "##dal": 9309,
- "betty": 9310,
- "##ule": 9311,
- "moreover": 9312,
- "particles": 9313,
- "cardinals": 9314,
- "tent": 9315,
- "evaluation": 9316,
- "extraordinary": 9317,
- "##oid": 9318,
- "inscription": 9319,
- "##works": 9320,
- "wednesday": 9321,
- "chloe": 9322,
- "maintains": 9323,
- "panels": 9324,
- "ashley": 9325,
- "trucks": 9326,
- "##nation": 9327,
- "cluster": 9328,
- "sunlight": 9329,
- "strikes": 9330,
- "zhang": 9331,
- "##wing": 9332,
- "dialect": 9333,
- "canon": 9334,
- "##ap": 9335,
- "tucked": 9336,
- "##ws": 9337,
- "collecting": 9338,
- "##mas": 9339,
- "##can": 9340,
- "##sville": 9341,
- "maker": 9342,
- "quoted": 9343,
- "evan": 9344,
- "franco": 9345,
- "aria": 9346,
- "buying": 9347,
- "cleaning": 9348,
- "eva": 9349,
- "closet": 9350,
- "provision": 9351,
- "apollo": 9352,
- "clinic": 9353,
- "rat": 9354,
- "##ez": 9355,
- "necessarily": 9356,
- "ac": 9357,
- "##gle": 9358,
- "##ising": 9359,
- "venues": 9360,
- "flipped": 9361,
- "cent": 9362,
- "spreading": 9363,
- "trustees": 9364,
- "checking": 9365,
- "authorized": 9366,
- "##sco": 9367,
- "disappointed": 9368,
- "##ado": 9369,
- "notion": 9370,
- "duration": 9371,
- "trumpet": 9372,
- "hesitated": 9373,
- "topped": 9374,
- "brussels": 9375,
- "rolls": 9376,
- "theoretical": 9377,
- "hint": 9378,
- "define": 9379,
- "aggressive": 9380,
- "repeat": 9381,
- "wash": 9382,
- "peaceful": 9383,
- "optical": 9384,
- "width": 9385,
- "allegedly": 9386,
- "mcdonald": 9387,
- "strict": 9388,
- "copyright": 9389,
- "##illa": 9390,
- "investors": 9391,
- "mar": 9392,
- "jam": 9393,
- "witnesses": 9394,
- "sounding": 9395,
- "miranda": 9396,
- "michelle": 9397,
- "privacy": 9398,
- "hugo": 9399,
- "harmony": 9400,
- "##pp": 9401,
- "valid": 9402,
- "lynn": 9403,
- "glared": 9404,
- "nina": 9405,
- "102": 9406,
- "headquartered": 9407,
- "diving": 9408,
- "boarding": 9409,
- "gibson": 9410,
- "##ncy": 9411,
- "albanian": 9412,
- "marsh": 9413,
- "routine": 9414,
- "dealt": 9415,
- "enhanced": 9416,
- "er": 9417,
- "intelligent": 9418,
- "substance": 9419,
- "targeted": 9420,
- "enlisted": 9421,
- "discovers": 9422,
- "spinning": 9423,
- "observations": 9424,
- "pissed": 9425,
- "smoking": 9426,
- "rebecca": 9427,
- "capitol": 9428,
- "visa": 9429,
- "varied": 9430,
- "costume": 9431,
- "seemingly": 9432,
- "indies": 9433,
- "compensation": 9434,
- "surgeon": 9435,
- "thursday": 9436,
- "arsenal": 9437,
- "westminster": 9438,
- "suburbs": 9439,
- "rid": 9440,
- "anglican": 9441,
- "##ridge": 9442,
- "knots": 9443,
- "foods": 9444,
- "alumni": 9445,
- "lighter": 9446,
- "fraser": 9447,
- "whoever": 9448,
- "portal": 9449,
- "scandal": 9450,
- "##ray": 9451,
- "gavin": 9452,
- "advised": 9453,
- "instructor": 9454,
- "flooding": 9455,
- "terrorist": 9456,
- "##ale": 9457,
- "teenage": 9458,
- "interim": 9459,
- "senses": 9460,
- "duck": 9461,
- "teen": 9462,
- "thesis": 9463,
- "abby": 9464,
- "eager": 9465,
- "overcome": 9466,
- "##ile": 9467,
- "newport": 9468,
- "glenn": 9469,
- "rises": 9470,
- "shame": 9471,
- "##cc": 9472,
- "prompted": 9473,
- "priority": 9474,
- "forgot": 9475,
- "bomber": 9476,
- "nicolas": 9477,
- "protective": 9478,
- "360": 9479,
- "cartoon": 9480,
- "katherine": 9481,
- "breeze": 9482,
- "lonely": 9483,
- "trusted": 9484,
- "henderson": 9485,
- "richardson": 9486,
- "relax": 9487,
- "banner": 9488,
- "candy": 9489,
- "palms": 9490,
- "remarkable": 9491,
- "##rio": 9492,
- "legends": 9493,
- "cricketer": 9494,
- "essay": 9495,
- "ordained": 9496,
- "edmund": 9497,
- "rifles": 9498,
- "trigger": 9499,
- "##uri": 9500,
- "##away": 9501,
- "sail": 9502,
- "alert": 9503,
- "1830": 9504,
- "audiences": 9505,
- "penn": 9506,
- "sussex": 9507,
- "siblings": 9508,
- "pursued": 9509,
- "indianapolis": 9510,
- "resist": 9511,
- "rosa": 9512,
- "consequence": 9513,
- "succeed": 9514,
- "avoided": 9515,
- "1845": 9516,
- "##ulation": 9517,
- "inland": 9518,
- "##tie": 9519,
- "##nna": 9520,
- "counsel": 9521,
- "profession": 9522,
- "chronicle": 9523,
- "hurried": 9524,
- "##una": 9525,
- "eyebrow": 9526,
- "eventual": 9527,
- "bleeding": 9528,
- "innovative": 9529,
- "cure": 9530,
- "##dom": 9531,
- "committees": 9532,
- "accounting": 9533,
- "con": 9534,
- "scope": 9535,
- "hardy": 9536,
- "heather": 9537,
- "tenor": 9538,
- "gut": 9539,
- "herald": 9540,
- "codes": 9541,
- "tore": 9542,
- "scales": 9543,
- "wagon": 9544,
- "##oo": 9545,
- "luxury": 9546,
- "tin": 9547,
- "prefer": 9548,
- "fountain": 9549,
- "triangle": 9550,
- "bonds": 9551,
- "darling": 9552,
- "convoy": 9553,
- "dried": 9554,
- "traced": 9555,
- "beings": 9556,
- "troy": 9557,
- "accidentally": 9558,
- "slam": 9559,
- "findings": 9560,
- "smelled": 9561,
- "joey": 9562,
- "lawyers": 9563,
- "outcome": 9564,
- "steep": 9565,
- "bosnia": 9566,
- "configuration": 9567,
- "shifting": 9568,
- "toll": 9569,
- "brook": 9570,
- "performers": 9571,
- "lobby": 9572,
- "philosophical": 9573,
- "construct": 9574,
- "shrine": 9575,
- "aggregate": 9576,
- "boot": 9577,
- "cox": 9578,
- "phenomenon": 9579,
- "savage": 9580,
- "insane": 9581,
- "solely": 9582,
- "reynolds": 9583,
- "lifestyle": 9584,
- "##ima": 9585,
- "nationally": 9586,
- "holdings": 9587,
- "consideration": 9588,
- "enable": 9589,
- "edgar": 9590,
- "mo": 9591,
- "mama": 9592,
- "##tein": 9593,
- "fights": 9594,
- "relegation": 9595,
- "chances": 9596,
- "atomic": 9597,
- "hub": 9598,
- "conjunction": 9599,
- "awkward": 9600,
- "reactions": 9601,
- "currency": 9602,
- "finale": 9603,
- "kumar": 9604,
- "underwent": 9605,
- "steering": 9606,
- "elaborate": 9607,
- "gifts": 9608,
- "comprising": 9609,
- "melissa": 9610,
- "veins": 9611,
- "reasonable": 9612,
- "sunshine": 9613,
- "chi": 9614,
- "solve": 9615,
- "trails": 9616,
- "inhabited": 9617,
- "elimination": 9618,
- "ethics": 9619,
- "huh": 9620,
- "ana": 9621,
- "molly": 9622,
- "consent": 9623,
- "apartments": 9624,
- "layout": 9625,
- "marines": 9626,
- "##ces": 9627,
- "hunters": 9628,
- "bulk": 9629,
- "##oma": 9630,
- "hometown": 9631,
- "##wall": 9632,
- "##mont": 9633,
- "cracked": 9634,
- "reads": 9635,
- "neighbouring": 9636,
- "withdrawn": 9637,
- "admission": 9638,
- "wingspan": 9639,
- "damned": 9640,
- "anthology": 9641,
- "lancashire": 9642,
- "brands": 9643,
- "batting": 9644,
- "forgive": 9645,
- "cuban": 9646,
- "awful": 9647,
- "##lyn": 9648,
- "104": 9649,
- "dimensions": 9650,
- "imagination": 9651,
- "##ade": 9652,
- "dante": 9653,
- "##ship": 9654,
- "tracking": 9655,
- "desperately": 9656,
- "goalkeeper": 9657,
- "##yne": 9658,
- "groaned": 9659,
- "workshops": 9660,
- "confident": 9661,
- "burton": 9662,
- "gerald": 9663,
- "milton": 9664,
- "circus": 9665,
- "uncertain": 9666,
- "slope": 9667,
- "copenhagen": 9668,
- "sophia": 9669,
- "fog": 9670,
- "philosopher": 9671,
- "portraits": 9672,
- "accent": 9673,
- "cycling": 9674,
- "varying": 9675,
- "gripped": 9676,
- "larvae": 9677,
- "garrett": 9678,
- "specified": 9679,
- "scotia": 9680,
- "mature": 9681,
- "luther": 9682,
- "kurt": 9683,
- "rap": 9684,
- "##kes": 9685,
- "aerial": 9686,
- "750": 9687,
- "ferdinand": 9688,
- "heated": 9689,
- "es": 9690,
- "transported": 9691,
- "##shan": 9692,
- "safely": 9693,
- "nonetheless": 9694,
- "##orn": 9695,
- "##gal": 9696,
- "motors": 9697,
- "demanding": 9698,
- "##sburg": 9699,
- "startled": 9700,
- "##brook": 9701,
- "ally": 9702,
- "generate": 9703,
- "caps": 9704,
- "ghana": 9705,
- "stained": 9706,
- "demo": 9707,
- "mentions": 9708,
- "beds": 9709,
- "ap": 9710,
- "afterward": 9711,
- "diary": 9712,
- "##bling": 9713,
- "utility": 9714,
- "##iro": 9715,
- "richards": 9716,
- "1837": 9717,
- "conspiracy": 9718,
- "conscious": 9719,
- "shining": 9720,
- "footsteps": 9721,
- "observer": 9722,
- "cyprus": 9723,
- "urged": 9724,
- "loyalty": 9725,
- "developer": 9726,
- "probability": 9727,
- "olive": 9728,
- "upgraded": 9729,
- "gym": 9730,
- "miracle": 9731,
- "insects": 9732,
- "graves": 9733,
- "1844": 9734,
- "ourselves": 9735,
- "hydrogen": 9736,
- "amazon": 9737,
- "katie": 9738,
- "tickets": 9739,
- "poets": 9740,
- "##pm": 9741,
- "planes": 9742,
- "##pan": 9743,
- "prevention": 9744,
- "witnessed": 9745,
- "dense": 9746,
- "jin": 9747,
- "randy": 9748,
- "tang": 9749,
- "warehouse": 9750,
- "monroe": 9751,
- "bang": 9752,
- "archived": 9753,
- "elderly": 9754,
- "investigations": 9755,
- "alec": 9756,
- "granite": 9757,
- "mineral": 9758,
- "conflicts": 9759,
- "controlling": 9760,
- "aboriginal": 9761,
- "carlo": 9762,
- "##zu": 9763,
- "mechanics": 9764,
- "stan": 9765,
- "stark": 9766,
- "rhode": 9767,
- "skirt": 9768,
- "est": 9769,
- "##berry": 9770,
- "bombs": 9771,
- "respected": 9772,
- "##horn": 9773,
- "imposed": 9774,
- "limestone": 9775,
- "deny": 9776,
- "nominee": 9777,
- "memphis": 9778,
- "grabbing": 9779,
- "disabled": 9780,
- "##als": 9781,
- "amusement": 9782,
- "aa": 9783,
- "frankfurt": 9784,
- "corn": 9785,
- "referendum": 9786,
- "varies": 9787,
- "slowed": 9788,
- "disk": 9789,
- "firms": 9790,
- "unconscious": 9791,
- "incredible": 9792,
- "clue": 9793,
- "sue": 9794,
- "##zhou": 9795,
- "twist": 9796,
- "##cio": 9797,
- "joins": 9798,
- "idaho": 9799,
- "chad": 9800,
- "developers": 9801,
- "computing": 9802,
- "destroyer": 9803,
- "103": 9804,
- "mortal": 9805,
- "tucker": 9806,
- "kingston": 9807,
- "choices": 9808,
- "yu": 9809,
- "carson": 9810,
- "1800": 9811,
- "os": 9812,
- "whitney": 9813,
- "geneva": 9814,
- "pretend": 9815,
- "dimension": 9816,
- "staged": 9817,
- "plateau": 9818,
- "maya": 9819,
- "##une": 9820,
- "freestyle": 9821,
- "##bc": 9822,
- "rovers": 9823,
- "hiv": 9824,
- "##ids": 9825,
- "tristan": 9826,
- "classroom": 9827,
- "prospect": 9828,
- "##hus": 9829,
- "honestly": 9830,
- "diploma": 9831,
- "lied": 9832,
- "thermal": 9833,
- "auxiliary": 9834,
- "feast": 9835,
- "unlikely": 9836,
- "iata": 9837,
- "##tel": 9838,
- "morocco": 9839,
- "pounding": 9840,
- "treasury": 9841,
- "lithuania": 9842,
- "considerably": 9843,
- "1841": 9844,
- "dish": 9845,
- "1812": 9846,
- "geological": 9847,
- "matching": 9848,
- "stumbled": 9849,
- "destroying": 9850,
- "marched": 9851,
- "brien": 9852,
- "advances": 9853,
- "cake": 9854,
- "nicole": 9855,
- "belle": 9856,
- "settling": 9857,
- "measuring": 9858,
- "directing": 9859,
- "##mie": 9860,
- "tuesday": 9861,
- "bassist": 9862,
- "capabilities": 9863,
- "stunned": 9864,
- "fraud": 9865,
- "torpedo": 9866,
- "##list": 9867,
- "##phone": 9868,
- "anton": 9869,
- "wisdom": 9870,
- "surveillance": 9871,
- "ruined": 9872,
- "##ulate": 9873,
- "lawsuit": 9874,
- "healthcare": 9875,
- "theorem": 9876,
- "halls": 9877,
- "trend": 9878,
- "aka": 9879,
- "horizontal": 9880,
- "dozens": 9881,
- "acquire": 9882,
- "lasting": 9883,
- "swim": 9884,
- "hawk": 9885,
- "gorgeous": 9886,
- "fees": 9887,
- "vicinity": 9888,
- "decrease": 9889,
- "adoption": 9890,
- "tactics": 9891,
- "##ography": 9892,
- "pakistani": 9893,
- "##ole": 9894,
- "draws": 9895,
- "##hall": 9896,
- "willie": 9897,
- "burke": 9898,
- "heath": 9899,
- "algorithm": 9900,
- "integral": 9901,
- "powder": 9902,
- "elliott": 9903,
- "brigadier": 9904,
- "jackie": 9905,
- "tate": 9906,
- "varieties": 9907,
- "darker": 9908,
- "##cho": 9909,
- "lately": 9910,
- "cigarette": 9911,
- "specimens": 9912,
- "adds": 9913,
- "##ree": 9914,
- "##ensis": 9915,
- "##inger": 9916,
- "exploded": 9917,
- "finalist": 9918,
- "cia": 9919,
- "murders": 9920,
- "wilderness": 9921,
- "arguments": 9922,
- "nicknamed": 9923,
- "acceptance": 9924,
- "onwards": 9925,
- "manufacture": 9926,
- "robertson": 9927,
- "jets": 9928,
- "tampa": 9929,
- "enterprises": 9930,
- "blog": 9931,
- "loudly": 9932,
- "composers": 9933,
- "nominations": 9934,
- "1838": 9935,
- "ai": 9936,
- "malta": 9937,
- "inquiry": 9938,
- "automobile": 9939,
- "hosting": 9940,
- "viii": 9941,
- "rays": 9942,
- "tilted": 9943,
- "grief": 9944,
- "museums": 9945,
- "strategies": 9946,
- "furious": 9947,
- "euro": 9948,
- "equality": 9949,
- "cohen": 9950,
- "poison": 9951,
- "surrey": 9952,
- "wireless": 9953,
- "governed": 9954,
- "ridiculous": 9955,
- "moses": 9956,
- "##esh": 9957,
- "##room": 9958,
- "vanished": 9959,
- "##ito": 9960,
- "barnes": 9961,
- "attract": 9962,
- "morrison": 9963,
- "istanbul": 9964,
- "##iness": 9965,
- "absent": 9966,
- "rotation": 9967,
- "petition": 9968,
- "janet": 9969,
- "##logical": 9970,
- "satisfaction": 9971,
- "custody": 9972,
- "deliberately": 9973,
- "observatory": 9974,
- "comedian": 9975,
- "surfaces": 9976,
- "pinyin": 9977,
- "novelist": 9978,
- "strictly": 9979,
- "canterbury": 9980,
- "oslo": 9981,
- "monks": 9982,
- "embrace": 9983,
- "ibm": 9984,
- "jealous": 9985,
- "photograph": 9986,
- "continent": 9987,
- "dorothy": 9988,
- "marina": 9989,
- "doc": 9990,
- "excess": 9991,
- "holden": 9992,
- "allegations": 9993,
- "explaining": 9994,
- "stack": 9995,
- "avoiding": 9996,
- "lance": 9997,
- "storyline": 9998,
- "majesty": 9999,
- "poorly": 10000,
- "spike": 10001,
- "dos": 10002,
- "bradford": 10003,
- "raven": 10004,
- "travis": 10005,
- "classics": 10006,
- "proven": 10007,
- "voltage": 10008,
- "pillow": 10009,
- "fists": 10010,
- "butt": 10011,
- "1842": 10012,
- "interpreted": 10013,
- "##car": 10014,
- "1839": 10015,
- "gage": 10016,
- "telegraph": 10017,
- "lens": 10018,
- "promising": 10019,
- "expelled": 10020,
- "casual": 10021,
- "collector": 10022,
- "zones": 10023,
- "##min": 10024,
- "silly": 10025,
- "nintendo": 10026,
- "##kh": 10027,
- "##bra": 10028,
- "downstairs": 10029,
- "chef": 10030,
- "suspicious": 10031,
- "afl": 10032,
- "flies": 10033,
- "vacant": 10034,
- "uganda": 10035,
- "pregnancy": 10036,
- "condemned": 10037,
- "lutheran": 10038,
- "estimates": 10039,
- "cheap": 10040,
- "decree": 10041,
- "saxon": 10042,
- "proximity": 10043,
- "stripped": 10044,
- "idiot": 10045,
- "deposits": 10046,
- "contrary": 10047,
- "presenter": 10048,
- "magnus": 10049,
- "glacier": 10050,
- "im": 10051,
- "offense": 10052,
- "edwin": 10053,
- "##ori": 10054,
- "upright": 10055,
- "##long": 10056,
- "bolt": 10057,
- "##ois": 10058,
- "toss": 10059,
- "geographical": 10060,
- "##izes": 10061,
- "environments": 10062,
- "delicate": 10063,
- "marking": 10064,
- "abstract": 10065,
- "xavier": 10066,
- "nails": 10067,
- "windsor": 10068,
- "plantation": 10069,
- "occurring": 10070,
- "equity": 10071,
- "saskatchewan": 10072,
- "fears": 10073,
- "drifted": 10074,
- "sequences": 10075,
- "vegetation": 10076,
- "revolt": 10077,
- "##stic": 10078,
- "1843": 10079,
- "sooner": 10080,
- "fusion": 10081,
- "opposing": 10082,
- "nato": 10083,
- "skating": 10084,
- "1836": 10085,
- "secretly": 10086,
- "ruin": 10087,
- "lease": 10088,
- "##oc": 10089,
- "edit": 10090,
- "##nne": 10091,
- "flora": 10092,
- "anxiety": 10093,
- "ruby": 10094,
- "##ological": 10095,
- "##mia": 10096,
- "tel": 10097,
- "bout": 10098,
- "taxi": 10099,
- "emmy": 10100,
- "frost": 10101,
- "rainbow": 10102,
- "compounds": 10103,
- "foundations": 10104,
- "rainfall": 10105,
- "assassination": 10106,
- "nightmare": 10107,
- "dominican": 10108,
- "##win": 10109,
- "achievements": 10110,
- "deserve": 10111,
- "orlando": 10112,
- "intact": 10113,
- "armenia": 10114,
- "##nte": 10115,
- "calgary": 10116,
- "valentine": 10117,
- "106": 10118,
- "marion": 10119,
- "proclaimed": 10120,
- "theodore": 10121,
- "bells": 10122,
- "courtyard": 10123,
- "thigh": 10124,
- "gonzalez": 10125,
- "console": 10126,
- "troop": 10127,
- "minimal": 10128,
- "monte": 10129,
- "everyday": 10130,
- "##ence": 10131,
- "##if": 10132,
- "supporter": 10133,
- "terrorism": 10134,
- "buck": 10135,
- "openly": 10136,
- "presbyterian": 10137,
- "activists": 10138,
- "carpet": 10139,
- "##iers": 10140,
- "rubbing": 10141,
- "uprising": 10142,
- "##yi": 10143,
- "cute": 10144,
- "conceived": 10145,
- "legally": 10146,
- "##cht": 10147,
- "millennium": 10148,
- "cello": 10149,
- "velocity": 10150,
- "ji": 10151,
- "rescued": 10152,
- "cardiff": 10153,
- "1835": 10154,
- "rex": 10155,
- "concentrate": 10156,
- "senators": 10157,
- "beard": 10158,
- "rendered": 10159,
- "glowing": 10160,
- "battalions": 10161,
- "scouts": 10162,
- "competitors": 10163,
- "sculptor": 10164,
- "catalogue": 10165,
- "arctic": 10166,
- "ion": 10167,
- "raja": 10168,
- "bicycle": 10169,
- "wow": 10170,
- "glancing": 10171,
- "lawn": 10172,
- "##woman": 10173,
- "gentleman": 10174,
- "lighthouse": 10175,
- "publish": 10176,
- "predicted": 10177,
- "calculated": 10178,
- "##val": 10179,
- "variants": 10180,
- "##gne": 10181,
- "strain": 10182,
- "##ui": 10183,
- "winston": 10184,
- "deceased": 10185,
- "##nus": 10186,
- "touchdowns": 10187,
- "brady": 10188,
- "caleb": 10189,
- "sinking": 10190,
- "echoed": 10191,
- "crush": 10192,
- "hon": 10193,
- "blessed": 10194,
- "protagonist": 10195,
- "hayes": 10196,
- "endangered": 10197,
- "magnitude": 10198,
- "editors": 10199,
- "##tine": 10200,
- "estimate": 10201,
- "responsibilities": 10202,
- "##mel": 10203,
- "backup": 10204,
- "laying": 10205,
- "consumed": 10206,
- "sealed": 10207,
- "zurich": 10208,
- "lovers": 10209,
- "frustrated": 10210,
- "##eau": 10211,
- "ahmed": 10212,
- "kicking": 10213,
- "mit": 10214,
- "treasurer": 10215,
- "1832": 10216,
- "biblical": 10217,
- "refuse": 10218,
- "terrified": 10219,
- "pump": 10220,
- "agrees": 10221,
- "genuine": 10222,
- "imprisonment": 10223,
- "refuses": 10224,
- "plymouth": 10225,
- "##hen": 10226,
- "lou": 10227,
- "##nen": 10228,
- "tara": 10229,
- "trembling": 10230,
- "antarctic": 10231,
- "ton": 10232,
- "learns": 10233,
- "##tas": 10234,
- "crap": 10235,
- "crucial": 10236,
- "faction": 10237,
- "atop": 10238,
- "##borough": 10239,
- "wrap": 10240,
- "lancaster": 10241,
- "odds": 10242,
- "hopkins": 10243,
- "erik": 10244,
- "lyon": 10245,
- "##eon": 10246,
- "bros": 10247,
- "##ode": 10248,
- "snap": 10249,
- "locality": 10250,
- "tips": 10251,
- "empress": 10252,
- "crowned": 10253,
- "cal": 10254,
- "acclaimed": 10255,
- "chuckled": 10256,
- "##ory": 10257,
- "clara": 10258,
- "sends": 10259,
- "mild": 10260,
- "towel": 10261,
- "##fl": 10262,
- "##day": 10263,
- "##а": 10264,
- "wishing": 10265,
- "assuming": 10266,
- "interviewed": 10267,
- "##bal": 10268,
- "##die": 10269,
- "interactions": 10270,
- "eden": 10271,
- "cups": 10272,
- "helena": 10273,
- "##lf": 10274,
- "indie": 10275,
- "beck": 10276,
- "##fire": 10277,
- "batteries": 10278,
- "filipino": 10279,
- "wizard": 10280,
- "parted": 10281,
- "##lam": 10282,
- "traces": 10283,
- "##born": 10284,
- "rows": 10285,
- "idol": 10286,
- "albany": 10287,
- "delegates": 10288,
- "##ees": 10289,
- "##sar": 10290,
- "discussions": 10291,
- "##ex": 10292,
- "notre": 10293,
- "instructed": 10294,
- "belgrade": 10295,
- "highways": 10296,
- "suggestion": 10297,
- "lauren": 10298,
- "possess": 10299,
- "orientation": 10300,
- "alexandria": 10301,
- "abdul": 10302,
- "beats": 10303,
- "salary": 10304,
- "reunion": 10305,
- "ludwig": 10306,
- "alright": 10307,
- "wagner": 10308,
- "intimate": 10309,
- "pockets": 10310,
- "slovenia": 10311,
- "hugged": 10312,
- "brighton": 10313,
- "merchants": 10314,
- "cruel": 10315,
- "stole": 10316,
- "trek": 10317,
- "slopes": 10318,
- "repairs": 10319,
- "enrollment": 10320,
- "politically": 10321,
- "underlying": 10322,
- "promotional": 10323,
- "counting": 10324,
- "boeing": 10325,
- "##bb": 10326,
- "isabella": 10327,
- "naming": 10328,
- "##и": 10329,
- "keen": 10330,
- "bacteria": 10331,
- "listing": 10332,
- "separately": 10333,
- "belfast": 10334,
- "ussr": 10335,
- "450": 10336,
- "lithuanian": 10337,
- "anybody": 10338,
- "ribs": 10339,
- "sphere": 10340,
- "martinez": 10341,
- "cock": 10342,
- "embarrassed": 10343,
- "proposals": 10344,
- "fragments": 10345,
- "nationals": 10346,
- "##fs": 10347,
- "##wski": 10348,
- "premises": 10349,
- "fin": 10350,
- "1500": 10351,
- "alpine": 10352,
- "matched": 10353,
- "freely": 10354,
- "bounded": 10355,
- "jace": 10356,
- "sleeve": 10357,
- "##af": 10358,
- "gaming": 10359,
- "pier": 10360,
- "populated": 10361,
- "evident": 10362,
- "##like": 10363,
- "frances": 10364,
- "flooded": 10365,
- "##dle": 10366,
- "frightened": 10367,
- "pour": 10368,
- "trainer": 10369,
- "framed": 10370,
- "visitor": 10371,
- "challenging": 10372,
- "pig": 10373,
- "wickets": 10374,
- "##fold": 10375,
- "infected": 10376,
- "email": 10377,
- "##pes": 10378,
- "arose": 10379,
- "##aw": 10380,
- "reward": 10381,
- "ecuador": 10382,
- "oblast": 10383,
- "vale": 10384,
- "ch": 10385,
- "shuttle": 10386,
- "##usa": 10387,
- "bach": 10388,
- "rankings": 10389,
- "forbidden": 10390,
- "cornwall": 10391,
- "accordance": 10392,
- "salem": 10393,
- "consumers": 10394,
- "bruno": 10395,
- "fantastic": 10396,
- "toes": 10397,
- "machinery": 10398,
- "resolved": 10399,
- "julius": 10400,
- "remembering": 10401,
- "propaganda": 10402,
- "iceland": 10403,
- "bombardment": 10404,
- "tide": 10405,
- "contacts": 10406,
- "wives": 10407,
- "##rah": 10408,
- "concerto": 10409,
- "macdonald": 10410,
- "albania": 10411,
- "implement": 10412,
- "daisy": 10413,
- "tapped": 10414,
- "sudan": 10415,
- "helmet": 10416,
- "angela": 10417,
- "mistress": 10418,
- "##lic": 10419,
- "crop": 10420,
- "sunk": 10421,
- "finest": 10422,
- "##craft": 10423,
- "hostile": 10424,
- "##ute": 10425,
- "##tsu": 10426,
- "boxer": 10427,
- "fr": 10428,
- "paths": 10429,
- "adjusted": 10430,
- "habit": 10431,
- "ballot": 10432,
- "supervision": 10433,
- "soprano": 10434,
- "##zen": 10435,
- "bullets": 10436,
- "wicked": 10437,
- "sunset": 10438,
- "regiments": 10439,
- "disappear": 10440,
- "lamp": 10441,
- "performs": 10442,
- "app": 10443,
- "##gia": 10444,
- "##oa": 10445,
- "rabbit": 10446,
- "digging": 10447,
- "incidents": 10448,
- "entries": 10449,
- "##cion": 10450,
- "dishes": 10451,
- "##oi": 10452,
- "introducing": 10453,
- "##ati": 10454,
- "##fied": 10455,
- "freshman": 10456,
- "slot": 10457,
- "jill": 10458,
- "tackles": 10459,
- "baroque": 10460,
- "backs": 10461,
- "##iest": 10462,
- "lone": 10463,
- "sponsor": 10464,
- "destiny": 10465,
- "altogether": 10466,
- "convert": 10467,
- "##aro": 10468,
- "consensus": 10469,
- "shapes": 10470,
- "demonstration": 10471,
- "basically": 10472,
- "feminist": 10473,
- "auction": 10474,
- "artifacts": 10475,
- "##bing": 10476,
- "strongest": 10477,
- "twitter": 10478,
- "halifax": 10479,
- "2019": 10480,
- "allmusic": 10481,
- "mighty": 10482,
- "smallest": 10483,
- "precise": 10484,
- "alexandra": 10485,
- "viola": 10486,
- "##los": 10487,
- "##ille": 10488,
- "manuscripts": 10489,
- "##illo": 10490,
- "dancers": 10491,
- "ari": 10492,
- "managers": 10493,
- "monuments": 10494,
- "blades": 10495,
- "barracks": 10496,
- "springfield": 10497,
- "maiden": 10498,
- "consolidated": 10499,
- "electron": 10500,
- "##end": 10501,
- "berry": 10502,
- "airing": 10503,
- "wheat": 10504,
- "nobel": 10505,
- "inclusion": 10506,
- "blair": 10507,
- "payments": 10508,
- "geography": 10509,
- "bee": 10510,
- "cc": 10511,
- "eleanor": 10512,
- "react": 10513,
- "##hurst": 10514,
- "afc": 10515,
- "manitoba": 10516,
- "##yu": 10517,
- "su": 10518,
- "lineup": 10519,
- "fitness": 10520,
- "recreational": 10521,
- "investments": 10522,
- "airborne": 10523,
- "disappointment": 10524,
- "##dis": 10525,
- "edmonton": 10526,
- "viewing": 10527,
- "##row": 10528,
- "renovation": 10529,
- "##cast": 10530,
- "infant": 10531,
- "bankruptcy": 10532,
- "roses": 10533,
- "aftermath": 10534,
- "pavilion": 10535,
- "##yer": 10536,
- "carpenter": 10537,
- "withdrawal": 10538,
- "ladder": 10539,
- "##hy": 10540,
- "discussing": 10541,
- "popped": 10542,
- "reliable": 10543,
- "agreements": 10544,
- "rochester": 10545,
- "##abad": 10546,
- "curves": 10547,
- "bombers": 10548,
- "220": 10549,
- "rao": 10550,
- "reverend": 10551,
- "decreased": 10552,
- "choosing": 10553,
- "107": 10554,
- "stiff": 10555,
- "consulting": 10556,
- "naples": 10557,
- "crawford": 10558,
- "tracy": 10559,
- "ka": 10560,
- "ribbon": 10561,
- "cops": 10562,
- "##lee": 10563,
- "crushed": 10564,
- "deciding": 10565,
- "unified": 10566,
- "teenager": 10567,
- "accepting": 10568,
- "flagship": 10569,
- "explorer": 10570,
- "poles": 10571,
- "sanchez": 10572,
- "inspection": 10573,
- "revived": 10574,
- "skilled": 10575,
- "induced": 10576,
- "exchanged": 10577,
- "flee": 10578,
- "locals": 10579,
- "tragedy": 10580,
- "swallow": 10581,
- "loading": 10582,
- "hanna": 10583,
- "demonstrate": 10584,
- "##ela": 10585,
- "salvador": 10586,
- "flown": 10587,
- "contestants": 10588,
- "civilization": 10589,
- "##ines": 10590,
- "wanna": 10591,
- "rhodes": 10592,
- "fletcher": 10593,
- "hector": 10594,
- "knocking": 10595,
- "considers": 10596,
- "##ough": 10597,
- "nash": 10598,
- "mechanisms": 10599,
- "sensed": 10600,
- "mentally": 10601,
- "walt": 10602,
- "unclear": 10603,
- "##eus": 10604,
- "renovated": 10605,
- "madame": 10606,
- "##cks": 10607,
- "crews": 10608,
- "governmental": 10609,
- "##hin": 10610,
- "undertaken": 10611,
- "monkey": 10612,
- "##ben": 10613,
- "##ato": 10614,
- "fatal": 10615,
- "armored": 10616,
- "copa": 10617,
- "caves": 10618,
- "governance": 10619,
- "grasp": 10620,
- "perception": 10621,
- "certification": 10622,
- "froze": 10623,
- "damp": 10624,
- "tugged": 10625,
- "wyoming": 10626,
- "##rg": 10627,
- "##ero": 10628,
- "newman": 10629,
- "##lor": 10630,
- "nerves": 10631,
- "curiosity": 10632,
- "graph": 10633,
- "115": 10634,
- "##ami": 10635,
- "withdraw": 10636,
- "tunnels": 10637,
- "dull": 10638,
- "meredith": 10639,
- "moss": 10640,
- "exhibits": 10641,
- "neighbors": 10642,
- "communicate": 10643,
- "accuracy": 10644,
- "explored": 10645,
- "raiders": 10646,
- "republicans": 10647,
- "secular": 10648,
- "kat": 10649,
- "superman": 10650,
- "penny": 10651,
- "criticised": 10652,
- "##tch": 10653,
- "freed": 10654,
- "update": 10655,
- "conviction": 10656,
- "wade": 10657,
- "ham": 10658,
- "likewise": 10659,
- "delegation": 10660,
- "gotta": 10661,
- "doll": 10662,
- "promises": 10663,
- "technological": 10664,
- "myth": 10665,
- "nationality": 10666,
- "resolve": 10667,
- "convent": 10668,
- "##mark": 10669,
- "sharon": 10670,
- "dig": 10671,
- "sip": 10672,
- "coordinator": 10673,
- "entrepreneur": 10674,
- "fold": 10675,
- "##dine": 10676,
- "capability": 10677,
- "councillor": 10678,
- "synonym": 10679,
- "blown": 10680,
- "swan": 10681,
- "cursed": 10682,
- "1815": 10683,
- "jonas": 10684,
- "haired": 10685,
- "sofa": 10686,
- "canvas": 10687,
- "keeper": 10688,
- "rivalry": 10689,
- "##hart": 10690,
- "rapper": 10691,
- "speedway": 10692,
- "swords": 10693,
- "postal": 10694,
- "maxwell": 10695,
- "estonia": 10696,
- "potter": 10697,
- "recurring": 10698,
- "##nn": 10699,
- "##ave": 10700,
- "errors": 10701,
- "##oni": 10702,
- "cognitive": 10703,
- "1834": 10704,
- "##²": 10705,
- "claws": 10706,
- "nadu": 10707,
- "roberto": 10708,
- "bce": 10709,
- "wrestler": 10710,
- "ellie": 10711,
- "##ations": 10712,
- "infinite": 10713,
- "ink": 10714,
- "##tia": 10715,
- "presumably": 10716,
- "finite": 10717,
- "staircase": 10718,
- "108": 10719,
- "noel": 10720,
- "patricia": 10721,
- "nacional": 10722,
- "##cation": 10723,
- "chill": 10724,
- "eternal": 10725,
- "tu": 10726,
- "preventing": 10727,
- "prussia": 10728,
- "fossil": 10729,
- "limbs": 10730,
- "##logist": 10731,
- "ernst": 10732,
- "frog": 10733,
- "perez": 10734,
- "rene": 10735,
- "##ace": 10736,
- "pizza": 10737,
- "prussian": 10738,
- "##ios": 10739,
- "##vy": 10740,
- "molecules": 10741,
- "regulatory": 10742,
- "answering": 10743,
- "opinions": 10744,
- "sworn": 10745,
- "lengths": 10746,
- "supposedly": 10747,
- "hypothesis": 10748,
- "upward": 10749,
- "habitats": 10750,
- "seating": 10751,
- "ancestors": 10752,
- "drank": 10753,
- "yield": 10754,
- "hd": 10755,
- "synthesis": 10756,
- "researcher": 10757,
- "modest": 10758,
- "##var": 10759,
- "mothers": 10760,
- "peered": 10761,
- "voluntary": 10762,
- "homeland": 10763,
- "##the": 10764,
- "acclaim": 10765,
- "##igan": 10766,
- "static": 10767,
- "valve": 10768,
- "luxembourg": 10769,
- "alto": 10770,
- "carroll": 10771,
- "fe": 10772,
- "receptor": 10773,
- "norton": 10774,
- "ambulance": 10775,
- "##tian": 10776,
- "johnston": 10777,
- "catholics": 10778,
- "depicting": 10779,
- "jointly": 10780,
- "elephant": 10781,
- "gloria": 10782,
- "mentor": 10783,
- "badge": 10784,
- "ahmad": 10785,
- "distinguish": 10786,
- "remarked": 10787,
- "councils": 10788,
- "precisely": 10789,
- "allison": 10790,
- "advancing": 10791,
- "detection": 10792,
- "crowded": 10793,
- "##10": 10794,
- "cooperative": 10795,
- "ankle": 10796,
- "mercedes": 10797,
- "dagger": 10798,
- "surrendered": 10799,
- "pollution": 10800,
- "commit": 10801,
- "subway": 10802,
- "jeffrey": 10803,
- "lesson": 10804,
- "sculptures": 10805,
- "provider": 10806,
- "##fication": 10807,
- "membrane": 10808,
- "timothy": 10809,
- "rectangular": 10810,
- "fiscal": 10811,
- "heating": 10812,
- "teammate": 10813,
- "basket": 10814,
- "particle": 10815,
- "anonymous": 10816,
- "deployment": 10817,
- "##ple": 10818,
- "missiles": 10819,
- "courthouse": 10820,
- "proportion": 10821,
- "shoe": 10822,
- "sec": 10823,
- "##ller": 10824,
- "complaints": 10825,
- "forbes": 10826,
- "blacks": 10827,
- "abandon": 10828,
- "remind": 10829,
- "sizes": 10830,
- "overwhelming": 10831,
- "autobiography": 10832,
- "natalie": 10833,
- "##awa": 10834,
- "risks": 10835,
- "contestant": 10836,
- "countryside": 10837,
- "babies": 10838,
- "scorer": 10839,
- "invaded": 10840,
- "enclosed": 10841,
- "proceed": 10842,
- "hurling": 10843,
- "disorders": 10844,
- "##cu": 10845,
- "reflecting": 10846,
- "continuously": 10847,
- "cruiser": 10848,
- "graduates": 10849,
- "freeway": 10850,
- "investigated": 10851,
- "ore": 10852,
- "deserved": 10853,
- "maid": 10854,
- "blocking": 10855,
- "phillip": 10856,
- "jorge": 10857,
- "shakes": 10858,
- "dove": 10859,
- "mann": 10860,
- "variables": 10861,
- "lacked": 10862,
- "burden": 10863,
- "accompanying": 10864,
- "que": 10865,
- "consistently": 10866,
- "organizing": 10867,
- "provisional": 10868,
- "complained": 10869,
- "endless": 10870,
- "##rm": 10871,
- "tubes": 10872,
- "juice": 10873,
- "georges": 10874,
- "krishna": 10875,
- "mick": 10876,
- "labels": 10877,
- "thriller": 10878,
- "##uch": 10879,
- "laps": 10880,
- "arcade": 10881,
- "sage": 10882,
- "snail": 10883,
- "##table": 10884,
- "shannon": 10885,
- "fi": 10886,
- "laurence": 10887,
- "seoul": 10888,
- "vacation": 10889,
- "presenting": 10890,
- "hire": 10891,
- "churchill": 10892,
- "surprisingly": 10893,
- "prohibited": 10894,
- "savannah": 10895,
- "technically": 10896,
- "##oli": 10897,
- "170": 10898,
- "##lessly": 10899,
- "testimony": 10900,
- "suited": 10901,
- "speeds": 10902,
- "toys": 10903,
- "romans": 10904,
- "mlb": 10905,
- "flowering": 10906,
- "measurement": 10907,
- "talented": 10908,
- "kay": 10909,
- "settings": 10910,
- "charleston": 10911,
- "expectations": 10912,
- "shattered": 10913,
- "achieving": 10914,
- "triumph": 10915,
- "ceremonies": 10916,
- "portsmouth": 10917,
- "lanes": 10918,
- "mandatory": 10919,
- "loser": 10920,
- "stretching": 10921,
- "cologne": 10922,
- "realizes": 10923,
- "seventy": 10924,
- "cornell": 10925,
- "careers": 10926,
- "webb": 10927,
- "##ulating": 10928,
- "americas": 10929,
- "budapest": 10930,
- "ava": 10931,
- "suspicion": 10932,
- "##ison": 10933,
- "yo": 10934,
- "conrad": 10935,
- "##hai": 10936,
- "sterling": 10937,
- "jessie": 10938,
- "rector": 10939,
- "##az": 10940,
- "1831": 10941,
- "transform": 10942,
- "organize": 10943,
- "loans": 10944,
- "christine": 10945,
- "volcanic": 10946,
- "warrant": 10947,
- "slender": 10948,
- "summers": 10949,
- "subfamily": 10950,
- "newer": 10951,
- "danced": 10952,
- "dynamics": 10953,
- "rhine": 10954,
- "proceeds": 10955,
- "heinrich": 10956,
- "gastropod": 10957,
- "commands": 10958,
- "sings": 10959,
- "facilitate": 10960,
- "easter": 10961,
- "ra": 10962,
- "positioned": 10963,
- "responses": 10964,
- "expense": 10965,
- "fruits": 10966,
- "yanked": 10967,
- "imported": 10968,
- "25th": 10969,
- "velvet": 10970,
- "vic": 10971,
- "primitive": 10972,
- "tribune": 10973,
- "baldwin": 10974,
- "neighbourhood": 10975,
- "donna": 10976,
- "rip": 10977,
- "hay": 10978,
- "pr": 10979,
- "##uro": 10980,
- "1814": 10981,
- "espn": 10982,
- "welcomed": 10983,
- "##aria": 10984,
- "qualifier": 10985,
- "glare": 10986,
- "highland": 10987,
- "timing": 10988,
- "##cted": 10989,
- "shells": 10990,
- "eased": 10991,
- "geometry": 10992,
- "louder": 10993,
- "exciting": 10994,
- "slovakia": 10995,
- "##sion": 10996,
- "##iz": 10997,
- "##lot": 10998,
- "savings": 10999,
- "prairie": 11000,
- "##ques": 11001,
- "marching": 11002,
- "rafael": 11003,
- "tonnes": 11004,
- "##lled": 11005,
- "curtain": 11006,
- "preceding": 11007,
- "shy": 11008,
- "heal": 11009,
- "greene": 11010,
- "worthy": 11011,
- "##pot": 11012,
- "detachment": 11013,
- "bury": 11014,
- "sherman": 11015,
- "##eck": 11016,
- "reinforced": 11017,
- "seeks": 11018,
- "bottles": 11019,
- "contracted": 11020,
- "duchess": 11021,
- "outfit": 11022,
- "walsh": 11023,
- "##sc": 11024,
- "mickey": 11025,
- "##ase": 11026,
- "geoffrey": 11027,
- "archer": 11028,
- "squeeze": 11029,
- "dawson": 11030,
- "eliminate": 11031,
- "invention": 11032,
- "##enberg": 11033,
- "neal": 11034,
- "##eth": 11035,
- "stance": 11036,
- "dealer": 11037,
- "coral": 11038,
- "maple": 11039,
- "retire": 11040,
- "polo": 11041,
- "simplified": 11042,
- "##ht": 11043,
- "1833": 11044,
- "hid": 11045,
- "watts": 11046,
- "backwards": 11047,
- "jules": 11048,
- "##oke": 11049,
- "genesis": 11050,
- "mt": 11051,
- "frames": 11052,
- "rebounds": 11053,
- "burma": 11054,
- "woodland": 11055,
- "moist": 11056,
- "santos": 11057,
- "whispers": 11058,
- "drained": 11059,
- "subspecies": 11060,
- "##aa": 11061,
- "streaming": 11062,
- "ulster": 11063,
- "burnt": 11064,
- "correspondence": 11065,
- "maternal": 11066,
- "gerard": 11067,
- "denis": 11068,
- "stealing": 11069,
- "##load": 11070,
- "genius": 11071,
- "duchy": 11072,
- "##oria": 11073,
- "inaugurated": 11074,
- "momentum": 11075,
- "suits": 11076,
- "placement": 11077,
- "sovereign": 11078,
- "clause": 11079,
- "thames": 11080,
- "##hara": 11081,
- "confederation": 11082,
- "reservation": 11083,
- "sketch": 11084,
- "yankees": 11085,
- "lets": 11086,
- "rotten": 11087,
- "charm": 11088,
- "hal": 11089,
- "verses": 11090,
- "ultra": 11091,
- "commercially": 11092,
- "dot": 11093,
- "salon": 11094,
- "citation": 11095,
- "adopt": 11096,
- "winnipeg": 11097,
- "mist": 11098,
- "allocated": 11099,
- "cairo": 11100,
- "##boy": 11101,
- "jenkins": 11102,
- "interference": 11103,
- "objectives": 11104,
- "##wind": 11105,
- "1820": 11106,
- "portfolio": 11107,
- "armoured": 11108,
- "sectors": 11109,
- "##eh": 11110,
- "initiatives": 11111,
- "##world": 11112,
- "integrity": 11113,
- "exercises": 11114,
- "robe": 11115,
- "tap": 11116,
- "ab": 11117,
- "gazed": 11118,
- "##tones": 11119,
- "distracted": 11120,
- "rulers": 11121,
- "111": 11122,
- "favorable": 11123,
- "jerome": 11124,
- "tended": 11125,
- "cart": 11126,
- "factories": 11127,
- "##eri": 11128,
- "diplomat": 11129,
- "valued": 11130,
- "gravel": 11131,
- "charitable": 11132,
- "##try": 11133,
- "calvin": 11134,
- "exploring": 11135,
- "chang": 11136,
- "shepherd": 11137,
- "terrace": 11138,
- "pdf": 11139,
- "pupil": 11140,
- "##ural": 11141,
- "reflects": 11142,
- "ups": 11143,
- "##rch": 11144,
- "governors": 11145,
- "shelf": 11146,
- "depths": 11147,
- "##nberg": 11148,
- "trailed": 11149,
- "crest": 11150,
- "tackle": 11151,
- "##nian": 11152,
- "##ats": 11153,
- "hatred": 11154,
- "##kai": 11155,
- "clare": 11156,
- "makers": 11157,
- "ethiopia": 11158,
- "longtime": 11159,
- "detected": 11160,
- "embedded": 11161,
- "lacking": 11162,
- "slapped": 11163,
- "rely": 11164,
- "thomson": 11165,
- "anticipation": 11166,
- "iso": 11167,
- "morton": 11168,
- "successive": 11169,
- "agnes": 11170,
- "screenwriter": 11171,
- "straightened": 11172,
- "philippe": 11173,
- "playwright": 11174,
- "haunted": 11175,
- "licence": 11176,
- "iris": 11177,
- "intentions": 11178,
- "sutton": 11179,
- "112": 11180,
- "logical": 11181,
- "correctly": 11182,
- "##weight": 11183,
- "branded": 11184,
- "licked": 11185,
- "tipped": 11186,
- "silva": 11187,
- "ricky": 11188,
- "narrator": 11189,
- "requests": 11190,
- "##ents": 11191,
- "greeted": 11192,
- "supernatural": 11193,
- "cow": 11194,
- "##wald": 11195,
- "lung": 11196,
- "refusing": 11197,
- "employer": 11198,
- "strait": 11199,
- "gaelic": 11200,
- "liner": 11201,
- "##piece": 11202,
- "zoe": 11203,
- "sabha": 11204,
- "##mba": 11205,
- "driveway": 11206,
- "harvest": 11207,
- "prints": 11208,
- "bates": 11209,
- "reluctantly": 11210,
- "threshold": 11211,
- "algebra": 11212,
- "ira": 11213,
- "wherever": 11214,
- "coupled": 11215,
- "240": 11216,
- "assumption": 11217,
- "picks": 11218,
- "##air": 11219,
- "designers": 11220,
- "raids": 11221,
- "gentlemen": 11222,
- "##ean": 11223,
- "roller": 11224,
- "blowing": 11225,
- "leipzig": 11226,
- "locks": 11227,
- "screw": 11228,
- "dressing": 11229,
- "strand": 11230,
- "##lings": 11231,
- "scar": 11232,
- "dwarf": 11233,
- "depicts": 11234,
- "##nu": 11235,
- "nods": 11236,
- "##mine": 11237,
- "differ": 11238,
- "boris": 11239,
- "##eur": 11240,
- "yuan": 11241,
- "flip": 11242,
- "##gie": 11243,
- "mob": 11244,
- "invested": 11245,
- "questioning": 11246,
- "applying": 11247,
- "##ture": 11248,
- "shout": 11249,
- "##sel": 11250,
- "gameplay": 11251,
- "blamed": 11252,
- "illustrations": 11253,
- "bothered": 11254,
- "weakness": 11255,
- "rehabilitation": 11256,
- "##of": 11257,
- "##zes": 11258,
- "envelope": 11259,
- "rumors": 11260,
- "miners": 11261,
- "leicester": 11262,
- "subtle": 11263,
- "kerry": 11264,
- "##ico": 11265,
- "ferguson": 11266,
- "##fu": 11267,
- "premiership": 11268,
- "ne": 11269,
- "##cat": 11270,
- "bengali": 11271,
- "prof": 11272,
- "catches": 11273,
- "remnants": 11274,
- "dana": 11275,
- "##rily": 11276,
- "shouting": 11277,
- "presidents": 11278,
- "baltic": 11279,
- "ought": 11280,
- "ghosts": 11281,
- "dances": 11282,
- "sailors": 11283,
- "shirley": 11284,
- "fancy": 11285,
- "dominic": 11286,
- "##bie": 11287,
- "madonna": 11288,
- "##rick": 11289,
- "bark": 11290,
- "buttons": 11291,
- "gymnasium": 11292,
- "ashes": 11293,
- "liver": 11294,
- "toby": 11295,
- "oath": 11296,
- "providence": 11297,
- "doyle": 11298,
- "evangelical": 11299,
- "nixon": 11300,
- "cement": 11301,
- "carnegie": 11302,
- "embarked": 11303,
- "hatch": 11304,
- "surroundings": 11305,
- "guarantee": 11306,
- "needing": 11307,
- "pirate": 11308,
- "essence": 11309,
- "##bee": 11310,
- "filter": 11311,
- "crane": 11312,
- "hammond": 11313,
- "projected": 11314,
- "immune": 11315,
- "percy": 11316,
- "twelfth": 11317,
- "##ult": 11318,
- "regent": 11319,
- "doctoral": 11320,
- "damon": 11321,
- "mikhail": 11322,
- "##ichi": 11323,
- "lu": 11324,
- "critically": 11325,
- "elect": 11326,
- "realised": 11327,
- "abortion": 11328,
- "acute": 11329,
- "screening": 11330,
- "mythology": 11331,
- "steadily": 11332,
- "##fc": 11333,
- "frown": 11334,
- "nottingham": 11335,
- "kirk": 11336,
- "wa": 11337,
- "minneapolis": 11338,
- "##rra": 11339,
- "module": 11340,
- "algeria": 11341,
- "mc": 11342,
- "nautical": 11343,
- "encounters": 11344,
- "surprising": 11345,
- "statues": 11346,
- "availability": 11347,
- "shirts": 11348,
- "pie": 11349,
- "alma": 11350,
- "brows": 11351,
- "munster": 11352,
- "mack": 11353,
- "soup": 11354,
- "crater": 11355,
- "tornado": 11356,
- "sanskrit": 11357,
- "cedar": 11358,
- "explosive": 11359,
- "bordered": 11360,
- "dixon": 11361,
- "planets": 11362,
- "stamp": 11363,
- "exam": 11364,
- "happily": 11365,
- "##bble": 11366,
- "carriers": 11367,
- "kidnapped": 11368,
- "##vis": 11369,
- "accommodation": 11370,
- "emigrated": 11371,
- "##met": 11372,
- "knockout": 11373,
- "correspondent": 11374,
- "violation": 11375,
- "profits": 11376,
- "peaks": 11377,
- "lang": 11378,
- "specimen": 11379,
- "agenda": 11380,
- "ancestry": 11381,
- "pottery": 11382,
- "spelling": 11383,
- "equations": 11384,
- "obtaining": 11385,
- "ki": 11386,
- "linking": 11387,
- "1825": 11388,
- "debris": 11389,
- "asylum": 11390,
- "##20": 11391,
- "buddhism": 11392,
- "teddy": 11393,
- "##ants": 11394,
- "gazette": 11395,
- "##nger": 11396,
- "##sse": 11397,
- "dental": 11398,
- "eligibility": 11399,
- "utc": 11400,
- "fathers": 11401,
- "averaged": 11402,
- "zimbabwe": 11403,
- "francesco": 11404,
- "coloured": 11405,
- "hissed": 11406,
- "translator": 11407,
- "lynch": 11408,
- "mandate": 11409,
- "humanities": 11410,
- "mackenzie": 11411,
- "uniforms": 11412,
- "lin": 11413,
- "##iana": 11414,
- "##gio": 11415,
- "asset": 11416,
- "mhz": 11417,
- "fitting": 11418,
- "samantha": 11419,
- "genera": 11420,
- "wei": 11421,
- "rim": 11422,
- "beloved": 11423,
- "shark": 11424,
- "riot": 11425,
- "entities": 11426,
- "expressions": 11427,
- "indo": 11428,
- "carmen": 11429,
- "slipping": 11430,
- "owing": 11431,
- "abbot": 11432,
- "neighbor": 11433,
- "sidney": 11434,
- "##av": 11435,
- "rats": 11436,
- "recommendations": 11437,
- "encouraging": 11438,
- "squadrons": 11439,
- "anticipated": 11440,
- "commanders": 11441,
- "conquered": 11442,
- "##oto": 11443,
- "donations": 11444,
- "diagnosed": 11445,
- "##mond": 11446,
- "divide": 11447,
- "##iva": 11448,
- "guessed": 11449,
- "decoration": 11450,
- "vernon": 11451,
- "auditorium": 11452,
- "revelation": 11453,
- "conversations": 11454,
- "##kers": 11455,
- "##power": 11456,
- "herzegovina": 11457,
- "dash": 11458,
- "alike": 11459,
- "protested": 11460,
- "lateral": 11461,
- "herman": 11462,
- "accredited": 11463,
- "mg": 11464,
- "##gent": 11465,
- "freeman": 11466,
- "mel": 11467,
- "fiji": 11468,
- "crow": 11469,
- "crimson": 11470,
- "##rine": 11471,
- "livestock": 11472,
- "##pped": 11473,
- "humanitarian": 11474,
- "bored": 11475,
- "oz": 11476,
- "whip": 11477,
- "##lene": 11478,
- "##ali": 11479,
- "legitimate": 11480,
- "alter": 11481,
- "grinning": 11482,
- "spelled": 11483,
- "anxious": 11484,
- "oriental": 11485,
- "wesley": 11486,
- "##nin": 11487,
- "##hole": 11488,
- "carnival": 11489,
- "controller": 11490,
- "detect": 11491,
- "##ssa": 11492,
- "bowed": 11493,
- "educator": 11494,
- "kosovo": 11495,
- "macedonia": 11496,
- "##sin": 11497,
- "occupy": 11498,
- "mastering": 11499,
- "stephanie": 11500,
- "janeiro": 11501,
- "para": 11502,
- "unaware": 11503,
- "nurses": 11504,
- "noon": 11505,
- "135": 11506,
- "cam": 11507,
- "hopefully": 11508,
- "ranger": 11509,
- "combine": 11510,
- "sociology": 11511,
- "polar": 11512,
- "rica": 11513,
- "##eer": 11514,
- "neill": 11515,
- "##sman": 11516,
- "holocaust": 11517,
- "##ip": 11518,
- "doubled": 11519,
- "lust": 11520,
- "1828": 11521,
- "109": 11522,
- "decent": 11523,
- "cooling": 11524,
- "unveiled": 11525,
- "##card": 11526,
- "1829": 11527,
- "nsw": 11528,
- "homer": 11529,
- "chapman": 11530,
- "meyer": 11531,
- "##gin": 11532,
- "dive": 11533,
- "mae": 11534,
- "reagan": 11535,
- "expertise": 11536,
- "##gled": 11537,
- "darwin": 11538,
- "brooke": 11539,
- "sided": 11540,
- "prosecution": 11541,
- "investigating": 11542,
- "comprised": 11543,
- "petroleum": 11544,
- "genres": 11545,
- "reluctant": 11546,
- "differently": 11547,
- "trilogy": 11548,
- "johns": 11549,
- "vegetables": 11550,
- "corpse": 11551,
- "highlighted": 11552,
- "lounge": 11553,
- "pension": 11554,
- "unsuccessfully": 11555,
- "elegant": 11556,
- "aided": 11557,
- "ivory": 11558,
- "beatles": 11559,
- "amelia": 11560,
- "cain": 11561,
- "dubai": 11562,
- "sunny": 11563,
- "immigrant": 11564,
- "babe": 11565,
- "click": 11566,
- "##nder": 11567,
- "underwater": 11568,
- "pepper": 11569,
- "combining": 11570,
- "mumbled": 11571,
- "atlas": 11572,
- "horns": 11573,
- "accessed": 11574,
- "ballad": 11575,
- "physicians": 11576,
- "homeless": 11577,
- "gestured": 11578,
- "rpm": 11579,
- "freak": 11580,
- "louisville": 11581,
- "corporations": 11582,
- "patriots": 11583,
- "prizes": 11584,
- "rational": 11585,
- "warn": 11586,
- "modes": 11587,
- "decorative": 11588,
- "overnight": 11589,
- "din": 11590,
- "troubled": 11591,
- "phantom": 11592,
- "##ort": 11593,
- "monarch": 11594,
- "sheer": 11595,
- "##dorf": 11596,
- "generals": 11597,
- "guidelines": 11598,
- "organs": 11599,
- "addresses": 11600,
- "##zon": 11601,
- "enhance": 11602,
- "curling": 11603,
- "parishes": 11604,
- "cord": 11605,
- "##kie": 11606,
- "linux": 11607,
- "caesar": 11608,
- "deutsche": 11609,
- "bavaria": 11610,
- "##bia": 11611,
- "coleman": 11612,
- "cyclone": 11613,
- "##eria": 11614,
- "bacon": 11615,
- "petty": 11616,
- "##yama": 11617,
- "##old": 11618,
- "hampton": 11619,
- "diagnosis": 11620,
- "1824": 11621,
- "throws": 11622,
- "complexity": 11623,
- "rita": 11624,
- "disputed": 11625,
- "##₃": 11626,
- "pablo": 11627,
- "##sch": 11628,
- "marketed": 11629,
- "trafficking": 11630,
- "##ulus": 11631,
- "examine": 11632,
- "plague": 11633,
- "formats": 11634,
- "##oh": 11635,
- "vault": 11636,
- "faithful": 11637,
- "##bourne": 11638,
- "webster": 11639,
- "##ox": 11640,
- "highlights": 11641,
- "##ient": 11642,
- "##ann": 11643,
- "phones": 11644,
- "vacuum": 11645,
- "sandwich": 11646,
- "modeling": 11647,
- "##gated": 11648,
- "bolivia": 11649,
- "clergy": 11650,
- "qualities": 11651,
- "isabel": 11652,
- "##nas": 11653,
- "##ars": 11654,
- "wears": 11655,
- "screams": 11656,
- "reunited": 11657,
- "annoyed": 11658,
- "bra": 11659,
- "##ancy": 11660,
- "##rate": 11661,
- "differential": 11662,
- "transmitter": 11663,
- "tattoo": 11664,
- "container": 11665,
- "poker": 11666,
- "##och": 11667,
- "excessive": 11668,
- "resides": 11669,
- "cowboys": 11670,
- "##tum": 11671,
- "augustus": 11672,
- "trash": 11673,
- "providers": 11674,
- "statute": 11675,
- "retreated": 11676,
- "balcony": 11677,
- "reversed": 11678,
- "void": 11679,
- "storey": 11680,
- "preceded": 11681,
- "masses": 11682,
- "leap": 11683,
- "laughs": 11684,
- "neighborhoods": 11685,
- "wards": 11686,
- "schemes": 11687,
- "falcon": 11688,
- "santo": 11689,
- "battlefield": 11690,
- "pad": 11691,
- "ronnie": 11692,
- "thread": 11693,
- "lesbian": 11694,
- "venus": 11695,
- "##dian": 11696,
- "beg": 11697,
- "sandstone": 11698,
- "daylight": 11699,
- "punched": 11700,
- "gwen": 11701,
- "analog": 11702,
- "stroked": 11703,
- "wwe": 11704,
- "acceptable": 11705,
- "measurements": 11706,
- "dec": 11707,
- "toxic": 11708,
- "##kel": 11709,
- "adequate": 11710,
- "surgical": 11711,
- "economist": 11712,
- "parameters": 11713,
- "varsity": 11714,
- "##sberg": 11715,
- "quantity": 11716,
- "ella": 11717,
- "##chy": 11718,
- "##rton": 11719,
- "countess": 11720,
- "generating": 11721,
- "precision": 11722,
- "diamonds": 11723,
- "expressway": 11724,
- "ga": 11725,
- "##ı": 11726,
- "1821": 11727,
- "uruguay": 11728,
- "talents": 11729,
- "galleries": 11730,
- "expenses": 11731,
- "scanned": 11732,
- "colleague": 11733,
- "outlets": 11734,
- "ryder": 11735,
- "lucien": 11736,
- "##ila": 11737,
- "paramount": 11738,
- "##bon": 11739,
- "syracuse": 11740,
- "dim": 11741,
- "fangs": 11742,
- "gown": 11743,
- "sweep": 11744,
- "##sie": 11745,
- "toyota": 11746,
- "missionaries": 11747,
- "websites": 11748,
- "##nsis": 11749,
- "sentences": 11750,
- "adviser": 11751,
- "val": 11752,
- "trademark": 11753,
- "spells": 11754,
- "##plane": 11755,
- "patience": 11756,
- "starter": 11757,
- "slim": 11758,
- "##borg": 11759,
- "toe": 11760,
- "incredibly": 11761,
- "shoots": 11762,
- "elliot": 11763,
- "nobility": 11764,
- "##wyn": 11765,
- "cowboy": 11766,
- "endorsed": 11767,
- "gardner": 11768,
- "tendency": 11769,
- "persuaded": 11770,
- "organisms": 11771,
- "emissions": 11772,
- "kazakhstan": 11773,
- "amused": 11774,
- "boring": 11775,
- "chips": 11776,
- "themed": 11777,
- "##hand": 11778,
- "llc": 11779,
- "constantinople": 11780,
- "chasing": 11781,
- "systematic": 11782,
- "guatemala": 11783,
- "borrowed": 11784,
- "erin": 11785,
- "carey": 11786,
- "##hard": 11787,
- "highlands": 11788,
- "struggles": 11789,
- "1810": 11790,
- "##ifying": 11791,
- "##ced": 11792,
- "wong": 11793,
- "exceptions": 11794,
- "develops": 11795,
- "enlarged": 11796,
- "kindergarten": 11797,
- "castro": 11798,
- "##ern": 11799,
- "##rina": 11800,
- "leigh": 11801,
- "zombie": 11802,
- "juvenile": 11803,
- "##most": 11804,
- "consul": 11805,
- "##nar": 11806,
- "sailor": 11807,
- "hyde": 11808,
- "clarence": 11809,
- "intensive": 11810,
- "pinned": 11811,
- "nasty": 11812,
- "useless": 11813,
- "jung": 11814,
- "clayton": 11815,
- "stuffed": 11816,
- "exceptional": 11817,
- "ix": 11818,
- "apostolic": 11819,
- "230": 11820,
- "transactions": 11821,
- "##dge": 11822,
- "exempt": 11823,
- "swinging": 11824,
- "cove": 11825,
- "religions": 11826,
- "##ash": 11827,
- "shields": 11828,
- "dairy": 11829,
- "bypass": 11830,
- "190": 11831,
- "pursuing": 11832,
- "bug": 11833,
- "joyce": 11834,
- "bombay": 11835,
- "chassis": 11836,
- "southampton": 11837,
- "chat": 11838,
- "interact": 11839,
- "redesignated": 11840,
- "##pen": 11841,
- "nascar": 11842,
- "pray": 11843,
- "salmon": 11844,
- "rigid": 11845,
- "regained": 11846,
- "malaysian": 11847,
- "grim": 11848,
- "publicity": 11849,
- "constituted": 11850,
- "capturing": 11851,
- "toilet": 11852,
- "delegate": 11853,
- "purely": 11854,
- "tray": 11855,
- "drift": 11856,
- "loosely": 11857,
- "striker": 11858,
- "weakened": 11859,
- "trinidad": 11860,
- "mitch": 11861,
- "itv": 11862,
- "defines": 11863,
- "transmitted": 11864,
- "ming": 11865,
- "scarlet": 11866,
- "nodding": 11867,
- "fitzgerald": 11868,
- "fu": 11869,
- "narrowly": 11870,
- "sp": 11871,
- "tooth": 11872,
- "standings": 11873,
- "virtue": 11874,
- "##₁": 11875,
- "##wara": 11876,
- "##cting": 11877,
- "chateau": 11878,
- "gloves": 11879,
- "lid": 11880,
- "##nel": 11881,
- "hurting": 11882,
- "conservatory": 11883,
- "##pel": 11884,
- "sinclair": 11885,
- "reopened": 11886,
- "sympathy": 11887,
- "nigerian": 11888,
- "strode": 11889,
- "advocated": 11890,
- "optional": 11891,
- "chronic": 11892,
- "discharge": 11893,
- "##rc": 11894,
- "suck": 11895,
- "compatible": 11896,
- "laurel": 11897,
- "stella": 11898,
- "shi": 11899,
- "fails": 11900,
- "wage": 11901,
- "dodge": 11902,
- "128": 11903,
- "informal": 11904,
- "sorts": 11905,
- "levi": 11906,
- "buddha": 11907,
- "villagers": 11908,
- "##aka": 11909,
- "chronicles": 11910,
- "heavier": 11911,
- "summoned": 11912,
- "gateway": 11913,
- "3000": 11914,
- "eleventh": 11915,
- "jewelry": 11916,
- "translations": 11917,
- "accordingly": 11918,
- "seas": 11919,
- "##ency": 11920,
- "fiber": 11921,
- "pyramid": 11922,
- "cubic": 11923,
- "dragging": 11924,
- "##ista": 11925,
- "caring": 11926,
- "##ops": 11927,
- "android": 11928,
- "contacted": 11929,
- "lunar": 11930,
- "##dt": 11931,
- "kai": 11932,
- "lisbon": 11933,
- "patted": 11934,
- "1826": 11935,
- "sacramento": 11936,
- "theft": 11937,
- "madagascar": 11938,
- "subtropical": 11939,
- "disputes": 11940,
- "ta": 11941,
- "holidays": 11942,
- "piper": 11943,
- "willow": 11944,
- "mare": 11945,
- "cane": 11946,
- "itunes": 11947,
- "newfoundland": 11948,
- "benny": 11949,
- "companions": 11950,
- "dong": 11951,
- "raj": 11952,
- "observe": 11953,
- "roar": 11954,
- "charming": 11955,
- "plaque": 11956,
- "tibetan": 11957,
- "fossils": 11958,
- "enacted": 11959,
- "manning": 11960,
- "bubble": 11961,
- "tina": 11962,
- "tanzania": 11963,
- "##eda": 11964,
- "##hir": 11965,
- "funk": 11966,
- "swamp": 11967,
- "deputies": 11968,
- "cloak": 11969,
- "ufc": 11970,
- "scenario": 11971,
- "par": 11972,
- "scratch": 11973,
- "metals": 11974,
- "anthem": 11975,
- "guru": 11976,
- "engaging": 11977,
- "specially": 11978,
- "##boat": 11979,
- "dialects": 11980,
- "nineteen": 11981,
- "cecil": 11982,
- "duet": 11983,
- "disability": 11984,
- "messenger": 11985,
- "unofficial": 11986,
- "##lies": 11987,
- "defunct": 11988,
- "eds": 11989,
- "moonlight": 11990,
- "drainage": 11991,
- "surname": 11992,
- "puzzle": 11993,
- "honda": 11994,
- "switching": 11995,
- "conservatives": 11996,
- "mammals": 11997,
- "knox": 11998,
- "broadcaster": 11999,
- "sidewalk": 12000,
- "cope": 12001,
- "##ried": 12002,
- "benson": 12003,
- "princes": 12004,
- "peterson": 12005,
- "##sal": 12006,
- "bedford": 12007,
- "sharks": 12008,
- "eli": 12009,
- "wreck": 12010,
- "alberto": 12011,
- "gasp": 12012,
- "archaeology": 12013,
- "lgbt": 12014,
- "teaches": 12015,
- "securities": 12016,
- "madness": 12017,
- "compromise": 12018,
- "waving": 12019,
- "coordination": 12020,
- "davidson": 12021,
- "visions": 12022,
- "leased": 12023,
- "possibilities": 12024,
- "eighty": 12025,
- "jun": 12026,
- "fernandez": 12027,
- "enthusiasm": 12028,
- "assassin": 12029,
- "sponsorship": 12030,
- "reviewer": 12031,
- "kingdoms": 12032,
- "estonian": 12033,
- "laboratories": 12034,
- "##fy": 12035,
- "##nal": 12036,
- "applies": 12037,
- "verb": 12038,
- "celebrations": 12039,
- "##zzo": 12040,
- "rowing": 12041,
- "lightweight": 12042,
- "sadness": 12043,
- "submit": 12044,
- "mvp": 12045,
- "balanced": 12046,
- "dude": 12047,
- "##vas": 12048,
- "explicitly": 12049,
- "metric": 12050,
- "magnificent": 12051,
- "mound": 12052,
- "brett": 12053,
- "mohammad": 12054,
- "mistakes": 12055,
- "irregular": 12056,
- "##hing": 12057,
- "##ass": 12058,
- "sanders": 12059,
- "betrayed": 12060,
- "shipped": 12061,
- "surge": 12062,
- "##enburg": 12063,
- "reporters": 12064,
- "termed": 12065,
- "georg": 12066,
- "pity": 12067,
- "verbal": 12068,
- "bulls": 12069,
- "abbreviated": 12070,
- "enabling": 12071,
- "appealed": 12072,
- "##are": 12073,
- "##atic": 12074,
- "sicily": 12075,
- "sting": 12076,
- "heel": 12077,
- "sweetheart": 12078,
- "bart": 12079,
- "spacecraft": 12080,
- "brutal": 12081,
- "monarchy": 12082,
- "##tter": 12083,
- "aberdeen": 12084,
- "cameo": 12085,
- "diane": 12086,
- "##ub": 12087,
- "survivor": 12088,
- "clyde": 12089,
- "##aries": 12090,
- "complaint": 12091,
- "##makers": 12092,
- "clarinet": 12093,
- "delicious": 12094,
- "chilean": 12095,
- "karnataka": 12096,
- "coordinates": 12097,
- "1818": 12098,
- "panties": 12099,
- "##rst": 12100,
- "pretending": 12101,
- "ar": 12102,
- "dramatically": 12103,
- "kiev": 12104,
- "bella": 12105,
- "tends": 12106,
- "distances": 12107,
- "113": 12108,
- "catalog": 12109,
- "launching": 12110,
- "instances": 12111,
- "telecommunications": 12112,
- "portable": 12113,
- "lindsay": 12114,
- "vatican": 12115,
- "##eim": 12116,
- "angles": 12117,
- "aliens": 12118,
- "marker": 12119,
- "stint": 12120,
- "screens": 12121,
- "bolton": 12122,
- "##rne": 12123,
- "judy": 12124,
- "wool": 12125,
- "benedict": 12126,
- "plasma": 12127,
- "europa": 12128,
- "spark": 12129,
- "imaging": 12130,
- "filmmaker": 12131,
- "swiftly": 12132,
- "##een": 12133,
- "contributor": 12134,
- "##nor": 12135,
- "opted": 12136,
- "stamps": 12137,
- "apologize": 12138,
- "financing": 12139,
- "butter": 12140,
- "gideon": 12141,
- "sophisticated": 12142,
- "alignment": 12143,
- "avery": 12144,
- "chemicals": 12145,
- "yearly": 12146,
- "speculation": 12147,
- "prominence": 12148,
- "professionally": 12149,
- "##ils": 12150,
- "immortal": 12151,
- "institutional": 12152,
- "inception": 12153,
- "wrists": 12154,
- "identifying": 12155,
- "tribunal": 12156,
- "derives": 12157,
- "gains": 12158,
- "##wo": 12159,
- "papal": 12160,
- "preference": 12161,
- "linguistic": 12162,
- "vince": 12163,
- "operative": 12164,
- "brewery": 12165,
- "##ont": 12166,
- "unemployment": 12167,
- "boyd": 12168,
- "##ured": 12169,
- "##outs": 12170,
- "albeit": 12171,
- "prophet": 12172,
- "1813": 12173,
- "bi": 12174,
- "##rr": 12175,
- "##face": 12176,
- "##rad": 12177,
- "quarterly": 12178,
- "asteroid": 12179,
- "cleaned": 12180,
- "radius": 12181,
- "temper": 12182,
- "##llen": 12183,
- "telugu": 12184,
- "jerk": 12185,
- "viscount": 12186,
- "menu": 12187,
- "##ote": 12188,
- "glimpse": 12189,
- "##aya": 12190,
- "yacht": 12191,
- "hawaiian": 12192,
- "baden": 12193,
- "##rl": 12194,
- "laptop": 12195,
- "readily": 12196,
- "##gu": 12197,
- "monetary": 12198,
- "offshore": 12199,
- "scots": 12200,
- "watches": 12201,
- "##yang": 12202,
- "##arian": 12203,
- "upgrade": 12204,
- "needle": 12205,
- "xbox": 12206,
- "lea": 12207,
- "encyclopedia": 12208,
- "flank": 12209,
- "fingertips": 12210,
- "##pus": 12211,
- "delight": 12212,
- "teachings": 12213,
- "confirm": 12214,
- "roth": 12215,
- "beaches": 12216,
- "midway": 12217,
- "winters": 12218,
- "##iah": 12219,
- "teasing": 12220,
- "daytime": 12221,
- "beverly": 12222,
- "gambling": 12223,
- "bonnie": 12224,
- "##backs": 12225,
- "regulated": 12226,
- "clement": 12227,
- "hermann": 12228,
- "tricks": 12229,
- "knot": 12230,
- "##shing": 12231,
- "##uring": 12232,
- "##vre": 12233,
- "detached": 12234,
- "ecological": 12235,
- "owed": 12236,
- "specialty": 12237,
- "byron": 12238,
- "inventor": 12239,
- "bats": 12240,
- "stays": 12241,
- "screened": 12242,
- "unesco": 12243,
- "midland": 12244,
- "trim": 12245,
- "affection": 12246,
- "##ander": 12247,
- "##rry": 12248,
- "jess": 12249,
- "thoroughly": 12250,
- "feedback": 12251,
- "##uma": 12252,
- "chennai": 12253,
- "strained": 12254,
- "heartbeat": 12255,
- "wrapping": 12256,
- "overtime": 12257,
- "pleaded": 12258,
- "##sworth": 12259,
- "mon": 12260,
- "leisure": 12261,
- "oclc": 12262,
- "##tate": 12263,
- "##ele": 12264,
- "feathers": 12265,
- "angelo": 12266,
- "thirds": 12267,
- "nuts": 12268,
- "surveys": 12269,
- "clever": 12270,
- "gill": 12271,
- "commentator": 12272,
- "##dos": 12273,
- "darren": 12274,
- "rides": 12275,
- "gibraltar": 12276,
- "##nc": 12277,
- "##mu": 12278,
- "dissolution": 12279,
- "dedication": 12280,
- "shin": 12281,
- "meals": 12282,
- "saddle": 12283,
- "elvis": 12284,
- "reds": 12285,
- "chaired": 12286,
- "taller": 12287,
- "appreciation": 12288,
- "functioning": 12289,
- "niece": 12290,
- "favored": 12291,
- "advocacy": 12292,
- "robbie": 12293,
- "criminals": 12294,
- "suffolk": 12295,
- "yugoslav": 12296,
- "passport": 12297,
- "constable": 12298,
- "congressman": 12299,
- "hastings": 12300,
- "vera": 12301,
- "##rov": 12302,
- "consecrated": 12303,
- "sparks": 12304,
- "ecclesiastical": 12305,
- "confined": 12306,
- "##ovich": 12307,
- "muller": 12308,
- "floyd": 12309,
- "nora": 12310,
- "1822": 12311,
- "paved": 12312,
- "1827": 12313,
- "cumberland": 12314,
- "ned": 12315,
- "saga": 12316,
- "spiral": 12317,
- "##flow": 12318,
- "appreciated": 12319,
- "yi": 12320,
- "collaborative": 12321,
- "treating": 12322,
- "similarities": 12323,
- "feminine": 12324,
- "finishes": 12325,
- "##ib": 12326,
- "jade": 12327,
- "import": 12328,
- "##nse": 12329,
- "##hot": 12330,
- "champagne": 12331,
- "mice": 12332,
- "securing": 12333,
- "celebrities": 12334,
- "helsinki": 12335,
- "attributes": 12336,
- "##gos": 12337,
- "cousins": 12338,
- "phases": 12339,
- "ache": 12340,
- "lucia": 12341,
- "gandhi": 12342,
- "submission": 12343,
- "vicar": 12344,
- "spear": 12345,
- "shine": 12346,
- "tasmania": 12347,
- "biting": 12348,
- "detention": 12349,
- "constitute": 12350,
- "tighter": 12351,
- "seasonal": 12352,
- "##gus": 12353,
- "terrestrial": 12354,
- "matthews": 12355,
- "##oka": 12356,
- "effectiveness": 12357,
- "parody": 12358,
- "philharmonic": 12359,
- "##onic": 12360,
- "1816": 12361,
- "strangers": 12362,
- "encoded": 12363,
- "consortium": 12364,
- "guaranteed": 12365,
- "regards": 12366,
- "shifts": 12367,
- "tortured": 12368,
- "collision": 12369,
- "supervisor": 12370,
- "inform": 12371,
- "broader": 12372,
- "insight": 12373,
- "theaters": 12374,
- "armour": 12375,
- "emeritus": 12376,
- "blink": 12377,
- "incorporates": 12378,
- "mapping": 12379,
- "##50": 12380,
- "##ein": 12381,
- "handball": 12382,
- "flexible": 12383,
- "##nta": 12384,
- "substantially": 12385,
- "generous": 12386,
- "thief": 12387,
- "##own": 12388,
- "carr": 12389,
- "loses": 12390,
- "1793": 12391,
- "prose": 12392,
- "ucla": 12393,
- "romeo": 12394,
- "generic": 12395,
- "metallic": 12396,
- "realization": 12397,
- "damages": 12398,
- "mk": 12399,
- "commissioners": 12400,
- "zach": 12401,
- "default": 12402,
- "##ther": 12403,
- "helicopters": 12404,
- "lengthy": 12405,
- "stems": 12406,
- "spa": 12407,
- "partnered": 12408,
- "spectators": 12409,
- "rogue": 12410,
- "indication": 12411,
- "penalties": 12412,
- "teresa": 12413,
- "1801": 12414,
- "sen": 12415,
- "##tric": 12416,
- "dalton": 12417,
- "##wich": 12418,
- "irving": 12419,
- "photographic": 12420,
- "##vey": 12421,
- "dell": 12422,
- "deaf": 12423,
- "peters": 12424,
- "excluded": 12425,
- "unsure": 12426,
- "##vable": 12427,
- "patterson": 12428,
- "crawled": 12429,
- "##zio": 12430,
- "resided": 12431,
- "whipped": 12432,
- "latvia": 12433,
- "slower": 12434,
- "ecole": 12435,
- "pipes": 12436,
- "employers": 12437,
- "maharashtra": 12438,
- "comparable": 12439,
- "va": 12440,
- "textile": 12441,
- "pageant": 12442,
- "##gel": 12443,
- "alphabet": 12444,
- "binary": 12445,
- "irrigation": 12446,
- "chartered": 12447,
- "choked": 12448,
- "antoine": 12449,
- "offs": 12450,
- "waking": 12451,
- "supplement": 12452,
- "##wen": 12453,
- "quantities": 12454,
- "demolition": 12455,
- "regain": 12456,
- "locate": 12457,
- "urdu": 12458,
- "folks": 12459,
- "alt": 12460,
- "114": 12461,
- "##mc": 12462,
- "scary": 12463,
- "andreas": 12464,
- "whites": 12465,
- "##ava": 12466,
- "classrooms": 12467,
- "mw": 12468,
- "aesthetic": 12469,
- "publishes": 12470,
- "valleys": 12471,
- "guides": 12472,
- "cubs": 12473,
- "johannes": 12474,
- "bryant": 12475,
- "conventions": 12476,
- "affecting": 12477,
- "##itt": 12478,
- "drain": 12479,
- "awesome": 12480,
- "isolation": 12481,
- "prosecutor": 12482,
- "ambitious": 12483,
- "apology": 12484,
- "captive": 12485,
- "downs": 12486,
- "atmospheric": 12487,
- "lorenzo": 12488,
- "aisle": 12489,
- "beef": 12490,
- "foul": 12491,
- "##onia": 12492,
- "kidding": 12493,
- "composite": 12494,
- "disturbed": 12495,
- "illusion": 12496,
- "natives": 12497,
- "##ffer": 12498,
- "emi": 12499,
- "rockets": 12500,
- "riverside": 12501,
- "wartime": 12502,
- "painters": 12503,
- "adolf": 12504,
- "melted": 12505,
- "##ail": 12506,
- "uncertainty": 12507,
- "simulation": 12508,
- "hawks": 12509,
- "progressed": 12510,
- "meantime": 12511,
- "builder": 12512,
- "spray": 12513,
- "breach": 12514,
- "unhappy": 12515,
- "regina": 12516,
- "russians": 12517,
- "##urg": 12518,
- "determining": 12519,
- "##tation": 12520,
- "tram": 12521,
- "1806": 12522,
- "##quin": 12523,
- "aging": 12524,
- "##12": 12525,
- "1823": 12526,
- "garion": 12527,
- "rented": 12528,
- "mister": 12529,
- "diaz": 12530,
- "terminated": 12531,
- "clip": 12532,
- "1817": 12533,
- "depend": 12534,
- "nervously": 12535,
- "disco": 12536,
- "owe": 12537,
- "defenders": 12538,
- "shiva": 12539,
- "notorious": 12540,
- "disbelief": 12541,
- "shiny": 12542,
- "worcester": 12543,
- "##gation": 12544,
- "##yr": 12545,
- "trailing": 12546,
- "undertook": 12547,
- "islander": 12548,
- "belarus": 12549,
- "limitations": 12550,
- "watershed": 12551,
- "fuller": 12552,
- "overlooking": 12553,
- "utilized": 12554,
- "raphael": 12555,
- "1819": 12556,
- "synthetic": 12557,
- "breakdown": 12558,
- "klein": 12559,
- "##nate": 12560,
- "moaned": 12561,
- "memoir": 12562,
- "lamb": 12563,
- "practicing": 12564,
- "##erly": 12565,
- "cellular": 12566,
- "arrows": 12567,
- "exotic": 12568,
- "##graphy": 12569,
- "witches": 12570,
- "117": 12571,
- "charted": 12572,
- "rey": 12573,
- "hut": 12574,
- "hierarchy": 12575,
- "subdivision": 12576,
- "freshwater": 12577,
- "giuseppe": 12578,
- "aloud": 12579,
- "reyes": 12580,
- "qatar": 12581,
- "marty": 12582,
- "sideways": 12583,
- "utterly": 12584,
- "sexually": 12585,
- "jude": 12586,
- "prayers": 12587,
- "mccarthy": 12588,
- "softball": 12589,
- "blend": 12590,
- "damien": 12591,
- "##gging": 12592,
- "##metric": 12593,
- "wholly": 12594,
- "erupted": 12595,
- "lebanese": 12596,
- "negro": 12597,
- "revenues": 12598,
- "tasted": 12599,
- "comparative": 12600,
- "teamed": 12601,
- "transaction": 12602,
- "labeled": 12603,
- "maori": 12604,
- "sovereignty": 12605,
- "parkway": 12606,
- "trauma": 12607,
- "gran": 12608,
- "malay": 12609,
- "121": 12610,
- "advancement": 12611,
- "descendant": 12612,
- "2020": 12613,
- "buzz": 12614,
- "salvation": 12615,
- "inventory": 12616,
- "symbolic": 12617,
- "##making": 12618,
- "antarctica": 12619,
- "mps": 12620,
- "##gas": 12621,
- "##bro": 12622,
- "mohammed": 12623,
- "myanmar": 12624,
- "holt": 12625,
- "submarines": 12626,
- "tones": 12627,
- "##lman": 12628,
- "locker": 12629,
- "patriarch": 12630,
- "bangkok": 12631,
- "emerson": 12632,
- "remarks": 12633,
- "predators": 12634,
- "kin": 12635,
- "afghan": 12636,
- "confession": 12637,
- "norwich": 12638,
- "rental": 12639,
- "emerge": 12640,
- "advantages": 12641,
- "##zel": 12642,
- "rca": 12643,
- "##hold": 12644,
- "shortened": 12645,
- "storms": 12646,
- "aidan": 12647,
- "##matic": 12648,
- "autonomy": 12649,
- "compliance": 12650,
- "##quet": 12651,
- "dudley": 12652,
- "atp": 12653,
- "##osis": 12654,
- "1803": 12655,
- "motto": 12656,
- "documentation": 12657,
- "summary": 12658,
- "professors": 12659,
- "spectacular": 12660,
- "christina": 12661,
- "archdiocese": 12662,
- "flashing": 12663,
- "innocence": 12664,
- "remake": 12665,
- "##dell": 12666,
- "psychic": 12667,
- "reef": 12668,
- "scare": 12669,
- "employ": 12670,
- "rs": 12671,
- "sticks": 12672,
- "meg": 12673,
- "gus": 12674,
- "leans": 12675,
- "##ude": 12676,
- "accompany": 12677,
- "bergen": 12678,
- "tomas": 12679,
- "##iko": 12680,
- "doom": 12681,
- "wages": 12682,
- "pools": 12683,
- "##nch": 12684,
- "##bes": 12685,
- "breasts": 12686,
- "scholarly": 12687,
- "alison": 12688,
- "outline": 12689,
- "brittany": 12690,
- "breakthrough": 12691,
- "willis": 12692,
- "realistic": 12693,
- "##cut": 12694,
- "##boro": 12695,
- "competitor": 12696,
- "##stan": 12697,
- "pike": 12698,
- "picnic": 12699,
- "icon": 12700,
- "designing": 12701,
- "commercials": 12702,
- "washing": 12703,
- "villain": 12704,
- "skiing": 12705,
- "micro": 12706,
- "costumes": 12707,
- "auburn": 12708,
- "halted": 12709,
- "executives": 12710,
- "##hat": 12711,
- "logistics": 12712,
- "cycles": 12713,
- "vowel": 12714,
- "applicable": 12715,
- "barrett": 12716,
- "exclaimed": 12717,
- "eurovision": 12718,
- "eternity": 12719,
- "ramon": 12720,
- "##umi": 12721,
- "##lls": 12722,
- "modifications": 12723,
- "sweeping": 12724,
- "disgust": 12725,
- "##uck": 12726,
- "torch": 12727,
- "aviv": 12728,
- "ensuring": 12729,
- "rude": 12730,
- "dusty": 12731,
- "sonic": 12732,
- "donovan": 12733,
- "outskirts": 12734,
- "cu": 12735,
- "pathway": 12736,
- "##band": 12737,
- "##gun": 12738,
- "##lines": 12739,
- "disciplines": 12740,
- "acids": 12741,
- "cadet": 12742,
- "paired": 12743,
- "##40": 12744,
- "sketches": 12745,
- "##sive": 12746,
- "marriages": 12747,
- "##⁺": 12748,
- "folding": 12749,
- "peers": 12750,
- "slovak": 12751,
- "implies": 12752,
- "admired": 12753,
- "##beck": 12754,
- "1880s": 12755,
- "leopold": 12756,
- "instinct": 12757,
- "attained": 12758,
- "weston": 12759,
- "megan": 12760,
- "horace": 12761,
- "##ination": 12762,
- "dorsal": 12763,
- "ingredients": 12764,
- "evolutionary": 12765,
- "##its": 12766,
- "complications": 12767,
- "deity": 12768,
- "lethal": 12769,
- "brushing": 12770,
- "levy": 12771,
- "deserted": 12772,
- "institutes": 12773,
- "posthumously": 12774,
- "delivering": 12775,
- "telescope": 12776,
- "coronation": 12777,
- "motivated": 12778,
- "rapids": 12779,
- "luc": 12780,
- "flicked": 12781,
- "pays": 12782,
- "volcano": 12783,
- "tanner": 12784,
- "weighed": 12785,
- "##nica": 12786,
- "crowds": 12787,
- "frankie": 12788,
- "gifted": 12789,
- "addressing": 12790,
- "granddaughter": 12791,
- "winding": 12792,
- "##rna": 12793,
- "constantine": 12794,
- "gomez": 12795,
- "##front": 12796,
- "landscapes": 12797,
- "rudolf": 12798,
- "anthropology": 12799,
- "slate": 12800,
- "werewolf": 12801,
- "##lio": 12802,
- "astronomy": 12803,
- "circa": 12804,
- "rouge": 12805,
- "dreaming": 12806,
- "sack": 12807,
- "knelt": 12808,
- "drowned": 12809,
- "naomi": 12810,
- "prolific": 12811,
- "tracked": 12812,
- "freezing": 12813,
- "herb": 12814,
- "##dium": 12815,
- "agony": 12816,
- "randall": 12817,
- "twisting": 12818,
- "wendy": 12819,
- "deposit": 12820,
- "touches": 12821,
- "vein": 12822,
- "wheeler": 12823,
- "##bbled": 12824,
- "##bor": 12825,
- "batted": 12826,
- "retaining": 12827,
- "tire": 12828,
- "presently": 12829,
- "compare": 12830,
- "specification": 12831,
- "daemon": 12832,
- "nigel": 12833,
- "##grave": 12834,
- "merry": 12835,
- "recommendation": 12836,
- "czechoslovakia": 12837,
- "sandra": 12838,
- "ng": 12839,
- "roma": 12840,
- "##sts": 12841,
- "lambert": 12842,
- "inheritance": 12843,
- "sheikh": 12844,
- "winchester": 12845,
- "cries": 12846,
- "examining": 12847,
- "##yle": 12848,
- "comeback": 12849,
- "cuisine": 12850,
- "nave": 12851,
- "##iv": 12852,
- "ko": 12853,
- "retrieve": 12854,
- "tomatoes": 12855,
- "barker": 12856,
- "polished": 12857,
- "defining": 12858,
- "irene": 12859,
- "lantern": 12860,
- "personalities": 12861,
- "begging": 12862,
- "tract": 12863,
- "swore": 12864,
- "1809": 12865,
- "175": 12866,
- "##gic": 12867,
- "omaha": 12868,
- "brotherhood": 12869,
- "##rley": 12870,
- "haiti": 12871,
- "##ots": 12872,
- "exeter": 12873,
- "##ete": 12874,
- "##zia": 12875,
- "steele": 12876,
- "dumb": 12877,
- "pearson": 12878,
- "210": 12879,
- "surveyed": 12880,
- "elisabeth": 12881,
- "trends": 12882,
- "##ef": 12883,
- "fritz": 12884,
- "##rf": 12885,
- "premium": 12886,
- "bugs": 12887,
- "fraction": 12888,
- "calmly": 12889,
- "viking": 12890,
- "##birds": 12891,
- "tug": 12892,
- "inserted": 12893,
- "unusually": 12894,
- "##ield": 12895,
- "confronted": 12896,
- "distress": 12897,
- "crashing": 12898,
- "brent": 12899,
- "turks": 12900,
- "resign": 12901,
- "##olo": 12902,
- "cambodia": 12903,
- "gabe": 12904,
- "sauce": 12905,
- "##kal": 12906,
- "evelyn": 12907,
- "116": 12908,
- "extant": 12909,
- "clusters": 12910,
- "quarry": 12911,
- "teenagers": 12912,
- "luna": 12913,
- "##lers": 12914,
- "##ister": 12915,
- "affiliation": 12916,
- "drill": 12917,
- "##ashi": 12918,
- "panthers": 12919,
- "scenic": 12920,
- "libya": 12921,
- "anita": 12922,
- "strengthen": 12923,
- "inscriptions": 12924,
- "##cated": 12925,
- "lace": 12926,
- "sued": 12927,
- "judith": 12928,
- "riots": 12929,
- "##uted": 12930,
- "mint": 12931,
- "##eta": 12932,
- "preparations": 12933,
- "midst": 12934,
- "dub": 12935,
- "challenger": 12936,
- "##vich": 12937,
- "mock": 12938,
- "cf": 12939,
- "displaced": 12940,
- "wicket": 12941,
- "breaths": 12942,
- "enables": 12943,
- "schmidt": 12944,
- "analyst": 12945,
- "##lum": 12946,
- "ag": 12947,
- "highlight": 12948,
- "automotive": 12949,
- "axe": 12950,
- "josef": 12951,
- "newark": 12952,
- "sufficiently": 12953,
- "resembles": 12954,
- "50th": 12955,
- "##pal": 12956,
- "flushed": 12957,
- "mum": 12958,
- "traits": 12959,
- "##ante": 12960,
- "commodore": 12961,
- "incomplete": 12962,
- "warming": 12963,
- "titular": 12964,
- "ceremonial": 12965,
- "ethical": 12966,
- "118": 12967,
- "celebrating": 12968,
- "eighteenth": 12969,
- "cao": 12970,
- "lima": 12971,
- "medalist": 12972,
- "mobility": 12973,
- "strips": 12974,
- "snakes": 12975,
- "##city": 12976,
- "miniature": 12977,
- "zagreb": 12978,
- "barton": 12979,
- "escapes": 12980,
- "umbrella": 12981,
- "automated": 12982,
- "doubted": 12983,
- "differs": 12984,
- "cooled": 12985,
- "georgetown": 12986,
- "dresden": 12987,
- "cooked": 12988,
- "fade": 12989,
- "wyatt": 12990,
- "rna": 12991,
- "jacobs": 12992,
- "carlton": 12993,
- "abundant": 12994,
- "stereo": 12995,
- "boost": 12996,
- "madras": 12997,
- "inning": 12998,
- "##hia": 12999,
- "spur": 13000,
- "ip": 13001,
- "malayalam": 13002,
- "begged": 13003,
- "osaka": 13004,
- "groan": 13005,
- "escaping": 13006,
- "charging": 13007,
- "dose": 13008,
- "vista": 13009,
- "##aj": 13010,
- "bud": 13011,
- "papa": 13012,
- "communists": 13013,
- "advocates": 13014,
- "edged": 13015,
- "tri": 13016,
- "##cent": 13017,
- "resemble": 13018,
- "peaking": 13019,
- "necklace": 13020,
- "fried": 13021,
- "montenegro": 13022,
- "saxony": 13023,
- "goose": 13024,
- "glances": 13025,
- "stuttgart": 13026,
- "curator": 13027,
- "recruit": 13028,
- "grocery": 13029,
- "sympathetic": 13030,
- "##tting": 13031,
- "##fort": 13032,
- "127": 13033,
- "lotus": 13034,
- "randolph": 13035,
- "ancestor": 13036,
- "##rand": 13037,
- "succeeding": 13038,
- "jupiter": 13039,
- "1798": 13040,
- "macedonian": 13041,
- "##heads": 13042,
- "hiking": 13043,
- "1808": 13044,
- "handing": 13045,
- "fischer": 13046,
- "##itive": 13047,
- "garbage": 13048,
- "node": 13049,
- "##pies": 13050,
- "prone": 13051,
- "singular": 13052,
- "papua": 13053,
- "inclined": 13054,
- "attractions": 13055,
- "italia": 13056,
- "pouring": 13057,
- "motioned": 13058,
- "grandma": 13059,
- "garnered": 13060,
- "jacksonville": 13061,
- "corp": 13062,
- "ego": 13063,
- "ringing": 13064,
- "aluminum": 13065,
- "##hausen": 13066,
- "ordering": 13067,
- "##foot": 13068,
- "drawer": 13069,
- "traders": 13070,
- "synagogue": 13071,
- "##play": 13072,
- "##kawa": 13073,
- "resistant": 13074,
- "wandering": 13075,
- "fragile": 13076,
- "fiona": 13077,
- "teased": 13078,
- "var": 13079,
- "hardcore": 13080,
- "soaked": 13081,
- "jubilee": 13082,
- "decisive": 13083,
- "exposition": 13084,
- "mercer": 13085,
- "poster": 13086,
- "valencia": 13087,
- "hale": 13088,
- "kuwait": 13089,
- "1811": 13090,
- "##ises": 13091,
- "##wr": 13092,
- "##eed": 13093,
- "tavern": 13094,
- "gamma": 13095,
- "122": 13096,
- "johan": 13097,
- "##uer": 13098,
- "airways": 13099,
- "amino": 13100,
- "gil": 13101,
- "##ury": 13102,
- "vocational": 13103,
- "domains": 13104,
- "torres": 13105,
- "##sp": 13106,
- "generator": 13107,
- "folklore": 13108,
- "outcomes": 13109,
- "##keeper": 13110,
- "canberra": 13111,
- "shooter": 13112,
- "fl": 13113,
- "beams": 13114,
- "confrontation": 13115,
- "##lling": 13116,
- "##gram": 13117,
- "feb": 13118,
- "aligned": 13119,
- "forestry": 13120,
- "pipeline": 13121,
- "jax": 13122,
- "motorway": 13123,
- "conception": 13124,
- "decay": 13125,
- "##tos": 13126,
- "coffin": 13127,
- "##cott": 13128,
- "stalin": 13129,
- "1805": 13130,
- "escorted": 13131,
- "minded": 13132,
- "##nam": 13133,
- "sitcom": 13134,
- "purchasing": 13135,
- "twilight": 13136,
- "veronica": 13137,
- "additions": 13138,
- "passive": 13139,
- "tensions": 13140,
- "straw": 13141,
- "123": 13142,
- "frequencies": 13143,
- "1804": 13144,
- "refugee": 13145,
- "cultivation": 13146,
- "##iate": 13147,
- "christie": 13148,
- "clary": 13149,
- "bulletin": 13150,
- "crept": 13151,
- "disposal": 13152,
- "##rich": 13153,
- "##zong": 13154,
- "processor": 13155,
- "crescent": 13156,
- "##rol": 13157,
- "bmw": 13158,
- "emphasized": 13159,
- "whale": 13160,
- "nazis": 13161,
- "aurora": 13162,
- "##eng": 13163,
- "dwelling": 13164,
- "hauled": 13165,
- "sponsors": 13166,
- "toledo": 13167,
- "mega": 13168,
- "ideology": 13169,
- "theatres": 13170,
- "tessa": 13171,
- "cerambycidae": 13172,
- "saves": 13173,
- "turtle": 13174,
- "cone": 13175,
- "suspects": 13176,
- "kara": 13177,
- "rusty": 13178,
- "yelling": 13179,
- "greeks": 13180,
- "mozart": 13181,
- "shades": 13182,
- "cocked": 13183,
- "participant": 13184,
- "##tro": 13185,
- "shire": 13186,
- "spit": 13187,
- "freeze": 13188,
- "necessity": 13189,
- "##cos": 13190,
- "inmates": 13191,
- "nielsen": 13192,
- "councillors": 13193,
- "loaned": 13194,
- "uncommon": 13195,
- "omar": 13196,
- "peasants": 13197,
- "botanical": 13198,
- "offspring": 13199,
- "daniels": 13200,
- "formations": 13201,
- "jokes": 13202,
- "1794": 13203,
- "pioneers": 13204,
- "sigma": 13205,
- "licensing": 13206,
- "##sus": 13207,
- "wheelchair": 13208,
- "polite": 13209,
- "1807": 13210,
- "liquor": 13211,
- "pratt": 13212,
- "trustee": 13213,
- "##uta": 13214,
- "forewings": 13215,
- "balloon": 13216,
- "##zz": 13217,
- "kilometre": 13218,
- "camping": 13219,
- "explicit": 13220,
- "casually": 13221,
- "shawn": 13222,
- "foolish": 13223,
- "teammates": 13224,
- "nm": 13225,
- "hassan": 13226,
- "carrie": 13227,
- "judged": 13228,
- "satisfy": 13229,
- "vanessa": 13230,
- "knives": 13231,
- "selective": 13232,
- "cnn": 13233,
- "flowed": 13234,
- "##lice": 13235,
- "eclipse": 13236,
- "stressed": 13237,
- "eliza": 13238,
- "mathematician": 13239,
- "cease": 13240,
- "cultivated": 13241,
- "##roy": 13242,
- "commissions": 13243,
- "browns": 13244,
- "##ania": 13245,
- "destroyers": 13246,
- "sheridan": 13247,
- "meadow": 13248,
- "##rius": 13249,
- "minerals": 13250,
- "##cial": 13251,
- "downstream": 13252,
- "clash": 13253,
- "gram": 13254,
- "memoirs": 13255,
- "ventures": 13256,
- "baha": 13257,
- "seymour": 13258,
- "archie": 13259,
- "midlands": 13260,
- "edith": 13261,
- "fare": 13262,
- "flynn": 13263,
- "invite": 13264,
- "canceled": 13265,
- "tiles": 13266,
- "stabbed": 13267,
- "boulder": 13268,
- "incorporate": 13269,
- "amended": 13270,
- "camden": 13271,
- "facial": 13272,
- "mollusk": 13273,
- "unreleased": 13274,
- "descriptions": 13275,
- "yoga": 13276,
- "grabs": 13277,
- "550": 13278,
- "raises": 13279,
- "ramp": 13280,
- "shiver": 13281,
- "##rose": 13282,
- "coined": 13283,
- "pioneering": 13284,
- "tunes": 13285,
- "qing": 13286,
- "warwick": 13287,
- "tops": 13288,
- "119": 13289,
- "melanie": 13290,
- "giles": 13291,
- "##rous": 13292,
- "wandered": 13293,
- "##inal": 13294,
- "annexed": 13295,
- "nov": 13296,
- "30th": 13297,
- "unnamed": 13298,
- "##ished": 13299,
- "organizational": 13300,
- "airplane": 13301,
- "normandy": 13302,
- "stoke": 13303,
- "whistle": 13304,
- "blessing": 13305,
- "violations": 13306,
- "chased": 13307,
- "holders": 13308,
- "shotgun": 13309,
- "##ctic": 13310,
- "outlet": 13311,
- "reactor": 13312,
- "##vik": 13313,
- "tires": 13314,
- "tearing": 13315,
- "shores": 13316,
- "fortified": 13317,
- "mascot": 13318,
- "constituencies": 13319,
- "nc": 13320,
- "columnist": 13321,
- "productive": 13322,
- "tibet": 13323,
- "##rta": 13324,
- "lineage": 13325,
- "hooked": 13326,
- "oct": 13327,
- "tapes": 13328,
- "judging": 13329,
- "cody": 13330,
- "##gger": 13331,
- "hansen": 13332,
- "kashmir": 13333,
- "triggered": 13334,
- "##eva": 13335,
- "solved": 13336,
- "cliffs": 13337,
- "##tree": 13338,
- "resisted": 13339,
- "anatomy": 13340,
- "protesters": 13341,
- "transparent": 13342,
- "implied": 13343,
- "##iga": 13344,
- "injection": 13345,
- "mattress": 13346,
- "excluding": 13347,
- "##mbo": 13348,
- "defenses": 13349,
- "helpless": 13350,
- "devotion": 13351,
- "##elli": 13352,
- "growl": 13353,
- "liberals": 13354,
- "weber": 13355,
- "phenomena": 13356,
- "atoms": 13357,
- "plug": 13358,
- "##iff": 13359,
- "mortality": 13360,
- "apprentice": 13361,
- "howe": 13362,
- "convincing": 13363,
- "aaa": 13364,
- "swimmer": 13365,
- "barber": 13366,
- "leone": 13367,
- "promptly": 13368,
- "sodium": 13369,
- "def": 13370,
- "nowadays": 13371,
- "arise": 13372,
- "##oning": 13373,
- "gloucester": 13374,
- "corrected": 13375,
- "dignity": 13376,
- "norm": 13377,
- "erie": 13378,
- "##ders": 13379,
- "elders": 13380,
- "evacuated": 13381,
- "sylvia": 13382,
- "compression": 13383,
- "##yar": 13384,
- "hartford": 13385,
- "pose": 13386,
- "backpack": 13387,
- "reasoning": 13388,
- "accepts": 13389,
- "24th": 13390,
- "wipe": 13391,
- "millimetres": 13392,
- "marcel": 13393,
- "##oda": 13394,
- "dodgers": 13395,
- "albion": 13396,
- "1790": 13397,
- "overwhelmed": 13398,
- "aerospace": 13399,
- "oaks": 13400,
- "1795": 13401,
- "showcase": 13402,
- "acknowledge": 13403,
- "recovering": 13404,
- "nolan": 13405,
- "ashe": 13406,
- "hurts": 13407,
- "geology": 13408,
- "fashioned": 13409,
- "disappearance": 13410,
- "farewell": 13411,
- "swollen": 13412,
- "shrug": 13413,
- "marquis": 13414,
- "wimbledon": 13415,
- "124": 13416,
- "rue": 13417,
- "1792": 13418,
- "commemorate": 13419,
- "reduces": 13420,
- "experiencing": 13421,
- "inevitable": 13422,
- "calcutta": 13423,
- "intel": 13424,
- "##court": 13425,
- "murderer": 13426,
- "sticking": 13427,
- "fisheries": 13428,
- "imagery": 13429,
- "bloom": 13430,
- "280": 13431,
- "brake": 13432,
- "##inus": 13433,
- "gustav": 13434,
- "hesitation": 13435,
- "memorable": 13436,
- "po": 13437,
- "viral": 13438,
- "beans": 13439,
- "accidents": 13440,
- "tunisia": 13441,
- "antenna": 13442,
- "spilled": 13443,
- "consort": 13444,
- "treatments": 13445,
- "aye": 13446,
- "perimeter": 13447,
- "##gard": 13448,
- "donation": 13449,
- "hostage": 13450,
- "migrated": 13451,
- "banker": 13452,
- "addiction": 13453,
- "apex": 13454,
- "lil": 13455,
- "trout": 13456,
- "##ously": 13457,
- "conscience": 13458,
- "##nova": 13459,
- "rams": 13460,
- "sands": 13461,
- "genome": 13462,
- "passionate": 13463,
- "troubles": 13464,
- "##lets": 13465,
- "##set": 13466,
- "amid": 13467,
- "##ibility": 13468,
- "##ret": 13469,
- "higgins": 13470,
- "exceed": 13471,
- "vikings": 13472,
- "##vie": 13473,
- "payne": 13474,
- "##zan": 13475,
- "muscular": 13476,
- "##ste": 13477,
- "defendant": 13478,
- "sucking": 13479,
- "##wal": 13480,
- "ibrahim": 13481,
- "fuselage": 13482,
- "claudia": 13483,
- "vfl": 13484,
- "europeans": 13485,
- "snails": 13486,
- "interval": 13487,
- "##garh": 13488,
- "preparatory": 13489,
- "statewide": 13490,
- "tasked": 13491,
- "lacrosse": 13492,
- "viktor": 13493,
- "##lation": 13494,
- "angola": 13495,
- "##hra": 13496,
- "flint": 13497,
- "implications": 13498,
- "employs": 13499,
- "teens": 13500,
- "patrons": 13501,
- "stall": 13502,
- "weekends": 13503,
- "barriers": 13504,
- "scrambled": 13505,
- "nucleus": 13506,
- "tehran": 13507,
- "jenna": 13508,
- "parsons": 13509,
- "lifelong": 13510,
- "robots": 13511,
- "displacement": 13512,
- "5000": 13513,
- "##bles": 13514,
- "precipitation": 13515,
- "##gt": 13516,
- "knuckles": 13517,
- "clutched": 13518,
- "1802": 13519,
- "marrying": 13520,
- "ecology": 13521,
- "marx": 13522,
- "accusations": 13523,
- "declare": 13524,
- "scars": 13525,
- "kolkata": 13526,
- "mat": 13527,
- "meadows": 13528,
- "bermuda": 13529,
- "skeleton": 13530,
- "finalists": 13531,
- "vintage": 13532,
- "crawl": 13533,
- "coordinate": 13534,
- "affects": 13535,
- "subjected": 13536,
- "orchestral": 13537,
- "mistaken": 13538,
- "##tc": 13539,
- "mirrors": 13540,
- "dipped": 13541,
- "relied": 13542,
- "260": 13543,
- "arches": 13544,
- "candle": 13545,
- "##nick": 13546,
- "incorporating": 13547,
- "wildly": 13548,
- "fond": 13549,
- "basilica": 13550,
- "owl": 13551,
- "fringe": 13552,
- "rituals": 13553,
- "whispering": 13554,
- "stirred": 13555,
- "feud": 13556,
- "tertiary": 13557,
- "slick": 13558,
- "goat": 13559,
- "honorable": 13560,
- "whereby": 13561,
- "skip": 13562,
- "ricardo": 13563,
- "stripes": 13564,
- "parachute": 13565,
- "adjoining": 13566,
- "submerged": 13567,
- "synthesizer": 13568,
- "##gren": 13569,
- "intend": 13570,
- "positively": 13571,
- "ninety": 13572,
- "phi": 13573,
- "beaver": 13574,
- "partition": 13575,
- "fellows": 13576,
- "alexis": 13577,
- "prohibition": 13578,
- "carlisle": 13579,
- "bizarre": 13580,
- "fraternity": 13581,
- "##bre": 13582,
- "doubts": 13583,
- "icy": 13584,
- "cbc": 13585,
- "aquatic": 13586,
- "sneak": 13587,
- "sonny": 13588,
- "combines": 13589,
- "airports": 13590,
- "crude": 13591,
- "supervised": 13592,
- "spatial": 13593,
- "merge": 13594,
- "alfonso": 13595,
- "##bic": 13596,
- "corrupt": 13597,
- "scan": 13598,
- "undergo": 13599,
- "##ams": 13600,
- "disabilities": 13601,
- "colombian": 13602,
- "comparing": 13603,
- "dolphins": 13604,
- "perkins": 13605,
- "##lish": 13606,
- "reprinted": 13607,
- "unanimous": 13608,
- "bounced": 13609,
- "hairs": 13610,
- "underworld": 13611,
- "midwest": 13612,
- "semester": 13613,
- "bucket": 13614,
- "paperback": 13615,
- "miniseries": 13616,
- "coventry": 13617,
- "demise": 13618,
- "##leigh": 13619,
- "demonstrations": 13620,
- "sensor": 13621,
- "rotating": 13622,
- "yan": 13623,
- "##hler": 13624,
- "arrange": 13625,
- "soils": 13626,
- "##idge": 13627,
- "hyderabad": 13628,
- "labs": 13629,
- "##dr": 13630,
- "brakes": 13631,
- "grandchildren": 13632,
- "##nde": 13633,
- "negotiated": 13634,
- "rover": 13635,
- "ferrari": 13636,
- "continuation": 13637,
- "directorate": 13638,
- "augusta": 13639,
- "stevenson": 13640,
- "counterpart": 13641,
- "gore": 13642,
- "##rda": 13643,
- "nursery": 13644,
- "rican": 13645,
- "ave": 13646,
- "collectively": 13647,
- "broadly": 13648,
- "pastoral": 13649,
- "repertoire": 13650,
- "asserted": 13651,
- "discovering": 13652,
- "nordic": 13653,
- "styled": 13654,
- "fiba": 13655,
- "cunningham": 13656,
- "harley": 13657,
- "middlesex": 13658,
- "survives": 13659,
- "tumor": 13660,
- "tempo": 13661,
- "zack": 13662,
- "aiming": 13663,
- "lok": 13664,
- "urgent": 13665,
- "##rade": 13666,
- "##nto": 13667,
- "devils": 13668,
- "##ement": 13669,
- "contractor": 13670,
- "turin": 13671,
- "##wl": 13672,
- "##ool": 13673,
- "bliss": 13674,
- "repaired": 13675,
- "simmons": 13676,
- "moan": 13677,
- "astronomical": 13678,
- "cr": 13679,
- "negotiate": 13680,
- "lyric": 13681,
- "1890s": 13682,
- "lara": 13683,
- "bred": 13684,
- "clad": 13685,
- "angus": 13686,
- "pbs": 13687,
- "##ience": 13688,
- "engineered": 13689,
- "posed": 13690,
- "##lk": 13691,
- "hernandez": 13692,
- "possessions": 13693,
- "elbows": 13694,
- "psychiatric": 13695,
- "strokes": 13696,
- "confluence": 13697,
- "electorate": 13698,
- "lifts": 13699,
- "campuses": 13700,
- "lava": 13701,
- "alps": 13702,
- "##ep": 13703,
- "##ution": 13704,
- "##date": 13705,
- "physicist": 13706,
- "woody": 13707,
- "##page": 13708,
- "##ographic": 13709,
- "##itis": 13710,
- "juliet": 13711,
- "reformation": 13712,
- "sparhawk": 13713,
- "320": 13714,
- "complement": 13715,
- "suppressed": 13716,
- "jewel": 13717,
- "##½": 13718,
- "floated": 13719,
- "##kas": 13720,
- "continuity": 13721,
- "sadly": 13722,
- "##ische": 13723,
- "inability": 13724,
- "melting": 13725,
- "scanning": 13726,
- "paula": 13727,
- "flour": 13728,
- "judaism": 13729,
- "safer": 13730,
- "vague": 13731,
- "##lm": 13732,
- "solving": 13733,
- "curb": 13734,
- "##stown": 13735,
- "financially": 13736,
- "gable": 13737,
- "bees": 13738,
- "expired": 13739,
- "miserable": 13740,
- "cassidy": 13741,
- "dominion": 13742,
- "1789": 13743,
- "cupped": 13744,
- "145": 13745,
- "robbery": 13746,
- "facto": 13747,
- "amos": 13748,
- "warden": 13749,
- "resume": 13750,
- "tallest": 13751,
- "marvin": 13752,
- "ing": 13753,
- "pounded": 13754,
- "usd": 13755,
- "declaring": 13756,
- "gasoline": 13757,
- "##aux": 13758,
- "darkened": 13759,
- "270": 13760,
- "650": 13761,
- "sophomore": 13762,
- "##mere": 13763,
- "erection": 13764,
- "gossip": 13765,
- "televised": 13766,
- "risen": 13767,
- "dial": 13768,
- "##eu": 13769,
- "pillars": 13770,
- "##link": 13771,
- "passages": 13772,
- "profound": 13773,
- "##tina": 13774,
- "arabian": 13775,
- "ashton": 13776,
- "silicon": 13777,
- "nail": 13778,
- "##ead": 13779,
- "##lated": 13780,
- "##wer": 13781,
- "##hardt": 13782,
- "fleming": 13783,
- "firearms": 13784,
- "ducked": 13785,
- "circuits": 13786,
- "blows": 13787,
- "waterloo": 13788,
- "titans": 13789,
- "##lina": 13790,
- "atom": 13791,
- "fireplace": 13792,
- "cheshire": 13793,
- "financed": 13794,
- "activation": 13795,
- "algorithms": 13796,
- "##zzi": 13797,
- "constituent": 13798,
- "catcher": 13799,
- "cherokee": 13800,
- "partnerships": 13801,
- "sexuality": 13802,
- "platoon": 13803,
- "tragic": 13804,
- "vivian": 13805,
- "guarded": 13806,
- "whiskey": 13807,
- "meditation": 13808,
- "poetic": 13809,
- "##late": 13810,
- "##nga": 13811,
- "##ake": 13812,
- "porto": 13813,
- "listeners": 13814,
- "dominance": 13815,
- "kendra": 13816,
- "mona": 13817,
- "chandler": 13818,
- "factions": 13819,
- "22nd": 13820,
- "salisbury": 13821,
- "attitudes": 13822,
- "derivative": 13823,
- "##ido": 13824,
- "##haus": 13825,
- "intake": 13826,
- "paced": 13827,
- "javier": 13828,
- "illustrator": 13829,
- "barrels": 13830,
- "bias": 13831,
- "cockpit": 13832,
- "burnett": 13833,
- "dreamed": 13834,
- "ensuing": 13835,
- "##anda": 13836,
- "receptors": 13837,
- "someday": 13838,
- "hawkins": 13839,
- "mattered": 13840,
- "##lal": 13841,
- "slavic": 13842,
- "1799": 13843,
- "jesuit": 13844,
- "cameroon": 13845,
- "wasted": 13846,
- "tai": 13847,
- "wax": 13848,
- "lowering": 13849,
- "victorious": 13850,
- "freaking": 13851,
- "outright": 13852,
- "hancock": 13853,
- "librarian": 13854,
- "sensing": 13855,
- "bald": 13856,
- "calcium": 13857,
- "myers": 13858,
- "tablet": 13859,
- "announcing": 13860,
- "barack": 13861,
- "shipyard": 13862,
- "pharmaceutical": 13863,
- "##uan": 13864,
- "greenwich": 13865,
- "flush": 13866,
- "medley": 13867,
- "patches": 13868,
- "wolfgang": 13869,
- "pt": 13870,
- "speeches": 13871,
- "acquiring": 13872,
- "exams": 13873,
- "nikolai": 13874,
- "##gg": 13875,
- "hayden": 13876,
- "kannada": 13877,
- "##type": 13878,
- "reilly": 13879,
- "##pt": 13880,
- "waitress": 13881,
- "abdomen": 13882,
- "devastated": 13883,
- "capped": 13884,
- "pseudonym": 13885,
- "pharmacy": 13886,
- "fulfill": 13887,
- "paraguay": 13888,
- "1796": 13889,
- "clicked": 13890,
- "##trom": 13891,
- "archipelago": 13892,
- "syndicated": 13893,
- "##hman": 13894,
- "lumber": 13895,
- "orgasm": 13896,
- "rejection": 13897,
- "clifford": 13898,
- "lorraine": 13899,
- "advent": 13900,
- "mafia": 13901,
- "rodney": 13902,
- "brock": 13903,
- "##ght": 13904,
- "##used": 13905,
- "##elia": 13906,
- "cassette": 13907,
- "chamberlain": 13908,
- "despair": 13909,
- "mongolia": 13910,
- "sensors": 13911,
- "developmental": 13912,
- "upstream": 13913,
- "##eg": 13914,
- "##alis": 13915,
- "spanning": 13916,
- "165": 13917,
- "trombone": 13918,
- "basque": 13919,
- "seeded": 13920,
- "interred": 13921,
- "renewable": 13922,
- "rhys": 13923,
- "leapt": 13924,
- "revision": 13925,
- "molecule": 13926,
- "##ages": 13927,
- "chord": 13928,
- "vicious": 13929,
- "nord": 13930,
- "shivered": 13931,
- "23rd": 13932,
- "arlington": 13933,
- "debts": 13934,
- "corpus": 13935,
- "sunrise": 13936,
- "bays": 13937,
- "blackburn": 13938,
- "centimetres": 13939,
- "##uded": 13940,
- "shuddered": 13941,
- "gm": 13942,
- "strangely": 13943,
- "gripping": 13944,
- "cartoons": 13945,
- "isabelle": 13946,
- "orbital": 13947,
- "##ppa": 13948,
- "seals": 13949,
- "proving": 13950,
- "##lton": 13951,
- "refusal": 13952,
- "strengthened": 13953,
- "bust": 13954,
- "assisting": 13955,
- "baghdad": 13956,
- "batsman": 13957,
- "portrayal": 13958,
- "mara": 13959,
- "pushes": 13960,
- "spears": 13961,
- "og": 13962,
- "##cock": 13963,
- "reside": 13964,
- "nathaniel": 13965,
- "brennan": 13966,
- "1776": 13967,
- "confirmation": 13968,
- "caucus": 13969,
- "##worthy": 13970,
- "markings": 13971,
- "yemen": 13972,
- "nobles": 13973,
- "ku": 13974,
- "lazy": 13975,
- "viewer": 13976,
- "catalan": 13977,
- "encompasses": 13978,
- "sawyer": 13979,
- "##fall": 13980,
- "sparked": 13981,
- "substances": 13982,
- "patents": 13983,
- "braves": 13984,
- "arranger": 13985,
- "evacuation": 13986,
- "sergio": 13987,
- "persuade": 13988,
- "dover": 13989,
- "tolerance": 13990,
- "penguin": 13991,
- "cum": 13992,
- "jockey": 13993,
- "insufficient": 13994,
- "townships": 13995,
- "occupying": 13996,
- "declining": 13997,
- "plural": 13998,
- "processed": 13999,
- "projection": 14000,
- "puppet": 14001,
- "flanders": 14002,
- "introduces": 14003,
- "liability": 14004,
- "##yon": 14005,
- "gymnastics": 14006,
- "antwerp": 14007,
- "taipei": 14008,
- "hobart": 14009,
- "candles": 14010,
- "jeep": 14011,
- "wes": 14012,
- "observers": 14013,
- "126": 14014,
- "chaplain": 14015,
- "bundle": 14016,
- "glorious": 14017,
- "##hine": 14018,
- "hazel": 14019,
- "flung": 14020,
- "sol": 14021,
- "excavations": 14022,
- "dumped": 14023,
- "stares": 14024,
- "sh": 14025,
- "bangalore": 14026,
- "triangular": 14027,
- "icelandic": 14028,
- "intervals": 14029,
- "expressing": 14030,
- "turbine": 14031,
- "##vers": 14032,
- "songwriting": 14033,
- "crafts": 14034,
- "##igo": 14035,
- "jasmine": 14036,
- "ditch": 14037,
- "rite": 14038,
- "##ways": 14039,
- "entertaining": 14040,
- "comply": 14041,
- "sorrow": 14042,
- "wrestlers": 14043,
- "basel": 14044,
- "emirates": 14045,
- "marian": 14046,
- "rivera": 14047,
- "helpful": 14048,
- "##some": 14049,
- "caution": 14050,
- "downward": 14051,
- "networking": 14052,
- "##atory": 14053,
- "##tered": 14054,
- "darted": 14055,
- "genocide": 14056,
- "emergence": 14057,
- "replies": 14058,
- "specializing": 14059,
- "spokesman": 14060,
- "convenient": 14061,
- "unlocked": 14062,
- "fading": 14063,
- "augustine": 14064,
- "concentrations": 14065,
- "resemblance": 14066,
- "elijah": 14067,
- "investigator": 14068,
- "andhra": 14069,
- "##uda": 14070,
- "promotes": 14071,
- "bean": 14072,
- "##rrell": 14073,
- "fleeing": 14074,
- "wan": 14075,
- "simone": 14076,
- "announcer": 14077,
- "##ame": 14078,
- "##bby": 14079,
- "lydia": 14080,
- "weaver": 14081,
- "132": 14082,
- "residency": 14083,
- "modification": 14084,
- "##fest": 14085,
- "stretches": 14086,
- "##ast": 14087,
- "alternatively": 14088,
- "nat": 14089,
- "lowe": 14090,
- "lacks": 14091,
- "##ented": 14092,
- "pam": 14093,
- "tile": 14094,
- "concealed": 14095,
- "inferior": 14096,
- "abdullah": 14097,
- "residences": 14098,
- "tissues": 14099,
- "vengeance": 14100,
- "##ided": 14101,
- "moisture": 14102,
- "peculiar": 14103,
- "groove": 14104,
- "zip": 14105,
- "bologna": 14106,
- "jennings": 14107,
- "ninja": 14108,
- "oversaw": 14109,
- "zombies": 14110,
- "pumping": 14111,
- "batch": 14112,
- "livingston": 14113,
- "emerald": 14114,
- "installations": 14115,
- "1797": 14116,
- "peel": 14117,
- "nitrogen": 14118,
- "rama": 14119,
- "##fying": 14120,
- "##star": 14121,
- "schooling": 14122,
- "strands": 14123,
- "responding": 14124,
- "werner": 14125,
- "##ost": 14126,
- "lime": 14127,
- "casa": 14128,
- "accurately": 14129,
- "targeting": 14130,
- "##rod": 14131,
- "underway": 14132,
- "##uru": 14133,
- "hemisphere": 14134,
- "lester": 14135,
- "##yard": 14136,
- "occupies": 14137,
- "2d": 14138,
- "griffith": 14139,
- "angrily": 14140,
- "reorganized": 14141,
- "##owing": 14142,
- "courtney": 14143,
- "deposited": 14144,
- "##dd": 14145,
- "##30": 14146,
- "estadio": 14147,
- "##ifies": 14148,
- "dunn": 14149,
- "exiled": 14150,
- "##ying": 14151,
- "checks": 14152,
- "##combe": 14153,
- "##о": 14154,
- "##fly": 14155,
- "successes": 14156,
- "unexpectedly": 14157,
- "blu": 14158,
- "assessed": 14159,
- "##flower": 14160,
- "##ه": 14161,
- "observing": 14162,
- "sacked": 14163,
- "spiders": 14164,
- "kn": 14165,
- "##tail": 14166,
- "mu": 14167,
- "nodes": 14168,
- "prosperity": 14169,
- "audrey": 14170,
- "divisional": 14171,
- "155": 14172,
- "broncos": 14173,
- "tangled": 14174,
- "adjust": 14175,
- "feeds": 14176,
- "erosion": 14177,
- "paolo": 14178,
- "surf": 14179,
- "directory": 14180,
- "snatched": 14181,
- "humid": 14182,
- "admiralty": 14183,
- "screwed": 14184,
- "gt": 14185,
- "reddish": 14186,
- "##nese": 14187,
- "modules": 14188,
- "trench": 14189,
- "lamps": 14190,
- "bind": 14191,
- "leah": 14192,
- "bucks": 14193,
- "competes": 14194,
- "##nz": 14195,
- "##form": 14196,
- "transcription": 14197,
- "##uc": 14198,
- "isles": 14199,
- "violently": 14200,
- "clutching": 14201,
- "pga": 14202,
- "cyclist": 14203,
- "inflation": 14204,
- "flats": 14205,
- "ragged": 14206,
- "unnecessary": 14207,
- "##hian": 14208,
- "stubborn": 14209,
- "coordinated": 14210,
- "harriet": 14211,
- "baba": 14212,
- "disqualified": 14213,
- "330": 14214,
- "insect": 14215,
- "wolfe": 14216,
- "##fies": 14217,
- "reinforcements": 14218,
- "rocked": 14219,
- "duel": 14220,
- "winked": 14221,
- "embraced": 14222,
- "bricks": 14223,
- "##raj": 14224,
- "hiatus": 14225,
- "defeats": 14226,
- "pending": 14227,
- "brightly": 14228,
- "jealousy": 14229,
- "##xton": 14230,
- "##hm": 14231,
- "##uki": 14232,
- "lena": 14233,
- "gdp": 14234,
- "colorful": 14235,
- "##dley": 14236,
- "stein": 14237,
- "kidney": 14238,
- "##shu": 14239,
- "underwear": 14240,
- "wanderers": 14241,
- "##haw": 14242,
- "##icus": 14243,
- "guardians": 14244,
- "m³": 14245,
- "roared": 14246,
- "habits": 14247,
- "##wise": 14248,
- "permits": 14249,
- "gp": 14250,
- "uranium": 14251,
- "punished": 14252,
- "disguise": 14253,
- "bundesliga": 14254,
- "elise": 14255,
- "dundee": 14256,
- "erotic": 14257,
- "partisan": 14258,
- "pi": 14259,
- "collectors": 14260,
- "float": 14261,
- "individually": 14262,
- "rendering": 14263,
- "behavioral": 14264,
- "bucharest": 14265,
- "ser": 14266,
- "hare": 14267,
- "valerie": 14268,
- "corporal": 14269,
- "nutrition": 14270,
- "proportional": 14271,
- "##isa": 14272,
- "immense": 14273,
- "##kis": 14274,
- "pavement": 14275,
- "##zie": 14276,
- "##eld": 14277,
- "sutherland": 14278,
- "crouched": 14279,
- "1775": 14280,
- "##lp": 14281,
- "suzuki": 14282,
- "trades": 14283,
- "endurance": 14284,
- "operas": 14285,
- "crosby": 14286,
- "prayed": 14287,
- "priory": 14288,
- "rory": 14289,
- "socially": 14290,
- "##urn": 14291,
- "gujarat": 14292,
- "##pu": 14293,
- "walton": 14294,
- "cube": 14295,
- "pasha": 14296,
- "privilege": 14297,
- "lennon": 14298,
- "floods": 14299,
- "thorne": 14300,
- "waterfall": 14301,
- "nipple": 14302,
- "scouting": 14303,
- "approve": 14304,
- "##lov": 14305,
- "minorities": 14306,
- "voter": 14307,
- "dwight": 14308,
- "extensions": 14309,
- "assure": 14310,
- "ballroom": 14311,
- "slap": 14312,
- "dripping": 14313,
- "privileges": 14314,
- "rejoined": 14315,
- "confessed": 14316,
- "demonstrating": 14317,
- "patriotic": 14318,
- "yell": 14319,
- "investor": 14320,
- "##uth": 14321,
- "pagan": 14322,
- "slumped": 14323,
- "squares": 14324,
- "##cle": 14325,
- "##kins": 14326,
- "confront": 14327,
- "bert": 14328,
- "embarrassment": 14329,
- "##aid": 14330,
- "aston": 14331,
- "urging": 14332,
- "sweater": 14333,
- "starr": 14334,
- "yuri": 14335,
- "brains": 14336,
- "williamson": 14337,
- "commuter": 14338,
- "mortar": 14339,
- "structured": 14340,
- "selfish": 14341,
- "exports": 14342,
- "##jon": 14343,
- "cds": 14344,
- "##him": 14345,
- "unfinished": 14346,
- "##rre": 14347,
- "mortgage": 14348,
- "destinations": 14349,
- "##nagar": 14350,
- "canoe": 14351,
- "solitary": 14352,
- "buchanan": 14353,
- "delays": 14354,
- "magistrate": 14355,
- "fk": 14356,
- "##pling": 14357,
- "motivation": 14358,
- "##lier": 14359,
- "##vier": 14360,
- "recruiting": 14361,
- "assess": 14362,
- "##mouth": 14363,
- "malik": 14364,
- "antique": 14365,
- "1791": 14366,
- "pius": 14367,
- "rahman": 14368,
- "reich": 14369,
- "tub": 14370,
- "zhou": 14371,
- "smashed": 14372,
- "airs": 14373,
- "galway": 14374,
- "xii": 14375,
- "conditioning": 14376,
- "honduras": 14377,
- "discharged": 14378,
- "dexter": 14379,
- "##pf": 14380,
- "lionel": 14381,
- "129": 14382,
- "debates": 14383,
- "lemon": 14384,
- "tiffany": 14385,
- "volunteered": 14386,
- "dom": 14387,
- "dioxide": 14388,
- "procession": 14389,
- "devi": 14390,
- "sic": 14391,
- "tremendous": 14392,
- "advertisements": 14393,
- "colts": 14394,
- "transferring": 14395,
- "verdict": 14396,
- "hanover": 14397,
- "decommissioned": 14398,
- "utter": 14399,
- "relate": 14400,
- "pac": 14401,
- "racism": 14402,
- "##top": 14403,
- "beacon": 14404,
- "limp": 14405,
- "similarity": 14406,
- "terra": 14407,
- "occurrence": 14408,
- "ant": 14409,
- "##how": 14410,
- "becky": 14411,
- "capt": 14412,
- "updates": 14413,
- "armament": 14414,
- "richie": 14415,
- "pal": 14416,
- "##graph": 14417,
- "halloween": 14418,
- "mayo": 14419,
- "##ssen": 14420,
- "##bone": 14421,
- "cara": 14422,
- "serena": 14423,
- "fcc": 14424,
- "dolls": 14425,
- "obligations": 14426,
- "##dling": 14427,
- "violated": 14428,
- "lafayette": 14429,
- "jakarta": 14430,
- "exploitation": 14431,
- "##ime": 14432,
- "infamous": 14433,
- "iconic": 14434,
- "##lah": 14435,
- "##park": 14436,
- "kitty": 14437,
- "moody": 14438,
- "reginald": 14439,
- "dread": 14440,
- "spill": 14441,
- "crystals": 14442,
- "olivier": 14443,
- "modeled": 14444,
- "bluff": 14445,
- "equilibrium": 14446,
- "separating": 14447,
- "notices": 14448,
- "ordnance": 14449,
- "extinction": 14450,
- "onset": 14451,
- "cosmic": 14452,
- "attachment": 14453,
- "sammy": 14454,
- "expose": 14455,
- "privy": 14456,
- "anchored": 14457,
- "##bil": 14458,
- "abbott": 14459,
- "admits": 14460,
- "bending": 14461,
- "baritone": 14462,
- "emmanuel": 14463,
- "policeman": 14464,
- "vaughan": 14465,
- "winged": 14466,
- "climax": 14467,
- "dresses": 14468,
- "denny": 14469,
- "polytechnic": 14470,
- "mohamed": 14471,
- "burmese": 14472,
- "authentic": 14473,
- "nikki": 14474,
- "genetics": 14475,
- "grandparents": 14476,
- "homestead": 14477,
- "gaza": 14478,
- "postponed": 14479,
- "metacritic": 14480,
- "una": 14481,
- "##sby": 14482,
- "##bat": 14483,
- "unstable": 14484,
- "dissertation": 14485,
- "##rial": 14486,
- "##cian": 14487,
- "curls": 14488,
- "obscure": 14489,
- "uncovered": 14490,
- "bronx": 14491,
- "praying": 14492,
- "disappearing": 14493,
- "##hoe": 14494,
- "prehistoric": 14495,
- "coke": 14496,
- "turret": 14497,
- "mutations": 14498,
- "nonprofit": 14499,
- "pits": 14500,
- "monaco": 14501,
- "##ي": 14502,
- "##usion": 14503,
- "prominently": 14504,
- "dispatched": 14505,
- "podium": 14506,
- "##mir": 14507,
- "uci": 14508,
- "##uation": 14509,
- "133": 14510,
- "fortifications": 14511,
- "birthplace": 14512,
- "kendall": 14513,
- "##lby": 14514,
- "##oll": 14515,
- "preacher": 14516,
- "rack": 14517,
- "goodman": 14518,
- "##rman": 14519,
- "persistent": 14520,
- "##ott": 14521,
- "countless": 14522,
- "jaime": 14523,
- "recorder": 14524,
- "lexington": 14525,
- "persecution": 14526,
- "jumps": 14527,
- "renewal": 14528,
- "wagons": 14529,
- "##11": 14530,
- "crushing": 14531,
- "##holder": 14532,
- "decorations": 14533,
- "##lake": 14534,
- "abundance": 14535,
- "wrath": 14536,
- "laundry": 14537,
- "£1": 14538,
- "garde": 14539,
- "##rp": 14540,
- "jeanne": 14541,
- "beetles": 14542,
- "peasant": 14543,
- "##sl": 14544,
- "splitting": 14545,
- "caste": 14546,
- "sergei": 14547,
- "##rer": 14548,
- "##ema": 14549,
- "scripts": 14550,
- "##ively": 14551,
- "rub": 14552,
- "satellites": 14553,
- "##vor": 14554,
- "inscribed": 14555,
- "verlag": 14556,
- "scrapped": 14557,
- "gale": 14558,
- "packages": 14559,
- "chick": 14560,
- "potato": 14561,
- "slogan": 14562,
- "kathleen": 14563,
- "arabs": 14564,
- "##culture": 14565,
- "counterparts": 14566,
- "reminiscent": 14567,
- "choral": 14568,
- "##tead": 14569,
- "rand": 14570,
- "retains": 14571,
- "bushes": 14572,
- "dane": 14573,
- "accomplish": 14574,
- "courtesy": 14575,
- "closes": 14576,
- "##oth": 14577,
- "slaughter": 14578,
- "hague": 14579,
- "krakow": 14580,
- "lawson": 14581,
- "tailed": 14582,
- "elias": 14583,
- "ginger": 14584,
- "##ttes": 14585,
- "canopy": 14586,
- "betrayal": 14587,
- "rebuilding": 14588,
- "turf": 14589,
- "##hof": 14590,
- "frowning": 14591,
- "allegiance": 14592,
- "brigades": 14593,
- "kicks": 14594,
- "rebuild": 14595,
- "polls": 14596,
- "alias": 14597,
- "nationalism": 14598,
- "td": 14599,
- "rowan": 14600,
- "audition": 14601,
- "bowie": 14602,
- "fortunately": 14603,
- "recognizes": 14604,
- "harp": 14605,
- "dillon": 14606,
- "horrified": 14607,
- "##oro": 14608,
- "renault": 14609,
- "##tics": 14610,
- "ropes": 14611,
- "##α": 14612,
- "presumed": 14613,
- "rewarded": 14614,
- "infrared": 14615,
- "wiping": 14616,
- "accelerated": 14617,
- "illustration": 14618,
- "##rid": 14619,
- "presses": 14620,
- "practitioners": 14621,
- "badminton": 14622,
- "##iard": 14623,
- "detained": 14624,
- "##tera": 14625,
- "recognizing": 14626,
- "relates": 14627,
- "misery": 14628,
- "##sies": 14629,
- "##tly": 14630,
- "reproduction": 14631,
- "piercing": 14632,
- "potatoes": 14633,
- "thornton": 14634,
- "esther": 14635,
- "manners": 14636,
- "hbo": 14637,
- "##aan": 14638,
- "ours": 14639,
- "bullshit": 14640,
- "ernie": 14641,
- "perennial": 14642,
- "sensitivity": 14643,
- "illuminated": 14644,
- "rupert": 14645,
- "##jin": 14646,
- "##iss": 14647,
- "##ear": 14648,
- "rfc": 14649,
- "nassau": 14650,
- "##dock": 14651,
- "staggered": 14652,
- "socialism": 14653,
- "##haven": 14654,
- "appointments": 14655,
- "nonsense": 14656,
- "prestige": 14657,
- "sharma": 14658,
- "haul": 14659,
- "##tical": 14660,
- "solidarity": 14661,
- "gps": 14662,
- "##ook": 14663,
- "##rata": 14664,
- "igor": 14665,
- "pedestrian": 14666,
- "##uit": 14667,
- "baxter": 14668,
- "tenants": 14669,
- "wires": 14670,
- "medication": 14671,
- "unlimited": 14672,
- "guiding": 14673,
- "impacts": 14674,
- "diabetes": 14675,
- "##rama": 14676,
- "sasha": 14677,
- "pas": 14678,
- "clive": 14679,
- "extraction": 14680,
- "131": 14681,
- "continually": 14682,
- "constraints": 14683,
- "##bilities": 14684,
- "sonata": 14685,
- "hunted": 14686,
- "sixteenth": 14687,
- "chu": 14688,
- "planting": 14689,
- "quote": 14690,
- "mayer": 14691,
- "pretended": 14692,
- "abs": 14693,
- "spat": 14694,
- "##hua": 14695,
- "ceramic": 14696,
- "##cci": 14697,
- "curtains": 14698,
- "pigs": 14699,
- "pitching": 14700,
- "##dad": 14701,
- "latvian": 14702,
- "sore": 14703,
- "dayton": 14704,
- "##sted": 14705,
- "##qi": 14706,
- "patrols": 14707,
- "slice": 14708,
- "playground": 14709,
- "##nted": 14710,
- "shone": 14711,
- "stool": 14712,
- "apparatus": 14713,
- "inadequate": 14714,
- "mates": 14715,
- "treason": 14716,
- "##ija": 14717,
- "desires": 14718,
- "##liga": 14719,
- "##croft": 14720,
- "somalia": 14721,
- "laurent": 14722,
- "mir": 14723,
- "leonardo": 14724,
- "oracle": 14725,
- "grape": 14726,
- "obliged": 14727,
- "chevrolet": 14728,
- "thirteenth": 14729,
- "stunning": 14730,
- "enthusiastic": 14731,
- "##ede": 14732,
- "accounted": 14733,
- "concludes": 14734,
- "currents": 14735,
- "basil": 14736,
- "##kovic": 14737,
- "drought": 14738,
- "##rica": 14739,
- "mai": 14740,
- "##aire": 14741,
- "shove": 14742,
- "posting": 14743,
- "##shed": 14744,
- "pilgrimage": 14745,
- "humorous": 14746,
- "packing": 14747,
- "fry": 14748,
- "pencil": 14749,
- "wines": 14750,
- "smells": 14751,
- "144": 14752,
- "marilyn": 14753,
- "aching": 14754,
- "newest": 14755,
- "clung": 14756,
- "bon": 14757,
- "neighbours": 14758,
- "sanctioned": 14759,
- "##pie": 14760,
- "mug": 14761,
- "##stock": 14762,
- "drowning": 14763,
- "##mma": 14764,
- "hydraulic": 14765,
- "##vil": 14766,
- "hiring": 14767,
- "reminder": 14768,
- "lilly": 14769,
- "investigators": 14770,
- "##ncies": 14771,
- "sour": 14772,
- "##eous": 14773,
- "compulsory": 14774,
- "packet": 14775,
- "##rion": 14776,
- "##graphic": 14777,
- "##elle": 14778,
- "cannes": 14779,
- "##inate": 14780,
- "depressed": 14781,
- "##rit": 14782,
- "heroic": 14783,
- "importantly": 14784,
- "theresa": 14785,
- "##tled": 14786,
- "conway": 14787,
- "saturn": 14788,
- "marginal": 14789,
- "rae": 14790,
- "##xia": 14791,
- "corresponds": 14792,
- "royce": 14793,
- "pact": 14794,
- "jasper": 14795,
- "explosives": 14796,
- "packaging": 14797,
- "aluminium": 14798,
- "##ttered": 14799,
- "denotes": 14800,
- "rhythmic": 14801,
- "spans": 14802,
- "assignments": 14803,
- "hereditary": 14804,
- "outlined": 14805,
- "originating": 14806,
- "sundays": 14807,
- "lad": 14808,
- "reissued": 14809,
- "greeting": 14810,
- "beatrice": 14811,
- "##dic": 14812,
- "pillar": 14813,
- "marcos": 14814,
- "plots": 14815,
- "handbook": 14816,
- "alcoholic": 14817,
- "judiciary": 14818,
- "avant": 14819,
- "slides": 14820,
- "extract": 14821,
- "masculine": 14822,
- "blur": 14823,
- "##eum": 14824,
- "##force": 14825,
- "homage": 14826,
- "trembled": 14827,
- "owens": 14828,
- "hymn": 14829,
- "trey": 14830,
- "omega": 14831,
- "signaling": 14832,
- "socks": 14833,
- "accumulated": 14834,
- "reacted": 14835,
- "attic": 14836,
- "theo": 14837,
- "lining": 14838,
- "angie": 14839,
- "distraction": 14840,
- "primera": 14841,
- "talbot": 14842,
- "##key": 14843,
- "1200": 14844,
- "ti": 14845,
- "creativity": 14846,
- "billed": 14847,
- "##hey": 14848,
- "deacon": 14849,
- "eduardo": 14850,
- "identifies": 14851,
- "proposition": 14852,
- "dizzy": 14853,
- "gunner": 14854,
- "hogan": 14855,
- "##yam": 14856,
- "##pping": 14857,
- "##hol": 14858,
- "ja": 14859,
- "##chan": 14860,
- "jensen": 14861,
- "reconstructed": 14862,
- "##berger": 14863,
- "clearance": 14864,
- "darius": 14865,
- "##nier": 14866,
- "abe": 14867,
- "harlem": 14868,
- "plea": 14869,
- "dei": 14870,
- "circled": 14871,
- "emotionally": 14872,
- "notation": 14873,
- "fascist": 14874,
- "neville": 14875,
- "exceeded": 14876,
- "upwards": 14877,
- "viable": 14878,
- "ducks": 14879,
- "##fo": 14880,
- "workforce": 14881,
- "racer": 14882,
- "limiting": 14883,
- "shri": 14884,
- "##lson": 14885,
- "possesses": 14886,
- "1600": 14887,
- "kerr": 14888,
- "moths": 14889,
- "devastating": 14890,
- "laden": 14891,
- "disturbing": 14892,
- "locking": 14893,
- "##cture": 14894,
- "gal": 14895,
- "fearing": 14896,
- "accreditation": 14897,
- "flavor": 14898,
- "aide": 14899,
- "1870s": 14900,
- "mountainous": 14901,
- "##baum": 14902,
- "melt": 14903,
- "##ures": 14904,
- "motel": 14905,
- "texture": 14906,
- "servers": 14907,
- "soda": 14908,
- "##mb": 14909,
- "herd": 14910,
- "##nium": 14911,
- "erect": 14912,
- "puzzled": 14913,
- "hum": 14914,
- "peggy": 14915,
- "examinations": 14916,
- "gould": 14917,
- "testified": 14918,
- "geoff": 14919,
- "ren": 14920,
- "devised": 14921,
- "sacks": 14922,
- "##law": 14923,
- "denial": 14924,
- "posters": 14925,
- "grunted": 14926,
- "cesar": 14927,
- "tutor": 14928,
- "ec": 14929,
- "gerry": 14930,
- "offerings": 14931,
- "byrne": 14932,
- "falcons": 14933,
- "combinations": 14934,
- "ct": 14935,
- "incoming": 14936,
- "pardon": 14937,
- "rocking": 14938,
- "26th": 14939,
- "avengers": 14940,
- "flared": 14941,
- "mankind": 14942,
- "seller": 14943,
- "uttar": 14944,
- "loch": 14945,
- "nadia": 14946,
- "stroking": 14947,
- "exposing": 14948,
- "##hd": 14949,
- "fertile": 14950,
- "ancestral": 14951,
- "instituted": 14952,
- "##has": 14953,
- "noises": 14954,
- "prophecy": 14955,
- "taxation": 14956,
- "eminent": 14957,
- "vivid": 14958,
- "pol": 14959,
- "##bol": 14960,
- "dart": 14961,
- "indirect": 14962,
- "multimedia": 14963,
- "notebook": 14964,
- "upside": 14965,
- "displaying": 14966,
- "adrenaline": 14967,
- "referenced": 14968,
- "geometric": 14969,
- "##iving": 14970,
- "progression": 14971,
- "##ddy": 14972,
- "blunt": 14973,
- "announce": 14974,
- "##far": 14975,
- "implementing": 14976,
- "##lav": 14977,
- "aggression": 14978,
- "liaison": 14979,
- "cooler": 14980,
- "cares": 14981,
- "headache": 14982,
- "plantations": 14983,
- "gorge": 14984,
- "dots": 14985,
- "impulse": 14986,
- "thickness": 14987,
- "ashamed": 14988,
- "averaging": 14989,
- "kathy": 14990,
- "obligation": 14991,
- "precursor": 14992,
- "137": 14993,
- "fowler": 14994,
- "symmetry": 14995,
- "thee": 14996,
- "225": 14997,
- "hears": 14998,
- "##rai": 14999,
- "undergoing": 15000,
- "ads": 15001,
- "butcher": 15002,
- "bowler": 15003,
- "##lip": 15004,
- "cigarettes": 15005,
- "subscription": 15006,
- "goodness": 15007,
- "##ically": 15008,
- "browne": 15009,
- "##hos": 15010,
- "##tech": 15011,
- "kyoto": 15012,
- "donor": 15013,
- "##erty": 15014,
- "damaging": 15015,
- "friction": 15016,
- "drifting": 15017,
- "expeditions": 15018,
- "hardened": 15019,
- "prostitution": 15020,
- "152": 15021,
- "fauna": 15022,
- "blankets": 15023,
- "claw": 15024,
- "tossing": 15025,
- "snarled": 15026,
- "butterflies": 15027,
- "recruits": 15028,
- "investigative": 15029,
- "coated": 15030,
- "healed": 15031,
- "138": 15032,
- "communal": 15033,
- "hai": 15034,
- "xiii": 15035,
- "academics": 15036,
- "boone": 15037,
- "psychologist": 15038,
- "restless": 15039,
- "lahore": 15040,
- "stephens": 15041,
- "mba": 15042,
- "brendan": 15043,
- "foreigners": 15044,
- "printer": 15045,
- "##pc": 15046,
- "ached": 15047,
- "explode": 15048,
- "27th": 15049,
- "deed": 15050,
- "scratched": 15051,
- "dared": 15052,
- "##pole": 15053,
- "cardiac": 15054,
- "1780": 15055,
- "okinawa": 15056,
- "proto": 15057,
- "commando": 15058,
- "compelled": 15059,
- "oddly": 15060,
- "electrons": 15061,
- "##base": 15062,
- "replica": 15063,
- "thanksgiving": 15064,
- "##rist": 15065,
- "sheila": 15066,
- "deliberate": 15067,
- "stafford": 15068,
- "tidal": 15069,
- "representations": 15070,
- "hercules": 15071,
- "ou": 15072,
- "##path": 15073,
- "##iated": 15074,
- "kidnapping": 15075,
- "lenses": 15076,
- "##tling": 15077,
- "deficit": 15078,
- "samoa": 15079,
- "mouths": 15080,
- "consuming": 15081,
- "computational": 15082,
- "maze": 15083,
- "granting": 15084,
- "smirk": 15085,
- "razor": 15086,
- "fixture": 15087,
- "ideals": 15088,
- "inviting": 15089,
- "aiden": 15090,
- "nominal": 15091,
- "##vs": 15092,
- "issuing": 15093,
- "julio": 15094,
- "pitt": 15095,
- "ramsey": 15096,
- "docks": 15097,
- "##oss": 15098,
- "exhaust": 15099,
- "##owed": 15100,
- "bavarian": 15101,
- "draped": 15102,
- "anterior": 15103,
- "mating": 15104,
- "ethiopian": 15105,
- "explores": 15106,
- "noticing": 15107,
- "##nton": 15108,
- "discarded": 15109,
- "convenience": 15110,
- "hoffman": 15111,
- "endowment": 15112,
- "beasts": 15113,
- "cartridge": 15114,
- "mormon": 15115,
- "paternal": 15116,
- "probe": 15117,
- "sleeves": 15118,
- "interfere": 15119,
- "lump": 15120,
- "deadline": 15121,
- "##rail": 15122,
- "jenks": 15123,
- "bulldogs": 15124,
- "scrap": 15125,
- "alternating": 15126,
- "justified": 15127,
- "reproductive": 15128,
- "nam": 15129,
- "seize": 15130,
- "descending": 15131,
- "secretariat": 15132,
- "kirby": 15133,
- "coupe": 15134,
- "grouped": 15135,
- "smash": 15136,
- "panther": 15137,
- "sedan": 15138,
- "tapping": 15139,
- "##18": 15140,
- "lola": 15141,
- "cheer": 15142,
- "germanic": 15143,
- "unfortunate": 15144,
- "##eter": 15145,
- "unrelated": 15146,
- "##fan": 15147,
- "subordinate": 15148,
- "##sdale": 15149,
- "suzanne": 15150,
- "advertisement": 15151,
- "##ility": 15152,
- "horsepower": 15153,
- "##lda": 15154,
- "cautiously": 15155,
- "discourse": 15156,
- "luigi": 15157,
- "##mans": 15158,
- "##fields": 15159,
- "noun": 15160,
- "prevalent": 15161,
- "mao": 15162,
- "schneider": 15163,
- "everett": 15164,
- "surround": 15165,
- "governorate": 15166,
- "kira": 15167,
- "##avia": 15168,
- "westward": 15169,
- "##take": 15170,
- "misty": 15171,
- "rails": 15172,
- "sustainability": 15173,
- "134": 15174,
- "unused": 15175,
- "##rating": 15176,
- "packs": 15177,
- "toast": 15178,
- "unwilling": 15179,
- "regulate": 15180,
- "thy": 15181,
- "suffrage": 15182,
- "nile": 15183,
- "awe": 15184,
- "assam": 15185,
- "definitions": 15186,
- "travelers": 15187,
- "affordable": 15188,
- "##rb": 15189,
- "conferred": 15190,
- "sells": 15191,
- "undefeated": 15192,
- "beneficial": 15193,
- "torso": 15194,
- "basal": 15195,
- "repeating": 15196,
- "remixes": 15197,
- "##pass": 15198,
- "bahrain": 15199,
- "cables": 15200,
- "fang": 15201,
- "##itated": 15202,
- "excavated": 15203,
- "numbering": 15204,
- "statutory": 15205,
- "##rey": 15206,
- "deluxe": 15207,
- "##lian": 15208,
- "forested": 15209,
- "ramirez": 15210,
- "derbyshire": 15211,
- "zeus": 15212,
- "slamming": 15213,
- "transfers": 15214,
- "astronomer": 15215,
- "banana": 15216,
- "lottery": 15217,
- "berg": 15218,
- "histories": 15219,
- "bamboo": 15220,
- "##uchi": 15221,
- "resurrection": 15222,
- "posterior": 15223,
- "bowls": 15224,
- "vaguely": 15225,
- "##thi": 15226,
- "thou": 15227,
- "preserving": 15228,
- "tensed": 15229,
- "offence": 15230,
- "##inas": 15231,
- "meyrick": 15232,
- "callum": 15233,
- "ridden": 15234,
- "watt": 15235,
- "langdon": 15236,
- "tying": 15237,
- "lowland": 15238,
- "snorted": 15239,
- "daring": 15240,
- "truman": 15241,
- "##hale": 15242,
- "##girl": 15243,
- "aura": 15244,
- "overly": 15245,
- "filing": 15246,
- "weighing": 15247,
- "goa": 15248,
- "infections": 15249,
- "philanthropist": 15250,
- "saunders": 15251,
- "eponymous": 15252,
- "##owski": 15253,
- "latitude": 15254,
- "perspectives": 15255,
- "reviewing": 15256,
- "mets": 15257,
- "commandant": 15258,
- "radial": 15259,
- "##kha": 15260,
- "flashlight": 15261,
- "reliability": 15262,
- "koch": 15263,
- "vowels": 15264,
- "amazed": 15265,
- "ada": 15266,
- "elaine": 15267,
- "supper": 15268,
- "##rth": 15269,
- "##encies": 15270,
- "predator": 15271,
- "debated": 15272,
- "soviets": 15273,
- "cola": 15274,
- "##boards": 15275,
- "##nah": 15276,
- "compartment": 15277,
- "crooked": 15278,
- "arbitrary": 15279,
- "fourteenth": 15280,
- "##ctive": 15281,
- "havana": 15282,
- "majors": 15283,
- "steelers": 15284,
- "clips": 15285,
- "profitable": 15286,
- "ambush": 15287,
- "exited": 15288,
- "packers": 15289,
- "##tile": 15290,
- "nude": 15291,
- "cracks": 15292,
- "fungi": 15293,
- "##е": 15294,
- "limb": 15295,
- "trousers": 15296,
- "josie": 15297,
- "shelby": 15298,
- "tens": 15299,
- "frederic": 15300,
- "##ος": 15301,
- "definite": 15302,
- "smoothly": 15303,
- "constellation": 15304,
- "insult": 15305,
- "baton": 15306,
- "discs": 15307,
- "lingering": 15308,
- "##nco": 15309,
- "conclusions": 15310,
- "lent": 15311,
- "staging": 15312,
- "becker": 15313,
- "grandpa": 15314,
- "shaky": 15315,
- "##tron": 15316,
- "einstein": 15317,
- "obstacles": 15318,
- "sk": 15319,
- "adverse": 15320,
- "elle": 15321,
- "economically": 15322,
- "##moto": 15323,
- "mccartney": 15324,
- "thor": 15325,
- "dismissal": 15326,
- "motions": 15327,
- "readings": 15328,
- "nostrils": 15329,
- "treatise": 15330,
- "##pace": 15331,
- "squeezing": 15332,
- "evidently": 15333,
- "prolonged": 15334,
- "1783": 15335,
- "venezuelan": 15336,
- "je": 15337,
- "marguerite": 15338,
- "beirut": 15339,
- "takeover": 15340,
- "shareholders": 15341,
- "##vent": 15342,
- "denise": 15343,
- "digit": 15344,
- "airplay": 15345,
- "norse": 15346,
- "##bbling": 15347,
- "imaginary": 15348,
- "pills": 15349,
- "hubert": 15350,
- "blaze": 15351,
- "vacated": 15352,
- "eliminating": 15353,
- "##ello": 15354,
- "vine": 15355,
- "mansfield": 15356,
- "##tty": 15357,
- "retrospective": 15358,
- "barrow": 15359,
- "borne": 15360,
- "clutch": 15361,
- "bail": 15362,
- "forensic": 15363,
- "weaving": 15364,
- "##nett": 15365,
- "##witz": 15366,
- "desktop": 15367,
- "citadel": 15368,
- "promotions": 15369,
- "worrying": 15370,
- "dorset": 15371,
- "ieee": 15372,
- "subdivided": 15373,
- "##iating": 15374,
- "manned": 15375,
- "expeditionary": 15376,
- "pickup": 15377,
- "synod": 15378,
- "chuckle": 15379,
- "185": 15380,
- "barney": 15381,
- "##rz": 15382,
- "##ffin": 15383,
- "functionality": 15384,
- "karachi": 15385,
- "litigation": 15386,
- "meanings": 15387,
- "uc": 15388,
- "lick": 15389,
- "turbo": 15390,
- "anders": 15391,
- "##ffed": 15392,
- "execute": 15393,
- "curl": 15394,
- "oppose": 15395,
- "ankles": 15396,
- "typhoon": 15397,
- "##د": 15398,
- "##ache": 15399,
- "##asia": 15400,
- "linguistics": 15401,
- "compassion": 15402,
- "pressures": 15403,
- "grazing": 15404,
- "perfection": 15405,
- "##iting": 15406,
- "immunity": 15407,
- "monopoly": 15408,
- "muddy": 15409,
- "backgrounds": 15410,
- "136": 15411,
- "namibia": 15412,
- "francesca": 15413,
- "monitors": 15414,
- "attracting": 15415,
- "stunt": 15416,
- "tuition": 15417,
- "##ии": 15418,
- "vegetable": 15419,
- "##mates": 15420,
- "##quent": 15421,
- "mgm": 15422,
- "jen": 15423,
- "complexes": 15424,
- "forts": 15425,
- "##ond": 15426,
- "cellar": 15427,
- "bites": 15428,
- "seventeenth": 15429,
- "royals": 15430,
- "flemish": 15431,
- "failures": 15432,
- "mast": 15433,
- "charities": 15434,
- "##cular": 15435,
- "peruvian": 15436,
- "capitals": 15437,
- "macmillan": 15438,
- "ipswich": 15439,
- "outward": 15440,
- "frigate": 15441,
- "postgraduate": 15442,
- "folds": 15443,
- "employing": 15444,
- "##ouse": 15445,
- "concurrently": 15446,
- "fiery": 15447,
- "##tai": 15448,
- "contingent": 15449,
- "nightmares": 15450,
- "monumental": 15451,
- "nicaragua": 15452,
- "##kowski": 15453,
- "lizard": 15454,
- "mal": 15455,
- "fielding": 15456,
- "gig": 15457,
- "reject": 15458,
- "##pad": 15459,
- "harding": 15460,
- "##ipe": 15461,
- "coastline": 15462,
- "##cin": 15463,
- "##nos": 15464,
- "beethoven": 15465,
- "humphrey": 15466,
- "innovations": 15467,
- "##tam": 15468,
- "##nge": 15469,
- "norris": 15470,
- "doris": 15471,
- "solicitor": 15472,
- "huang": 15473,
- "obey": 15474,
- "141": 15475,
- "##lc": 15476,
- "niagara": 15477,
- "##tton": 15478,
- "shelves": 15479,
- "aug": 15480,
- "bourbon": 15481,
- "curry": 15482,
- "nightclub": 15483,
- "specifications": 15484,
- "hilton": 15485,
- "##ndo": 15486,
- "centennial": 15487,
- "dispersed": 15488,
- "worm": 15489,
- "neglected": 15490,
- "briggs": 15491,
- "sm": 15492,
- "font": 15493,
- "kuala": 15494,
- "uneasy": 15495,
- "plc": 15496,
- "##nstein": 15497,
- "##bound": 15498,
- "##aking": 15499,
- "##burgh": 15500,
- "awaiting": 15501,
- "pronunciation": 15502,
- "##bbed": 15503,
- "##quest": 15504,
- "eh": 15505,
- "optimal": 15506,
- "zhu": 15507,
- "raped": 15508,
- "greens": 15509,
- "presided": 15510,
- "brenda": 15511,
- "worries": 15512,
- "##life": 15513,
- "venetian": 15514,
- "marxist": 15515,
- "turnout": 15516,
- "##lius": 15517,
- "refined": 15518,
- "braced": 15519,
- "sins": 15520,
- "grasped": 15521,
- "sunderland": 15522,
- "nickel": 15523,
- "speculated": 15524,
- "lowell": 15525,
- "cyrillic": 15526,
- "communism": 15527,
- "fundraising": 15528,
- "resembling": 15529,
- "colonists": 15530,
- "mutant": 15531,
- "freddie": 15532,
- "usc": 15533,
- "##mos": 15534,
- "gratitude": 15535,
- "##run": 15536,
- "mural": 15537,
- "##lous": 15538,
- "chemist": 15539,
- "wi": 15540,
- "reminds": 15541,
- "28th": 15542,
- "steals": 15543,
- "tess": 15544,
- "pietro": 15545,
- "##ingen": 15546,
- "promoter": 15547,
- "ri": 15548,
- "microphone": 15549,
- "honoured": 15550,
- "rai": 15551,
- "sant": 15552,
- "##qui": 15553,
- "feather": 15554,
- "##nson": 15555,
- "burlington": 15556,
- "kurdish": 15557,
- "terrorists": 15558,
- "deborah": 15559,
- "sickness": 15560,
- "##wed": 15561,
- "##eet": 15562,
- "hazard": 15563,
- "irritated": 15564,
- "desperation": 15565,
- "veil": 15566,
- "clarity": 15567,
- "##rik": 15568,
- "jewels": 15569,
- "xv": 15570,
- "##gged": 15571,
- "##ows": 15572,
- "##cup": 15573,
- "berkshire": 15574,
- "unfair": 15575,
- "mysteries": 15576,
- "orchid": 15577,
- "winced": 15578,
- "exhaustion": 15579,
- "renovations": 15580,
- "stranded": 15581,
- "obe": 15582,
- "infinity": 15583,
- "##nies": 15584,
- "adapt": 15585,
- "redevelopment": 15586,
- "thanked": 15587,
- "registry": 15588,
- "olga": 15589,
- "domingo": 15590,
- "noir": 15591,
- "tudor": 15592,
- "ole": 15593,
- "##atus": 15594,
- "commenting": 15595,
- "behaviors": 15596,
- "##ais": 15597,
- "crisp": 15598,
- "pauline": 15599,
- "probable": 15600,
- "stirling": 15601,
- "wigan": 15602,
- "##bian": 15603,
- "paralympics": 15604,
- "panting": 15605,
- "surpassed": 15606,
- "##rew": 15607,
- "luca": 15608,
- "barred": 15609,
- "pony": 15610,
- "famed": 15611,
- "##sters": 15612,
- "cassandra": 15613,
- "waiter": 15614,
- "carolyn": 15615,
- "exported": 15616,
- "##orted": 15617,
- "andres": 15618,
- "destructive": 15619,
- "deeds": 15620,
- "jonah": 15621,
- "castles": 15622,
- "vacancy": 15623,
- "suv": 15624,
- "##glass": 15625,
- "1788": 15626,
- "orchard": 15627,
- "yep": 15628,
- "famine": 15629,
- "belarusian": 15630,
- "sprang": 15631,
- "##forth": 15632,
- "skinny": 15633,
- "##mis": 15634,
- "administrators": 15635,
- "rotterdam": 15636,
- "zambia": 15637,
- "zhao": 15638,
- "boiler": 15639,
- "discoveries": 15640,
- "##ride": 15641,
- "##physics": 15642,
- "lucius": 15643,
- "disappointing": 15644,
- "outreach": 15645,
- "spoon": 15646,
- "##frame": 15647,
- "qualifications": 15648,
- "unanimously": 15649,
- "enjoys": 15650,
- "regency": 15651,
- "##iidae": 15652,
- "stade": 15653,
- "realism": 15654,
- "veterinary": 15655,
- "rodgers": 15656,
- "dump": 15657,
- "alain": 15658,
- "chestnut": 15659,
- "castile": 15660,
- "censorship": 15661,
- "rumble": 15662,
- "gibbs": 15663,
- "##itor": 15664,
- "communion": 15665,
- "reggae": 15666,
- "inactivated": 15667,
- "logs": 15668,
- "loads": 15669,
- "##houses": 15670,
- "homosexual": 15671,
- "##iano": 15672,
- "ale": 15673,
- "informs": 15674,
- "##cas": 15675,
- "phrases": 15676,
- "plaster": 15677,
- "linebacker": 15678,
- "ambrose": 15679,
- "kaiser": 15680,
- "fascinated": 15681,
- "850": 15682,
- "limerick": 15683,
- "recruitment": 15684,
- "forge": 15685,
- "mastered": 15686,
- "##nding": 15687,
- "leinster": 15688,
- "rooted": 15689,
- "threaten": 15690,
- "##strom": 15691,
- "borneo": 15692,
- "##hes": 15693,
- "suggestions": 15694,
- "scholarships": 15695,
- "propeller": 15696,
- "documentaries": 15697,
- "patronage": 15698,
- "coats": 15699,
- "constructing": 15700,
- "invest": 15701,
- "neurons": 15702,
- "comet": 15703,
- "entirety": 15704,
- "shouts": 15705,
- "identities": 15706,
- "annoying": 15707,
- "unchanged": 15708,
- "wary": 15709,
- "##antly": 15710,
- "##ogy": 15711,
- "neat": 15712,
- "oversight": 15713,
- "##kos": 15714,
- "phillies": 15715,
- "replay": 15716,
- "constance": 15717,
- "##kka": 15718,
- "incarnation": 15719,
- "humble": 15720,
- "skies": 15721,
- "minus": 15722,
- "##acy": 15723,
- "smithsonian": 15724,
- "##chel": 15725,
- "guerrilla": 15726,
- "jar": 15727,
- "cadets": 15728,
- "##plate": 15729,
- "surplus": 15730,
- "audit": 15731,
- "##aru": 15732,
- "cracking": 15733,
- "joanna": 15734,
- "louisa": 15735,
- "pacing": 15736,
- "##lights": 15737,
- "intentionally": 15738,
- "##iri": 15739,
- "diner": 15740,
- "nwa": 15741,
- "imprint": 15742,
- "australians": 15743,
- "tong": 15744,
- "unprecedented": 15745,
- "bunker": 15746,
- "naive": 15747,
- "specialists": 15748,
- "ark": 15749,
- "nichols": 15750,
- "railing": 15751,
- "leaked": 15752,
- "pedal": 15753,
- "##uka": 15754,
- "shrub": 15755,
- "longing": 15756,
- "roofs": 15757,
- "v8": 15758,
- "captains": 15759,
- "neural": 15760,
- "tuned": 15761,
- "##ntal": 15762,
- "##jet": 15763,
- "emission": 15764,
- "medina": 15765,
- "frantic": 15766,
- "codex": 15767,
- "definitive": 15768,
- "sid": 15769,
- "abolition": 15770,
- "intensified": 15771,
- "stocks": 15772,
- "enrique": 15773,
- "sustain": 15774,
- "genoa": 15775,
- "oxide": 15776,
- "##written": 15777,
- "clues": 15778,
- "cha": 15779,
- "##gers": 15780,
- "tributaries": 15781,
- "fragment": 15782,
- "venom": 15783,
- "##rity": 15784,
- "##ente": 15785,
- "##sca": 15786,
- "muffled": 15787,
- "vain": 15788,
- "sire": 15789,
- "laos": 15790,
- "##ingly": 15791,
- "##hana": 15792,
- "hastily": 15793,
- "snapping": 15794,
- "surfaced": 15795,
- "sentiment": 15796,
- "motive": 15797,
- "##oft": 15798,
- "contests": 15799,
- "approximate": 15800,
- "mesa": 15801,
- "luckily": 15802,
- "dinosaur": 15803,
- "exchanges": 15804,
- "propelled": 15805,
- "accord": 15806,
- "bourne": 15807,
- "relieve": 15808,
- "tow": 15809,
- "masks": 15810,
- "offended": 15811,
- "##ues": 15812,
- "cynthia": 15813,
- "##mmer": 15814,
- "rains": 15815,
- "bartender": 15816,
- "zinc": 15817,
- "reviewers": 15818,
- "lois": 15819,
- "##sai": 15820,
- "legged": 15821,
- "arrogant": 15822,
- "rafe": 15823,
- "rosie": 15824,
- "comprise": 15825,
- "handicap": 15826,
- "blockade": 15827,
- "inlet": 15828,
- "lagoon": 15829,
- "copied": 15830,
- "drilling": 15831,
- "shelley": 15832,
- "petals": 15833,
- "##inian": 15834,
- "mandarin": 15835,
- "obsolete": 15836,
- "##inated": 15837,
- "onward": 15838,
- "arguably": 15839,
- "productivity": 15840,
- "cindy": 15841,
- "praising": 15842,
- "seldom": 15843,
- "busch": 15844,
- "discusses": 15845,
- "raleigh": 15846,
- "shortage": 15847,
- "ranged": 15848,
- "stanton": 15849,
- "encouragement": 15850,
- "firstly": 15851,
- "conceded": 15852,
- "overs": 15853,
- "temporal": 15854,
- "##uke": 15855,
- "cbe": 15856,
- "##bos": 15857,
- "woo": 15858,
- "certainty": 15859,
- "pumps": 15860,
- "##pton": 15861,
- "stalked": 15862,
- "##uli": 15863,
- "lizzie": 15864,
- "periodic": 15865,
- "thieves": 15866,
- "weaker": 15867,
- "##night": 15868,
- "gases": 15869,
- "shoving": 15870,
- "chooses": 15871,
- "wc": 15872,
- "##chemical": 15873,
- "prompting": 15874,
- "weights": 15875,
- "##kill": 15876,
- "robust": 15877,
- "flanked": 15878,
- "sticky": 15879,
- "hu": 15880,
- "tuberculosis": 15881,
- "##eb": 15882,
- "##eal": 15883,
- "christchurch": 15884,
- "resembled": 15885,
- "wallet": 15886,
- "reese": 15887,
- "inappropriate": 15888,
- "pictured": 15889,
- "distract": 15890,
- "fixing": 15891,
- "fiddle": 15892,
- "giggled": 15893,
- "burger": 15894,
- "heirs": 15895,
- "hairy": 15896,
- "mechanic": 15897,
- "torque": 15898,
- "apache": 15899,
- "obsessed": 15900,
- "chiefly": 15901,
- "cheng": 15902,
- "logging": 15903,
- "##tag": 15904,
- "extracted": 15905,
- "meaningful": 15906,
- "numb": 15907,
- "##vsky": 15908,
- "gloucestershire": 15909,
- "reminding": 15910,
- "##bay": 15911,
- "unite": 15912,
- "##lit": 15913,
- "breeds": 15914,
- "diminished": 15915,
- "clown": 15916,
- "glove": 15917,
- "1860s": 15918,
- "##ن": 15919,
- "##ug": 15920,
- "archibald": 15921,
- "focal": 15922,
- "freelance": 15923,
- "sliced": 15924,
- "depiction": 15925,
- "##yk": 15926,
- "organism": 15927,
- "switches": 15928,
- "sights": 15929,
- "stray": 15930,
- "crawling": 15931,
- "##ril": 15932,
- "lever": 15933,
- "leningrad": 15934,
- "interpretations": 15935,
- "loops": 15936,
- "anytime": 15937,
- "reel": 15938,
- "alicia": 15939,
- "delighted": 15940,
- "##ech": 15941,
- "inhaled": 15942,
- "xiv": 15943,
- "suitcase": 15944,
- "bernie": 15945,
- "vega": 15946,
- "licenses": 15947,
- "northampton": 15948,
- "exclusion": 15949,
- "induction": 15950,
- "monasteries": 15951,
- "racecourse": 15952,
- "homosexuality": 15953,
- "##right": 15954,
- "##sfield": 15955,
- "##rky": 15956,
- "dimitri": 15957,
- "michele": 15958,
- "alternatives": 15959,
- "ions": 15960,
- "commentators": 15961,
- "genuinely": 15962,
- "objected": 15963,
- "pork": 15964,
- "hospitality": 15965,
- "fencing": 15966,
- "stephan": 15967,
- "warships": 15968,
- "peripheral": 15969,
- "wit": 15970,
- "drunken": 15971,
- "wrinkled": 15972,
- "quentin": 15973,
- "spends": 15974,
- "departing": 15975,
- "chung": 15976,
- "numerical": 15977,
- "spokesperson": 15978,
- "##zone": 15979,
- "johannesburg": 15980,
- "caliber": 15981,
- "killers": 15982,
- "##udge": 15983,
- "assumes": 15984,
- "neatly": 15985,
- "demographic": 15986,
- "abigail": 15987,
- "bloc": 15988,
- "##vel": 15989,
- "mounting": 15990,
- "##lain": 15991,
- "bentley": 15992,
- "slightest": 15993,
- "xu": 15994,
- "recipients": 15995,
- "##jk": 15996,
- "merlin": 15997,
- "##writer": 15998,
- "seniors": 15999,
- "prisons": 16000,
- "blinking": 16001,
- "hindwings": 16002,
- "flickered": 16003,
- "kappa": 16004,
- "##hel": 16005,
- "80s": 16006,
- "strengthening": 16007,
- "appealing": 16008,
- "brewing": 16009,
- "gypsy": 16010,
- "mali": 16011,
- "lashes": 16012,
- "hulk": 16013,
- "unpleasant": 16014,
- "harassment": 16015,
- "bio": 16016,
- "treaties": 16017,
- "predict": 16018,
- "instrumentation": 16019,
- "pulp": 16020,
- "troupe": 16021,
- "boiling": 16022,
- "mantle": 16023,
- "##ffe": 16024,
- "ins": 16025,
- "##vn": 16026,
- "dividing": 16027,
- "handles": 16028,
- "verbs": 16029,
- "##onal": 16030,
- "coconut": 16031,
- "senegal": 16032,
- "340": 16033,
- "thorough": 16034,
- "gum": 16035,
- "momentarily": 16036,
- "##sto": 16037,
- "cocaine": 16038,
- "panicked": 16039,
- "destined": 16040,
- "##turing": 16041,
- "teatro": 16042,
- "denying": 16043,
- "weary": 16044,
- "captained": 16045,
- "mans": 16046,
- "##hawks": 16047,
- "##code": 16048,
- "wakefield": 16049,
- "bollywood": 16050,
- "thankfully": 16051,
- "##16": 16052,
- "cyril": 16053,
- "##wu": 16054,
- "amendments": 16055,
- "##bahn": 16056,
- "consultation": 16057,
- "stud": 16058,
- "reflections": 16059,
- "kindness": 16060,
- "1787": 16061,
- "internally": 16062,
- "##ovo": 16063,
- "tex": 16064,
- "mosaic": 16065,
- "distribute": 16066,
- "paddy": 16067,
- "seeming": 16068,
- "143": 16069,
- "##hic": 16070,
- "piers": 16071,
- "##15": 16072,
- "##mura": 16073,
- "##verse": 16074,
- "popularly": 16075,
- "winger": 16076,
- "kang": 16077,
- "sentinel": 16078,
- "mccoy": 16079,
- "##anza": 16080,
- "covenant": 16081,
- "##bag": 16082,
- "verge": 16083,
- "fireworks": 16084,
- "suppress": 16085,
- "thrilled": 16086,
- "dominate": 16087,
- "##jar": 16088,
- "swansea": 16089,
- "##60": 16090,
- "142": 16091,
- "reconciliation": 16092,
- "##ndi": 16093,
- "stiffened": 16094,
- "cue": 16095,
- "dorian": 16096,
- "##uf": 16097,
- "damascus": 16098,
- "amor": 16099,
- "ida": 16100,
- "foremost": 16101,
- "##aga": 16102,
- "porsche": 16103,
- "unseen": 16104,
- "dir": 16105,
- "##had": 16106,
- "##azi": 16107,
- "stony": 16108,
- "lexi": 16109,
- "melodies": 16110,
- "##nko": 16111,
- "angular": 16112,
- "integer": 16113,
- "podcast": 16114,
- "ants": 16115,
- "inherent": 16116,
- "jaws": 16117,
- "justify": 16118,
- "persona": 16119,
- "##olved": 16120,
- "josephine": 16121,
- "##nr": 16122,
- "##ressed": 16123,
- "customary": 16124,
- "flashes": 16125,
- "gala": 16126,
- "cyrus": 16127,
- "glaring": 16128,
- "backyard": 16129,
- "ariel": 16130,
- "physiology": 16131,
- "greenland": 16132,
- "html": 16133,
- "stir": 16134,
- "avon": 16135,
- "atletico": 16136,
- "finch": 16137,
- "methodology": 16138,
- "ked": 16139,
- "##lent": 16140,
- "mas": 16141,
- "catholicism": 16142,
- "townsend": 16143,
- "branding": 16144,
- "quincy": 16145,
- "fits": 16146,
- "containers": 16147,
- "1777": 16148,
- "ashore": 16149,
- "aragon": 16150,
- "##19": 16151,
- "forearm": 16152,
- "poisoning": 16153,
- "##sd": 16154,
- "adopting": 16155,
- "conquer": 16156,
- "grinding": 16157,
- "amnesty": 16158,
- "keller": 16159,
- "finances": 16160,
- "evaluate": 16161,
- "forged": 16162,
- "lankan": 16163,
- "instincts": 16164,
- "##uto": 16165,
- "guam": 16166,
- "bosnian": 16167,
- "photographed": 16168,
- "workplace": 16169,
- "desirable": 16170,
- "protector": 16171,
- "##dog": 16172,
- "allocation": 16173,
- "intently": 16174,
- "encourages": 16175,
- "willy": 16176,
- "##sten": 16177,
- "bodyguard": 16178,
- "electro": 16179,
- "brighter": 16180,
- "##ν": 16181,
- "bihar": 16182,
- "##chev": 16183,
- "lasts": 16184,
- "opener": 16185,
- "amphibious": 16186,
- "sal": 16187,
- "verde": 16188,
- "arte": 16189,
- "##cope": 16190,
- "captivity": 16191,
- "vocabulary": 16192,
- "yields": 16193,
- "##tted": 16194,
- "agreeing": 16195,
- "desmond": 16196,
- "pioneered": 16197,
- "##chus": 16198,
- "strap": 16199,
- "campaigned": 16200,
- "railroads": 16201,
- "##ович": 16202,
- "emblem": 16203,
- "##dre": 16204,
- "stormed": 16205,
- "501": 16206,
- "##ulous": 16207,
- "marijuana": 16208,
- "northumberland": 16209,
- "##gn": 16210,
- "##nath": 16211,
- "bowen": 16212,
- "landmarks": 16213,
- "beaumont": 16214,
- "##qua": 16215,
- "danube": 16216,
- "##bler": 16217,
- "attorneys": 16218,
- "th": 16219,
- "ge": 16220,
- "flyers": 16221,
- "critique": 16222,
- "villains": 16223,
- "cass": 16224,
- "mutation": 16225,
- "acc": 16226,
- "##0s": 16227,
- "colombo": 16228,
- "mckay": 16229,
- "motif": 16230,
- "sampling": 16231,
- "concluding": 16232,
- "syndicate": 16233,
- "##rell": 16234,
- "neon": 16235,
- "stables": 16236,
- "ds": 16237,
- "warnings": 16238,
- "clint": 16239,
- "mourning": 16240,
- "wilkinson": 16241,
- "##tated": 16242,
- "merrill": 16243,
- "leopard": 16244,
- "evenings": 16245,
- "exhaled": 16246,
- "emil": 16247,
- "sonia": 16248,
- "ezra": 16249,
- "discrete": 16250,
- "stove": 16251,
- "farrell": 16252,
- "fifteenth": 16253,
- "prescribed": 16254,
- "superhero": 16255,
- "##rier": 16256,
- "worms": 16257,
- "helm": 16258,
- "wren": 16259,
- "##duction": 16260,
- "##hc": 16261,
- "expo": 16262,
- "##rator": 16263,
- "hq": 16264,
- "unfamiliar": 16265,
- "antony": 16266,
- "prevents": 16267,
- "acceleration": 16268,
- "fiercely": 16269,
- "mari": 16270,
- "painfully": 16271,
- "calculations": 16272,
- "cheaper": 16273,
- "ign": 16274,
- "clifton": 16275,
- "irvine": 16276,
- "davenport": 16277,
- "mozambique": 16278,
- "##np": 16279,
- "pierced": 16280,
- "##evich": 16281,
- "wonders": 16282,
- "##wig": 16283,
- "##cate": 16284,
- "##iling": 16285,
- "crusade": 16286,
- "ware": 16287,
- "##uel": 16288,
- "enzymes": 16289,
- "reasonably": 16290,
- "mls": 16291,
- "##coe": 16292,
- "mater": 16293,
- "ambition": 16294,
- "bunny": 16295,
- "eliot": 16296,
- "kernel": 16297,
- "##fin": 16298,
- "asphalt": 16299,
- "headmaster": 16300,
- "torah": 16301,
- "aden": 16302,
- "lush": 16303,
- "pins": 16304,
- "waived": 16305,
- "##care": 16306,
- "##yas": 16307,
- "joao": 16308,
- "substrate": 16309,
- "enforce": 16310,
- "##grad": 16311,
- "##ules": 16312,
- "alvarez": 16313,
- "selections": 16314,
- "epidemic": 16315,
- "tempted": 16316,
- "##bit": 16317,
- "bremen": 16318,
- "translates": 16319,
- "ensured": 16320,
- "waterfront": 16321,
- "29th": 16322,
- "forrest": 16323,
- "manny": 16324,
- "malone": 16325,
- "kramer": 16326,
- "reigning": 16327,
- "cookies": 16328,
- "simpler": 16329,
- "absorption": 16330,
- "205": 16331,
- "engraved": 16332,
- "##ffy": 16333,
- "evaluated": 16334,
- "1778": 16335,
- "haze": 16336,
- "146": 16337,
- "comforting": 16338,
- "crossover": 16339,
- "##abe": 16340,
- "thorn": 16341,
- "##rift": 16342,
- "##imo": 16343,
- "##pop": 16344,
- "suppression": 16345,
- "fatigue": 16346,
- "cutter": 16347,
- "##tr": 16348,
- "201": 16349,
- "wurttemberg": 16350,
- "##orf": 16351,
- "enforced": 16352,
- "hovering": 16353,
- "proprietary": 16354,
- "gb": 16355,
- "samurai": 16356,
- "syllable": 16357,
- "ascent": 16358,
- "lacey": 16359,
- "tick": 16360,
- "lars": 16361,
- "tractor": 16362,
- "merchandise": 16363,
- "rep": 16364,
- "bouncing": 16365,
- "defendants": 16366,
- "##yre": 16367,
- "huntington": 16368,
- "##ground": 16369,
- "##oko": 16370,
- "standardized": 16371,
- "##hor": 16372,
- "##hima": 16373,
- "assassinated": 16374,
- "nu": 16375,
- "predecessors": 16376,
- "rainy": 16377,
- "liar": 16378,
- "assurance": 16379,
- "lyrical": 16380,
- "##uga": 16381,
- "secondly": 16382,
- "flattened": 16383,
- "ios": 16384,
- "parameter": 16385,
- "undercover": 16386,
- "##mity": 16387,
- "bordeaux": 16388,
- "punish": 16389,
- "ridges": 16390,
- "markers": 16391,
- "exodus": 16392,
- "inactive": 16393,
- "hesitate": 16394,
- "debbie": 16395,
- "nyc": 16396,
- "pledge": 16397,
- "savoy": 16398,
- "nagar": 16399,
- "offset": 16400,
- "organist": 16401,
- "##tium": 16402,
- "hesse": 16403,
- "marin": 16404,
- "converting": 16405,
- "##iver": 16406,
- "diagram": 16407,
- "propulsion": 16408,
- "pu": 16409,
- "validity": 16410,
- "reverted": 16411,
- "supportive": 16412,
- "##dc": 16413,
- "ministries": 16414,
- "clans": 16415,
- "responds": 16416,
- "proclamation": 16417,
- "##inae": 16418,
- "##ø": 16419,
- "##rea": 16420,
- "ein": 16421,
- "pleading": 16422,
- "patriot": 16423,
- "sf": 16424,
- "birch": 16425,
- "islanders": 16426,
- "strauss": 16427,
- "hates": 16428,
- "##dh": 16429,
- "brandenburg": 16430,
- "concession": 16431,
- "rd": 16432,
- "##ob": 16433,
- "1900s": 16434,
- "killings": 16435,
- "textbook": 16436,
- "antiquity": 16437,
- "cinematography": 16438,
- "wharf": 16439,
- "embarrassing": 16440,
- "setup": 16441,
- "creed": 16442,
- "farmland": 16443,
- "inequality": 16444,
- "centred": 16445,
- "signatures": 16446,
- "fallon": 16447,
- "370": 16448,
- "##ingham": 16449,
- "##uts": 16450,
- "ceylon": 16451,
- "gazing": 16452,
- "directive": 16453,
- "laurie": 16454,
- "##tern": 16455,
- "globally": 16456,
- "##uated": 16457,
- "##dent": 16458,
- "allah": 16459,
- "excavation": 16460,
- "threads": 16461,
- "##cross": 16462,
- "148": 16463,
- "frantically": 16464,
- "icc": 16465,
- "utilize": 16466,
- "determines": 16467,
- "respiratory": 16468,
- "thoughtful": 16469,
- "receptions": 16470,
- "##dicate": 16471,
- "merging": 16472,
- "chandra": 16473,
- "seine": 16474,
- "147": 16475,
- "builders": 16476,
- "builds": 16477,
- "diagnostic": 16478,
- "dev": 16479,
- "visibility": 16480,
- "goddamn": 16481,
- "analyses": 16482,
- "dhaka": 16483,
- "cho": 16484,
- "proves": 16485,
- "chancel": 16486,
- "concurrent": 16487,
- "curiously": 16488,
- "canadians": 16489,
- "pumped": 16490,
- "restoring": 16491,
- "1850s": 16492,
- "turtles": 16493,
- "jaguar": 16494,
- "sinister": 16495,
- "spinal": 16496,
- "traction": 16497,
- "declan": 16498,
- "vows": 16499,
- "1784": 16500,
- "glowed": 16501,
- "capitalism": 16502,
- "swirling": 16503,
- "install": 16504,
- "universidad": 16505,
- "##lder": 16506,
- "##oat": 16507,
- "soloist": 16508,
- "##genic": 16509,
- "##oor": 16510,
- "coincidence": 16511,
- "beginnings": 16512,
- "nissan": 16513,
- "dip": 16514,
- "resorts": 16515,
- "caucasus": 16516,
- "combustion": 16517,
- "infectious": 16518,
- "##eno": 16519,
- "pigeon": 16520,
- "serpent": 16521,
- "##itating": 16522,
- "conclude": 16523,
- "masked": 16524,
- "salad": 16525,
- "jew": 16526,
- "##gr": 16527,
- "surreal": 16528,
- "toni": 16529,
- "##wc": 16530,
- "harmonica": 16531,
- "151": 16532,
- "##gins": 16533,
- "##etic": 16534,
- "##coat": 16535,
- "fishermen": 16536,
- "intending": 16537,
- "bravery": 16538,
- "##wave": 16539,
- "klaus": 16540,
- "titan": 16541,
- "wembley": 16542,
- "taiwanese": 16543,
- "ransom": 16544,
- "40th": 16545,
- "incorrect": 16546,
- "hussein": 16547,
- "eyelids": 16548,
- "jp": 16549,
- "cooke": 16550,
- "dramas": 16551,
- "utilities": 16552,
- "##etta": 16553,
- "##print": 16554,
- "eisenhower": 16555,
- "principally": 16556,
- "granada": 16557,
- "lana": 16558,
- "##rak": 16559,
- "openings": 16560,
- "concord": 16561,
- "##bl": 16562,
- "bethany": 16563,
- "connie": 16564,
- "morality": 16565,
- "sega": 16566,
- "##mons": 16567,
- "##nard": 16568,
- "earnings": 16569,
- "##kara": 16570,
- "##cine": 16571,
- "wii": 16572,
- "communes": 16573,
- "##rel": 16574,
- "coma": 16575,
- "composing": 16576,
- "softened": 16577,
- "severed": 16578,
- "grapes": 16579,
- "##17": 16580,
- "nguyen": 16581,
- "analyzed": 16582,
- "warlord": 16583,
- "hubbard": 16584,
- "heavenly": 16585,
- "behave": 16586,
- "slovenian": 16587,
- "##hit": 16588,
- "##ony": 16589,
- "hailed": 16590,
- "filmmakers": 16591,
- "trance": 16592,
- "caldwell": 16593,
- "skye": 16594,
- "unrest": 16595,
- "coward": 16596,
- "likelihood": 16597,
- "##aging": 16598,
- "bern": 16599,
- "sci": 16600,
- "taliban": 16601,
- "honolulu": 16602,
- "propose": 16603,
- "##wang": 16604,
- "1700": 16605,
- "browser": 16606,
- "imagining": 16607,
- "cobra": 16608,
- "contributes": 16609,
- "dukes": 16610,
- "instinctively": 16611,
- "conan": 16612,
- "violinist": 16613,
- "##ores": 16614,
- "accessories": 16615,
- "gradual": 16616,
- "##amp": 16617,
- "quotes": 16618,
- "sioux": 16619,
- "##dating": 16620,
- "undertake": 16621,
- "intercepted": 16622,
- "sparkling": 16623,
- "compressed": 16624,
- "139": 16625,
- "fungus": 16626,
- "tombs": 16627,
- "haley": 16628,
- "imposing": 16629,
- "rests": 16630,
- "degradation": 16631,
- "lincolnshire": 16632,
- "retailers": 16633,
- "wetlands": 16634,
- "tulsa": 16635,
- "distributor": 16636,
- "dungeon": 16637,
- "nun": 16638,
- "greenhouse": 16639,
- "convey": 16640,
- "atlantis": 16641,
- "aft": 16642,
- "exits": 16643,
- "oman": 16644,
- "dresser": 16645,
- "lyons": 16646,
- "##sti": 16647,
- "joking": 16648,
- "eddy": 16649,
- "judgement": 16650,
- "omitted": 16651,
- "digits": 16652,
- "##cts": 16653,
- "##game": 16654,
- "juniors": 16655,
- "##rae": 16656,
- "cents": 16657,
- "stricken": 16658,
- "une": 16659,
- "##ngo": 16660,
- "wizards": 16661,
- "weir": 16662,
- "breton": 16663,
- "nan": 16664,
- "technician": 16665,
- "fibers": 16666,
- "liking": 16667,
- "royalty": 16668,
- "##cca": 16669,
- "154": 16670,
- "persia": 16671,
- "terribly": 16672,
- "magician": 16673,
- "##rable": 16674,
- "##unt": 16675,
- "vance": 16676,
- "cafeteria": 16677,
- "booker": 16678,
- "camille": 16679,
- "warmer": 16680,
- "##static": 16681,
- "consume": 16682,
- "cavern": 16683,
- "gaps": 16684,
- "compass": 16685,
- "contemporaries": 16686,
- "foyer": 16687,
- "soothing": 16688,
- "graveyard": 16689,
- "maj": 16690,
- "plunged": 16691,
- "blush": 16692,
- "##wear": 16693,
- "cascade": 16694,
- "demonstrates": 16695,
- "ordinance": 16696,
- "##nov": 16697,
- "boyle": 16698,
- "##lana": 16699,
- "rockefeller": 16700,
- "shaken": 16701,
- "banjo": 16702,
- "izzy": 16703,
- "##ense": 16704,
- "breathless": 16705,
- "vines": 16706,
- "##32": 16707,
- "##eman": 16708,
- "alterations": 16709,
- "chromosome": 16710,
- "dwellings": 16711,
- "feudal": 16712,
- "mole": 16713,
- "153": 16714,
- "catalonia": 16715,
- "relics": 16716,
- "tenant": 16717,
- "mandated": 16718,
- "##fm": 16719,
- "fridge": 16720,
- "hats": 16721,
- "honesty": 16722,
- "patented": 16723,
- "raul": 16724,
- "heap": 16725,
- "cruisers": 16726,
- "accusing": 16727,
- "enlightenment": 16728,
- "infants": 16729,
- "wherein": 16730,
- "chatham": 16731,
- "contractors": 16732,
- "zen": 16733,
- "affinity": 16734,
- "hc": 16735,
- "osborne": 16736,
- "piston": 16737,
- "156": 16738,
- "traps": 16739,
- "maturity": 16740,
- "##rana": 16741,
- "lagos": 16742,
- "##zal": 16743,
- "peering": 16744,
- "##nay": 16745,
- "attendant": 16746,
- "dealers": 16747,
- "protocols": 16748,
- "subset": 16749,
- "prospects": 16750,
- "biographical": 16751,
- "##cre": 16752,
- "artery": 16753,
- "##zers": 16754,
- "insignia": 16755,
- "nuns": 16756,
- "endured": 16757,
- "##eration": 16758,
- "recommend": 16759,
- "schwartz": 16760,
- "serbs": 16761,
- "berger": 16762,
- "cromwell": 16763,
- "crossroads": 16764,
- "##ctor": 16765,
- "enduring": 16766,
- "clasped": 16767,
- "grounded": 16768,
- "##bine": 16769,
- "marseille": 16770,
- "twitched": 16771,
- "abel": 16772,
- "choke": 16773,
- "https": 16774,
- "catalyst": 16775,
- "moldova": 16776,
- "italians": 16777,
- "##tist": 16778,
- "disastrous": 16779,
- "wee": 16780,
- "##oured": 16781,
- "##nti": 16782,
- "wwf": 16783,
- "nope": 16784,
- "##piration": 16785,
- "##asa": 16786,
- "expresses": 16787,
- "thumbs": 16788,
- "167": 16789,
- "##nza": 16790,
- "coca": 16791,
- "1781": 16792,
- "cheating": 16793,
- "##ption": 16794,
- "skipped": 16795,
- "sensory": 16796,
- "heidelberg": 16797,
- "spies": 16798,
- "satan": 16799,
- "dangers": 16800,
- "semifinal": 16801,
- "202": 16802,
- "bohemia": 16803,
- "whitish": 16804,
- "confusing": 16805,
- "shipbuilding": 16806,
- "relies": 16807,
- "surgeons": 16808,
- "landings": 16809,
- "ravi": 16810,
- "baku": 16811,
- "moor": 16812,
- "suffix": 16813,
- "alejandro": 16814,
- "##yana": 16815,
- "litre": 16816,
- "upheld": 16817,
- "##unk": 16818,
- "rajasthan": 16819,
- "##rek": 16820,
- "coaster": 16821,
- "insists": 16822,
- "posture": 16823,
- "scenarios": 16824,
- "etienne": 16825,
- "favoured": 16826,
- "appoint": 16827,
- "transgender": 16828,
- "elephants": 16829,
- "poked": 16830,
- "greenwood": 16831,
- "defences": 16832,
- "fulfilled": 16833,
- "militant": 16834,
- "somali": 16835,
- "1758": 16836,
- "chalk": 16837,
- "potent": 16838,
- "##ucci": 16839,
- "migrants": 16840,
- "wink": 16841,
- "assistants": 16842,
- "nos": 16843,
- "restriction": 16844,
- "activism": 16845,
- "niger": 16846,
- "##ario": 16847,
- "colon": 16848,
- "shaun": 16849,
- "##sat": 16850,
- "daphne": 16851,
- "##erated": 16852,
- "swam": 16853,
- "congregations": 16854,
- "reprise": 16855,
- "considerations": 16856,
- "magnet": 16857,
- "playable": 16858,
- "xvi": 16859,
- "##р": 16860,
- "overthrow": 16861,
- "tobias": 16862,
- "knob": 16863,
- "chavez": 16864,
- "coding": 16865,
- "##mers": 16866,
- "propped": 16867,
- "katrina": 16868,
- "orient": 16869,
- "newcomer": 16870,
- "##suke": 16871,
- "temperate": 16872,
- "##pool": 16873,
- "farmhouse": 16874,
- "interrogation": 16875,
- "##vd": 16876,
- "committing": 16877,
- "##vert": 16878,
- "forthcoming": 16879,
- "strawberry": 16880,
- "joaquin": 16881,
- "macau": 16882,
- "ponds": 16883,
- "shocking": 16884,
- "siberia": 16885,
- "##cellular": 16886,
- "chant": 16887,
- "contributors": 16888,
- "##nant": 16889,
- "##ologists": 16890,
- "sped": 16891,
- "absorb": 16892,
- "hail": 16893,
- "1782": 16894,
- "spared": 16895,
- "##hore": 16896,
- "barbados": 16897,
- "karate": 16898,
- "opus": 16899,
- "originates": 16900,
- "saul": 16901,
- "##xie": 16902,
- "evergreen": 16903,
- "leaped": 16904,
- "##rock": 16905,
- "correlation": 16906,
- "exaggerated": 16907,
- "weekday": 16908,
- "unification": 16909,
- "bump": 16910,
- "tracing": 16911,
- "brig": 16912,
- "afb": 16913,
- "pathways": 16914,
- "utilizing": 16915,
- "##ners": 16916,
- "mod": 16917,
- "mb": 16918,
- "disturbance": 16919,
- "kneeling": 16920,
- "##stad": 16921,
- "##guchi": 16922,
- "100th": 16923,
- "pune": 16924,
- "##thy": 16925,
- "decreasing": 16926,
- "168": 16927,
- "manipulation": 16928,
- "miriam": 16929,
- "academia": 16930,
- "ecosystem": 16931,
- "occupational": 16932,
- "rbi": 16933,
- "##lem": 16934,
- "rift": 16935,
- "##14": 16936,
- "rotary": 16937,
- "stacked": 16938,
- "incorporation": 16939,
- "awakening": 16940,
- "generators": 16941,
- "guerrero": 16942,
- "racist": 16943,
- "##omy": 16944,
- "cyber": 16945,
- "derivatives": 16946,
- "culminated": 16947,
- "allie": 16948,
- "annals": 16949,
- "panzer": 16950,
- "sainte": 16951,
- "wikipedia": 16952,
- "pops": 16953,
- "zu": 16954,
- "austro": 16955,
- "##vate": 16956,
- "algerian": 16957,
- "politely": 16958,
- "nicholson": 16959,
- "mornings": 16960,
- "educate": 16961,
- "tastes": 16962,
- "thrill": 16963,
- "dartmouth": 16964,
- "##gating": 16965,
- "db": 16966,
- "##jee": 16967,
- "regan": 16968,
- "differing": 16969,
- "concentrating": 16970,
- "choreography": 16971,
- "divinity": 16972,
- "##media": 16973,
- "pledged": 16974,
- "alexandre": 16975,
- "routing": 16976,
- "gregor": 16977,
- "madeline": 16978,
- "##idal": 16979,
- "apocalypse": 16980,
- "##hora": 16981,
- "gunfire": 16982,
- "culminating": 16983,
- "elves": 16984,
- "fined": 16985,
- "liang": 16986,
- "lam": 16987,
- "programmed": 16988,
- "tar": 16989,
- "guessing": 16990,
- "transparency": 16991,
- "gabrielle": 16992,
- "##gna": 16993,
- "cancellation": 16994,
- "flexibility": 16995,
- "##lining": 16996,
- "accession": 16997,
- "shea": 16998,
- "stronghold": 16999,
- "nets": 17000,
- "specializes": 17001,
- "##rgan": 17002,
- "abused": 17003,
- "hasan": 17004,
- "sgt": 17005,
- "ling": 17006,
- "exceeding": 17007,
- "##₄": 17008,
- "admiration": 17009,
- "supermarket": 17010,
- "##ark": 17011,
- "photographers": 17012,
- "specialised": 17013,
- "tilt": 17014,
- "resonance": 17015,
- "hmm": 17016,
- "perfume": 17017,
- "380": 17018,
- "sami": 17019,
- "threatens": 17020,
- "garland": 17021,
- "botany": 17022,
- "guarding": 17023,
- "boiled": 17024,
- "greet": 17025,
- "puppy": 17026,
- "russo": 17027,
- "supplier": 17028,
- "wilmington": 17029,
- "vibrant": 17030,
- "vijay": 17031,
- "##bius": 17032,
- "paralympic": 17033,
- "grumbled": 17034,
- "paige": 17035,
- "faa": 17036,
- "licking": 17037,
- "margins": 17038,
- "hurricanes": 17039,
- "##gong": 17040,
- "fest": 17041,
- "grenade": 17042,
- "ripping": 17043,
- "##uz": 17044,
- "counseling": 17045,
- "weigh": 17046,
- "##sian": 17047,
- "needles": 17048,
- "wiltshire": 17049,
- "edison": 17050,
- "costly": 17051,
- "##not": 17052,
- "fulton": 17053,
- "tramway": 17054,
- "redesigned": 17055,
- "staffordshire": 17056,
- "cache": 17057,
- "gasping": 17058,
- "watkins": 17059,
- "sleepy": 17060,
- "candidacy": 17061,
- "##group": 17062,
- "monkeys": 17063,
- "timeline": 17064,
- "throbbing": 17065,
- "##bid": 17066,
- "##sos": 17067,
- "berth": 17068,
- "uzbekistan": 17069,
- "vanderbilt": 17070,
- "bothering": 17071,
- "overturned": 17072,
- "ballots": 17073,
- "gem": 17074,
- "##iger": 17075,
- "sunglasses": 17076,
- "subscribers": 17077,
- "hooker": 17078,
- "compelling": 17079,
- "ang": 17080,
- "exceptionally": 17081,
- "saloon": 17082,
- "stab": 17083,
- "##rdi": 17084,
- "carla": 17085,
- "terrifying": 17086,
- "rom": 17087,
- "##vision": 17088,
- "coil": 17089,
- "##oids": 17090,
- "satisfying": 17091,
- "vendors": 17092,
- "31st": 17093,
- "mackay": 17094,
- "deities": 17095,
- "overlooked": 17096,
- "ambient": 17097,
- "bahamas": 17098,
- "felipe": 17099,
- "olympia": 17100,
- "whirled": 17101,
- "botanist": 17102,
- "advertised": 17103,
- "tugging": 17104,
- "##dden": 17105,
- "disciples": 17106,
- "morales": 17107,
- "unionist": 17108,
- "rites": 17109,
- "foley": 17110,
- "morse": 17111,
- "motives": 17112,
- "creepy": 17113,
- "##₀": 17114,
- "soo": 17115,
- "##sz": 17116,
- "bargain": 17117,
- "highness": 17118,
- "frightening": 17119,
- "turnpike": 17120,
- "tory": 17121,
- "reorganization": 17122,
- "##cer": 17123,
- "depict": 17124,
- "biographer": 17125,
- "##walk": 17126,
- "unopposed": 17127,
- "manifesto": 17128,
- "##gles": 17129,
- "institut": 17130,
- "emile": 17131,
- "accidental": 17132,
- "kapoor": 17133,
- "##dam": 17134,
- "kilkenny": 17135,
- "cortex": 17136,
- "lively": 17137,
- "##13": 17138,
- "romanesque": 17139,
- "jain": 17140,
- "shan": 17141,
- "cannons": 17142,
- "##ood": 17143,
- "##ske": 17144,
- "petrol": 17145,
- "echoing": 17146,
- "amalgamated": 17147,
- "disappears": 17148,
- "cautious": 17149,
- "proposes": 17150,
- "sanctions": 17151,
- "trenton": 17152,
- "##ر": 17153,
- "flotilla": 17154,
- "aus": 17155,
- "contempt": 17156,
- "tor": 17157,
- "canary": 17158,
- "cote": 17159,
- "theirs": 17160,
- "##hun": 17161,
- "conceptual": 17162,
- "deleted": 17163,
- "fascinating": 17164,
- "paso": 17165,
- "blazing": 17166,
- "elf": 17167,
- "honourable": 17168,
- "hutchinson": 17169,
- "##eiro": 17170,
- "##outh": 17171,
- "##zin": 17172,
- "surveyor": 17173,
- "tee": 17174,
- "amidst": 17175,
- "wooded": 17176,
- "reissue": 17177,
- "intro": 17178,
- "##ono": 17179,
- "cobb": 17180,
- "shelters": 17181,
- "newsletter": 17182,
- "hanson": 17183,
- "brace": 17184,
- "encoding": 17185,
- "confiscated": 17186,
- "dem": 17187,
- "caravan": 17188,
- "marino": 17189,
- "scroll": 17190,
- "melodic": 17191,
- "cows": 17192,
- "imam": 17193,
- "##adi": 17194,
- "##aneous": 17195,
- "northward": 17196,
- "searches": 17197,
- "biodiversity": 17198,
- "cora": 17199,
- "310": 17200,
- "roaring": 17201,
- "##bers": 17202,
- "connell": 17203,
- "theologian": 17204,
- "halo": 17205,
- "compose": 17206,
- "pathetic": 17207,
- "unmarried": 17208,
- "dynamo": 17209,
- "##oot": 17210,
- "az": 17211,
- "calculation": 17212,
- "toulouse": 17213,
- "deserves": 17214,
- "humour": 17215,
- "nr": 17216,
- "forgiveness": 17217,
- "tam": 17218,
- "undergone": 17219,
- "martyr": 17220,
- "pamela": 17221,
- "myths": 17222,
- "whore": 17223,
- "counselor": 17224,
- "hicks": 17225,
- "290": 17226,
- "heavens": 17227,
- "battleship": 17228,
- "electromagnetic": 17229,
- "##bbs": 17230,
- "stellar": 17231,
- "establishments": 17232,
- "presley": 17233,
- "hopped": 17234,
- "##chin": 17235,
- "temptation": 17236,
- "90s": 17237,
- "wills": 17238,
- "nas": 17239,
- "##yuan": 17240,
- "nhs": 17241,
- "##nya": 17242,
- "seminars": 17243,
- "##yev": 17244,
- "adaptations": 17245,
- "gong": 17246,
- "asher": 17247,
- "lex": 17248,
- "indicator": 17249,
- "sikh": 17250,
- "tobago": 17251,
- "cites": 17252,
- "goin": 17253,
- "##yte": 17254,
- "satirical": 17255,
- "##gies": 17256,
- "characterised": 17257,
- "correspond": 17258,
- "bubbles": 17259,
- "lure": 17260,
- "participates": 17261,
- "##vid": 17262,
- "eruption": 17263,
- "skate": 17264,
- "therapeutic": 17265,
- "1785": 17266,
- "canals": 17267,
- "wholesale": 17268,
- "defaulted": 17269,
- "sac": 17270,
- "460": 17271,
- "petit": 17272,
- "##zzled": 17273,
- "virgil": 17274,
- "leak": 17275,
- "ravens": 17276,
- "256": 17277,
- "portraying": 17278,
- "##yx": 17279,
- "ghetto": 17280,
- "creators": 17281,
- "dams": 17282,
- "portray": 17283,
- "vicente": 17284,
- "##rington": 17285,
- "fae": 17286,
- "namesake": 17287,
- "bounty": 17288,
- "##arium": 17289,
- "joachim": 17290,
- "##ota": 17291,
- "##iser": 17292,
- "aforementioned": 17293,
- "axle": 17294,
- "snout": 17295,
- "depended": 17296,
- "dismantled": 17297,
- "reuben": 17298,
- "480": 17299,
- "##ibly": 17300,
- "gallagher": 17301,
- "##lau": 17302,
- "##pd": 17303,
- "earnest": 17304,
- "##ieu": 17305,
- "##iary": 17306,
- "inflicted": 17307,
- "objections": 17308,
- "##llar": 17309,
- "asa": 17310,
- "gritted": 17311,
- "##athy": 17312,
- "jericho": 17313,
- "##sea": 17314,
- "##was": 17315,
- "flick": 17316,
- "underside": 17317,
- "ceramics": 17318,
- "undead": 17319,
- "substituted": 17320,
- "195": 17321,
- "eastward": 17322,
- "undoubtedly": 17323,
- "wheeled": 17324,
- "chimney": 17325,
- "##iche": 17326,
- "guinness": 17327,
- "cb": 17328,
- "##ager": 17329,
- "siding": 17330,
- "##bell": 17331,
- "traitor": 17332,
- "baptiste": 17333,
- "disguised": 17334,
- "inauguration": 17335,
- "149": 17336,
- "tipperary": 17337,
- "choreographer": 17338,
- "perched": 17339,
- "warmed": 17340,
- "stationary": 17341,
- "eco": 17342,
- "##ike": 17343,
- "##ntes": 17344,
- "bacterial": 17345,
- "##aurus": 17346,
- "flores": 17347,
- "phosphate": 17348,
- "##core": 17349,
- "attacker": 17350,
- "invaders": 17351,
- "alvin": 17352,
- "intersects": 17353,
- "a1": 17354,
- "indirectly": 17355,
- "immigrated": 17356,
- "businessmen": 17357,
- "cornelius": 17358,
- "valves": 17359,
- "narrated": 17360,
- "pill": 17361,
- "sober": 17362,
- "ul": 17363,
- "nationale": 17364,
- "monastic": 17365,
- "applicants": 17366,
- "scenery": 17367,
- "##jack": 17368,
- "161": 17369,
- "motifs": 17370,
- "constitutes": 17371,
- "cpu": 17372,
- "##osh": 17373,
- "jurisdictions": 17374,
- "sd": 17375,
- "tuning": 17376,
- "irritation": 17377,
- "woven": 17378,
- "##uddin": 17379,
- "fertility": 17380,
- "gao": 17381,
- "##erie": 17382,
- "antagonist": 17383,
- "impatient": 17384,
- "glacial": 17385,
- "hides": 17386,
- "boarded": 17387,
- "denominations": 17388,
- "interception": 17389,
- "##jas": 17390,
- "cookie": 17391,
- "nicola": 17392,
- "##tee": 17393,
- "algebraic": 17394,
- "marquess": 17395,
- "bahn": 17396,
- "parole": 17397,
- "buyers": 17398,
- "bait": 17399,
- "turbines": 17400,
- "paperwork": 17401,
- "bestowed": 17402,
- "natasha": 17403,
- "renee": 17404,
- "oceans": 17405,
- "purchases": 17406,
- "157": 17407,
- "vaccine": 17408,
- "215": 17409,
- "##tock": 17410,
- "fixtures": 17411,
- "playhouse": 17412,
- "integrate": 17413,
- "jai": 17414,
- "oswald": 17415,
- "intellectuals": 17416,
- "##cky": 17417,
- "booked": 17418,
- "nests": 17419,
- "mortimer": 17420,
- "##isi": 17421,
- "obsession": 17422,
- "sept": 17423,
- "##gler": 17424,
- "##sum": 17425,
- "440": 17426,
- "scrutiny": 17427,
- "simultaneous": 17428,
- "squinted": 17429,
- "##shin": 17430,
- "collects": 17431,
- "oven": 17432,
- "shankar": 17433,
- "penned": 17434,
- "remarkably": 17435,
- "##я": 17436,
- "slips": 17437,
- "luggage": 17438,
- "spectral": 17439,
- "1786": 17440,
- "collaborations": 17441,
- "louie": 17442,
- "consolidation": 17443,
- "##ailed": 17444,
- "##ivating": 17445,
- "420": 17446,
- "hoover": 17447,
- "blackpool": 17448,
- "harness": 17449,
- "ignition": 17450,
- "vest": 17451,
- "tails": 17452,
- "belmont": 17453,
- "mongol": 17454,
- "skinner": 17455,
- "##nae": 17456,
- "visually": 17457,
- "mage": 17458,
- "derry": 17459,
- "##tism": 17460,
- "##unce": 17461,
- "stevie": 17462,
- "transitional": 17463,
- "##rdy": 17464,
- "redskins": 17465,
- "drying": 17466,
- "prep": 17467,
- "prospective": 17468,
- "##21": 17469,
- "annoyance": 17470,
- "oversee": 17471,
- "##loaded": 17472,
- "fills": 17473,
- "##books": 17474,
- "##iki": 17475,
- "announces": 17476,
- "fda": 17477,
- "scowled": 17478,
- "respects": 17479,
- "prasad": 17480,
- "mystic": 17481,
- "tucson": 17482,
- "##vale": 17483,
- "revue": 17484,
- "springer": 17485,
- "bankrupt": 17486,
- "1772": 17487,
- "aristotle": 17488,
- "salvatore": 17489,
- "habsburg": 17490,
- "##geny": 17491,
- "dal": 17492,
- "natal": 17493,
- "nut": 17494,
- "pod": 17495,
- "chewing": 17496,
- "darts": 17497,
- "moroccan": 17498,
- "walkover": 17499,
- "rosario": 17500,
- "lenin": 17501,
- "punjabi": 17502,
- "##ße": 17503,
- "grossed": 17504,
- "scattering": 17505,
- "wired": 17506,
- "invasive": 17507,
- "hui": 17508,
- "polynomial": 17509,
- "corridors": 17510,
- "wakes": 17511,
- "gina": 17512,
- "portrays": 17513,
- "##cratic": 17514,
- "arid": 17515,
- "retreating": 17516,
- "erich": 17517,
- "irwin": 17518,
- "sniper": 17519,
- "##dha": 17520,
- "linen": 17521,
- "lindsey": 17522,
- "maneuver": 17523,
- "butch": 17524,
- "shutting": 17525,
- "socio": 17526,
- "bounce": 17527,
- "commemorative": 17528,
- "postseason": 17529,
- "jeremiah": 17530,
- "pines": 17531,
- "275": 17532,
- "mystical": 17533,
- "beads": 17534,
- "bp": 17535,
- "abbas": 17536,
- "furnace": 17537,
- "bidding": 17538,
- "consulted": 17539,
- "assaulted": 17540,
- "empirical": 17541,
- "rubble": 17542,
- "enclosure": 17543,
- "sob": 17544,
- "weakly": 17545,
- "cancel": 17546,
- "polly": 17547,
- "yielded": 17548,
- "##emann": 17549,
- "curly": 17550,
- "prediction": 17551,
- "battered": 17552,
- "70s": 17553,
- "vhs": 17554,
- "jacqueline": 17555,
- "render": 17556,
- "sails": 17557,
- "barked": 17558,
- "detailing": 17559,
- "grayson": 17560,
- "riga": 17561,
- "sloane": 17562,
- "raging": 17563,
- "##yah": 17564,
- "herbs": 17565,
- "bravo": 17566,
- "##athlon": 17567,
- "alloy": 17568,
- "giggle": 17569,
- "imminent": 17570,
- "suffers": 17571,
- "assumptions": 17572,
- "waltz": 17573,
- "##itate": 17574,
- "accomplishments": 17575,
- "##ited": 17576,
- "bathing": 17577,
- "remixed": 17578,
- "deception": 17579,
- "prefix": 17580,
- "##emia": 17581,
- "deepest": 17582,
- "##tier": 17583,
- "##eis": 17584,
- "balkan": 17585,
- "frogs": 17586,
- "##rong": 17587,
- "slab": 17588,
- "##pate": 17589,
- "philosophers": 17590,
- "peterborough": 17591,
- "grains": 17592,
- "imports": 17593,
- "dickinson": 17594,
- "rwanda": 17595,
- "##atics": 17596,
- "1774": 17597,
- "dirk": 17598,
- "lan": 17599,
- "tablets": 17600,
- "##rove": 17601,
- "clone": 17602,
- "##rice": 17603,
- "caretaker": 17604,
- "hostilities": 17605,
- "mclean": 17606,
- "##gre": 17607,
- "regimental": 17608,
- "treasures": 17609,
- "norms": 17610,
- "impose": 17611,
- "tsar": 17612,
- "tango": 17613,
- "diplomacy": 17614,
- "variously": 17615,
- "complain": 17616,
- "192": 17617,
- "recognise": 17618,
- "arrests": 17619,
- "1779": 17620,
- "celestial": 17621,
- "pulitzer": 17622,
- "##dus": 17623,
- "bing": 17624,
- "libretto": 17625,
- "##moor": 17626,
- "adele": 17627,
- "splash": 17628,
- "##rite": 17629,
- "expectation": 17630,
- "lds": 17631,
- "confronts": 17632,
- "##izer": 17633,
- "spontaneous": 17634,
- "harmful": 17635,
- "wedge": 17636,
- "entrepreneurs": 17637,
- "buyer": 17638,
- "##ope": 17639,
- "bilingual": 17640,
- "translate": 17641,
- "rugged": 17642,
- "conner": 17643,
- "circulated": 17644,
- "uae": 17645,
- "eaton": 17646,
- "##gra": 17647,
- "##zzle": 17648,
- "lingered": 17649,
- "lockheed": 17650,
- "vishnu": 17651,
- "reelection": 17652,
- "alonso": 17653,
- "##oom": 17654,
- "joints": 17655,
- "yankee": 17656,
- "headline": 17657,
- "cooperate": 17658,
- "heinz": 17659,
- "laureate": 17660,
- "invading": 17661,
- "##sford": 17662,
- "echoes": 17663,
- "scandinavian": 17664,
- "##dham": 17665,
- "hugging": 17666,
- "vitamin": 17667,
- "salute": 17668,
- "micah": 17669,
- "hind": 17670,
- "trader": 17671,
- "##sper": 17672,
- "radioactive": 17673,
- "##ndra": 17674,
- "militants": 17675,
- "poisoned": 17676,
- "ratified": 17677,
- "remark": 17678,
- "campeonato": 17679,
- "deprived": 17680,
- "wander": 17681,
- "prop": 17682,
- "##dong": 17683,
- "outlook": 17684,
- "##tani": 17685,
- "##rix": 17686,
- "##eye": 17687,
- "chiang": 17688,
- "darcy": 17689,
- "##oping": 17690,
- "mandolin": 17691,
- "spice": 17692,
- "statesman": 17693,
- "babylon": 17694,
- "182": 17695,
- "walled": 17696,
- "forgetting": 17697,
- "afro": 17698,
- "##cap": 17699,
- "158": 17700,
- "giorgio": 17701,
- "buffer": 17702,
- "##polis": 17703,
- "planetary": 17704,
- "##gis": 17705,
- "overlap": 17706,
- "terminals": 17707,
- "kinda": 17708,
- "centenary": 17709,
- "##bir": 17710,
- "arising": 17711,
- "manipulate": 17712,
- "elm": 17713,
- "ke": 17714,
- "1770": 17715,
- "ak": 17716,
- "##tad": 17717,
- "chrysler": 17718,
- "mapped": 17719,
- "moose": 17720,
- "pomeranian": 17721,
- "quad": 17722,
- "macarthur": 17723,
- "assemblies": 17724,
- "shoreline": 17725,
- "recalls": 17726,
- "stratford": 17727,
- "##rted": 17728,
- "noticeable": 17729,
- "##evic": 17730,
- "imp": 17731,
- "##rita": 17732,
- "##sque": 17733,
- "accustomed": 17734,
- "supplying": 17735,
- "tents": 17736,
- "disgusted": 17737,
- "vogue": 17738,
- "sipped": 17739,
- "filters": 17740,
- "khz": 17741,
- "reno": 17742,
- "selecting": 17743,
- "luftwaffe": 17744,
- "mcmahon": 17745,
- "tyne": 17746,
- "masterpiece": 17747,
- "carriages": 17748,
- "collided": 17749,
- "dunes": 17750,
- "exercised": 17751,
- "flare": 17752,
- "remembers": 17753,
- "muzzle": 17754,
- "##mobile": 17755,
- "heck": 17756,
- "##rson": 17757,
- "burgess": 17758,
- "lunged": 17759,
- "middleton": 17760,
- "boycott": 17761,
- "bilateral": 17762,
- "##sity": 17763,
- "hazardous": 17764,
- "lumpur": 17765,
- "multiplayer": 17766,
- "spotlight": 17767,
- "jackets": 17768,
- "goldman": 17769,
- "liege": 17770,
- "porcelain": 17771,
- "rag": 17772,
- "waterford": 17773,
- "benz": 17774,
- "attracts": 17775,
- "hopeful": 17776,
- "battling": 17777,
- "ottomans": 17778,
- "kensington": 17779,
- "baked": 17780,
- "hymns": 17781,
- "cheyenne": 17782,
- "lattice": 17783,
- "levine": 17784,
- "borrow": 17785,
- "polymer": 17786,
- "clashes": 17787,
- "michaels": 17788,
- "monitored": 17789,
- "commitments": 17790,
- "denounced": 17791,
- "##25": 17792,
- "##von": 17793,
- "cavity": 17794,
- "##oney": 17795,
- "hobby": 17796,
- "akin": 17797,
- "##holders": 17798,
- "futures": 17799,
- "intricate": 17800,
- "cornish": 17801,
- "patty": 17802,
- "##oned": 17803,
- "illegally": 17804,
- "dolphin": 17805,
- "##lag": 17806,
- "barlow": 17807,
- "yellowish": 17808,
- "maddie": 17809,
- "apologized": 17810,
- "luton": 17811,
- "plagued": 17812,
- "##puram": 17813,
- "nana": 17814,
- "##rds": 17815,
- "sway": 17816,
- "fanny": 17817,
- "łodz": 17818,
- "##rino": 17819,
- "psi": 17820,
- "suspicions": 17821,
- "hanged": 17822,
- "##eding": 17823,
- "initiate": 17824,
- "charlton": 17825,
- "##por": 17826,
- "nak": 17827,
- "competent": 17828,
- "235": 17829,
- "analytical": 17830,
- "annex": 17831,
- "wardrobe": 17832,
- "reservations": 17833,
- "##rma": 17834,
- "sect": 17835,
- "162": 17836,
- "fairfax": 17837,
- "hedge": 17838,
- "piled": 17839,
- "buckingham": 17840,
- "uneven": 17841,
- "bauer": 17842,
- "simplicity": 17843,
- "snyder": 17844,
- "interpret": 17845,
- "accountability": 17846,
- "donors": 17847,
- "moderately": 17848,
- "byrd": 17849,
- "continents": 17850,
- "##cite": 17851,
- "##max": 17852,
- "disciple": 17853,
- "hr": 17854,
- "jamaican": 17855,
- "ping": 17856,
- "nominees": 17857,
- "##uss": 17858,
- "mongolian": 17859,
- "diver": 17860,
- "attackers": 17861,
- "eagerly": 17862,
- "ideological": 17863,
- "pillows": 17864,
- "miracles": 17865,
- "apartheid": 17866,
- "revolver": 17867,
- "sulfur": 17868,
- "clinics": 17869,
- "moran": 17870,
- "163": 17871,
- "##enko": 17872,
- "ile": 17873,
- "katy": 17874,
- "rhetoric": 17875,
- "##icated": 17876,
- "chronology": 17877,
- "recycling": 17878,
- "##hrer": 17879,
- "elongated": 17880,
- "mughal": 17881,
- "pascal": 17882,
- "profiles": 17883,
- "vibration": 17884,
- "databases": 17885,
- "domination": 17886,
- "##fare": 17887,
- "##rant": 17888,
- "matthias": 17889,
- "digest": 17890,
- "rehearsal": 17891,
- "polling": 17892,
- "weiss": 17893,
- "initiation": 17894,
- "reeves": 17895,
- "clinging": 17896,
- "flourished": 17897,
- "impress": 17898,
- "ngo": 17899,
- "##hoff": 17900,
- "##ume": 17901,
- "buckley": 17902,
- "symposium": 17903,
- "rhythms": 17904,
- "weed": 17905,
- "emphasize": 17906,
- "transforming": 17907,
- "##taking": 17908,
- "##gence": 17909,
- "##yman": 17910,
- "accountant": 17911,
- "analyze": 17912,
- "flicker": 17913,
- "foil": 17914,
- "priesthood": 17915,
- "voluntarily": 17916,
- "decreases": 17917,
- "##80": 17918,
- "##hya": 17919,
- "slater": 17920,
- "sv": 17921,
- "charting": 17922,
- "mcgill": 17923,
- "##lde": 17924,
- "moreno": 17925,
- "##iu": 17926,
- "besieged": 17927,
- "zur": 17928,
- "robes": 17929,
- "##phic": 17930,
- "admitting": 17931,
- "api": 17932,
- "deported": 17933,
- "turmoil": 17934,
- "peyton": 17935,
- "earthquakes": 17936,
- "##ares": 17937,
- "nationalists": 17938,
- "beau": 17939,
- "clair": 17940,
- "brethren": 17941,
- "interrupt": 17942,
- "welch": 17943,
- "curated": 17944,
- "galerie": 17945,
- "requesting": 17946,
- "164": 17947,
- "##ested": 17948,
- "impending": 17949,
- "steward": 17950,
- "viper": 17951,
- "##vina": 17952,
- "complaining": 17953,
- "beautifully": 17954,
- "brandy": 17955,
- "foam": 17956,
- "nl": 17957,
- "1660": 17958,
- "##cake": 17959,
- "alessandro": 17960,
- "punches": 17961,
- "laced": 17962,
- "explanations": 17963,
- "##lim": 17964,
- "attribute": 17965,
- "clit": 17966,
- "reggie": 17967,
- "discomfort": 17968,
- "##cards": 17969,
- "smoothed": 17970,
- "whales": 17971,
- "##cene": 17972,
- "adler": 17973,
- "countered": 17974,
- "duffy": 17975,
- "disciplinary": 17976,
- "widening": 17977,
- "recipe": 17978,
- "reliance": 17979,
- "conducts": 17980,
- "goats": 17981,
- "gradient": 17982,
- "preaching": 17983,
- "##shaw": 17984,
- "matilda": 17985,
- "quasi": 17986,
- "striped": 17987,
- "meridian": 17988,
- "cannabis": 17989,
- "cordoba": 17990,
- "certificates": 17991,
- "##agh": 17992,
- "##tering": 17993,
- "graffiti": 17994,
- "hangs": 17995,
- "pilgrims": 17996,
- "repeats": 17997,
- "##ych": 17998,
- "revive": 17999,
- "urine": 18000,
- "etat": 18001,
- "##hawk": 18002,
- "fueled": 18003,
- "belts": 18004,
- "fuzzy": 18005,
- "susceptible": 18006,
- "##hang": 18007,
- "mauritius": 18008,
- "salle": 18009,
- "sincere": 18010,
- "beers": 18011,
- "hooks": 18012,
- "##cki": 18013,
- "arbitration": 18014,
- "entrusted": 18015,
- "advise": 18016,
- "sniffed": 18017,
- "seminar": 18018,
- "junk": 18019,
- "donnell": 18020,
- "processors": 18021,
- "principality": 18022,
- "strapped": 18023,
- "celia": 18024,
- "mendoza": 18025,
- "everton": 18026,
- "fortunes": 18027,
- "prejudice": 18028,
- "starving": 18029,
- "reassigned": 18030,
- "steamer": 18031,
- "##lund": 18032,
- "tuck": 18033,
- "evenly": 18034,
- "foreman": 18035,
- "##ffen": 18036,
- "dans": 18037,
- "375": 18038,
- "envisioned": 18039,
- "slit": 18040,
- "##xy": 18041,
- "baseman": 18042,
- "liberia": 18043,
- "rosemary": 18044,
- "##weed": 18045,
- "electrified": 18046,
- "periodically": 18047,
- "potassium": 18048,
- "stride": 18049,
- "contexts": 18050,
- "sperm": 18051,
- "slade": 18052,
- "mariners": 18053,
- "influx": 18054,
- "bianca": 18055,
- "subcommittee": 18056,
- "##rane": 18057,
- "spilling": 18058,
- "icao": 18059,
- "estuary": 18060,
- "##nock": 18061,
- "delivers": 18062,
- "iphone": 18063,
- "##ulata": 18064,
- "isa": 18065,
- "mira": 18066,
- "bohemian": 18067,
- "dessert": 18068,
- "##sbury": 18069,
- "welcoming": 18070,
- "proudly": 18071,
- "slowing": 18072,
- "##chs": 18073,
- "musee": 18074,
- "ascension": 18075,
- "russ": 18076,
- "##vian": 18077,
- "waits": 18078,
- "##psy": 18079,
- "africans": 18080,
- "exploit": 18081,
- "##morphic": 18082,
- "gov": 18083,
- "eccentric": 18084,
- "crab": 18085,
- "peck": 18086,
- "##ull": 18087,
- "entrances": 18088,
- "formidable": 18089,
- "marketplace": 18090,
- "groom": 18091,
- "bolted": 18092,
- "metabolism": 18093,
- "patton": 18094,
- "robbins": 18095,
- "courier": 18096,
- "payload": 18097,
- "endure": 18098,
- "##ifier": 18099,
- "andes": 18100,
- "refrigerator": 18101,
- "##pr": 18102,
- "ornate": 18103,
- "##uca": 18104,
- "ruthless": 18105,
- "illegitimate": 18106,
- "masonry": 18107,
- "strasbourg": 18108,
- "bikes": 18109,
- "adobe": 18110,
- "##³": 18111,
- "apples": 18112,
- "quintet": 18113,
- "willingly": 18114,
- "niche": 18115,
- "bakery": 18116,
- "corpses": 18117,
- "energetic": 18118,
- "##cliffe": 18119,
- "##sser": 18120,
- "##ards": 18121,
- "177": 18122,
- "centimeters": 18123,
- "centro": 18124,
- "fuscous": 18125,
- "cretaceous": 18126,
- "rancho": 18127,
- "##yde": 18128,
- "andrei": 18129,
- "telecom": 18130,
- "tottenham": 18131,
- "oasis": 18132,
- "ordination": 18133,
- "vulnerability": 18134,
- "presiding": 18135,
- "corey": 18136,
- "cp": 18137,
- "penguins": 18138,
- "sims": 18139,
- "##pis": 18140,
- "malawi": 18141,
- "piss": 18142,
- "##48": 18143,
- "correction": 18144,
- "##cked": 18145,
- "##ffle": 18146,
- "##ryn": 18147,
- "countdown": 18148,
- "detectives": 18149,
- "psychiatrist": 18150,
- "psychedelic": 18151,
- "dinosaurs": 18152,
- "blouse": 18153,
- "##get": 18154,
- "choi": 18155,
- "vowed": 18156,
- "##oz": 18157,
- "randomly": 18158,
- "##pol": 18159,
- "49ers": 18160,
- "scrub": 18161,
- "blanche": 18162,
- "bruins": 18163,
- "dusseldorf": 18164,
- "##using": 18165,
- "unwanted": 18166,
- "##ums": 18167,
- "212": 18168,
- "dominique": 18169,
- "elevations": 18170,
- "headlights": 18171,
- "om": 18172,
- "laguna": 18173,
- "##oga": 18174,
- "1750": 18175,
- "famously": 18176,
- "ignorance": 18177,
- "shrewsbury": 18178,
- "##aine": 18179,
- "ajax": 18180,
- "breuning": 18181,
- "che": 18182,
- "confederacy": 18183,
- "greco": 18184,
- "overhaul": 18185,
- "##screen": 18186,
- "paz": 18187,
- "skirts": 18188,
- "disagreement": 18189,
- "cruelty": 18190,
- "jagged": 18191,
- "phoebe": 18192,
- "shifter": 18193,
- "hovered": 18194,
- "viruses": 18195,
- "##wes": 18196,
- "mandy": 18197,
- "##lined": 18198,
- "##gc": 18199,
- "landlord": 18200,
- "squirrel": 18201,
- "dashed": 18202,
- "##ι": 18203,
- "ornamental": 18204,
- "gag": 18205,
- "wally": 18206,
- "grange": 18207,
- "literal": 18208,
- "spurs": 18209,
- "undisclosed": 18210,
- "proceeding": 18211,
- "yin": 18212,
- "##text": 18213,
- "billie": 18214,
- "orphan": 18215,
- "spanned": 18216,
- "humidity": 18217,
- "indy": 18218,
- "weighted": 18219,
- "presentations": 18220,
- "explosions": 18221,
- "lucian": 18222,
- "##tary": 18223,
- "vaughn": 18224,
- "hindus": 18225,
- "##anga": 18226,
- "##hell": 18227,
- "psycho": 18228,
- "171": 18229,
- "daytona": 18230,
- "protects": 18231,
- "efficiently": 18232,
- "rematch": 18233,
- "sly": 18234,
- "tandem": 18235,
- "##oya": 18236,
- "rebranded": 18237,
- "impaired": 18238,
- "hee": 18239,
- "metropolis": 18240,
- "peach": 18241,
- "godfrey": 18242,
- "diaspora": 18243,
- "ethnicity": 18244,
- "prosperous": 18245,
- "gleaming": 18246,
- "dar": 18247,
- "grossing": 18248,
- "playback": 18249,
- "##rden": 18250,
- "stripe": 18251,
- "pistols": 18252,
- "##tain": 18253,
- "births": 18254,
- "labelled": 18255,
- "##cating": 18256,
- "172": 18257,
- "rudy": 18258,
- "alba": 18259,
- "##onne": 18260,
- "aquarium": 18261,
- "hostility": 18262,
- "##gb": 18263,
- "##tase": 18264,
- "shudder": 18265,
- "sumatra": 18266,
- "hardest": 18267,
- "lakers": 18268,
- "consonant": 18269,
- "creeping": 18270,
- "demos": 18271,
- "homicide": 18272,
- "capsule": 18273,
- "zeke": 18274,
- "liberties": 18275,
- "expulsion": 18276,
- "pueblo": 18277,
- "##comb": 18278,
- "trait": 18279,
- "transporting": 18280,
- "##ddin": 18281,
- "##neck": 18282,
- "##yna": 18283,
- "depart": 18284,
- "gregg": 18285,
- "mold": 18286,
- "ledge": 18287,
- "hangar": 18288,
- "oldham": 18289,
- "playboy": 18290,
- "termination": 18291,
- "analysts": 18292,
- "gmbh": 18293,
- "romero": 18294,
- "##itic": 18295,
- "insist": 18296,
- "cradle": 18297,
- "filthy": 18298,
- "brightness": 18299,
- "slash": 18300,
- "shootout": 18301,
- "deposed": 18302,
- "bordering": 18303,
- "##truct": 18304,
- "isis": 18305,
- "microwave": 18306,
- "tumbled": 18307,
- "sheltered": 18308,
- "cathy": 18309,
- "werewolves": 18310,
- "messy": 18311,
- "andersen": 18312,
- "convex": 18313,
- "clapped": 18314,
- "clinched": 18315,
- "satire": 18316,
- "wasting": 18317,
- "edo": 18318,
- "vc": 18319,
- "rufus": 18320,
- "##jak": 18321,
- "mont": 18322,
- "##etti": 18323,
- "poznan": 18324,
- "##keeping": 18325,
- "restructuring": 18326,
- "transverse": 18327,
- "##rland": 18328,
- "azerbaijani": 18329,
- "slovene": 18330,
- "gestures": 18331,
- "roommate": 18332,
- "choking": 18333,
- "shear": 18334,
- "##quist": 18335,
- "vanguard": 18336,
- "oblivious": 18337,
- "##hiro": 18338,
- "disagreed": 18339,
- "baptism": 18340,
- "##lich": 18341,
- "coliseum": 18342,
- "##aceae": 18343,
- "salvage": 18344,
- "societe": 18345,
- "cory": 18346,
- "locke": 18347,
- "relocation": 18348,
- "relying": 18349,
- "versailles": 18350,
- "ahl": 18351,
- "swelling": 18352,
- "##elo": 18353,
- "cheerful": 18354,
- "##word": 18355,
- "##edes": 18356,
- "gin": 18357,
- "sarajevo": 18358,
- "obstacle": 18359,
- "diverted": 18360,
- "##nac": 18361,
- "messed": 18362,
- "thoroughbred": 18363,
- "fluttered": 18364,
- "utrecht": 18365,
- "chewed": 18366,
- "acquaintance": 18367,
- "assassins": 18368,
- "dispatch": 18369,
- "mirza": 18370,
- "##wart": 18371,
- "nike": 18372,
- "salzburg": 18373,
- "swell": 18374,
- "yen": 18375,
- "##gee": 18376,
- "idle": 18377,
- "ligue": 18378,
- "samson": 18379,
- "##nds": 18380,
- "##igh": 18381,
- "playful": 18382,
- "spawned": 18383,
- "##cise": 18384,
- "tease": 18385,
- "##case": 18386,
- "burgundy": 18387,
- "##bot": 18388,
- "stirring": 18389,
- "skeptical": 18390,
- "interceptions": 18391,
- "marathi": 18392,
- "##dies": 18393,
- "bedrooms": 18394,
- "aroused": 18395,
- "pinch": 18396,
- "##lik": 18397,
- "preferences": 18398,
- "tattoos": 18399,
- "buster": 18400,
- "digitally": 18401,
- "projecting": 18402,
- "rust": 18403,
- "##ital": 18404,
- "kitten": 18405,
- "priorities": 18406,
- "addison": 18407,
- "pseudo": 18408,
- "##guard": 18409,
- "dusk": 18410,
- "icons": 18411,
- "sermon": 18412,
- "##psis": 18413,
- "##iba": 18414,
- "bt": 18415,
- "##lift": 18416,
- "##xt": 18417,
- "ju": 18418,
- "truce": 18419,
- "rink": 18420,
- "##dah": 18421,
- "##wy": 18422,
- "defects": 18423,
- "psychiatry": 18424,
- "offences": 18425,
- "calculate": 18426,
- "glucose": 18427,
- "##iful": 18428,
- "##rized": 18429,
- "##unda": 18430,
- "francaise": 18431,
- "##hari": 18432,
- "richest": 18433,
- "warwickshire": 18434,
- "carly": 18435,
- "1763": 18436,
- "purity": 18437,
- "redemption": 18438,
- "lending": 18439,
- "##cious": 18440,
- "muse": 18441,
- "bruises": 18442,
- "cerebral": 18443,
- "aero": 18444,
- "carving": 18445,
- "##name": 18446,
- "preface": 18447,
- "terminology": 18448,
- "invade": 18449,
- "monty": 18450,
- "##int": 18451,
- "anarchist": 18452,
- "blurred": 18453,
- "##iled": 18454,
- "rossi": 18455,
- "treats": 18456,
- "guts": 18457,
- "shu": 18458,
- "foothills": 18459,
- "ballads": 18460,
- "undertaking": 18461,
- "premise": 18462,
- "cecilia": 18463,
- "affiliates": 18464,
- "blasted": 18465,
- "conditional": 18466,
- "wilder": 18467,
- "minors": 18468,
- "drone": 18469,
- "rudolph": 18470,
- "buffy": 18471,
- "swallowing": 18472,
- "horton": 18473,
- "attested": 18474,
- "##hop": 18475,
- "rutherford": 18476,
- "howell": 18477,
- "primetime": 18478,
- "livery": 18479,
- "penal": 18480,
- "##bis": 18481,
- "minimize": 18482,
- "hydro": 18483,
- "wrecked": 18484,
- "wrought": 18485,
- "palazzo": 18486,
- "##gling": 18487,
- "cans": 18488,
- "vernacular": 18489,
- "friedman": 18490,
- "nobleman": 18491,
- "shale": 18492,
- "walnut": 18493,
- "danielle": 18494,
- "##ection": 18495,
- "##tley": 18496,
- "sears": 18497,
- "##kumar": 18498,
- "chords": 18499,
- "lend": 18500,
- "flipping": 18501,
- "streamed": 18502,
- "por": 18503,
- "dracula": 18504,
- "gallons": 18505,
- "sacrifices": 18506,
- "gamble": 18507,
- "orphanage": 18508,
- "##iman": 18509,
- "mckenzie": 18510,
- "##gible": 18511,
- "boxers": 18512,
- "daly": 18513,
- "##balls": 18514,
- "##ان": 18515,
- "208": 18516,
- "##ific": 18517,
- "##rative": 18518,
- "##iq": 18519,
- "exploited": 18520,
- "slated": 18521,
- "##uity": 18522,
- "circling": 18523,
- "hillary": 18524,
- "pinched": 18525,
- "goldberg": 18526,
- "provost": 18527,
- "campaigning": 18528,
- "lim": 18529,
- "piles": 18530,
- "ironically": 18531,
- "jong": 18532,
- "mohan": 18533,
- "successors": 18534,
- "usaf": 18535,
- "##tem": 18536,
- "##ught": 18537,
- "autobiographical": 18538,
- "haute": 18539,
- "preserves": 18540,
- "##ending": 18541,
- "acquitted": 18542,
- "comparisons": 18543,
- "203": 18544,
- "hydroelectric": 18545,
- "gangs": 18546,
- "cypriot": 18547,
- "torpedoes": 18548,
- "rushes": 18549,
- "chrome": 18550,
- "derive": 18551,
- "bumps": 18552,
- "instability": 18553,
- "fiat": 18554,
- "pets": 18555,
- "##mbe": 18556,
- "silas": 18557,
- "dye": 18558,
- "reckless": 18559,
- "settler": 18560,
- "##itation": 18561,
- "info": 18562,
- "heats": 18563,
- "##writing": 18564,
- "176": 18565,
- "canonical": 18566,
- "maltese": 18567,
- "fins": 18568,
- "mushroom": 18569,
- "stacy": 18570,
- "aspen": 18571,
- "avid": 18572,
- "##kur": 18573,
- "##loading": 18574,
- "vickers": 18575,
- "gaston": 18576,
- "hillside": 18577,
- "statutes": 18578,
- "wilde": 18579,
- "gail": 18580,
- "kung": 18581,
- "sabine": 18582,
- "comfortably": 18583,
- "motorcycles": 18584,
- "##rgo": 18585,
- "169": 18586,
- "pneumonia": 18587,
- "fetch": 18588,
- "##sonic": 18589,
- "axel": 18590,
- "faintly": 18591,
- "parallels": 18592,
- "##oop": 18593,
- "mclaren": 18594,
- "spouse": 18595,
- "compton": 18596,
- "interdisciplinary": 18597,
- "miner": 18598,
- "##eni": 18599,
- "181": 18600,
- "clamped": 18601,
- "##chal": 18602,
- "##llah": 18603,
- "separates": 18604,
- "versa": 18605,
- "##mler": 18606,
- "scarborough": 18607,
- "labrador": 18608,
- "##lity": 18609,
- "##osing": 18610,
- "rutgers": 18611,
- "hurdles": 18612,
- "como": 18613,
- "166": 18614,
- "burt": 18615,
- "divers": 18616,
- "##100": 18617,
- "wichita": 18618,
- "cade": 18619,
- "coincided": 18620,
- "##erson": 18621,
- "bruised": 18622,
- "mla": 18623,
- "##pper": 18624,
- "vineyard": 18625,
- "##ili": 18626,
- "##brush": 18627,
- "notch": 18628,
- "mentioning": 18629,
- "jase": 18630,
- "hearted": 18631,
- "kits": 18632,
- "doe": 18633,
- "##acle": 18634,
- "pomerania": 18635,
- "##ady": 18636,
- "ronan": 18637,
- "seizure": 18638,
- "pavel": 18639,
- "problematic": 18640,
- "##zaki": 18641,
- "domenico": 18642,
- "##ulin": 18643,
- "catering": 18644,
- "penelope": 18645,
- "dependence": 18646,
- "parental": 18647,
- "emilio": 18648,
- "ministerial": 18649,
- "atkinson": 18650,
- "##bolic": 18651,
- "clarkson": 18652,
- "chargers": 18653,
- "colby": 18654,
- "grill": 18655,
- "peeked": 18656,
- "arises": 18657,
- "summon": 18658,
- "##aged": 18659,
- "fools": 18660,
- "##grapher": 18661,
- "faculties": 18662,
- "qaeda": 18663,
- "##vial": 18664,
- "garner": 18665,
- "refurbished": 18666,
- "##hwa": 18667,
- "geelong": 18668,
- "disasters": 18669,
- "nudged": 18670,
- "bs": 18671,
- "shareholder": 18672,
- "lori": 18673,
- "algae": 18674,
- "reinstated": 18675,
- "rot": 18676,
- "##ades": 18677,
- "##nous": 18678,
- "invites": 18679,
- "stainless": 18680,
- "183": 18681,
- "inclusive": 18682,
- "##itude": 18683,
- "diocesan": 18684,
- "til": 18685,
- "##icz": 18686,
- "denomination": 18687,
- "##xa": 18688,
- "benton": 18689,
- "floral": 18690,
- "registers": 18691,
- "##ider": 18692,
- "##erman": 18693,
- "##kell": 18694,
- "absurd": 18695,
- "brunei": 18696,
- "guangzhou": 18697,
- "hitter": 18698,
- "retaliation": 18699,
- "##uled": 18700,
- "##eve": 18701,
- "blanc": 18702,
- "nh": 18703,
- "consistency": 18704,
- "contamination": 18705,
- "##eres": 18706,
- "##rner": 18707,
- "dire": 18708,
- "palermo": 18709,
- "broadcasters": 18710,
- "diaries": 18711,
- "inspire": 18712,
- "vols": 18713,
- "brewer": 18714,
- "tightening": 18715,
- "ky": 18716,
- "mixtape": 18717,
- "hormone": 18718,
- "##tok": 18719,
- "stokes": 18720,
- "##color": 18721,
- "##dly": 18722,
- "##ssi": 18723,
- "pg": 18724,
- "##ometer": 18725,
- "##lington": 18726,
- "sanitation": 18727,
- "##tility": 18728,
- "intercontinental": 18729,
- "apps": 18730,
- "##adt": 18731,
- "¹⁄₂": 18732,
- "cylinders": 18733,
- "economies": 18734,
- "favourable": 18735,
- "unison": 18736,
- "croix": 18737,
- "gertrude": 18738,
- "odyssey": 18739,
- "vanity": 18740,
- "dangling": 18741,
- "##logists": 18742,
- "upgrades": 18743,
- "dice": 18744,
- "middleweight": 18745,
- "practitioner": 18746,
- "##ight": 18747,
- "206": 18748,
- "henrik": 18749,
- "parlor": 18750,
- "orion": 18751,
- "angered": 18752,
- "lac": 18753,
- "python": 18754,
- "blurted": 18755,
- "##rri": 18756,
- "sensual": 18757,
- "intends": 18758,
- "swings": 18759,
- "angled": 18760,
- "##phs": 18761,
- "husky": 18762,
- "attain": 18763,
- "peerage": 18764,
- "precinct": 18765,
- "textiles": 18766,
- "cheltenham": 18767,
- "shuffled": 18768,
- "dai": 18769,
- "confess": 18770,
- "tasting": 18771,
- "bhutan": 18772,
- "##riation": 18773,
- "tyrone": 18774,
- "segregation": 18775,
- "abrupt": 18776,
- "ruiz": 18777,
- "##rish": 18778,
- "smirked": 18779,
- "blackwell": 18780,
- "confidential": 18781,
- "browning": 18782,
- "amounted": 18783,
- "##put": 18784,
- "vase": 18785,
- "scarce": 18786,
- "fabulous": 18787,
- "raided": 18788,
- "staple": 18789,
- "guyana": 18790,
- "unemployed": 18791,
- "glider": 18792,
- "shay": 18793,
- "##tow": 18794,
- "carmine": 18795,
- "troll": 18796,
- "intervene": 18797,
- "squash": 18798,
- "superstar": 18799,
- "##uce": 18800,
- "cylindrical": 18801,
- "len": 18802,
- "roadway": 18803,
- "researched": 18804,
- "handy": 18805,
- "##rium": 18806,
- "##jana": 18807,
- "meta": 18808,
- "lao": 18809,
- "declares": 18810,
- "##rring": 18811,
- "##tadt": 18812,
- "##elin": 18813,
- "##kova": 18814,
- "willem": 18815,
- "shrubs": 18816,
- "napoleonic": 18817,
- "realms": 18818,
- "skater": 18819,
- "qi": 18820,
- "volkswagen": 18821,
- "##ł": 18822,
- "tad": 18823,
- "hara": 18824,
- "archaeologist": 18825,
- "awkwardly": 18826,
- "eerie": 18827,
- "##kind": 18828,
- "wiley": 18829,
- "##heimer": 18830,
- "##24": 18831,
- "titus": 18832,
- "organizers": 18833,
- "cfl": 18834,
- "crusaders": 18835,
- "lama": 18836,
- "usb": 18837,
- "vent": 18838,
- "enraged": 18839,
- "thankful": 18840,
- "occupants": 18841,
- "maximilian": 18842,
- "##gaard": 18843,
- "possessing": 18844,
- "textbooks": 18845,
- "##oran": 18846,
- "collaborator": 18847,
- "quaker": 18848,
- "##ulo": 18849,
- "avalanche": 18850,
- "mono": 18851,
- "silky": 18852,
- "straits": 18853,
- "isaiah": 18854,
- "mustang": 18855,
- "surged": 18856,
- "resolutions": 18857,
- "potomac": 18858,
- "descend": 18859,
- "cl": 18860,
- "kilograms": 18861,
- "plato": 18862,
- "strains": 18863,
- "saturdays": 18864,
- "##olin": 18865,
- "bernstein": 18866,
- "##ype": 18867,
- "holstein": 18868,
- "ponytail": 18869,
- "##watch": 18870,
- "belize": 18871,
- "conversely": 18872,
- "heroine": 18873,
- "perpetual": 18874,
- "##ylus": 18875,
- "charcoal": 18876,
- "piedmont": 18877,
- "glee": 18878,
- "negotiating": 18879,
- "backdrop": 18880,
- "prologue": 18881,
- "##jah": 18882,
- "##mmy": 18883,
- "pasadena": 18884,
- "climbs": 18885,
- "ramos": 18886,
- "sunni": 18887,
- "##holm": 18888,
- "##tner": 18889,
- "##tri": 18890,
- "anand": 18891,
- "deficiency": 18892,
- "hertfordshire": 18893,
- "stout": 18894,
- "##avi": 18895,
- "aperture": 18896,
- "orioles": 18897,
- "##irs": 18898,
- "doncaster": 18899,
- "intrigued": 18900,
- "bombed": 18901,
- "coating": 18902,
- "otis": 18903,
- "##mat": 18904,
- "cocktail": 18905,
- "##jit": 18906,
- "##eto": 18907,
- "amir": 18908,
- "arousal": 18909,
- "sar": 18910,
- "##proof": 18911,
- "##act": 18912,
- "##ories": 18913,
- "dixie": 18914,
- "pots": 18915,
- "##bow": 18916,
- "whereabouts": 18917,
- "159": 18918,
- "##fted": 18919,
- "drains": 18920,
- "bullying": 18921,
- "cottages": 18922,
- "scripture": 18923,
- "coherent": 18924,
- "fore": 18925,
- "poe": 18926,
- "appetite": 18927,
- "##uration": 18928,
- "sampled": 18929,
- "##ators": 18930,
- "##dp": 18931,
- "derrick": 18932,
- "rotor": 18933,
- "jays": 18934,
- "peacock": 18935,
- "installment": 18936,
- "##rro": 18937,
- "advisors": 18938,
- "##coming": 18939,
- "rodeo": 18940,
- "scotch": 18941,
- "##mot": 18942,
- "##db": 18943,
- "##fen": 18944,
- "##vant": 18945,
- "ensued": 18946,
- "rodrigo": 18947,
- "dictatorship": 18948,
- "martyrs": 18949,
- "twenties": 18950,
- "##н": 18951,
- "towed": 18952,
- "incidence": 18953,
- "marta": 18954,
- "rainforest": 18955,
- "sai": 18956,
- "scaled": 18957,
- "##cles": 18958,
- "oceanic": 18959,
- "qualifiers": 18960,
- "symphonic": 18961,
- "mcbride": 18962,
- "dislike": 18963,
- "generalized": 18964,
- "aubrey": 18965,
- "colonization": 18966,
- "##iation": 18967,
- "##lion": 18968,
- "##ssing": 18969,
- "disliked": 18970,
- "lublin": 18971,
- "salesman": 18972,
- "##ulates": 18973,
- "spherical": 18974,
- "whatsoever": 18975,
- "sweating": 18976,
- "avalon": 18977,
- "contention": 18978,
- "punt": 18979,
- "severity": 18980,
- "alderman": 18981,
- "atari": 18982,
- "##dina": 18983,
- "##grant": 18984,
- "##rop": 18985,
- "scarf": 18986,
- "seville": 18987,
- "vertices": 18988,
- "annexation": 18989,
- "fairfield": 18990,
- "fascination": 18991,
- "inspiring": 18992,
- "launches": 18993,
- "palatinate": 18994,
- "regretted": 18995,
- "##rca": 18996,
- "feral": 18997,
- "##iom": 18998,
- "elk": 18999,
- "nap": 19000,
- "olsen": 19001,
- "reddy": 19002,
- "yong": 19003,
- "##leader": 19004,
- "##iae": 19005,
- "garment": 19006,
- "transports": 19007,
- "feng": 19008,
- "gracie": 19009,
- "outrage": 19010,
- "viceroy": 19011,
- "insides": 19012,
- "##esis": 19013,
- "breakup": 19014,
- "grady": 19015,
- "organizer": 19016,
- "softer": 19017,
- "grimaced": 19018,
- "222": 19019,
- "murals": 19020,
- "galicia": 19021,
- "arranging": 19022,
- "vectors": 19023,
- "##rsten": 19024,
- "bas": 19025,
- "##sb": 19026,
- "##cens": 19027,
- "sloan": 19028,
- "##eka": 19029,
- "bitten": 19030,
- "ara": 19031,
- "fender": 19032,
- "nausea": 19033,
- "bumped": 19034,
- "kris": 19035,
- "banquet": 19036,
- "comrades": 19037,
- "detector": 19038,
- "persisted": 19039,
- "##llan": 19040,
- "adjustment": 19041,
- "endowed": 19042,
- "cinemas": 19043,
- "##shot": 19044,
- "sellers": 19045,
- "##uman": 19046,
- "peek": 19047,
- "epa": 19048,
- "kindly": 19049,
- "neglect": 19050,
- "simpsons": 19051,
- "talon": 19052,
- "mausoleum": 19053,
- "runaway": 19054,
- "hangul": 19055,
- "lookout": 19056,
- "##cic": 19057,
- "rewards": 19058,
- "coughed": 19059,
- "acquainted": 19060,
- "chloride": 19061,
- "##ald": 19062,
- "quicker": 19063,
- "accordion": 19064,
- "neolithic": 19065,
- "##qa": 19066,
- "artemis": 19067,
- "coefficient": 19068,
- "lenny": 19069,
- "pandora": 19070,
- "tx": 19071,
- "##xed": 19072,
- "ecstasy": 19073,
- "litter": 19074,
- "segunda": 19075,
- "chairperson": 19076,
- "gemma": 19077,
- "hiss": 19078,
- "rumor": 19079,
- "vow": 19080,
- "nasal": 19081,
- "antioch": 19082,
- "compensate": 19083,
- "patiently": 19084,
- "transformers": 19085,
- "##eded": 19086,
- "judo": 19087,
- "morrow": 19088,
- "penis": 19089,
- "posthumous": 19090,
- "philips": 19091,
- "bandits": 19092,
- "husbands": 19093,
- "denote": 19094,
- "flaming": 19095,
- "##any": 19096,
- "##phones": 19097,
- "langley": 19098,
- "yorker": 19099,
- "1760": 19100,
- "walters": 19101,
- "##uo": 19102,
- "##kle": 19103,
- "gubernatorial": 19104,
- "fatty": 19105,
- "samsung": 19106,
- "leroy": 19107,
- "outlaw": 19108,
- "##nine": 19109,
- "unpublished": 19110,
- "poole": 19111,
- "jakob": 19112,
- "##ᵢ": 19113,
- "##ₙ": 19114,
- "crete": 19115,
- "distorted": 19116,
- "superiority": 19117,
- "##dhi": 19118,
- "intercept": 19119,
- "crust": 19120,
- "mig": 19121,
- "claus": 19122,
- "crashes": 19123,
- "positioning": 19124,
- "188": 19125,
- "stallion": 19126,
- "301": 19127,
- "frontal": 19128,
- "armistice": 19129,
- "##estinal": 19130,
- "elton": 19131,
- "aj": 19132,
- "encompassing": 19133,
- "camel": 19134,
- "commemorated": 19135,
- "malaria": 19136,
- "woodward": 19137,
- "calf": 19138,
- "cigar": 19139,
- "penetrate": 19140,
- "##oso": 19141,
- "willard": 19142,
- "##rno": 19143,
- "##uche": 19144,
- "illustrate": 19145,
- "amusing": 19146,
- "convergence": 19147,
- "noteworthy": 19148,
- "##lma": 19149,
- "##rva": 19150,
- "journeys": 19151,
- "realise": 19152,
- "manfred": 19153,
- "##sable": 19154,
- "410": 19155,
- "##vocation": 19156,
- "hearings": 19157,
- "fiance": 19158,
- "##posed": 19159,
- "educators": 19160,
- "provoked": 19161,
- "adjusting": 19162,
- "##cturing": 19163,
- "modular": 19164,
- "stockton": 19165,
- "paterson": 19166,
- "vlad": 19167,
- "rejects": 19168,
- "electors": 19169,
- "selena": 19170,
- "maureen": 19171,
- "##tres": 19172,
- "uber": 19173,
- "##rce": 19174,
- "swirled": 19175,
- "##num": 19176,
- "proportions": 19177,
- "nanny": 19178,
- "pawn": 19179,
- "naturalist": 19180,
- "parma": 19181,
- "apostles": 19182,
- "awoke": 19183,
- "ethel": 19184,
- "wen": 19185,
- "##bey": 19186,
- "monsoon": 19187,
- "overview": 19188,
- "##inating": 19189,
- "mccain": 19190,
- "rendition": 19191,
- "risky": 19192,
- "adorned": 19193,
- "##ih": 19194,
- "equestrian": 19195,
- "germain": 19196,
- "nj": 19197,
- "conspicuous": 19198,
- "confirming": 19199,
- "##yoshi": 19200,
- "shivering": 19201,
- "##imeter": 19202,
- "milestone": 19203,
- "rumours": 19204,
- "flinched": 19205,
- "bounds": 19206,
- "smacked": 19207,
- "token": 19208,
- "##bei": 19209,
- "lectured": 19210,
- "automobiles": 19211,
- "##shore": 19212,
- "impacted": 19213,
- "##iable": 19214,
- "nouns": 19215,
- "nero": 19216,
- "##leaf": 19217,
- "ismail": 19218,
- "prostitute": 19219,
- "trams": 19220,
- "##lace": 19221,
- "bridget": 19222,
- "sud": 19223,
- "stimulus": 19224,
- "impressions": 19225,
- "reins": 19226,
- "revolves": 19227,
- "##oud": 19228,
- "##gned": 19229,
- "giro": 19230,
- "honeymoon": 19231,
- "##swell": 19232,
- "criterion": 19233,
- "##sms": 19234,
- "##uil": 19235,
- "libyan": 19236,
- "prefers": 19237,
- "##osition": 19238,
- "211": 19239,
- "preview": 19240,
- "sucks": 19241,
- "accusation": 19242,
- "bursts": 19243,
- "metaphor": 19244,
- "diffusion": 19245,
- "tolerate": 19246,
- "faye": 19247,
- "betting": 19248,
- "cinematographer": 19249,
- "liturgical": 19250,
- "specials": 19251,
- "bitterly": 19252,
- "humboldt": 19253,
- "##ckle": 19254,
- "flux": 19255,
- "rattled": 19256,
- "##itzer": 19257,
- "archaeologists": 19258,
- "odor": 19259,
- "authorised": 19260,
- "marshes": 19261,
- "discretion": 19262,
- "##ов": 19263,
- "alarmed": 19264,
- "archaic": 19265,
- "inverse": 19266,
- "##leton": 19267,
- "explorers": 19268,
- "##pine": 19269,
- "drummond": 19270,
- "tsunami": 19271,
- "woodlands": 19272,
- "##minate": 19273,
- "##tland": 19274,
- "booklet": 19275,
- "insanity": 19276,
- "owning": 19277,
- "insert": 19278,
- "crafted": 19279,
- "calculus": 19280,
- "##tore": 19281,
- "receivers": 19282,
- "##bt": 19283,
- "stung": 19284,
- "##eca": 19285,
- "##nched": 19286,
- "prevailing": 19287,
- "travellers": 19288,
- "eyeing": 19289,
- "lila": 19290,
- "graphs": 19291,
- "##borne": 19292,
- "178": 19293,
- "julien": 19294,
- "##won": 19295,
- "morale": 19296,
- "adaptive": 19297,
- "therapist": 19298,
- "erica": 19299,
- "cw": 19300,
- "libertarian": 19301,
- "bowman": 19302,
- "pitches": 19303,
- "vita": 19304,
- "##ional": 19305,
- "crook": 19306,
- "##ads": 19307,
- "##entation": 19308,
- "caledonia": 19309,
- "mutiny": 19310,
- "##sible": 19311,
- "1840s": 19312,
- "automation": 19313,
- "##ß": 19314,
- "flock": 19315,
- "##pia": 19316,
- "ironic": 19317,
- "pathology": 19318,
- "##imus": 19319,
- "remarried": 19320,
- "##22": 19321,
- "joker": 19322,
- "withstand": 19323,
- "energies": 19324,
- "##att": 19325,
- "shropshire": 19326,
- "hostages": 19327,
- "madeleine": 19328,
- "tentatively": 19329,
- "conflicting": 19330,
- "mateo": 19331,
- "recipes": 19332,
- "euros": 19333,
- "ol": 19334,
- "mercenaries": 19335,
- "nico": 19336,
- "##ndon": 19337,
- "albuquerque": 19338,
- "augmented": 19339,
- "mythical": 19340,
- "bel": 19341,
- "freud": 19342,
- "##child": 19343,
- "cough": 19344,
- "##lica": 19345,
- "365": 19346,
- "freddy": 19347,
- "lillian": 19348,
- "genetically": 19349,
- "nuremberg": 19350,
- "calder": 19351,
- "209": 19352,
- "bonn": 19353,
- "outdoors": 19354,
- "paste": 19355,
- "suns": 19356,
- "urgency": 19357,
- "vin": 19358,
- "restraint": 19359,
- "tyson": 19360,
- "##cera": 19361,
- "##selle": 19362,
- "barrage": 19363,
- "bethlehem": 19364,
- "kahn": 19365,
- "##par": 19366,
- "mounts": 19367,
- "nippon": 19368,
- "barony": 19369,
- "happier": 19370,
- "ryu": 19371,
- "makeshift": 19372,
- "sheldon": 19373,
- "blushed": 19374,
- "castillo": 19375,
- "barking": 19376,
- "listener": 19377,
- "taped": 19378,
- "bethel": 19379,
- "fluent": 19380,
- "headlines": 19381,
- "pornography": 19382,
- "rum": 19383,
- "disclosure": 19384,
- "sighing": 19385,
- "mace": 19386,
- "doubling": 19387,
- "gunther": 19388,
- "manly": 19389,
- "##plex": 19390,
- "rt": 19391,
- "interventions": 19392,
- "physiological": 19393,
- "forwards": 19394,
- "emerges": 19395,
- "##tooth": 19396,
- "##gny": 19397,
- "compliment": 19398,
- "rib": 19399,
- "recession": 19400,
- "visibly": 19401,
- "barge": 19402,
- "faults": 19403,
- "connector": 19404,
- "exquisite": 19405,
- "prefect": 19406,
- "##rlin": 19407,
- "patio": 19408,
- "##cured": 19409,
- "elevators": 19410,
- "brandt": 19411,
- "italics": 19412,
- "pena": 19413,
- "173": 19414,
- "wasp": 19415,
- "satin": 19416,
- "ea": 19417,
- "botswana": 19418,
- "graceful": 19419,
- "respectable": 19420,
- "##jima": 19421,
- "##rter": 19422,
- "##oic": 19423,
- "franciscan": 19424,
- "generates": 19425,
- "##dl": 19426,
- "alfredo": 19427,
- "disgusting": 19428,
- "##olate": 19429,
- "##iously": 19430,
- "sherwood": 19431,
- "warns": 19432,
- "cod": 19433,
- "promo": 19434,
- "cheryl": 19435,
- "sino": 19436,
- "##ة": 19437,
- "##escu": 19438,
- "twitch": 19439,
- "##zhi": 19440,
- "brownish": 19441,
- "thom": 19442,
- "ortiz": 19443,
- "##dron": 19444,
- "densely": 19445,
- "##beat": 19446,
- "carmel": 19447,
- "reinforce": 19448,
- "##bana": 19449,
- "187": 19450,
- "anastasia": 19451,
- "downhill": 19452,
- "vertex": 19453,
- "contaminated": 19454,
- "remembrance": 19455,
- "harmonic": 19456,
- "homework": 19457,
- "##sol": 19458,
- "fiancee": 19459,
- "gears": 19460,
- "olds": 19461,
- "angelica": 19462,
- "loft": 19463,
- "ramsay": 19464,
- "quiz": 19465,
- "colliery": 19466,
- "sevens": 19467,
- "##cape": 19468,
- "autism": 19469,
- "##hil": 19470,
- "walkway": 19471,
- "##boats": 19472,
- "ruben": 19473,
- "abnormal": 19474,
- "ounce": 19475,
- "khmer": 19476,
- "##bbe": 19477,
- "zachary": 19478,
- "bedside": 19479,
- "morphology": 19480,
- "punching": 19481,
- "##olar": 19482,
- "sparrow": 19483,
- "convinces": 19484,
- "##35": 19485,
- "hewitt": 19486,
- "queer": 19487,
- "remastered": 19488,
- "rods": 19489,
- "mabel": 19490,
- "solemn": 19491,
- "notified": 19492,
- "lyricist": 19493,
- "symmetric": 19494,
- "##xide": 19495,
- "174": 19496,
- "encore": 19497,
- "passports": 19498,
- "wildcats": 19499,
- "##uni": 19500,
- "baja": 19501,
- "##pac": 19502,
- "mildly": 19503,
- "##ease": 19504,
- "bleed": 19505,
- "commodity": 19506,
- "mounds": 19507,
- "glossy": 19508,
- "orchestras": 19509,
- "##omo": 19510,
- "damian": 19511,
- "prelude": 19512,
- "ambitions": 19513,
- "##vet": 19514,
- "awhile": 19515,
- "remotely": 19516,
- "##aud": 19517,
- "asserts": 19518,
- "imply": 19519,
- "##iques": 19520,
- "distinctly": 19521,
- "modelling": 19522,
- "remedy": 19523,
- "##dded": 19524,
- "windshield": 19525,
- "dani": 19526,
- "xiao": 19527,
- "##endra": 19528,
- "audible": 19529,
- "powerplant": 19530,
- "1300": 19531,
- "invalid": 19532,
- "elemental": 19533,
- "acquisitions": 19534,
- "##hala": 19535,
- "immaculate": 19536,
- "libby": 19537,
- "plata": 19538,
- "smuggling": 19539,
- "ventilation": 19540,
- "denoted": 19541,
- "minh": 19542,
- "##morphism": 19543,
- "430": 19544,
- "differed": 19545,
- "dion": 19546,
- "kelley": 19547,
- "lore": 19548,
- "mocking": 19549,
- "sabbath": 19550,
- "spikes": 19551,
- "hygiene": 19552,
- "drown": 19553,
- "runoff": 19554,
- "stylized": 19555,
- "tally": 19556,
- "liberated": 19557,
- "aux": 19558,
- "interpreter": 19559,
- "righteous": 19560,
- "aba": 19561,
- "siren": 19562,
- "reaper": 19563,
- "pearce": 19564,
- "millie": 19565,
- "##cier": 19566,
- "##yra": 19567,
- "gaius": 19568,
- "##iso": 19569,
- "captures": 19570,
- "##ttering": 19571,
- "dorm": 19572,
- "claudio": 19573,
- "##sic": 19574,
- "benches": 19575,
- "knighted": 19576,
- "blackness": 19577,
- "##ored": 19578,
- "discount": 19579,
- "fumble": 19580,
- "oxidation": 19581,
- "routed": 19582,
- "##ς": 19583,
- "novak": 19584,
- "perpendicular": 19585,
- "spoiled": 19586,
- "fracture": 19587,
- "splits": 19588,
- "##urt": 19589,
- "pads": 19590,
- "topology": 19591,
- "##cats": 19592,
- "axes": 19593,
- "fortunate": 19594,
- "offenders": 19595,
- "protestants": 19596,
- "esteem": 19597,
- "221": 19598,
- "broadband": 19599,
- "convened": 19600,
- "frankly": 19601,
- "hound": 19602,
- "prototypes": 19603,
- "isil": 19604,
- "facilitated": 19605,
- "keel": 19606,
- "##sher": 19607,
- "sahara": 19608,
- "awaited": 19609,
- "bubba": 19610,
- "orb": 19611,
- "prosecutors": 19612,
- "186": 19613,
- "hem": 19614,
- "520": 19615,
- "##xing": 19616,
- "relaxing": 19617,
- "remnant": 19618,
- "romney": 19619,
- "sorted": 19620,
- "slalom": 19621,
- "stefano": 19622,
- "ulrich": 19623,
- "##active": 19624,
- "exemption": 19625,
- "folder": 19626,
- "pauses": 19627,
- "foliage": 19628,
- "hitchcock": 19629,
- "epithet": 19630,
- "204": 19631,
- "criticisms": 19632,
- "##aca": 19633,
- "ballistic": 19634,
- "brody": 19635,
- "hinduism": 19636,
- "chaotic": 19637,
- "youths": 19638,
- "equals": 19639,
- "##pala": 19640,
- "pts": 19641,
- "thicker": 19642,
- "analogous": 19643,
- "capitalist": 19644,
- "improvised": 19645,
- "overseeing": 19646,
- "sinatra": 19647,
- "ascended": 19648,
- "beverage": 19649,
- "##tl": 19650,
- "straightforward": 19651,
- "##kon": 19652,
- "curran": 19653,
- "##west": 19654,
- "bois": 19655,
- "325": 19656,
- "induce": 19657,
- "surveying": 19658,
- "emperors": 19659,
- "sax": 19660,
- "unpopular": 19661,
- "##kk": 19662,
- "cartoonist": 19663,
- "fused": 19664,
- "##mble": 19665,
- "unto": 19666,
- "##yuki": 19667,
- "localities": 19668,
- "##cko": 19669,
- "##ln": 19670,
- "darlington": 19671,
- "slain": 19672,
- "academie": 19673,
- "lobbying": 19674,
- "sediment": 19675,
- "puzzles": 19676,
- "##grass": 19677,
- "defiance": 19678,
- "dickens": 19679,
- "manifest": 19680,
- "tongues": 19681,
- "alumnus": 19682,
- "arbor": 19683,
- "coincide": 19684,
- "184": 19685,
- "appalachian": 19686,
- "mustafa": 19687,
- "examiner": 19688,
- "cabaret": 19689,
- "traumatic": 19690,
- "yves": 19691,
- "bracelet": 19692,
- "draining": 19693,
- "heroin": 19694,
- "magnum": 19695,
- "baths": 19696,
- "odessa": 19697,
- "consonants": 19698,
- "mitsubishi": 19699,
- "##gua": 19700,
- "kellan": 19701,
- "vaudeville": 19702,
- "##fr": 19703,
- "joked": 19704,
- "null": 19705,
- "straps": 19706,
- "probation": 19707,
- "##ław": 19708,
- "ceded": 19709,
- "interfaces": 19710,
- "##pas": 19711,
- "##zawa": 19712,
- "blinding": 19713,
- "viet": 19714,
- "224": 19715,
- "rothschild": 19716,
- "museo": 19717,
- "640": 19718,
- "huddersfield": 19719,
- "##vr": 19720,
- "tactic": 19721,
- "##storm": 19722,
- "brackets": 19723,
- "dazed": 19724,
- "incorrectly": 19725,
- "##vu": 19726,
- "reg": 19727,
- "glazed": 19728,
- "fearful": 19729,
- "manifold": 19730,
- "benefited": 19731,
- "irony": 19732,
- "##sun": 19733,
- "stumbling": 19734,
- "##rte": 19735,
- "willingness": 19736,
- "balkans": 19737,
- "mei": 19738,
- "wraps": 19739,
- "##aba": 19740,
- "injected": 19741,
- "##lea": 19742,
- "gu": 19743,
- "syed": 19744,
- "harmless": 19745,
- "##hammer": 19746,
- "bray": 19747,
- "takeoff": 19748,
- "poppy": 19749,
- "timor": 19750,
- "cardboard": 19751,
- "astronaut": 19752,
- "purdue": 19753,
- "weeping": 19754,
- "southbound": 19755,
- "cursing": 19756,
- "stalls": 19757,
- "diagonal": 19758,
- "##neer": 19759,
- "lamar": 19760,
- "bryce": 19761,
- "comte": 19762,
- "weekdays": 19763,
- "harrington": 19764,
- "##uba": 19765,
- "negatively": 19766,
- "##see": 19767,
- "lays": 19768,
- "grouping": 19769,
- "##cken": 19770,
- "##henko": 19771,
- "affirmed": 19772,
- "halle": 19773,
- "modernist": 19774,
- "##lai": 19775,
- "hodges": 19776,
- "smelling": 19777,
- "aristocratic": 19778,
- "baptized": 19779,
- "dismiss": 19780,
- "justification": 19781,
- "oilers": 19782,
- "##now": 19783,
- "coupling": 19784,
- "qin": 19785,
- "snack": 19786,
- "healer": 19787,
- "##qing": 19788,
- "gardener": 19789,
- "layla": 19790,
- "battled": 19791,
- "formulated": 19792,
- "stephenson": 19793,
- "gravitational": 19794,
- "##gill": 19795,
- "##jun": 19796,
- "1768": 19797,
- "granny": 19798,
- "coordinating": 19799,
- "suites": 19800,
- "##cd": 19801,
- "##ioned": 19802,
- "monarchs": 19803,
- "##cote": 19804,
- "##hips": 19805,
- "sep": 19806,
- "blended": 19807,
- "apr": 19808,
- "barrister": 19809,
- "deposition": 19810,
- "fia": 19811,
- "mina": 19812,
- "policemen": 19813,
- "paranoid": 19814,
- "##pressed": 19815,
- "churchyard": 19816,
- "covert": 19817,
- "crumpled": 19818,
- "creep": 19819,
- "abandoning": 19820,
- "tr": 19821,
- "transmit": 19822,
- "conceal": 19823,
- "barr": 19824,
- "understands": 19825,
- "readiness": 19826,
- "spire": 19827,
- "##cology": 19828,
- "##enia": 19829,
- "##erry": 19830,
- "610": 19831,
- "startling": 19832,
- "unlock": 19833,
- "vida": 19834,
- "bowled": 19835,
- "slots": 19836,
- "##nat": 19837,
- "##islav": 19838,
- "spaced": 19839,
- "trusting": 19840,
- "admire": 19841,
- "rig": 19842,
- "##ink": 19843,
- "slack": 19844,
- "##70": 19845,
- "mv": 19846,
- "207": 19847,
- "casualty": 19848,
- "##wei": 19849,
- "classmates": 19850,
- "##odes": 19851,
- "##rar": 19852,
- "##rked": 19853,
- "amherst": 19854,
- "furnished": 19855,
- "evolve": 19856,
- "foundry": 19857,
- "menace": 19858,
- "mead": 19859,
- "##lein": 19860,
- "flu": 19861,
- "wesleyan": 19862,
- "##kled": 19863,
- "monterey": 19864,
- "webber": 19865,
- "##vos": 19866,
- "wil": 19867,
- "##mith": 19868,
- "##на": 19869,
- "bartholomew": 19870,
- "justices": 19871,
- "restrained": 19872,
- "##cke": 19873,
- "amenities": 19874,
- "191": 19875,
- "mediated": 19876,
- "sewage": 19877,
- "trenches": 19878,
- "ml": 19879,
- "mainz": 19880,
- "##thus": 19881,
- "1800s": 19882,
- "##cula": 19883,
- "##inski": 19884,
- "caine": 19885,
- "bonding": 19886,
- "213": 19887,
- "converts": 19888,
- "spheres": 19889,
- "superseded": 19890,
- "marianne": 19891,
- "crypt": 19892,
- "sweaty": 19893,
- "ensign": 19894,
- "historia": 19895,
- "##br": 19896,
- "spruce": 19897,
- "##post": 19898,
- "##ask": 19899,
- "forks": 19900,
- "thoughtfully": 19901,
- "yukon": 19902,
- "pamphlet": 19903,
- "ames": 19904,
- "##uter": 19905,
- "karma": 19906,
- "##yya": 19907,
- "bryn": 19908,
- "negotiation": 19909,
- "sighs": 19910,
- "incapable": 19911,
- "##mbre": 19912,
- "##ntial": 19913,
- "actresses": 19914,
- "taft": 19915,
- "##mill": 19916,
- "luce": 19917,
- "prevailed": 19918,
- "##amine": 19919,
- "1773": 19920,
- "motionless": 19921,
- "envoy": 19922,
- "testify": 19923,
- "investing": 19924,
- "sculpted": 19925,
- "instructors": 19926,
- "provence": 19927,
- "kali": 19928,
- "cullen": 19929,
- "horseback": 19930,
- "##while": 19931,
- "goodwin": 19932,
- "##jos": 19933,
- "gaa": 19934,
- "norte": 19935,
- "##ldon": 19936,
- "modify": 19937,
- "wavelength": 19938,
- "abd": 19939,
- "214": 19940,
- "skinned": 19941,
- "sprinter": 19942,
- "forecast": 19943,
- "scheduling": 19944,
- "marries": 19945,
- "squared": 19946,
- "tentative": 19947,
- "##chman": 19948,
- "boer": 19949,
- "##isch": 19950,
- "bolts": 19951,
- "swap": 19952,
- "fisherman": 19953,
- "assyrian": 19954,
- "impatiently": 19955,
- "guthrie": 19956,
- "martins": 19957,
- "murdoch": 19958,
- "194": 19959,
- "tanya": 19960,
- "nicely": 19961,
- "dolly": 19962,
- "lacy": 19963,
- "med": 19964,
- "##45": 19965,
- "syn": 19966,
- "decks": 19967,
- "fashionable": 19968,
- "millionaire": 19969,
- "##ust": 19970,
- "surfing": 19971,
- "##ml": 19972,
- "##ision": 19973,
- "heaved": 19974,
- "tammy": 19975,
- "consulate": 19976,
- "attendees": 19977,
- "routinely": 19978,
- "197": 19979,
- "fuse": 19980,
- "saxophonist": 19981,
- "backseat": 19982,
- "malaya": 19983,
- "##lord": 19984,
- "scowl": 19985,
- "tau": 19986,
- "##ishly": 19987,
- "193": 19988,
- "sighted": 19989,
- "steaming": 19990,
- "##rks": 19991,
- "303": 19992,
- "911": 19993,
- "##holes": 19994,
- "##hong": 19995,
- "ching": 19996,
- "##wife": 19997,
- "bless": 19998,
- "conserved": 19999,
- "jurassic": 20000,
- "stacey": 20001,
- "unix": 20002,
- "zion": 20003,
- "chunk": 20004,
- "rigorous": 20005,
- "blaine": 20006,
- "198": 20007,
- "peabody": 20008,
- "slayer": 20009,
- "dismay": 20010,
- "brewers": 20011,
- "nz": 20012,
- "##jer": 20013,
- "det": 20014,
- "##glia": 20015,
- "glover": 20016,
- "postwar": 20017,
- "int": 20018,
- "penetration": 20019,
- "sylvester": 20020,
- "imitation": 20021,
- "vertically": 20022,
- "airlift": 20023,
- "heiress": 20024,
- "knoxville": 20025,
- "viva": 20026,
- "##uin": 20027,
- "390": 20028,
- "macon": 20029,
- "##rim": 20030,
- "##fighter": 20031,
- "##gonal": 20032,
- "janice": 20033,
- "##orescence": 20034,
- "##wari": 20035,
- "marius": 20036,
- "belongings": 20037,
- "leicestershire": 20038,
- "196": 20039,
- "blanco": 20040,
- "inverted": 20041,
- "preseason": 20042,
- "sanity": 20043,
- "sobbing": 20044,
- "##due": 20045,
- "##elt": 20046,
- "##dled": 20047,
- "collingwood": 20048,
- "regeneration": 20049,
- "flickering": 20050,
- "shortest": 20051,
- "##mount": 20052,
- "##osi": 20053,
- "feminism": 20054,
- "##lat": 20055,
- "sherlock": 20056,
- "cabinets": 20057,
- "fumbled": 20058,
- "northbound": 20059,
- "precedent": 20060,
- "snaps": 20061,
- "##mme": 20062,
- "researching": 20063,
- "##akes": 20064,
- "guillaume": 20065,
- "insights": 20066,
- "manipulated": 20067,
- "vapor": 20068,
- "neighbour": 20069,
- "sap": 20070,
- "gangster": 20071,
- "frey": 20072,
- "f1": 20073,
- "stalking": 20074,
- "scarcely": 20075,
- "callie": 20076,
- "barnett": 20077,
- "tendencies": 20078,
- "audi": 20079,
- "doomed": 20080,
- "assessing": 20081,
- "slung": 20082,
- "panchayat": 20083,
- "ambiguous": 20084,
- "bartlett": 20085,
- "##etto": 20086,
- "distributing": 20087,
- "violating": 20088,
- "wolverhampton": 20089,
- "##hetic": 20090,
- "swami": 20091,
- "histoire": 20092,
- "##urus": 20093,
- "liable": 20094,
- "pounder": 20095,
- "groin": 20096,
- "hussain": 20097,
- "larsen": 20098,
- "popping": 20099,
- "surprises": 20100,
- "##atter": 20101,
- "vie": 20102,
- "curt": 20103,
- "##station": 20104,
- "mute": 20105,
- "relocate": 20106,
- "musicals": 20107,
- "authorization": 20108,
- "richter": 20109,
- "##sef": 20110,
- "immortality": 20111,
- "tna": 20112,
- "bombings": 20113,
- "##press": 20114,
- "deteriorated": 20115,
- "yiddish": 20116,
- "##acious": 20117,
- "robbed": 20118,
- "colchester": 20119,
- "cs": 20120,
- "pmid": 20121,
- "ao": 20122,
- "verified": 20123,
- "balancing": 20124,
- "apostle": 20125,
- "swayed": 20126,
- "recognizable": 20127,
- "oxfordshire": 20128,
- "retention": 20129,
- "nottinghamshire": 20130,
- "contender": 20131,
- "judd": 20132,
- "invitational": 20133,
- "shrimp": 20134,
- "uhf": 20135,
- "##icient": 20136,
- "cleaner": 20137,
- "longitudinal": 20138,
- "tanker": 20139,
- "##mur": 20140,
- "acronym": 20141,
- "broker": 20142,
- "koppen": 20143,
- "sundance": 20144,
- "suppliers": 20145,
- "##gil": 20146,
- "4000": 20147,
- "clipped": 20148,
- "fuels": 20149,
- "petite": 20150,
- "##anne": 20151,
- "landslide": 20152,
- "helene": 20153,
- "diversion": 20154,
- "populous": 20155,
- "landowners": 20156,
- "auspices": 20157,
- "melville": 20158,
- "quantitative": 20159,
- "##xes": 20160,
- "ferries": 20161,
- "nicky": 20162,
- "##llus": 20163,
- "doo": 20164,
- "haunting": 20165,
- "roche": 20166,
- "carver": 20167,
- "downed": 20168,
- "unavailable": 20169,
- "##pathy": 20170,
- "approximation": 20171,
- "hiroshima": 20172,
- "##hue": 20173,
- "garfield": 20174,
- "valle": 20175,
- "comparatively": 20176,
- "keyboardist": 20177,
- "traveler": 20178,
- "##eit": 20179,
- "congestion": 20180,
- "calculating": 20181,
- "subsidiaries": 20182,
- "##bate": 20183,
- "serb": 20184,
- "modernization": 20185,
- "fairies": 20186,
- "deepened": 20187,
- "ville": 20188,
- "averages": 20189,
- "##lore": 20190,
- "inflammatory": 20191,
- "tonga": 20192,
- "##itch": 20193,
- "co₂": 20194,
- "squads": 20195,
- "##hea": 20196,
- "gigantic": 20197,
- "serum": 20198,
- "enjoyment": 20199,
- "retailer": 20200,
- "verona": 20201,
- "35th": 20202,
- "cis": 20203,
- "##phobic": 20204,
- "magna": 20205,
- "technicians": 20206,
- "##vati": 20207,
- "arithmetic": 20208,
- "##sport": 20209,
- "levin": 20210,
- "##dation": 20211,
- "amtrak": 20212,
- "chow": 20213,
- "sienna": 20214,
- "##eyer": 20215,
- "backstage": 20216,
- "entrepreneurship": 20217,
- "##otic": 20218,
- "learnt": 20219,
- "tao": 20220,
- "##udy": 20221,
- "worcestershire": 20222,
- "formulation": 20223,
- "baggage": 20224,
- "hesitant": 20225,
- "bali": 20226,
- "sabotage": 20227,
- "##kari": 20228,
- "barren": 20229,
- "enhancing": 20230,
- "murmur": 20231,
- "pl": 20232,
- "freshly": 20233,
- "putnam": 20234,
- "syntax": 20235,
- "aces": 20236,
- "medicines": 20237,
- "resentment": 20238,
- "bandwidth": 20239,
- "##sier": 20240,
- "grins": 20241,
- "chili": 20242,
- "guido": 20243,
- "##sei": 20244,
- "framing": 20245,
- "implying": 20246,
- "gareth": 20247,
- "lissa": 20248,
- "genevieve": 20249,
- "pertaining": 20250,
- "admissions": 20251,
- "geo": 20252,
- "thorpe": 20253,
- "proliferation": 20254,
- "sato": 20255,
- "bela": 20256,
- "analyzing": 20257,
- "parting": 20258,
- "##gor": 20259,
- "awakened": 20260,
- "##isman": 20261,
- "huddled": 20262,
- "secrecy": 20263,
- "##kling": 20264,
- "hush": 20265,
- "gentry": 20266,
- "540": 20267,
- "dungeons": 20268,
- "##ego": 20269,
- "coasts": 20270,
- "##utz": 20271,
- "sacrificed": 20272,
- "##chule": 20273,
- "landowner": 20274,
- "mutually": 20275,
- "prevalence": 20276,
- "programmer": 20277,
- "adolescent": 20278,
- "disrupted": 20279,
- "seaside": 20280,
- "gee": 20281,
- "trusts": 20282,
- "vamp": 20283,
- "georgie": 20284,
- "##nesian": 20285,
- "##iol": 20286,
- "schedules": 20287,
- "sindh": 20288,
- "##market": 20289,
- "etched": 20290,
- "hm": 20291,
- "sparse": 20292,
- "bey": 20293,
- "beaux": 20294,
- "scratching": 20295,
- "gliding": 20296,
- "unidentified": 20297,
- "216": 20298,
- "collaborating": 20299,
- "gems": 20300,
- "jesuits": 20301,
- "oro": 20302,
- "accumulation": 20303,
- "shaping": 20304,
- "mbe": 20305,
- "anal": 20306,
- "##xin": 20307,
- "231": 20308,
- "enthusiasts": 20309,
- "newscast": 20310,
- "##egan": 20311,
- "janata": 20312,
- "dewey": 20313,
- "parkinson": 20314,
- "179": 20315,
- "ankara": 20316,
- "biennial": 20317,
- "towering": 20318,
- "dd": 20319,
- "inconsistent": 20320,
- "950": 20321,
- "##chet": 20322,
- "thriving": 20323,
- "terminate": 20324,
- "cabins": 20325,
- "furiously": 20326,
- "eats": 20327,
- "advocating": 20328,
- "donkey": 20329,
- "marley": 20330,
- "muster": 20331,
- "phyllis": 20332,
- "leiden": 20333,
- "##user": 20334,
- "grassland": 20335,
- "glittering": 20336,
- "iucn": 20337,
- "loneliness": 20338,
- "217": 20339,
- "memorandum": 20340,
- "armenians": 20341,
- "##ddle": 20342,
- "popularized": 20343,
- "rhodesia": 20344,
- "60s": 20345,
- "lame": 20346,
- "##illon": 20347,
- "sans": 20348,
- "bikini": 20349,
- "header": 20350,
- "orbits": 20351,
- "##xx": 20352,
- "##finger": 20353,
- "##ulator": 20354,
- "sharif": 20355,
- "spines": 20356,
- "biotechnology": 20357,
- "strolled": 20358,
- "naughty": 20359,
- "yates": 20360,
- "##wire": 20361,
- "fremantle": 20362,
- "milo": 20363,
- "##mour": 20364,
- "abducted": 20365,
- "removes": 20366,
- "##atin": 20367,
- "humming": 20368,
- "wonderland": 20369,
- "##chrome": 20370,
- "##ester": 20371,
- "hume": 20372,
- "pivotal": 20373,
- "##rates": 20374,
- "armand": 20375,
- "grams": 20376,
- "believers": 20377,
- "elector": 20378,
- "rte": 20379,
- "apron": 20380,
- "bis": 20381,
- "scraped": 20382,
- "##yria": 20383,
- "endorsement": 20384,
- "initials": 20385,
- "##llation": 20386,
- "eps": 20387,
- "dotted": 20388,
- "hints": 20389,
- "buzzing": 20390,
- "emigration": 20391,
- "nearer": 20392,
- "##tom": 20393,
- "indicators": 20394,
- "##ulu": 20395,
- "coarse": 20396,
- "neutron": 20397,
- "protectorate": 20398,
- "##uze": 20399,
- "directional": 20400,
- "exploits": 20401,
- "pains": 20402,
- "loire": 20403,
- "1830s": 20404,
- "proponents": 20405,
- "guggenheim": 20406,
- "rabbits": 20407,
- "ritchie": 20408,
- "305": 20409,
- "hectare": 20410,
- "inputs": 20411,
- "hutton": 20412,
- "##raz": 20413,
- "verify": 20414,
- "##ako": 20415,
- "boilers": 20416,
- "longitude": 20417,
- "##lev": 20418,
- "skeletal": 20419,
- "yer": 20420,
- "emilia": 20421,
- "citrus": 20422,
- "compromised": 20423,
- "##gau": 20424,
- "pokemon": 20425,
- "prescription": 20426,
- "paragraph": 20427,
- "eduard": 20428,
- "cadillac": 20429,
- "attire": 20430,
- "categorized": 20431,
- "kenyan": 20432,
- "weddings": 20433,
- "charley": 20434,
- "##bourg": 20435,
- "entertain": 20436,
- "monmouth": 20437,
- "##lles": 20438,
- "nutrients": 20439,
- "davey": 20440,
- "mesh": 20441,
- "incentive": 20442,
- "practised": 20443,
- "ecosystems": 20444,
- "kemp": 20445,
- "subdued": 20446,
- "overheard": 20447,
- "##rya": 20448,
- "bodily": 20449,
- "maxim": 20450,
- "##nius": 20451,
- "apprenticeship": 20452,
- "ursula": 20453,
- "##fight": 20454,
- "lodged": 20455,
- "rug": 20456,
- "silesian": 20457,
- "unconstitutional": 20458,
- "patel": 20459,
- "inspected": 20460,
- "coyote": 20461,
- "unbeaten": 20462,
- "##hak": 20463,
- "34th": 20464,
- "disruption": 20465,
- "convict": 20466,
- "parcel": 20467,
- "##cl": 20468,
- "##nham": 20469,
- "collier": 20470,
- "implicated": 20471,
- "mallory": 20472,
- "##iac": 20473,
- "##lab": 20474,
- "susannah": 20475,
- "winkler": 20476,
- "##rber": 20477,
- "shia": 20478,
- "phelps": 20479,
- "sediments": 20480,
- "graphical": 20481,
- "robotic": 20482,
- "##sner": 20483,
- "adulthood": 20484,
- "mart": 20485,
- "smoked": 20486,
- "##isto": 20487,
- "kathryn": 20488,
- "clarified": 20489,
- "##aran": 20490,
- "divides": 20491,
- "convictions": 20492,
- "oppression": 20493,
- "pausing": 20494,
- "burying": 20495,
- "##mt": 20496,
- "federico": 20497,
- "mathias": 20498,
- "eileen": 20499,
- "##tana": 20500,
- "kite": 20501,
- "hunched": 20502,
- "##acies": 20503,
- "189": 20504,
- "##atz": 20505,
- "disadvantage": 20506,
- "liza": 20507,
- "kinetic": 20508,
- "greedy": 20509,
- "paradox": 20510,
- "yokohama": 20511,
- "dowager": 20512,
- "trunks": 20513,
- "ventured": 20514,
- "##gement": 20515,
- "gupta": 20516,
- "vilnius": 20517,
- "olaf": 20518,
- "##thest": 20519,
- "crimean": 20520,
- "hopper": 20521,
- "##ej": 20522,
- "progressively": 20523,
- "arturo": 20524,
- "mouthed": 20525,
- "arrondissement": 20526,
- "##fusion": 20527,
- "rubin": 20528,
- "simulcast": 20529,
- "oceania": 20530,
- "##orum": 20531,
- "##stra": 20532,
- "##rred": 20533,
- "busiest": 20534,
- "intensely": 20535,
- "navigator": 20536,
- "cary": 20537,
- "##vine": 20538,
- "##hini": 20539,
- "##bies": 20540,
- "fife": 20541,
- "rowe": 20542,
- "rowland": 20543,
- "posing": 20544,
- "insurgents": 20545,
- "shafts": 20546,
- "lawsuits": 20547,
- "activate": 20548,
- "conor": 20549,
- "inward": 20550,
- "culturally": 20551,
- "garlic": 20552,
- "265": 20553,
- "##eering": 20554,
- "eclectic": 20555,
- "##hui": 20556,
- "##kee": 20557,
- "##nl": 20558,
- "furrowed": 20559,
- "vargas": 20560,
- "meteorological": 20561,
- "rendezvous": 20562,
- "##aus": 20563,
- "culinary": 20564,
- "commencement": 20565,
- "##dition": 20566,
- "quota": 20567,
- "##notes": 20568,
- "mommy": 20569,
- "salaries": 20570,
- "overlapping": 20571,
- "mule": 20572,
- "##iology": 20573,
- "##mology": 20574,
- "sums": 20575,
- "wentworth": 20576,
- "##isk": 20577,
- "##zione": 20578,
- "mainline": 20579,
- "subgroup": 20580,
- "##illy": 20581,
- "hack": 20582,
- "plaintiff": 20583,
- "verdi": 20584,
- "bulb": 20585,
- "differentiation": 20586,
- "engagements": 20587,
- "multinational": 20588,
- "supplemented": 20589,
- "bertrand": 20590,
- "caller": 20591,
- "regis": 20592,
- "##naire": 20593,
- "##sler": 20594,
- "##arts": 20595,
- "##imated": 20596,
- "blossom": 20597,
- "propagation": 20598,
- "kilometer": 20599,
- "viaduct": 20600,
- "vineyards": 20601,
- "##uate": 20602,
- "beckett": 20603,
- "optimization": 20604,
- "golfer": 20605,
- "songwriters": 20606,
- "seminal": 20607,
- "semitic": 20608,
- "thud": 20609,
- "volatile": 20610,
- "evolving": 20611,
- "ridley": 20612,
- "##wley": 20613,
- "trivial": 20614,
- "distributions": 20615,
- "scandinavia": 20616,
- "jiang": 20617,
- "##ject": 20618,
- "wrestled": 20619,
- "insistence": 20620,
- "##dio": 20621,
- "emphasizes": 20622,
- "napkin": 20623,
- "##ods": 20624,
- "adjunct": 20625,
- "rhyme": 20626,
- "##ricted": 20627,
- "##eti": 20628,
- "hopeless": 20629,
- "surrounds": 20630,
- "tremble": 20631,
- "32nd": 20632,
- "smoky": 20633,
- "##ntly": 20634,
- "oils": 20635,
- "medicinal": 20636,
- "padded": 20637,
- "steer": 20638,
- "wilkes": 20639,
- "219": 20640,
- "255": 20641,
- "concessions": 20642,
- "hue": 20643,
- "uniquely": 20644,
- "blinded": 20645,
- "landon": 20646,
- "yahoo": 20647,
- "##lane": 20648,
- "hendrix": 20649,
- "commemorating": 20650,
- "dex": 20651,
- "specify": 20652,
- "chicks": 20653,
- "##ggio": 20654,
- "intercity": 20655,
- "1400": 20656,
- "morley": 20657,
- "##torm": 20658,
- "highlighting": 20659,
- "##oting": 20660,
- "pang": 20661,
- "oblique": 20662,
- "stalled": 20663,
- "##liner": 20664,
- "flirting": 20665,
- "newborn": 20666,
- "1769": 20667,
- "bishopric": 20668,
- "shaved": 20669,
- "232": 20670,
- "currie": 20671,
- "##ush": 20672,
- "dharma": 20673,
- "spartan": 20674,
- "##ooped": 20675,
- "favorites": 20676,
- "smug": 20677,
- "novella": 20678,
- "sirens": 20679,
- "abusive": 20680,
- "creations": 20681,
- "espana": 20682,
- "##lage": 20683,
- "paradigm": 20684,
- "semiconductor": 20685,
- "sheen": 20686,
- "##rdo": 20687,
- "##yen": 20688,
- "##zak": 20689,
- "nrl": 20690,
- "renew": 20691,
- "##pose": 20692,
- "##tur": 20693,
- "adjutant": 20694,
- "marches": 20695,
- "norma": 20696,
- "##enity": 20697,
- "ineffective": 20698,
- "weimar": 20699,
- "grunt": 20700,
- "##gat": 20701,
- "lordship": 20702,
- "plotting": 20703,
- "expenditure": 20704,
- "infringement": 20705,
- "lbs": 20706,
- "refrain": 20707,
- "av": 20708,
- "mimi": 20709,
- "mistakenly": 20710,
- "postmaster": 20711,
- "1771": 20712,
- "##bara": 20713,
- "ras": 20714,
- "motorsports": 20715,
- "tito": 20716,
- "199": 20717,
- "subjective": 20718,
- "##zza": 20719,
- "bully": 20720,
- "stew": 20721,
- "##kaya": 20722,
- "prescott": 20723,
- "1a": 20724,
- "##raphic": 20725,
- "##zam": 20726,
- "bids": 20727,
- "styling": 20728,
- "paranormal": 20729,
- "reeve": 20730,
- "sneaking": 20731,
- "exploding": 20732,
- "katz": 20733,
- "akbar": 20734,
- "migrant": 20735,
- "syllables": 20736,
- "indefinitely": 20737,
- "##ogical": 20738,
- "destroys": 20739,
- "replaces": 20740,
- "applause": 20741,
- "##phine": 20742,
- "pest": 20743,
- "##fide": 20744,
- "218": 20745,
- "articulated": 20746,
- "bertie": 20747,
- "##thing": 20748,
- "##cars": 20749,
- "##ptic": 20750,
- "courtroom": 20751,
- "crowley": 20752,
- "aesthetics": 20753,
- "cummings": 20754,
- "tehsil": 20755,
- "hormones": 20756,
- "titanic": 20757,
- "dangerously": 20758,
- "##ibe": 20759,
- "stadion": 20760,
- "jaenelle": 20761,
- "auguste": 20762,
- "ciudad": 20763,
- "##chu": 20764,
- "mysore": 20765,
- "partisans": 20766,
- "##sio": 20767,
- "lucan": 20768,
- "philipp": 20769,
- "##aly": 20770,
- "debating": 20771,
- "henley": 20772,
- "interiors": 20773,
- "##rano": 20774,
- "##tious": 20775,
- "homecoming": 20776,
- "beyonce": 20777,
- "usher": 20778,
- "henrietta": 20779,
- "prepares": 20780,
- "weeds": 20781,
- "##oman": 20782,
- "ely": 20783,
- "plucked": 20784,
- "##pire": 20785,
- "##dable": 20786,
- "luxurious": 20787,
- "##aq": 20788,
- "artifact": 20789,
- "password": 20790,
- "pasture": 20791,
- "juno": 20792,
- "maddy": 20793,
- "minsk": 20794,
- "##dder": 20795,
- "##ologies": 20796,
- "##rone": 20797,
- "assessments": 20798,
- "martian": 20799,
- "royalist": 20800,
- "1765": 20801,
- "examines": 20802,
- "##mani": 20803,
- "##rge": 20804,
- "nino": 20805,
- "223": 20806,
- "parry": 20807,
- "scooped": 20808,
- "relativity": 20809,
- "##eli": 20810,
- "##uting": 20811,
- "##cao": 20812,
- "congregational": 20813,
- "noisy": 20814,
- "traverse": 20815,
- "##agawa": 20816,
- "strikeouts": 20817,
- "nickelodeon": 20818,
- "obituary": 20819,
- "transylvania": 20820,
- "binds": 20821,
- "depictions": 20822,
- "polk": 20823,
- "trolley": 20824,
- "##yed": 20825,
- "##lard": 20826,
- "breeders": 20827,
- "##under": 20828,
- "dryly": 20829,
- "hokkaido": 20830,
- "1762": 20831,
- "strengths": 20832,
- "stacks": 20833,
- "bonaparte": 20834,
- "connectivity": 20835,
- "neared": 20836,
- "prostitutes": 20837,
- "stamped": 20838,
- "anaheim": 20839,
- "gutierrez": 20840,
- "sinai": 20841,
- "##zzling": 20842,
- "bram": 20843,
- "fresno": 20844,
- "madhya": 20845,
- "##86": 20846,
- "proton": 20847,
- "##lena": 20848,
- "##llum": 20849,
- "##phon": 20850,
- "reelected": 20851,
- "wanda": 20852,
- "##anus": 20853,
- "##lb": 20854,
- "ample": 20855,
- "distinguishing": 20856,
- "##yler": 20857,
- "grasping": 20858,
- "sermons": 20859,
- "tomato": 20860,
- "bland": 20861,
- "stimulation": 20862,
- "avenues": 20863,
- "##eux": 20864,
- "spreads": 20865,
- "scarlett": 20866,
- "fern": 20867,
- "pentagon": 20868,
- "assert": 20869,
- "baird": 20870,
- "chesapeake": 20871,
- "ir": 20872,
- "calmed": 20873,
- "distortion": 20874,
- "fatalities": 20875,
- "##olis": 20876,
- "correctional": 20877,
- "pricing": 20878,
- "##astic": 20879,
- "##gina": 20880,
- "prom": 20881,
- "dammit": 20882,
- "ying": 20883,
- "collaborate": 20884,
- "##chia": 20885,
- "welterweight": 20886,
- "33rd": 20887,
- "pointer": 20888,
- "substitution": 20889,
- "bonded": 20890,
- "umpire": 20891,
- "communicating": 20892,
- "multitude": 20893,
- "paddle": 20894,
- "##obe": 20895,
- "federally": 20896,
- "intimacy": 20897,
- "##insky": 20898,
- "betray": 20899,
- "ssr": 20900,
- "##lett": 20901,
- "##lean": 20902,
- "##lves": 20903,
- "##therapy": 20904,
- "airbus": 20905,
- "##tery": 20906,
- "functioned": 20907,
- "ud": 20908,
- "bearer": 20909,
- "biomedical": 20910,
- "netflix": 20911,
- "##hire": 20912,
- "##nca": 20913,
- "condom": 20914,
- "brink": 20915,
- "ik": 20916,
- "##nical": 20917,
- "macy": 20918,
- "##bet": 20919,
- "flap": 20920,
- "gma": 20921,
- "experimented": 20922,
- "jelly": 20923,
- "lavender": 20924,
- "##icles": 20925,
- "##ulia": 20926,
- "munro": 20927,
- "##mian": 20928,
- "##tial": 20929,
- "rye": 20930,
- "##rle": 20931,
- "60th": 20932,
- "gigs": 20933,
- "hottest": 20934,
- "rotated": 20935,
- "predictions": 20936,
- "fuji": 20937,
- "bu": 20938,
- "##erence": 20939,
- "##omi": 20940,
- "barangay": 20941,
- "##fulness": 20942,
- "##sas": 20943,
- "clocks": 20944,
- "##rwood": 20945,
- "##liness": 20946,
- "cereal": 20947,
- "roe": 20948,
- "wight": 20949,
- "decker": 20950,
- "uttered": 20951,
- "babu": 20952,
- "onion": 20953,
- "xml": 20954,
- "forcibly": 20955,
- "##df": 20956,
- "petra": 20957,
- "sarcasm": 20958,
- "hartley": 20959,
- "peeled": 20960,
- "storytelling": 20961,
- "##42": 20962,
- "##xley": 20963,
- "##ysis": 20964,
- "##ffa": 20965,
- "fibre": 20966,
- "kiel": 20967,
- "auditor": 20968,
- "fig": 20969,
- "harald": 20970,
- "greenville": 20971,
- "##berries": 20972,
- "geographically": 20973,
- "nell": 20974,
- "quartz": 20975,
- "##athic": 20976,
- "cemeteries": 20977,
- "##lr": 20978,
- "crossings": 20979,
- "nah": 20980,
- "holloway": 20981,
- "reptiles": 20982,
- "chun": 20983,
- "sichuan": 20984,
- "snowy": 20985,
- "660": 20986,
- "corrections": 20987,
- "##ivo": 20988,
- "zheng": 20989,
- "ambassadors": 20990,
- "blacksmith": 20991,
- "fielded": 20992,
- "fluids": 20993,
- "hardcover": 20994,
- "turnover": 20995,
- "medications": 20996,
- "melvin": 20997,
- "academies": 20998,
- "##erton": 20999,
- "ro": 21000,
- "roach": 21001,
- "absorbing": 21002,
- "spaniards": 21003,
- "colton": 21004,
- "##founded": 21005,
- "outsider": 21006,
- "espionage": 21007,
- "kelsey": 21008,
- "245": 21009,
- "edible": 21010,
- "##ulf": 21011,
- "dora": 21012,
- "establishes": 21013,
- "##sham": 21014,
- "##tries": 21015,
- "contracting": 21016,
- "##tania": 21017,
- "cinematic": 21018,
- "costello": 21019,
- "nesting": 21020,
- "##uron": 21021,
- "connolly": 21022,
- "duff": 21023,
- "##nology": 21024,
- "mma": 21025,
- "##mata": 21026,
- "fergus": 21027,
- "sexes": 21028,
- "gi": 21029,
- "optics": 21030,
- "spectator": 21031,
- "woodstock": 21032,
- "banning": 21033,
- "##hee": 21034,
- "##fle": 21035,
- "differentiate": 21036,
- "outfielder": 21037,
- "refinery": 21038,
- "226": 21039,
- "312": 21040,
- "gerhard": 21041,
- "horde": 21042,
- "lair": 21043,
- "drastically": 21044,
- "##udi": 21045,
- "landfall": 21046,
- "##cheng": 21047,
- "motorsport": 21048,
- "odi": 21049,
- "##achi": 21050,
- "predominant": 21051,
- "quay": 21052,
- "skins": 21053,
- "##ental": 21054,
- "edna": 21055,
- "harshly": 21056,
- "complementary": 21057,
- "murdering": 21058,
- "##aves": 21059,
- "wreckage": 21060,
- "##90": 21061,
- "ono": 21062,
- "outstretched": 21063,
- "lennox": 21064,
- "munitions": 21065,
- "galen": 21066,
- "reconcile": 21067,
- "470": 21068,
- "scalp": 21069,
- "bicycles": 21070,
- "gillespie": 21071,
- "questionable": 21072,
- "rosenberg": 21073,
- "guillermo": 21074,
- "hostel": 21075,
- "jarvis": 21076,
- "kabul": 21077,
- "volvo": 21078,
- "opium": 21079,
- "yd": 21080,
- "##twined": 21081,
- "abuses": 21082,
- "decca": 21083,
- "outpost": 21084,
- "##cino": 21085,
- "sensible": 21086,
- "neutrality": 21087,
- "##64": 21088,
- "ponce": 21089,
- "anchorage": 21090,
- "atkins": 21091,
- "turrets": 21092,
- "inadvertently": 21093,
- "disagree": 21094,
- "libre": 21095,
- "vodka": 21096,
- "reassuring": 21097,
- "weighs": 21098,
- "##yal": 21099,
- "glide": 21100,
- "jumper": 21101,
- "ceilings": 21102,
- "repertory": 21103,
- "outs": 21104,
- "stain": 21105,
- "##bial": 21106,
- "envy": 21107,
- "##ucible": 21108,
- "smashing": 21109,
- "heightened": 21110,
- "policing": 21111,
- "hyun": 21112,
- "mixes": 21113,
- "lai": 21114,
- "prima": 21115,
- "##ples": 21116,
- "celeste": 21117,
- "##bina": 21118,
- "lucrative": 21119,
- "intervened": 21120,
- "kc": 21121,
- "manually": 21122,
- "##rned": 21123,
- "stature": 21124,
- "staffed": 21125,
- "bun": 21126,
- "bastards": 21127,
- "nairobi": 21128,
- "priced": 21129,
- "##auer": 21130,
- "thatcher": 21131,
- "##kia": 21132,
- "tripped": 21133,
- "comune": 21134,
- "##ogan": 21135,
- "##pled": 21136,
- "brasil": 21137,
- "incentives": 21138,
- "emanuel": 21139,
- "hereford": 21140,
- "musica": 21141,
- "##kim": 21142,
- "benedictine": 21143,
- "biennale": 21144,
- "##lani": 21145,
- "eureka": 21146,
- "gardiner": 21147,
- "rb": 21148,
- "knocks": 21149,
- "sha": 21150,
- "##ael": 21151,
- "##elled": 21152,
- "##onate": 21153,
- "efficacy": 21154,
- "ventura": 21155,
- "masonic": 21156,
- "sanford": 21157,
- "maize": 21158,
- "leverage": 21159,
- "##feit": 21160,
- "capacities": 21161,
- "santana": 21162,
- "##aur": 21163,
- "novelty": 21164,
- "vanilla": 21165,
- "##cter": 21166,
- "##tour": 21167,
- "benin": 21168,
- "##oir": 21169,
- "##rain": 21170,
- "neptune": 21171,
- "drafting": 21172,
- "tallinn": 21173,
- "##cable": 21174,
- "humiliation": 21175,
- "##boarding": 21176,
- "schleswig": 21177,
- "fabian": 21178,
- "bernardo": 21179,
- "liturgy": 21180,
- "spectacle": 21181,
- "sweeney": 21182,
- "pont": 21183,
- "routledge": 21184,
- "##tment": 21185,
- "cosmos": 21186,
- "ut": 21187,
- "hilt": 21188,
- "sleek": 21189,
- "universally": 21190,
- "##eville": 21191,
- "##gawa": 21192,
- "typed": 21193,
- "##dry": 21194,
- "favors": 21195,
- "allegheny": 21196,
- "glaciers": 21197,
- "##rly": 21198,
- "recalling": 21199,
- "aziz": 21200,
- "##log": 21201,
- "parasite": 21202,
- "requiem": 21203,
- "auf": 21204,
- "##berto": 21205,
- "##llin": 21206,
- "illumination": 21207,
- "##breaker": 21208,
- "##issa": 21209,
- "festivities": 21210,
- "bows": 21211,
- "govern": 21212,
- "vibe": 21213,
- "vp": 21214,
- "333": 21215,
- "sprawled": 21216,
- "larson": 21217,
- "pilgrim": 21218,
- "bwf": 21219,
- "leaping": 21220,
- "##rts": 21221,
- "##ssel": 21222,
- "alexei": 21223,
- "greyhound": 21224,
- "hoarse": 21225,
- "##dler": 21226,
- "##oration": 21227,
- "seneca": 21228,
- "##cule": 21229,
- "gaping": 21230,
- "##ulously": 21231,
- "##pura": 21232,
- "cinnamon": 21233,
- "##gens": 21234,
- "##rricular": 21235,
- "craven": 21236,
- "fantasies": 21237,
- "houghton": 21238,
- "engined": 21239,
- "reigned": 21240,
- "dictator": 21241,
- "supervising": 21242,
- "##oris": 21243,
- "bogota": 21244,
- "commentaries": 21245,
- "unnatural": 21246,
- "fingernails": 21247,
- "spirituality": 21248,
- "tighten": 21249,
- "##tm": 21250,
- "canadiens": 21251,
- "protesting": 21252,
- "intentional": 21253,
- "cheers": 21254,
- "sparta": 21255,
- "##ytic": 21256,
- "##iere": 21257,
- "##zine": 21258,
- "widen": 21259,
- "belgarath": 21260,
- "controllers": 21261,
- "dodd": 21262,
- "iaaf": 21263,
- "navarre": 21264,
- "##ication": 21265,
- "defect": 21266,
- "squire": 21267,
- "steiner": 21268,
- "whisky": 21269,
- "##mins": 21270,
- "560": 21271,
- "inevitably": 21272,
- "tome": 21273,
- "##gold": 21274,
- "chew": 21275,
- "##uid": 21276,
- "##lid": 21277,
- "elastic": 21278,
- "##aby": 21279,
- "streaked": 21280,
- "alliances": 21281,
- "jailed": 21282,
- "regal": 21283,
- "##ined": 21284,
- "##phy": 21285,
- "czechoslovak": 21286,
- "narration": 21287,
- "absently": 21288,
- "##uld": 21289,
- "bluegrass": 21290,
- "guangdong": 21291,
- "quran": 21292,
- "criticizing": 21293,
- "hose": 21294,
- "hari": 21295,
- "##liest": 21296,
- "##owa": 21297,
- "skier": 21298,
- "streaks": 21299,
- "deploy": 21300,
- "##lom": 21301,
- "raft": 21302,
- "bose": 21303,
- "dialed": 21304,
- "huff": 21305,
- "##eira": 21306,
- "haifa": 21307,
- "simplest": 21308,
- "bursting": 21309,
- "endings": 21310,
- "ib": 21311,
- "sultanate": 21312,
- "##titled": 21313,
- "franks": 21314,
- "whitman": 21315,
- "ensures": 21316,
- "sven": 21317,
- "##ggs": 21318,
- "collaborators": 21319,
- "forster": 21320,
- "organising": 21321,
- "ui": 21322,
- "banished": 21323,
- "napier": 21324,
- "injustice": 21325,
- "teller": 21326,
- "layered": 21327,
- "thump": 21328,
- "##otti": 21329,
- "roc": 21330,
- "battleships": 21331,
- "evidenced": 21332,
- "fugitive": 21333,
- "sadie": 21334,
- "robotics": 21335,
- "##roud": 21336,
- "equatorial": 21337,
- "geologist": 21338,
- "##iza": 21339,
- "yielding": 21340,
- "##bron": 21341,
- "##sr": 21342,
- "internationale": 21343,
- "mecca": 21344,
- "##diment": 21345,
- "sbs": 21346,
- "skyline": 21347,
- "toad": 21348,
- "uploaded": 21349,
- "reflective": 21350,
- "undrafted": 21351,
- "lal": 21352,
- "leafs": 21353,
- "bayern": 21354,
- "##dai": 21355,
- "lakshmi": 21356,
- "shortlisted": 21357,
- "##stick": 21358,
- "##wicz": 21359,
- "camouflage": 21360,
- "donate": 21361,
- "af": 21362,
- "christi": 21363,
- "lau": 21364,
- "##acio": 21365,
- "disclosed": 21366,
- "nemesis": 21367,
- "1761": 21368,
- "assemble": 21369,
- "straining": 21370,
- "northamptonshire": 21371,
- "tal": 21372,
- "##asi": 21373,
- "bernardino": 21374,
- "premature": 21375,
- "heidi": 21376,
- "42nd": 21377,
- "coefficients": 21378,
- "galactic": 21379,
- "reproduce": 21380,
- "buzzed": 21381,
- "sensations": 21382,
- "zionist": 21383,
- "monsieur": 21384,
- "myrtle": 21385,
- "##eme": 21386,
- "archery": 21387,
- "strangled": 21388,
- "musically": 21389,
- "viewpoint": 21390,
- "antiquities": 21391,
- "bei": 21392,
- "trailers": 21393,
- "seahawks": 21394,
- "cured": 21395,
- "pee": 21396,
- "preferring": 21397,
- "tasmanian": 21398,
- "lange": 21399,
- "sul": 21400,
- "##mail": 21401,
- "##working": 21402,
- "colder": 21403,
- "overland": 21404,
- "lucivar": 21405,
- "massey": 21406,
- "gatherings": 21407,
- "haitian": 21408,
- "##smith": 21409,
- "disapproval": 21410,
- "flaws": 21411,
- "##cco": 21412,
- "##enbach": 21413,
- "1766": 21414,
- "npr": 21415,
- "##icular": 21416,
- "boroughs": 21417,
- "creole": 21418,
- "forums": 21419,
- "techno": 21420,
- "1755": 21421,
- "dent": 21422,
- "abdominal": 21423,
- "streetcar": 21424,
- "##eson": 21425,
- "##stream": 21426,
- "procurement": 21427,
- "gemini": 21428,
- "predictable": 21429,
- "##tya": 21430,
- "acheron": 21431,
- "christoph": 21432,
- "feeder": 21433,
- "fronts": 21434,
- "vendor": 21435,
- "bernhard": 21436,
- "jammu": 21437,
- "tumors": 21438,
- "slang": 21439,
- "##uber": 21440,
- "goaltender": 21441,
- "twists": 21442,
- "curving": 21443,
- "manson": 21444,
- "vuelta": 21445,
- "mer": 21446,
- "peanut": 21447,
- "confessions": 21448,
- "pouch": 21449,
- "unpredictable": 21450,
- "allowance": 21451,
- "theodor": 21452,
- "vascular": 21453,
- "##factory": 21454,
- "bala": 21455,
- "authenticity": 21456,
- "metabolic": 21457,
- "coughing": 21458,
- "nanjing": 21459,
- "##cea": 21460,
- "pembroke": 21461,
- "##bard": 21462,
- "splendid": 21463,
- "36th": 21464,
- "ff": 21465,
- "hourly": 21466,
- "##ahu": 21467,
- "elmer": 21468,
- "handel": 21469,
- "##ivate": 21470,
- "awarding": 21471,
- "thrusting": 21472,
- "dl": 21473,
- "experimentation": 21474,
- "##hesion": 21475,
- "##46": 21476,
- "caressed": 21477,
- "entertained": 21478,
- "steak": 21479,
- "##rangle": 21480,
- "biologist": 21481,
- "orphans": 21482,
- "baroness": 21483,
- "oyster": 21484,
- "stepfather": 21485,
- "##dridge": 21486,
- "mirage": 21487,
- "reefs": 21488,
- "speeding": 21489,
- "##31": 21490,
- "barons": 21491,
- "1764": 21492,
- "227": 21493,
- "inhabit": 21494,
- "preached": 21495,
- "repealed": 21496,
- "##tral": 21497,
- "honoring": 21498,
- "boogie": 21499,
- "captives": 21500,
- "administer": 21501,
- "johanna": 21502,
- "##imate": 21503,
- "gel": 21504,
- "suspiciously": 21505,
- "1767": 21506,
- "sobs": 21507,
- "##dington": 21508,
- "backbone": 21509,
- "hayward": 21510,
- "garry": 21511,
- "##folding": 21512,
- "##nesia": 21513,
- "maxi": 21514,
- "##oof": 21515,
- "##ppe": 21516,
- "ellison": 21517,
- "galileo": 21518,
- "##stand": 21519,
- "crimea": 21520,
- "frenzy": 21521,
- "amour": 21522,
- "bumper": 21523,
- "matrices": 21524,
- "natalia": 21525,
- "baking": 21526,
- "garth": 21527,
- "palestinians": 21528,
- "##grove": 21529,
- "smack": 21530,
- "conveyed": 21531,
- "ensembles": 21532,
- "gardening": 21533,
- "##manship": 21534,
- "##rup": 21535,
- "##stituting": 21536,
- "1640": 21537,
- "harvesting": 21538,
- "topography": 21539,
- "jing": 21540,
- "shifters": 21541,
- "dormitory": 21542,
- "##carriage": 21543,
- "##lston": 21544,
- "ist": 21545,
- "skulls": 21546,
- "##stadt": 21547,
- "dolores": 21548,
- "jewellery": 21549,
- "sarawak": 21550,
- "##wai": 21551,
- "##zier": 21552,
- "fences": 21553,
- "christy": 21554,
- "confinement": 21555,
- "tumbling": 21556,
- "credibility": 21557,
- "fir": 21558,
- "stench": 21559,
- "##bria": 21560,
- "##plication": 21561,
- "##nged": 21562,
- "##sam": 21563,
- "virtues": 21564,
- "##belt": 21565,
- "marjorie": 21566,
- "pba": 21567,
- "##eem": 21568,
- "##made": 21569,
- "celebrates": 21570,
- "schooner": 21571,
- "agitated": 21572,
- "barley": 21573,
- "fulfilling": 21574,
- "anthropologist": 21575,
- "##pro": 21576,
- "restrict": 21577,
- "novi": 21578,
- "regulating": 21579,
- "##nent": 21580,
- "padres": 21581,
- "##rani": 21582,
- "##hesive": 21583,
- "loyola": 21584,
- "tabitha": 21585,
- "milky": 21586,
- "olson": 21587,
- "proprietor": 21588,
- "crambidae": 21589,
- "guarantees": 21590,
- "intercollegiate": 21591,
- "ljubljana": 21592,
- "hilda": 21593,
- "##sko": 21594,
- "ignorant": 21595,
- "hooded": 21596,
- "##lts": 21597,
- "sardinia": 21598,
- "##lidae": 21599,
- "##vation": 21600,
- "frontman": 21601,
- "privileged": 21602,
- "witchcraft": 21603,
- "##gp": 21604,
- "jammed": 21605,
- "laude": 21606,
- "poking": 21607,
- "##than": 21608,
- "bracket": 21609,
- "amazement": 21610,
- "yunnan": 21611,
- "##erus": 21612,
- "maharaja": 21613,
- "linnaeus": 21614,
- "264": 21615,
- "commissioning": 21616,
- "milano": 21617,
- "peacefully": 21618,
- "##logies": 21619,
- "akira": 21620,
- "rani": 21621,
- "regulator": 21622,
- "##36": 21623,
- "grasses": 21624,
- "##rance": 21625,
- "luzon": 21626,
- "crows": 21627,
- "compiler": 21628,
- "gretchen": 21629,
- "seaman": 21630,
- "edouard": 21631,
- "tab": 21632,
- "buccaneers": 21633,
- "ellington": 21634,
- "hamlets": 21635,
- "whig": 21636,
- "socialists": 21637,
- "##anto": 21638,
- "directorial": 21639,
- "easton": 21640,
- "mythological": 21641,
- "##kr": 21642,
- "##vary": 21643,
- "rhineland": 21644,
- "semantic": 21645,
- "taut": 21646,
- "dune": 21647,
- "inventions": 21648,
- "succeeds": 21649,
- "##iter": 21650,
- "replication": 21651,
- "branched": 21652,
- "##pired": 21653,
- "jul": 21654,
- "prosecuted": 21655,
- "kangaroo": 21656,
- "penetrated": 21657,
- "##avian": 21658,
- "middlesbrough": 21659,
- "doses": 21660,
- "bleak": 21661,
- "madam": 21662,
- "predatory": 21663,
- "relentless": 21664,
- "##vili": 21665,
- "reluctance": 21666,
- "##vir": 21667,
- "hailey": 21668,
- "crore": 21669,
- "silvery": 21670,
- "1759": 21671,
- "monstrous": 21672,
- "swimmers": 21673,
- "transmissions": 21674,
- "hawthorn": 21675,
- "informing": 21676,
- "##eral": 21677,
- "toilets": 21678,
- "caracas": 21679,
- "crouch": 21680,
- "kb": 21681,
- "##sett": 21682,
- "295": 21683,
- "cartel": 21684,
- "hadley": 21685,
- "##aling": 21686,
- "alexia": 21687,
- "yvonne": 21688,
- "##biology": 21689,
- "cinderella": 21690,
- "eton": 21691,
- "superb": 21692,
- "blizzard": 21693,
- "stabbing": 21694,
- "industrialist": 21695,
- "maximus": 21696,
- "##gm": 21697,
- "##orus": 21698,
- "groves": 21699,
- "maud": 21700,
- "clade": 21701,
- "oversized": 21702,
- "comedic": 21703,
- "##bella": 21704,
- "rosen": 21705,
- "nomadic": 21706,
- "fulham": 21707,
- "montane": 21708,
- "beverages": 21709,
- "galaxies": 21710,
- "redundant": 21711,
- "swarm": 21712,
- "##rot": 21713,
- "##folia": 21714,
- "##llis": 21715,
- "buckinghamshire": 21716,
- "fen": 21717,
- "bearings": 21718,
- "bahadur": 21719,
- "##rom": 21720,
- "gilles": 21721,
- "phased": 21722,
- "dynamite": 21723,
- "faber": 21724,
- "benoit": 21725,
- "vip": 21726,
- "##ount": 21727,
- "##wd": 21728,
- "booking": 21729,
- "fractured": 21730,
- "tailored": 21731,
- "anya": 21732,
- "spices": 21733,
- "westwood": 21734,
- "cairns": 21735,
- "auditions": 21736,
- "inflammation": 21737,
- "steamed": 21738,
- "##rocity": 21739,
- "##acion": 21740,
- "##urne": 21741,
- "skyla": 21742,
- "thereof": 21743,
- "watford": 21744,
- "torment": 21745,
- "archdeacon": 21746,
- "transforms": 21747,
- "lulu": 21748,
- "demeanor": 21749,
- "fucked": 21750,
- "serge": 21751,
- "##sor": 21752,
- "mckenna": 21753,
- "minas": 21754,
- "entertainer": 21755,
- "##icide": 21756,
- "caress": 21757,
- "originate": 21758,
- "residue": 21759,
- "##sty": 21760,
- "1740": 21761,
- "##ilised": 21762,
- "##org": 21763,
- "beech": 21764,
- "##wana": 21765,
- "subsidies": 21766,
- "##ghton": 21767,
- "emptied": 21768,
- "gladstone": 21769,
- "ru": 21770,
- "firefighters": 21771,
- "voodoo": 21772,
- "##rcle": 21773,
- "het": 21774,
- "nightingale": 21775,
- "tamara": 21776,
- "edmond": 21777,
- "ingredient": 21778,
- "weaknesses": 21779,
- "silhouette": 21780,
- "285": 21781,
- "compatibility": 21782,
- "withdrawing": 21783,
- "hampson": 21784,
- "##mona": 21785,
- "anguish": 21786,
- "giggling": 21787,
- "##mber": 21788,
- "bookstore": 21789,
- "##jiang": 21790,
- "southernmost": 21791,
- "tilting": 21792,
- "##vance": 21793,
- "bai": 21794,
- "economical": 21795,
- "rf": 21796,
- "briefcase": 21797,
- "dreadful": 21798,
- "hinted": 21799,
- "projections": 21800,
- "shattering": 21801,
- "totaling": 21802,
- "##rogate": 21803,
- "analogue": 21804,
- "indicted": 21805,
- "periodical": 21806,
- "fullback": 21807,
- "##dman": 21808,
- "haynes": 21809,
- "##tenberg": 21810,
- "##ffs": 21811,
- "##ishment": 21812,
- "1745": 21813,
- "thirst": 21814,
- "stumble": 21815,
- "penang": 21816,
- "vigorous": 21817,
- "##ddling": 21818,
- "##kor": 21819,
- "##lium": 21820,
- "octave": 21821,
- "##ove": 21822,
- "##enstein": 21823,
- "##inen": 21824,
- "##ones": 21825,
- "siberian": 21826,
- "##uti": 21827,
- "cbn": 21828,
- "repeal": 21829,
- "swaying": 21830,
- "##vington": 21831,
- "khalid": 21832,
- "tanaka": 21833,
- "unicorn": 21834,
- "otago": 21835,
- "plastered": 21836,
- "lobe": 21837,
- "riddle": 21838,
- "##rella": 21839,
- "perch": 21840,
- "##ishing": 21841,
- "croydon": 21842,
- "filtered": 21843,
- "graeme": 21844,
- "tripoli": 21845,
- "##ossa": 21846,
- "crocodile": 21847,
- "##chers": 21848,
- "sufi": 21849,
- "mined": 21850,
- "##tung": 21851,
- "inferno": 21852,
- "lsu": 21853,
- "##phi": 21854,
- "swelled": 21855,
- "utilizes": 21856,
- "£2": 21857,
- "cale": 21858,
- "periodicals": 21859,
- "styx": 21860,
- "hike": 21861,
- "informally": 21862,
- "coop": 21863,
- "lund": 21864,
- "##tidae": 21865,
- "ala": 21866,
- "hen": 21867,
- "qui": 21868,
- "transformations": 21869,
- "disposed": 21870,
- "sheath": 21871,
- "chickens": 21872,
- "##cade": 21873,
- "fitzroy": 21874,
- "sas": 21875,
- "silesia": 21876,
- "unacceptable": 21877,
- "odisha": 21878,
- "1650": 21879,
- "sabrina": 21880,
- "pe": 21881,
- "spokane": 21882,
- "ratios": 21883,
- "athena": 21884,
- "massage": 21885,
- "shen": 21886,
- "dilemma": 21887,
- "##drum": 21888,
- "##riz": 21889,
- "##hul": 21890,
- "corona": 21891,
- "doubtful": 21892,
- "niall": 21893,
- "##pha": 21894,
- "##bino": 21895,
- "fines": 21896,
- "cite": 21897,
- "acknowledging": 21898,
- "bangor": 21899,
- "ballard": 21900,
- "bathurst": 21901,
- "##resh": 21902,
- "huron": 21903,
- "mustered": 21904,
- "alzheimer": 21905,
- "garments": 21906,
- "kinase": 21907,
- "tyre": 21908,
- "warship": 21909,
- "##cp": 21910,
- "flashback": 21911,
- "pulmonary": 21912,
- "braun": 21913,
- "cheat": 21914,
- "kamal": 21915,
- "cyclists": 21916,
- "constructions": 21917,
- "grenades": 21918,
- "ndp": 21919,
- "traveller": 21920,
- "excuses": 21921,
- "stomped": 21922,
- "signalling": 21923,
- "trimmed": 21924,
- "futsal": 21925,
- "mosques": 21926,
- "relevance": 21927,
- "##wine": 21928,
- "wta": 21929,
- "##23": 21930,
- "##vah": 21931,
- "##lter": 21932,
- "hoc": 21933,
- "##riding": 21934,
- "optimistic": 21935,
- "##´s": 21936,
- "deco": 21937,
- "sim": 21938,
- "interacting": 21939,
- "rejecting": 21940,
- "moniker": 21941,
- "waterways": 21942,
- "##ieri": 21943,
- "##oku": 21944,
- "mayors": 21945,
- "gdansk": 21946,
- "outnumbered": 21947,
- "pearls": 21948,
- "##ended": 21949,
- "##hampton": 21950,
- "fairs": 21951,
- "totals": 21952,
- "dominating": 21953,
- "262": 21954,
- "notions": 21955,
- "stairway": 21956,
- "compiling": 21957,
- "pursed": 21958,
- "commodities": 21959,
- "grease": 21960,
- "yeast": 21961,
- "##jong": 21962,
- "carthage": 21963,
- "griffiths": 21964,
- "residual": 21965,
- "amc": 21966,
- "contraction": 21967,
- "laird": 21968,
- "sapphire": 21969,
- "##marine": 21970,
- "##ivated": 21971,
- "amalgamation": 21972,
- "dissolve": 21973,
- "inclination": 21974,
- "lyle": 21975,
- "packaged": 21976,
- "altitudes": 21977,
- "suez": 21978,
- "canons": 21979,
- "graded": 21980,
- "lurched": 21981,
- "narrowing": 21982,
- "boasts": 21983,
- "guise": 21984,
- "wed": 21985,
- "enrico": 21986,
- "##ovsky": 21987,
- "rower": 21988,
- "scarred": 21989,
- "bree": 21990,
- "cub": 21991,
- "iberian": 21992,
- "protagonists": 21993,
- "bargaining": 21994,
- "proposing": 21995,
- "trainers": 21996,
- "voyages": 21997,
- "vans": 21998,
- "fishes": 21999,
- "##aea": 22000,
- "##ivist": 22001,
- "##verance": 22002,
- "encryption": 22003,
- "artworks": 22004,
- "kazan": 22005,
- "sabre": 22006,
- "cleopatra": 22007,
- "hepburn": 22008,
- "rotting": 22009,
- "supremacy": 22010,
- "mecklenburg": 22011,
- "##brate": 22012,
- "burrows": 22013,
- "hazards": 22014,
- "outgoing": 22015,
- "flair": 22016,
- "organizes": 22017,
- "##ctions": 22018,
- "scorpion": 22019,
- "##usions": 22020,
- "boo": 22021,
- "234": 22022,
- "chevalier": 22023,
- "dunedin": 22024,
- "slapping": 22025,
- "##34": 22026,
- "ineligible": 22027,
- "pensions": 22028,
- "##38": 22029,
- "##omic": 22030,
- "manufactures": 22031,
- "emails": 22032,
- "bismarck": 22033,
- "238": 22034,
- "weakening": 22035,
- "blackish": 22036,
- "ding": 22037,
- "mcgee": 22038,
- "quo": 22039,
- "##rling": 22040,
- "northernmost": 22041,
- "xx": 22042,
- "manpower": 22043,
- "greed": 22044,
- "sampson": 22045,
- "clicking": 22046,
- "##ange": 22047,
- "##horpe": 22048,
- "##inations": 22049,
- "##roving": 22050,
- "torre": 22051,
- "##eptive": 22052,
- "##moral": 22053,
- "symbolism": 22054,
- "38th": 22055,
- "asshole": 22056,
- "meritorious": 22057,
- "outfits": 22058,
- "splashed": 22059,
- "biographies": 22060,
- "sprung": 22061,
- "astros": 22062,
- "##tale": 22063,
- "302": 22064,
- "737": 22065,
- "filly": 22066,
- "raoul": 22067,
- "nw": 22068,
- "tokugawa": 22069,
- "linden": 22070,
- "clubhouse": 22071,
- "##apa": 22072,
- "tracts": 22073,
- "romano": 22074,
- "##pio": 22075,
- "putin": 22076,
- "tags": 22077,
- "##note": 22078,
- "chained": 22079,
- "dickson": 22080,
- "gunshot": 22081,
- "moe": 22082,
- "gunn": 22083,
- "rashid": 22084,
- "##tails": 22085,
- "zipper": 22086,
- "##bas": 22087,
- "##nea": 22088,
- "contrasted": 22089,
- "##ply": 22090,
- "##udes": 22091,
- "plum": 22092,
- "pharaoh": 22093,
- "##pile": 22094,
- "aw": 22095,
- "comedies": 22096,
- "ingrid": 22097,
- "sandwiches": 22098,
- "subdivisions": 22099,
- "1100": 22100,
- "mariana": 22101,
- "nokia": 22102,
- "kamen": 22103,
- "hz": 22104,
- "delaney": 22105,
- "veto": 22106,
- "herring": 22107,
- "##words": 22108,
- "possessive": 22109,
- "outlines": 22110,
- "##roup": 22111,
- "siemens": 22112,
- "stairwell": 22113,
- "rc": 22114,
- "gallantry": 22115,
- "messiah": 22116,
- "palais": 22117,
- "yells": 22118,
- "233": 22119,
- "zeppelin": 22120,
- "##dm": 22121,
- "bolivar": 22122,
- "##cede": 22123,
- "smackdown": 22124,
- "mckinley": 22125,
- "##mora": 22126,
- "##yt": 22127,
- "muted": 22128,
- "geologic": 22129,
- "finely": 22130,
- "unitary": 22131,
- "avatar": 22132,
- "hamas": 22133,
- "maynard": 22134,
- "rees": 22135,
- "bog": 22136,
- "contrasting": 22137,
- "##rut": 22138,
- "liv": 22139,
- "chico": 22140,
- "disposition": 22141,
- "pixel": 22142,
- "##erate": 22143,
- "becca": 22144,
- "dmitry": 22145,
- "yeshiva": 22146,
- "narratives": 22147,
- "##lva": 22148,
- "##ulton": 22149,
- "mercenary": 22150,
- "sharpe": 22151,
- "tempered": 22152,
- "navigate": 22153,
- "stealth": 22154,
- "amassed": 22155,
- "keynes": 22156,
- "##lini": 22157,
- "untouched": 22158,
- "##rrie": 22159,
- "havoc": 22160,
- "lithium": 22161,
- "##fighting": 22162,
- "abyss": 22163,
- "graf": 22164,
- "southward": 22165,
- "wolverine": 22166,
- "balloons": 22167,
- "implements": 22168,
- "ngos": 22169,
- "transitions": 22170,
- "##icum": 22171,
- "ambushed": 22172,
- "concacaf": 22173,
- "dormant": 22174,
- "economists": 22175,
- "##dim": 22176,
- "costing": 22177,
- "csi": 22178,
- "rana": 22179,
- "universite": 22180,
- "boulders": 22181,
- "verity": 22182,
- "##llon": 22183,
- "collin": 22184,
- "mellon": 22185,
- "misses": 22186,
- "cypress": 22187,
- "fluorescent": 22188,
- "lifeless": 22189,
- "spence": 22190,
- "##ulla": 22191,
- "crewe": 22192,
- "shepard": 22193,
- "pak": 22194,
- "revelations": 22195,
- "##م": 22196,
- "jolly": 22197,
- "gibbons": 22198,
- "paw": 22199,
- "##dro": 22200,
- "##quel": 22201,
- "freeing": 22202,
- "##test": 22203,
- "shack": 22204,
- "fries": 22205,
- "palatine": 22206,
- "##51": 22207,
- "##hiko": 22208,
- "accompaniment": 22209,
- "cruising": 22210,
- "recycled": 22211,
- "##aver": 22212,
- "erwin": 22213,
- "sorting": 22214,
- "synthesizers": 22215,
- "dyke": 22216,
- "realities": 22217,
- "sg": 22218,
- "strides": 22219,
- "enslaved": 22220,
- "wetland": 22221,
- "##ghan": 22222,
- "competence": 22223,
- "gunpowder": 22224,
- "grassy": 22225,
- "maroon": 22226,
- "reactors": 22227,
- "objection": 22228,
- "##oms": 22229,
- "carlson": 22230,
- "gearbox": 22231,
- "macintosh": 22232,
- "radios": 22233,
- "shelton": 22234,
- "##sho": 22235,
- "clergyman": 22236,
- "prakash": 22237,
- "254": 22238,
- "mongols": 22239,
- "trophies": 22240,
- "oricon": 22241,
- "228": 22242,
- "stimuli": 22243,
- "twenty20": 22244,
- "cantonese": 22245,
- "cortes": 22246,
- "mirrored": 22247,
- "##saurus": 22248,
- "bhp": 22249,
- "cristina": 22250,
- "melancholy": 22251,
- "##lating": 22252,
- "enjoyable": 22253,
- "nuevo": 22254,
- "##wny": 22255,
- "downfall": 22256,
- "schumacher": 22257,
- "##ind": 22258,
- "banging": 22259,
- "lausanne": 22260,
- "rumbled": 22261,
- "paramilitary": 22262,
- "reflex": 22263,
- "ax": 22264,
- "amplitude": 22265,
- "migratory": 22266,
- "##gall": 22267,
- "##ups": 22268,
- "midi": 22269,
- "barnard": 22270,
- "lastly": 22271,
- "sherry": 22272,
- "##hp": 22273,
- "##nall": 22274,
- "keystone": 22275,
- "##kra": 22276,
- "carleton": 22277,
- "slippery": 22278,
- "##53": 22279,
- "coloring": 22280,
- "foe": 22281,
- "socket": 22282,
- "otter": 22283,
- "##rgos": 22284,
- "mats": 22285,
- "##tose": 22286,
- "consultants": 22287,
- "bafta": 22288,
- "bison": 22289,
- "topping": 22290,
- "##km": 22291,
- "490": 22292,
- "primal": 22293,
- "abandonment": 22294,
- "transplant": 22295,
- "atoll": 22296,
- "hideous": 22297,
- "mort": 22298,
- "pained": 22299,
- "reproduced": 22300,
- "tae": 22301,
- "howling": 22302,
- "##turn": 22303,
- "unlawful": 22304,
- "billionaire": 22305,
- "hotter": 22306,
- "poised": 22307,
- "lansing": 22308,
- "##chang": 22309,
- "dinamo": 22310,
- "retro": 22311,
- "messing": 22312,
- "nfc": 22313,
- "domesday": 22314,
- "##mina": 22315,
- "blitz": 22316,
- "timed": 22317,
- "##athing": 22318,
- "##kley": 22319,
- "ascending": 22320,
- "gesturing": 22321,
- "##izations": 22322,
- "signaled": 22323,
- "tis": 22324,
- "chinatown": 22325,
- "mermaid": 22326,
- "savanna": 22327,
- "jameson": 22328,
- "##aint": 22329,
- "catalina": 22330,
- "##pet": 22331,
- "##hers": 22332,
- "cochrane": 22333,
- "cy": 22334,
- "chatting": 22335,
- "##kus": 22336,
- "alerted": 22337,
- "computation": 22338,
- "mused": 22339,
- "noelle": 22340,
- "majestic": 22341,
- "mohawk": 22342,
- "campo": 22343,
- "octagonal": 22344,
- "##sant": 22345,
- "##hend": 22346,
- "241": 22347,
- "aspiring": 22348,
- "##mart": 22349,
- "comprehend": 22350,
- "iona": 22351,
- "paralyzed": 22352,
- "shimmering": 22353,
- "swindon": 22354,
- "rhone": 22355,
- "##eley": 22356,
- "reputed": 22357,
- "configurations": 22358,
- "pitchfork": 22359,
- "agitation": 22360,
- "francais": 22361,
- "gillian": 22362,
- "lipstick": 22363,
- "##ilo": 22364,
- "outsiders": 22365,
- "pontifical": 22366,
- "resisting": 22367,
- "bitterness": 22368,
- "sewer": 22369,
- "rockies": 22370,
- "##edd": 22371,
- "##ucher": 22372,
- "misleading": 22373,
- "1756": 22374,
- "exiting": 22375,
- "galloway": 22376,
- "##nging": 22377,
- "risked": 22378,
- "##heart": 22379,
- "246": 22380,
- "commemoration": 22381,
- "schultz": 22382,
- "##rka": 22383,
- "integrating": 22384,
- "##rsa": 22385,
- "poses": 22386,
- "shrieked": 22387,
- "##weiler": 22388,
- "guineas": 22389,
- "gladys": 22390,
- "jerking": 22391,
- "owls": 22392,
- "goldsmith": 22393,
- "nightly": 22394,
- "penetrating": 22395,
- "##unced": 22396,
- "lia": 22397,
- "##33": 22398,
- "ignited": 22399,
- "betsy": 22400,
- "##aring": 22401,
- "##thorpe": 22402,
- "follower": 22403,
- "vigorously": 22404,
- "##rave": 22405,
- "coded": 22406,
- "kiran": 22407,
- "knit": 22408,
- "zoology": 22409,
- "tbilisi": 22410,
- "##28": 22411,
- "##bered": 22412,
- "repository": 22413,
- "govt": 22414,
- "deciduous": 22415,
- "dino": 22416,
- "growling": 22417,
- "##bba": 22418,
- "enhancement": 22419,
- "unleashed": 22420,
- "chanting": 22421,
- "pussy": 22422,
- "biochemistry": 22423,
- "##eric": 22424,
- "kettle": 22425,
- "repression": 22426,
- "toxicity": 22427,
- "nrhp": 22428,
- "##arth": 22429,
- "##kko": 22430,
- "##bush": 22431,
- "ernesto": 22432,
- "commended": 22433,
- "outspoken": 22434,
- "242": 22435,
- "mca": 22436,
- "parchment": 22437,
- "sms": 22438,
- "kristen": 22439,
- "##aton": 22440,
- "bisexual": 22441,
- "raked": 22442,
- "glamour": 22443,
- "navajo": 22444,
- "a2": 22445,
- "conditioned": 22446,
- "showcased": 22447,
- "##hma": 22448,
- "spacious": 22449,
- "youthful": 22450,
- "##esa": 22451,
- "usl": 22452,
- "appliances": 22453,
- "junta": 22454,
- "brest": 22455,
- "layne": 22456,
- "conglomerate": 22457,
- "enchanted": 22458,
- "chao": 22459,
- "loosened": 22460,
- "picasso": 22461,
- "circulating": 22462,
- "inspect": 22463,
- "montevideo": 22464,
- "##centric": 22465,
- "##kti": 22466,
- "piazza": 22467,
- "spurred": 22468,
- "##aith": 22469,
- "bari": 22470,
- "freedoms": 22471,
- "poultry": 22472,
- "stamford": 22473,
- "lieu": 22474,
- "##ect": 22475,
- "indigo": 22476,
- "sarcastic": 22477,
- "bahia": 22478,
- "stump": 22479,
- "attach": 22480,
- "dvds": 22481,
- "frankenstein": 22482,
- "lille": 22483,
- "approx": 22484,
- "scriptures": 22485,
- "pollen": 22486,
- "##script": 22487,
- "nmi": 22488,
- "overseen": 22489,
- "##ivism": 22490,
- "tides": 22491,
- "proponent": 22492,
- "newmarket": 22493,
- "inherit": 22494,
- "milling": 22495,
- "##erland": 22496,
- "centralized": 22497,
- "##rou": 22498,
- "distributors": 22499,
- "credentials": 22500,
- "drawers": 22501,
- "abbreviation": 22502,
- "##lco": 22503,
- "##xon": 22504,
- "downing": 22505,
- "uncomfortably": 22506,
- "ripe": 22507,
- "##oes": 22508,
- "erase": 22509,
- "franchises": 22510,
- "##ever": 22511,
- "populace": 22512,
- "##bery": 22513,
- "##khar": 22514,
- "decomposition": 22515,
- "pleas": 22516,
- "##tet": 22517,
- "daryl": 22518,
- "sabah": 22519,
- "##stle": 22520,
- "##wide": 22521,
- "fearless": 22522,
- "genie": 22523,
- "lesions": 22524,
- "annette": 22525,
- "##ogist": 22526,
- "oboe": 22527,
- "appendix": 22528,
- "nair": 22529,
- "dripped": 22530,
- "petitioned": 22531,
- "maclean": 22532,
- "mosquito": 22533,
- "parrot": 22534,
- "rpg": 22535,
- "hampered": 22536,
- "1648": 22537,
- "operatic": 22538,
- "reservoirs": 22539,
- "##tham": 22540,
- "irrelevant": 22541,
- "jolt": 22542,
- "summarized": 22543,
- "##fp": 22544,
- "medallion": 22545,
- "##taff": 22546,
- "##−": 22547,
- "clawed": 22548,
- "harlow": 22549,
- "narrower": 22550,
- "goddard": 22551,
- "marcia": 22552,
- "bodied": 22553,
- "fremont": 22554,
- "suarez": 22555,
- "altering": 22556,
- "tempest": 22557,
- "mussolini": 22558,
- "porn": 22559,
- "##isms": 22560,
- "sweetly": 22561,
- "oversees": 22562,
- "walkers": 22563,
- "solitude": 22564,
- "grimly": 22565,
- "shrines": 22566,
- "hk": 22567,
- "ich": 22568,
- "supervisors": 22569,
- "hostess": 22570,
- "dietrich": 22571,
- "legitimacy": 22572,
- "brushes": 22573,
- "expressive": 22574,
- "##yp": 22575,
- "dissipated": 22576,
- "##rse": 22577,
- "localized": 22578,
- "systemic": 22579,
- "##nikov": 22580,
- "gettysburg": 22581,
- "##js": 22582,
- "##uaries": 22583,
- "dialogues": 22584,
- "muttering": 22585,
- "251": 22586,
- "housekeeper": 22587,
- "sicilian": 22588,
- "discouraged": 22589,
- "##frey": 22590,
- "beamed": 22591,
- "kaladin": 22592,
- "halftime": 22593,
- "kidnap": 22594,
- "##amo": 22595,
- "##llet": 22596,
- "1754": 22597,
- "synonymous": 22598,
- "depleted": 22599,
- "instituto": 22600,
- "insulin": 22601,
- "reprised": 22602,
- "##opsis": 22603,
- "clashed": 22604,
- "##ctric": 22605,
- "interrupting": 22606,
- "radcliffe": 22607,
- "insisting": 22608,
- "medici": 22609,
- "1715": 22610,
- "ejected": 22611,
- "playfully": 22612,
- "turbulent": 22613,
- "##47": 22614,
- "starvation": 22615,
- "##rini": 22616,
- "shipment": 22617,
- "rebellious": 22618,
- "petersen": 22619,
- "verification": 22620,
- "merits": 22621,
- "##rified": 22622,
- "cakes": 22623,
- "##charged": 22624,
- "1757": 22625,
- "milford": 22626,
- "shortages": 22627,
- "spying": 22628,
- "fidelity": 22629,
- "##aker": 22630,
- "emitted": 22631,
- "storylines": 22632,
- "harvested": 22633,
- "seismic": 22634,
- "##iform": 22635,
- "cheung": 22636,
- "kilda": 22637,
- "theoretically": 22638,
- "barbie": 22639,
- "lynx": 22640,
- "##rgy": 22641,
- "##tius": 22642,
- "goblin": 22643,
- "mata": 22644,
- "poisonous": 22645,
- "##nburg": 22646,
- "reactive": 22647,
- "residues": 22648,
- "obedience": 22649,
- "##евич": 22650,
- "conjecture": 22651,
- "##rac": 22652,
- "401": 22653,
- "hating": 22654,
- "sixties": 22655,
- "kicker": 22656,
- "moaning": 22657,
- "motown": 22658,
- "##bha": 22659,
- "emancipation": 22660,
- "neoclassical": 22661,
- "##hering": 22662,
- "consoles": 22663,
- "ebert": 22664,
- "professorship": 22665,
- "##tures": 22666,
- "sustaining": 22667,
- "assaults": 22668,
- "obeyed": 22669,
- "affluent": 22670,
- "incurred": 22671,
- "tornadoes": 22672,
- "##eber": 22673,
- "##zow": 22674,
- "emphasizing": 22675,
- "highlanders": 22676,
- "cheated": 22677,
- "helmets": 22678,
- "##ctus": 22679,
- "internship": 22680,
- "terence": 22681,
- "bony": 22682,
- "executions": 22683,
- "legislators": 22684,
- "berries": 22685,
- "peninsular": 22686,
- "tinged": 22687,
- "##aco": 22688,
- "1689": 22689,
- "amplifier": 22690,
- "corvette": 22691,
- "ribbons": 22692,
- "lavish": 22693,
- "pennant": 22694,
- "##lander": 22695,
- "worthless": 22696,
- "##chfield": 22697,
- "##forms": 22698,
- "mariano": 22699,
- "pyrenees": 22700,
- "expenditures": 22701,
- "##icides": 22702,
- "chesterfield": 22703,
- "mandir": 22704,
- "tailor": 22705,
- "39th": 22706,
- "sergey": 22707,
- "nestled": 22708,
- "willed": 22709,
- "aristocracy": 22710,
- "devotees": 22711,
- "goodnight": 22712,
- "raaf": 22713,
- "rumored": 22714,
- "weaponry": 22715,
- "remy": 22716,
- "appropriations": 22717,
- "harcourt": 22718,
- "burr": 22719,
- "riaa": 22720,
- "##lence": 22721,
- "limitation": 22722,
- "unnoticed": 22723,
- "guo": 22724,
- "soaking": 22725,
- "swamps": 22726,
- "##tica": 22727,
- "collapsing": 22728,
- "tatiana": 22729,
- "descriptive": 22730,
- "brigham": 22731,
- "psalm": 22732,
- "##chment": 22733,
- "maddox": 22734,
- "##lization": 22735,
- "patti": 22736,
- "caliph": 22737,
- "##aja": 22738,
- "akron": 22739,
- "injuring": 22740,
- "serra": 22741,
- "##ganj": 22742,
- "basins": 22743,
- "##sari": 22744,
- "astonished": 22745,
- "launcher": 22746,
- "##church": 22747,
- "hilary": 22748,
- "wilkins": 22749,
- "sewing": 22750,
- "##sf": 22751,
- "stinging": 22752,
- "##fia": 22753,
- "##ncia": 22754,
- "underwood": 22755,
- "startup": 22756,
- "##ition": 22757,
- "compilations": 22758,
- "vibrations": 22759,
- "embankment": 22760,
- "jurist": 22761,
- "##nity": 22762,
- "bard": 22763,
- "juventus": 22764,
- "groundwater": 22765,
- "kern": 22766,
- "palaces": 22767,
- "helium": 22768,
- "boca": 22769,
- "cramped": 22770,
- "marissa": 22771,
- "soto": 22772,
- "##worm": 22773,
- "jae": 22774,
- "princely": 22775,
- "##ggy": 22776,
- "faso": 22777,
- "bazaar": 22778,
- "warmly": 22779,
- "##voking": 22780,
- "229": 22781,
- "pairing": 22782,
- "##lite": 22783,
- "##grate": 22784,
- "##nets": 22785,
- "wien": 22786,
- "freaked": 22787,
- "ulysses": 22788,
- "rebirth": 22789,
- "##alia": 22790,
- "##rent": 22791,
- "mummy": 22792,
- "guzman": 22793,
- "jimenez": 22794,
- "stilled": 22795,
- "##nitz": 22796,
- "trajectory": 22797,
- "tha": 22798,
- "woken": 22799,
- "archival": 22800,
- "professions": 22801,
- "##pts": 22802,
- "##pta": 22803,
- "hilly": 22804,
- "shadowy": 22805,
- "shrink": 22806,
- "##bolt": 22807,
- "norwood": 22808,
- "glued": 22809,
- "migrate": 22810,
- "stereotypes": 22811,
- "devoid": 22812,
- "##pheus": 22813,
- "625": 22814,
- "evacuate": 22815,
- "horrors": 22816,
- "infancy": 22817,
- "gotham": 22818,
- "knowles": 22819,
- "optic": 22820,
- "downloaded": 22821,
- "sachs": 22822,
- "kingsley": 22823,
- "parramatta": 22824,
- "darryl": 22825,
- "mor": 22826,
- "##onale": 22827,
- "shady": 22828,
- "commence": 22829,
- "confesses": 22830,
- "kan": 22831,
- "##meter": 22832,
- "##placed": 22833,
- "marlborough": 22834,
- "roundabout": 22835,
- "regents": 22836,
- "frigates": 22837,
- "io": 22838,
- "##imating": 22839,
- "gothenburg": 22840,
- "revoked": 22841,
- "carvings": 22842,
- "clockwise": 22843,
- "convertible": 22844,
- "intruder": 22845,
- "##sche": 22846,
- "banged": 22847,
- "##ogo": 22848,
- "vicky": 22849,
- "bourgeois": 22850,
- "##mony": 22851,
- "dupont": 22852,
- "footing": 22853,
- "##gum": 22854,
- "pd": 22855,
- "##real": 22856,
- "buckle": 22857,
- "yun": 22858,
- "penthouse": 22859,
- "sane": 22860,
- "720": 22861,
- "serviced": 22862,
- "stakeholders": 22863,
- "neumann": 22864,
- "bb": 22865,
- "##eers": 22866,
- "comb": 22867,
- "##gam": 22868,
- "catchment": 22869,
- "pinning": 22870,
- "rallies": 22871,
- "typing": 22872,
- "##elles": 22873,
- "forefront": 22874,
- "freiburg": 22875,
- "sweetie": 22876,
- "giacomo": 22877,
- "widowed": 22878,
- "goodwill": 22879,
- "worshipped": 22880,
- "aspirations": 22881,
- "midday": 22882,
- "##vat": 22883,
- "fishery": 22884,
- "##trick": 22885,
- "bournemouth": 22886,
- "turk": 22887,
- "243": 22888,
- "hearth": 22889,
- "ethanol": 22890,
- "guadalajara": 22891,
- "murmurs": 22892,
- "sl": 22893,
- "##uge": 22894,
- "afforded": 22895,
- "scripted": 22896,
- "##hta": 22897,
- "wah": 22898,
- "##jn": 22899,
- "coroner": 22900,
- "translucent": 22901,
- "252": 22902,
- "memorials": 22903,
- "puck": 22904,
- "progresses": 22905,
- "clumsy": 22906,
- "##race": 22907,
- "315": 22908,
- "candace": 22909,
- "recounted": 22910,
- "##27": 22911,
- "##slin": 22912,
- "##uve": 22913,
- "filtering": 22914,
- "##mac": 22915,
- "howl": 22916,
- "strata": 22917,
- "heron": 22918,
- "leveled": 22919,
- "##ays": 22920,
- "dubious": 22921,
- "##oja": 22922,
- "##т": 22923,
- "##wheel": 22924,
- "citations": 22925,
- "exhibiting": 22926,
- "##laya": 22927,
- "##mics": 22928,
- "##pods": 22929,
- "turkic": 22930,
- "##lberg": 22931,
- "injunction": 22932,
- "##ennial": 22933,
- "##mit": 22934,
- "antibodies": 22935,
- "##44": 22936,
- "organise": 22937,
- "##rigues": 22938,
- "cardiovascular": 22939,
- "cushion": 22940,
- "inverness": 22941,
- "##zquez": 22942,
- "dia": 22943,
- "cocoa": 22944,
- "sibling": 22945,
- "##tman": 22946,
- "##roid": 22947,
- "expanse": 22948,
- "feasible": 22949,
- "tunisian": 22950,
- "algiers": 22951,
- "##relli": 22952,
- "rus": 22953,
- "bloomberg": 22954,
- "dso": 22955,
- "westphalia": 22956,
- "bro": 22957,
- "tacoma": 22958,
- "281": 22959,
- "downloads": 22960,
- "##ours": 22961,
- "konrad": 22962,
- "duran": 22963,
- "##hdi": 22964,
- "continuum": 22965,
- "jett": 22966,
- "compares": 22967,
- "legislator": 22968,
- "secession": 22969,
- "##nable": 22970,
- "##gues": 22971,
- "##zuka": 22972,
- "translating": 22973,
- "reacher": 22974,
- "##gley": 22975,
- "##ła": 22976,
- "aleppo": 22977,
- "##agi": 22978,
- "tc": 22979,
- "orchards": 22980,
- "trapping": 22981,
- "linguist": 22982,
- "versatile": 22983,
- "drumming": 22984,
- "postage": 22985,
- "calhoun": 22986,
- "superiors": 22987,
- "##mx": 22988,
- "barefoot": 22989,
- "leary": 22990,
- "##cis": 22991,
- "ignacio": 22992,
- "alfa": 22993,
- "kaplan": 22994,
- "##rogen": 22995,
- "bratislava": 22996,
- "mori": 22997,
- "##vot": 22998,
- "disturb": 22999,
- "haas": 23000,
- "313": 23001,
- "cartridges": 23002,
- "gilmore": 23003,
- "radiated": 23004,
- "salford": 23005,
- "tunic": 23006,
- "hades": 23007,
- "##ulsive": 23008,
- "archeological": 23009,
- "delilah": 23010,
- "magistrates": 23011,
- "auditioned": 23012,
- "brewster": 23013,
- "charters": 23014,
- "empowerment": 23015,
- "blogs": 23016,
- "cappella": 23017,
- "dynasties": 23018,
- "iroquois": 23019,
- "whipping": 23020,
- "##krishna": 23021,
- "raceway": 23022,
- "truths": 23023,
- "myra": 23024,
- "weaken": 23025,
- "judah": 23026,
- "mcgregor": 23027,
- "##horse": 23028,
- "mic": 23029,
- "refueling": 23030,
- "37th": 23031,
- "burnley": 23032,
- "bosses": 23033,
- "markus": 23034,
- "premio": 23035,
- "query": 23036,
- "##gga": 23037,
- "dunbar": 23038,
- "##economic": 23039,
- "darkest": 23040,
- "lyndon": 23041,
- "sealing": 23042,
- "commendation": 23043,
- "reappeared": 23044,
- "##mun": 23045,
- "addicted": 23046,
- "ezio": 23047,
- "slaughtered": 23048,
- "satisfactory": 23049,
- "shuffle": 23050,
- "##eves": 23051,
- "##thic": 23052,
- "##uj": 23053,
- "fortification": 23054,
- "warrington": 23055,
- "##otto": 23056,
- "resurrected": 23057,
- "fargo": 23058,
- "mane": 23059,
- "##utable": 23060,
- "##lei": 23061,
- "##space": 23062,
- "foreword": 23063,
- "ox": 23064,
- "##aris": 23065,
- "##vern": 23066,
- "abrams": 23067,
- "hua": 23068,
- "##mento": 23069,
- "sakura": 23070,
- "##alo": 23071,
- "uv": 23072,
- "sentimental": 23073,
- "##skaya": 23074,
- "midfield": 23075,
- "##eses": 23076,
- "sturdy": 23077,
- "scrolls": 23078,
- "macleod": 23079,
- "##kyu": 23080,
- "entropy": 23081,
- "##lance": 23082,
- "mitochondrial": 23083,
- "cicero": 23084,
- "excelled": 23085,
- "thinner": 23086,
- "convoys": 23087,
- "perceive": 23088,
- "##oslav": 23089,
- "##urable": 23090,
- "systematically": 23091,
- "grind": 23092,
- "burkina": 23093,
- "287": 23094,
- "##tagram": 23095,
- "ops": 23096,
- "##aman": 23097,
- "guantanamo": 23098,
- "##cloth": 23099,
- "##tite": 23100,
- "forcefully": 23101,
- "wavy": 23102,
- "##jou": 23103,
- "pointless": 23104,
- "##linger": 23105,
- "##tze": 23106,
- "layton": 23107,
- "portico": 23108,
- "superficial": 23109,
- "clerical": 23110,
- "outlaws": 23111,
- "##hism": 23112,
- "burials": 23113,
- "muir": 23114,
- "##inn": 23115,
- "creditors": 23116,
- "hauling": 23117,
- "rattle": 23118,
- "##leg": 23119,
- "calais": 23120,
- "monde": 23121,
- "archers": 23122,
- "reclaimed": 23123,
- "dwell": 23124,
- "wexford": 23125,
- "hellenic": 23126,
- "falsely": 23127,
- "remorse": 23128,
- "##tek": 23129,
- "dough": 23130,
- "furnishings": 23131,
- "##uttered": 23132,
- "gabon": 23133,
- "neurological": 23134,
- "novice": 23135,
- "##igraphy": 23136,
- "contemplated": 23137,
- "pulpit": 23138,
- "nightstand": 23139,
- "saratoga": 23140,
- "##istan": 23141,
- "documenting": 23142,
- "pulsing": 23143,
- "taluk": 23144,
- "##firmed": 23145,
- "busted": 23146,
- "marital": 23147,
- "##rien": 23148,
- "disagreements": 23149,
- "wasps": 23150,
- "##yes": 23151,
- "hodge": 23152,
- "mcdonnell": 23153,
- "mimic": 23154,
- "fran": 23155,
- "pendant": 23156,
- "dhabi": 23157,
- "musa": 23158,
- "##nington": 23159,
- "congratulations": 23160,
- "argent": 23161,
- "darrell": 23162,
- "concussion": 23163,
- "losers": 23164,
- "regrets": 23165,
- "thessaloniki": 23166,
- "reversal": 23167,
- "donaldson": 23168,
- "hardwood": 23169,
- "thence": 23170,
- "achilles": 23171,
- "ritter": 23172,
- "##eran": 23173,
- "demonic": 23174,
- "jurgen": 23175,
- "prophets": 23176,
- "goethe": 23177,
- "eki": 23178,
- "classmate": 23179,
- "buff": 23180,
- "##cking": 23181,
- "yank": 23182,
- "irrational": 23183,
- "##inging": 23184,
- "perished": 23185,
- "seductive": 23186,
- "qur": 23187,
- "sourced": 23188,
- "##crat": 23189,
- "##typic": 23190,
- "mustard": 23191,
- "ravine": 23192,
- "barre": 23193,
- "horizontally": 23194,
- "characterization": 23195,
- "phylogenetic": 23196,
- "boise": 23197,
- "##dit": 23198,
- "##runner": 23199,
- "##tower": 23200,
- "brutally": 23201,
- "intercourse": 23202,
- "seduce": 23203,
- "##bbing": 23204,
- "fay": 23205,
- "ferris": 23206,
- "ogden": 23207,
- "amar": 23208,
- "nik": 23209,
- "unarmed": 23210,
- "##inator": 23211,
- "evaluating": 23212,
- "kyrgyzstan": 23213,
- "sweetness": 23214,
- "##lford": 23215,
- "##oki": 23216,
- "mccormick": 23217,
- "meiji": 23218,
- "notoriety": 23219,
- "stimulate": 23220,
- "disrupt": 23221,
- "figuring": 23222,
- "instructional": 23223,
- "mcgrath": 23224,
- "##zoo": 23225,
- "groundbreaking": 23226,
- "##lto": 23227,
- "flinch": 23228,
- "khorasan": 23229,
- "agrarian": 23230,
- "bengals": 23231,
- "mixer": 23232,
- "radiating": 23233,
- "##sov": 23234,
- "ingram": 23235,
- "pitchers": 23236,
- "nad": 23237,
- "tariff": 23238,
- "##cript": 23239,
- "tata": 23240,
- "##codes": 23241,
- "##emi": 23242,
- "##ungen": 23243,
- "appellate": 23244,
- "lehigh": 23245,
- "##bled": 23246,
- "##giri": 23247,
- "brawl": 23248,
- "duct": 23249,
- "texans": 23250,
- "##ciation": 23251,
- "##ropolis": 23252,
- "skipper": 23253,
- "speculative": 23254,
- "vomit": 23255,
- "doctrines": 23256,
- "stresses": 23257,
- "253": 23258,
- "davy": 23259,
- "graders": 23260,
- "whitehead": 23261,
- "jozef": 23262,
- "timely": 23263,
- "cumulative": 23264,
- "haryana": 23265,
- "paints": 23266,
- "appropriately": 23267,
- "boon": 23268,
- "cactus": 23269,
- "##ales": 23270,
- "##pid": 23271,
- "dow": 23272,
- "legions": 23273,
- "##pit": 23274,
- "perceptions": 23275,
- "1730": 23276,
- "picturesque": 23277,
- "##yse": 23278,
- "periphery": 23279,
- "rune": 23280,
- "wr": 23281,
- "##aha": 23282,
- "celtics": 23283,
- "sentencing": 23284,
- "whoa": 23285,
- "##erin": 23286,
- "confirms": 23287,
- "variance": 23288,
- "425": 23289,
- "moines": 23290,
- "mathews": 23291,
- "spade": 23292,
- "rave": 23293,
- "m1": 23294,
- "fronted": 23295,
- "fx": 23296,
- "blending": 23297,
- "alleging": 23298,
- "reared": 23299,
- "##gl": 23300,
- "237": 23301,
- "##paper": 23302,
- "grassroots": 23303,
- "eroded": 23304,
- "##free": 23305,
- "##physical": 23306,
- "directs": 23307,
- "ordeal": 23308,
- "##sław": 23309,
- "accelerate": 23310,
- "hacker": 23311,
- "rooftop": 23312,
- "##inia": 23313,
- "lev": 23314,
- "buys": 23315,
- "cebu": 23316,
- "devote": 23317,
- "##lce": 23318,
- "specialising": 23319,
- "##ulsion": 23320,
- "choreographed": 23321,
- "repetition": 23322,
- "warehouses": 23323,
- "##ryl": 23324,
- "paisley": 23325,
- "tuscany": 23326,
- "analogy": 23327,
- "sorcerer": 23328,
- "hash": 23329,
- "huts": 23330,
- "shards": 23331,
- "descends": 23332,
- "exclude": 23333,
- "nix": 23334,
- "chaplin": 23335,
- "gaga": 23336,
- "ito": 23337,
- "vane": 23338,
- "##drich": 23339,
- "causeway": 23340,
- "misconduct": 23341,
- "limo": 23342,
- "orchestrated": 23343,
- "glands": 23344,
- "jana": 23345,
- "##kot": 23346,
- "u2": 23347,
- "##mple": 23348,
- "##sons": 23349,
- "branching": 23350,
- "contrasts": 23351,
- "scoop": 23352,
- "longed": 23353,
- "##virus": 23354,
- "chattanooga": 23355,
- "##75": 23356,
- "syrup": 23357,
- "cornerstone": 23358,
- "##tized": 23359,
- "##mind": 23360,
- "##iaceae": 23361,
- "careless": 23362,
- "precedence": 23363,
- "frescoes": 23364,
- "##uet": 23365,
- "chilled": 23366,
- "consult": 23367,
- "modelled": 23368,
- "snatch": 23369,
- "peat": 23370,
- "##thermal": 23371,
- "caucasian": 23372,
- "humane": 23373,
- "relaxation": 23374,
- "spins": 23375,
- "temperance": 23376,
- "##lbert": 23377,
- "occupations": 23378,
- "lambda": 23379,
- "hybrids": 23380,
- "moons": 23381,
- "mp3": 23382,
- "##oese": 23383,
- "247": 23384,
- "rolf": 23385,
- "societal": 23386,
- "yerevan": 23387,
- "ness": 23388,
- "##ssler": 23389,
- "befriended": 23390,
- "mechanized": 23391,
- "nominate": 23392,
- "trough": 23393,
- "boasted": 23394,
- "cues": 23395,
- "seater": 23396,
- "##hom": 23397,
- "bends": 23398,
- "##tangle": 23399,
- "conductors": 23400,
- "emptiness": 23401,
- "##lmer": 23402,
- "eurasian": 23403,
- "adriatic": 23404,
- "tian": 23405,
- "##cie": 23406,
- "anxiously": 23407,
- "lark": 23408,
- "propellers": 23409,
- "chichester": 23410,
- "jock": 23411,
- "ev": 23412,
- "2a": 23413,
- "##holding": 23414,
- "credible": 23415,
- "recounts": 23416,
- "tori": 23417,
- "loyalist": 23418,
- "abduction": 23419,
- "##hoot": 23420,
- "##redo": 23421,
- "nepali": 23422,
- "##mite": 23423,
- "ventral": 23424,
- "tempting": 23425,
- "##ango": 23426,
- "##crats": 23427,
- "steered": 23428,
- "##wice": 23429,
- "javelin": 23430,
- "dipping": 23431,
- "laborers": 23432,
- "prentice": 23433,
- "looming": 23434,
- "titanium": 23435,
- "##ː": 23436,
- "badges": 23437,
- "emir": 23438,
- "tensor": 23439,
- "##ntation": 23440,
- "egyptians": 23441,
- "rash": 23442,
- "denies": 23443,
- "hawthorne": 23444,
- "lombard": 23445,
- "showers": 23446,
- "wehrmacht": 23447,
- "dietary": 23448,
- "trojan": 23449,
- "##reus": 23450,
- "welles": 23451,
- "executing": 23452,
- "horseshoe": 23453,
- "lifeboat": 23454,
- "##lak": 23455,
- "elsa": 23456,
- "infirmary": 23457,
- "nearing": 23458,
- "roberta": 23459,
- "boyer": 23460,
- "mutter": 23461,
- "trillion": 23462,
- "joanne": 23463,
- "##fine": 23464,
- "##oked": 23465,
- "sinks": 23466,
- "vortex": 23467,
- "uruguayan": 23468,
- "clasp": 23469,
- "sirius": 23470,
- "##block": 23471,
- "accelerator": 23472,
- "prohibit": 23473,
- "sunken": 23474,
- "byu": 23475,
- "chronological": 23476,
- "diplomats": 23477,
- "ochreous": 23478,
- "510": 23479,
- "symmetrical": 23480,
- "1644": 23481,
- "maia": 23482,
- "##tology": 23483,
- "salts": 23484,
- "reigns": 23485,
- "atrocities": 23486,
- "##ия": 23487,
- "hess": 23488,
- "bared": 23489,
- "issn": 23490,
- "##vyn": 23491,
- "cater": 23492,
- "saturated": 23493,
- "##cycle": 23494,
- "##isse": 23495,
- "sable": 23496,
- "voyager": 23497,
- "dyer": 23498,
- "yusuf": 23499,
- "##inge": 23500,
- "fountains": 23501,
- "wolff": 23502,
- "##39": 23503,
- "##nni": 23504,
- "engraving": 23505,
- "rollins": 23506,
- "atheist": 23507,
- "ominous": 23508,
- "##ault": 23509,
- "herr": 23510,
- "chariot": 23511,
- "martina": 23512,
- "strung": 23513,
- "##fell": 23514,
- "##farlane": 23515,
- "horrific": 23516,
- "sahib": 23517,
- "gazes": 23518,
- "saetan": 23519,
- "erased": 23520,
- "ptolemy": 23521,
- "##olic": 23522,
- "flushing": 23523,
- "lauderdale": 23524,
- "analytic": 23525,
- "##ices": 23526,
- "530": 23527,
- "navarro": 23528,
- "beak": 23529,
- "gorilla": 23530,
- "herrera": 23531,
- "broom": 23532,
- "guadalupe": 23533,
- "raiding": 23534,
- "sykes": 23535,
- "311": 23536,
- "bsc": 23537,
- "deliveries": 23538,
- "1720": 23539,
- "invasions": 23540,
- "carmichael": 23541,
- "tajikistan": 23542,
- "thematic": 23543,
- "ecumenical": 23544,
- "sentiments": 23545,
- "onstage": 23546,
- "##rians": 23547,
- "##brand": 23548,
- "##sume": 23549,
- "catastrophic": 23550,
- "flanks": 23551,
- "molten": 23552,
- "##arns": 23553,
- "waller": 23554,
- "aimee": 23555,
- "terminating": 23556,
- "##icing": 23557,
- "alternately": 23558,
- "##oche": 23559,
- "nehru": 23560,
- "printers": 23561,
- "outraged": 23562,
- "##eving": 23563,
- "empires": 23564,
- "template": 23565,
- "banners": 23566,
- "repetitive": 23567,
- "za": 23568,
- "##oise": 23569,
- "vegetarian": 23570,
- "##tell": 23571,
- "guiana": 23572,
- "opt": 23573,
- "cavendish": 23574,
- "lucknow": 23575,
- "synthesized": 23576,
- "##hani": 23577,
- "##mada": 23578,
- "finalized": 23579,
- "##ctable": 23580,
- "fictitious": 23581,
- "mayoral": 23582,
- "unreliable": 23583,
- "##enham": 23584,
- "embracing": 23585,
- "peppers": 23586,
- "rbis": 23587,
- "##chio": 23588,
- "##neo": 23589,
- "inhibition": 23590,
- "slashed": 23591,
- "togo": 23592,
- "orderly": 23593,
- "embroidered": 23594,
- "safari": 23595,
- "salty": 23596,
- "236": 23597,
- "barron": 23598,
- "benito": 23599,
- "totaled": 23600,
- "##dak": 23601,
- "pubs": 23602,
- "simulated": 23603,
- "caden": 23604,
- "devin": 23605,
- "tolkien": 23606,
- "momma": 23607,
- "welding": 23608,
- "sesame": 23609,
- "##ept": 23610,
- "gottingen": 23611,
- "hardness": 23612,
- "630": 23613,
- "shaman": 23614,
- "temeraire": 23615,
- "620": 23616,
- "adequately": 23617,
- "pediatric": 23618,
- "##kit": 23619,
- "ck": 23620,
- "assertion": 23621,
- "radicals": 23622,
- "composure": 23623,
- "cadence": 23624,
- "seafood": 23625,
- "beaufort": 23626,
- "lazarus": 23627,
- "mani": 23628,
- "warily": 23629,
- "cunning": 23630,
- "kurdistan": 23631,
- "249": 23632,
- "cantata": 23633,
- "##kir": 23634,
- "ares": 23635,
- "##41": 23636,
- "##clusive": 23637,
- "nape": 23638,
- "townland": 23639,
- "geared": 23640,
- "insulted": 23641,
- "flutter": 23642,
- "boating": 23643,
- "violate": 23644,
- "draper": 23645,
- "dumping": 23646,
- "malmo": 23647,
- "##hh": 23648,
- "##romatic": 23649,
- "firearm": 23650,
- "alta": 23651,
- "bono": 23652,
- "obscured": 23653,
- "##clave": 23654,
- "exceeds": 23655,
- "panorama": 23656,
- "unbelievable": 23657,
- "##train": 23658,
- "preschool": 23659,
- "##essed": 23660,
- "disconnected": 23661,
- "installing": 23662,
- "rescuing": 23663,
- "secretaries": 23664,
- "accessibility": 23665,
- "##castle": 23666,
- "##drive": 23667,
- "##ifice": 23668,
- "##film": 23669,
- "bouts": 23670,
- "slug": 23671,
- "waterway": 23672,
- "mindanao": 23673,
- "##buro": 23674,
- "##ratic": 23675,
- "halves": 23676,
- "##ل": 23677,
- "calming": 23678,
- "liter": 23679,
- "maternity": 23680,
- "adorable": 23681,
- "bragg": 23682,
- "electrification": 23683,
- "mcc": 23684,
- "##dote": 23685,
- "roxy": 23686,
- "schizophrenia": 23687,
- "##body": 23688,
- "munoz": 23689,
- "kaye": 23690,
- "whaling": 23691,
- "239": 23692,
- "mil": 23693,
- "tingling": 23694,
- "tolerant": 23695,
- "##ago": 23696,
- "unconventional": 23697,
- "volcanoes": 23698,
- "##finder": 23699,
- "deportivo": 23700,
- "##llie": 23701,
- "robson": 23702,
- "kaufman": 23703,
- "neuroscience": 23704,
- "wai": 23705,
- "deportation": 23706,
- "masovian": 23707,
- "scraping": 23708,
- "converse": 23709,
- "##bh": 23710,
- "hacking": 23711,
- "bulge": 23712,
- "##oun": 23713,
- "administratively": 23714,
- "yao": 23715,
- "580": 23716,
- "amp": 23717,
- "mammoth": 23718,
- "booster": 23719,
- "claremont": 23720,
- "hooper": 23721,
- "nomenclature": 23722,
- "pursuits": 23723,
- "mclaughlin": 23724,
- "melinda": 23725,
- "##sul": 23726,
- "catfish": 23727,
- "barclay": 23728,
- "substrates": 23729,
- "taxa": 23730,
- "zee": 23731,
- "originals": 23732,
- "kimberly": 23733,
- "packets": 23734,
- "padma": 23735,
- "##ality": 23736,
- "borrowing": 23737,
- "ostensibly": 23738,
- "solvent": 23739,
- "##bri": 23740,
- "##genesis": 23741,
- "##mist": 23742,
- "lukas": 23743,
- "shreveport": 23744,
- "veracruz": 23745,
- "##ь": 23746,
- "##lou": 23747,
- "##wives": 23748,
- "cheney": 23749,
- "tt": 23750,
- "anatolia": 23751,
- "hobbs": 23752,
- "##zyn": 23753,
- "cyclic": 23754,
- "radiant": 23755,
- "alistair": 23756,
- "greenish": 23757,
- "siena": 23758,
- "dat": 23759,
- "independents": 23760,
- "##bation": 23761,
- "conform": 23762,
- "pieter": 23763,
- "hyper": 23764,
- "applicant": 23765,
- "bradshaw": 23766,
- "spores": 23767,
- "telangana": 23768,
- "vinci": 23769,
- "inexpensive": 23770,
- "nuclei": 23771,
- "322": 23772,
- "jang": 23773,
- "nme": 23774,
- "soho": 23775,
- "spd": 23776,
- "##ign": 23777,
- "cradled": 23778,
- "receptionist": 23779,
- "pow": 23780,
- "##43": 23781,
- "##rika": 23782,
- "fascism": 23783,
- "##ifer": 23784,
- "experimenting": 23785,
- "##ading": 23786,
- "##iec": 23787,
- "##region": 23788,
- "345": 23789,
- "jocelyn": 23790,
- "maris": 23791,
- "stair": 23792,
- "nocturnal": 23793,
- "toro": 23794,
- "constabulary": 23795,
- "elgin": 23796,
- "##kker": 23797,
- "msc": 23798,
- "##giving": 23799,
- "##schen": 23800,
- "##rase": 23801,
- "doherty": 23802,
- "doping": 23803,
- "sarcastically": 23804,
- "batter": 23805,
- "maneuvers": 23806,
- "##cano": 23807,
- "##apple": 23808,
- "##gai": 23809,
- "##git": 23810,
- "intrinsic": 23811,
- "##nst": 23812,
- "##stor": 23813,
- "1753": 23814,
- "showtime": 23815,
- "cafes": 23816,
- "gasps": 23817,
- "lviv": 23818,
- "ushered": 23819,
- "##thed": 23820,
- "fours": 23821,
- "restart": 23822,
- "astonishment": 23823,
- "transmitting": 23824,
- "flyer": 23825,
- "shrugs": 23826,
- "##sau": 23827,
- "intriguing": 23828,
- "cones": 23829,
- "dictated": 23830,
- "mushrooms": 23831,
- "medial": 23832,
- "##kovsky": 23833,
- "##elman": 23834,
- "escorting": 23835,
- "gaped": 23836,
- "##26": 23837,
- "godfather": 23838,
- "##door": 23839,
- "##sell": 23840,
- "djs": 23841,
- "recaptured": 23842,
- "timetable": 23843,
- "vila": 23844,
- "1710": 23845,
- "3a": 23846,
- "aerodrome": 23847,
- "mortals": 23848,
- "scientology": 23849,
- "##orne": 23850,
- "angelina": 23851,
- "mag": 23852,
- "convection": 23853,
- "unpaid": 23854,
- "insertion": 23855,
- "intermittent": 23856,
- "lego": 23857,
- "##nated": 23858,
- "endeavor": 23859,
- "kota": 23860,
- "pereira": 23861,
- "##lz": 23862,
- "304": 23863,
- "bwv": 23864,
- "glamorgan": 23865,
- "insults": 23866,
- "agatha": 23867,
- "fey": 23868,
- "##cend": 23869,
- "fleetwood": 23870,
- "mahogany": 23871,
- "protruding": 23872,
- "steamship": 23873,
- "zeta": 23874,
- "##arty": 23875,
- "mcguire": 23876,
- "suspense": 23877,
- "##sphere": 23878,
- "advising": 23879,
- "urges": 23880,
- "##wala": 23881,
- "hurriedly": 23882,
- "meteor": 23883,
- "gilded": 23884,
- "inline": 23885,
- "arroyo": 23886,
- "stalker": 23887,
- "##oge": 23888,
- "excitedly": 23889,
- "revered": 23890,
- "##cure": 23891,
- "earle": 23892,
- "introductory": 23893,
- "##break": 23894,
- "##ilde": 23895,
- "mutants": 23896,
- "puff": 23897,
- "pulses": 23898,
- "reinforcement": 23899,
- "##haling": 23900,
- "curses": 23901,
- "lizards": 23902,
- "stalk": 23903,
- "correlated": 23904,
- "##fixed": 23905,
- "fallout": 23906,
- "macquarie": 23907,
- "##unas": 23908,
- "bearded": 23909,
- "denton": 23910,
- "heaving": 23911,
- "802": 23912,
- "##ocation": 23913,
- "winery": 23914,
- "assign": 23915,
- "dortmund": 23916,
- "##lkirk": 23917,
- "everest": 23918,
- "invariant": 23919,
- "charismatic": 23920,
- "susie": 23921,
- "##elling": 23922,
- "bled": 23923,
- "lesley": 23924,
- "telegram": 23925,
- "sumner": 23926,
- "bk": 23927,
- "##ogen": 23928,
- "##к": 23929,
- "wilcox": 23930,
- "needy": 23931,
- "colbert": 23932,
- "duval": 23933,
- "##iferous": 23934,
- "##mbled": 23935,
- "allotted": 23936,
- "attends": 23937,
- "imperative": 23938,
- "##hita": 23939,
- "replacements": 23940,
- "hawker": 23941,
- "##inda": 23942,
- "insurgency": 23943,
- "##zee": 23944,
- "##eke": 23945,
- "casts": 23946,
- "##yla": 23947,
- "680": 23948,
- "ives": 23949,
- "transitioned": 23950,
- "##pack": 23951,
- "##powering": 23952,
- "authoritative": 23953,
- "baylor": 23954,
- "flex": 23955,
- "cringed": 23956,
- "plaintiffs": 23957,
- "woodrow": 23958,
- "##skie": 23959,
- "drastic": 23960,
- "ape": 23961,
- "aroma": 23962,
- "unfolded": 23963,
- "commotion": 23964,
- "nt": 23965,
- "preoccupied": 23966,
- "theta": 23967,
- "routines": 23968,
- "lasers": 23969,
- "privatization": 23970,
- "wand": 23971,
- "domino": 23972,
- "ek": 23973,
- "clenching": 23974,
- "nsa": 23975,
- "strategically": 23976,
- "showered": 23977,
- "bile": 23978,
- "handkerchief": 23979,
- "pere": 23980,
- "storing": 23981,
- "christophe": 23982,
- "insulting": 23983,
- "316": 23984,
- "nakamura": 23985,
- "romani": 23986,
- "asiatic": 23987,
- "magdalena": 23988,
- "palma": 23989,
- "cruises": 23990,
- "stripping": 23991,
- "405": 23992,
- "konstantin": 23993,
- "soaring": 23994,
- "##berman": 23995,
- "colloquially": 23996,
- "forerunner": 23997,
- "havilland": 23998,
- "incarcerated": 23999,
- "parasites": 24000,
- "sincerity": 24001,
- "##utus": 24002,
- "disks": 24003,
- "plank": 24004,
- "saigon": 24005,
- "##ining": 24006,
- "corbin": 24007,
- "homo": 24008,
- "ornaments": 24009,
- "powerhouse": 24010,
- "##tlement": 24011,
- "chong": 24012,
- "fastened": 24013,
- "feasibility": 24014,
- "idf": 24015,
- "morphological": 24016,
- "usable": 24017,
- "##nish": 24018,
- "##zuki": 24019,
- "aqueduct": 24020,
- "jaguars": 24021,
- "keepers": 24022,
- "##flies": 24023,
- "aleksandr": 24024,
- "faust": 24025,
- "assigns": 24026,
- "ewing": 24027,
- "bacterium": 24028,
- "hurled": 24029,
- "tricky": 24030,
- "hungarians": 24031,
- "integers": 24032,
- "wallis": 24033,
- "321": 24034,
- "yamaha": 24035,
- "##isha": 24036,
- "hushed": 24037,
- "oblivion": 24038,
- "aviator": 24039,
- "evangelist": 24040,
- "friars": 24041,
- "##eller": 24042,
- "monograph": 24043,
- "ode": 24044,
- "##nary": 24045,
- "airplanes": 24046,
- "labourers": 24047,
- "charms": 24048,
- "##nee": 24049,
- "1661": 24050,
- "hagen": 24051,
- "tnt": 24052,
- "rudder": 24053,
- "fiesta": 24054,
- "transcript": 24055,
- "dorothea": 24056,
- "ska": 24057,
- "inhibitor": 24058,
- "maccabi": 24059,
- "retorted": 24060,
- "raining": 24061,
- "encompassed": 24062,
- "clauses": 24063,
- "menacing": 24064,
- "1642": 24065,
- "lineman": 24066,
- "##gist": 24067,
- "vamps": 24068,
- "##ape": 24069,
- "##dick": 24070,
- "gloom": 24071,
- "##rera": 24072,
- "dealings": 24073,
- "easing": 24074,
- "seekers": 24075,
- "##nut": 24076,
- "##pment": 24077,
- "helens": 24078,
- "unmanned": 24079,
- "##anu": 24080,
- "##isson": 24081,
- "basics": 24082,
- "##amy": 24083,
- "##ckman": 24084,
- "adjustments": 24085,
- "1688": 24086,
- "brutality": 24087,
- "horne": 24088,
- "##zell": 24089,
- "sui": 24090,
- "##55": 24091,
- "##mable": 24092,
- "aggregator": 24093,
- "##thal": 24094,
- "rhino": 24095,
- "##drick": 24096,
- "##vira": 24097,
- "counters": 24098,
- "zoom": 24099,
- "##01": 24100,
- "##rting": 24101,
- "mn": 24102,
- "montenegrin": 24103,
- "packard": 24104,
- "##unciation": 24105,
- "##♭": 24106,
- "##kki": 24107,
- "reclaim": 24108,
- "scholastic": 24109,
- "thugs": 24110,
- "pulsed": 24111,
- "##icia": 24112,
- "syriac": 24113,
- "quan": 24114,
- "saddam": 24115,
- "banda": 24116,
- "kobe": 24117,
- "blaming": 24118,
- "buddies": 24119,
- "dissent": 24120,
- "##lusion": 24121,
- "##usia": 24122,
- "corbett": 24123,
- "jaya": 24124,
- "delle": 24125,
- "erratic": 24126,
- "lexie": 24127,
- "##hesis": 24128,
- "435": 24129,
- "amiga": 24130,
- "hermes": 24131,
- "##pressing": 24132,
- "##leen": 24133,
- "chapels": 24134,
- "gospels": 24135,
- "jamal": 24136,
- "##uating": 24137,
- "compute": 24138,
- "revolving": 24139,
- "warp": 24140,
- "##sso": 24141,
- "##thes": 24142,
- "armory": 24143,
- "##eras": 24144,
- "##gol": 24145,
- "antrim": 24146,
- "loki": 24147,
- "##kow": 24148,
- "##asian": 24149,
- "##good": 24150,
- "##zano": 24151,
- "braid": 24152,
- "handwriting": 24153,
- "subdistrict": 24154,
- "funky": 24155,
- "pantheon": 24156,
- "##iculate": 24157,
- "concurrency": 24158,
- "estimation": 24159,
- "improper": 24160,
- "juliana": 24161,
- "##his": 24162,
- "newcomers": 24163,
- "johnstone": 24164,
- "staten": 24165,
- "communicated": 24166,
- "##oco": 24167,
- "##alle": 24168,
- "sausage": 24169,
- "stormy": 24170,
- "##stered": 24171,
- "##tters": 24172,
- "superfamily": 24173,
- "##grade": 24174,
- "acidic": 24175,
- "collateral": 24176,
- "tabloid": 24177,
- "##oped": 24178,
- "##rza": 24179,
- "bladder": 24180,
- "austen": 24181,
- "##ellant": 24182,
- "mcgraw": 24183,
- "##hay": 24184,
- "hannibal": 24185,
- "mein": 24186,
- "aquino": 24187,
- "lucifer": 24188,
- "wo": 24189,
- "badger": 24190,
- "boar": 24191,
- "cher": 24192,
- "christensen": 24193,
- "greenberg": 24194,
- "interruption": 24195,
- "##kken": 24196,
- "jem": 24197,
- "244": 24198,
- "mocked": 24199,
- "bottoms": 24200,
- "cambridgeshire": 24201,
- "##lide": 24202,
- "sprawling": 24203,
- "##bbly": 24204,
- "eastwood": 24205,
- "ghent": 24206,
- "synth": 24207,
- "##buck": 24208,
- "advisers": 24209,
- "##bah": 24210,
- "nominally": 24211,
- "hapoel": 24212,
- "qu": 24213,
- "daggers": 24214,
- "estranged": 24215,
- "fabricated": 24216,
- "towels": 24217,
- "vinnie": 24218,
- "wcw": 24219,
- "misunderstanding": 24220,
- "anglia": 24221,
- "nothin": 24222,
- "unmistakable": 24223,
- "##dust": 24224,
- "##lova": 24225,
- "chilly": 24226,
- "marquette": 24227,
- "truss": 24228,
- "##edge": 24229,
- "##erine": 24230,
- "reece": 24231,
- "##lty": 24232,
- "##chemist": 24233,
- "##connected": 24234,
- "272": 24235,
- "308": 24236,
- "41st": 24237,
- "bash": 24238,
- "raion": 24239,
- "waterfalls": 24240,
- "##ump": 24241,
- "##main": 24242,
- "labyrinth": 24243,
- "queue": 24244,
- "theorist": 24245,
- "##istle": 24246,
- "bharatiya": 24247,
- "flexed": 24248,
- "soundtracks": 24249,
- "rooney": 24250,
- "leftist": 24251,
- "patrolling": 24252,
- "wharton": 24253,
- "plainly": 24254,
- "alleviate": 24255,
- "eastman": 24256,
- "schuster": 24257,
- "topographic": 24258,
- "engages": 24259,
- "immensely": 24260,
- "unbearable": 24261,
- "fairchild": 24262,
- "1620": 24263,
- "dona": 24264,
- "lurking": 24265,
- "parisian": 24266,
- "oliveira": 24267,
- "ia": 24268,
- "indictment": 24269,
- "hahn": 24270,
- "bangladeshi": 24271,
- "##aster": 24272,
- "vivo": 24273,
- "##uming": 24274,
- "##ential": 24275,
- "antonia": 24276,
- "expects": 24277,
- "indoors": 24278,
- "kildare": 24279,
- "harlan": 24280,
- "##logue": 24281,
- "##ogenic": 24282,
- "##sities": 24283,
- "forgiven": 24284,
- "##wat": 24285,
- "childish": 24286,
- "tavi": 24287,
- "##mide": 24288,
- "##orra": 24289,
- "plausible": 24290,
- "grimm": 24291,
- "successively": 24292,
- "scooted": 24293,
- "##bola": 24294,
- "##dget": 24295,
- "##rith": 24296,
- "spartans": 24297,
- "emery": 24298,
- "flatly": 24299,
- "azure": 24300,
- "epilogue": 24301,
- "##wark": 24302,
- "flourish": 24303,
- "##iny": 24304,
- "##tracted": 24305,
- "##overs": 24306,
- "##oshi": 24307,
- "bestseller": 24308,
- "distressed": 24309,
- "receipt": 24310,
- "spitting": 24311,
- "hermit": 24312,
- "topological": 24313,
- "##cot": 24314,
- "drilled": 24315,
- "subunit": 24316,
- "francs": 24317,
- "##layer": 24318,
- "eel": 24319,
- "##fk": 24320,
- "##itas": 24321,
- "octopus": 24322,
- "footprint": 24323,
- "petitions": 24324,
- "ufo": 24325,
- "##say": 24326,
- "##foil": 24327,
- "interfering": 24328,
- "leaking": 24329,
- "palo": 24330,
- "##metry": 24331,
- "thistle": 24332,
- "valiant": 24333,
- "##pic": 24334,
- "narayan": 24335,
- "mcpherson": 24336,
- "##fast": 24337,
- "gonzales": 24338,
- "##ym": 24339,
- "##enne": 24340,
- "dustin": 24341,
- "novgorod": 24342,
- "solos": 24343,
- "##zman": 24344,
- "doin": 24345,
- "##raph": 24346,
- "##patient": 24347,
- "##meyer": 24348,
- "soluble": 24349,
- "ashland": 24350,
- "cuffs": 24351,
- "carole": 24352,
- "pendleton": 24353,
- "whistling": 24354,
- "vassal": 24355,
- "##river": 24356,
- "deviation": 24357,
- "revisited": 24358,
- "constituents": 24359,
- "rallied": 24360,
- "rotate": 24361,
- "loomed": 24362,
- "##eil": 24363,
- "##nting": 24364,
- "amateurs": 24365,
- "augsburg": 24366,
- "auschwitz": 24367,
- "crowns": 24368,
- "skeletons": 24369,
- "##cona": 24370,
- "bonnet": 24371,
- "257": 24372,
- "dummy": 24373,
- "globalization": 24374,
- "simeon": 24375,
- "sleeper": 24376,
- "mandal": 24377,
- "differentiated": 24378,
- "##crow": 24379,
- "##mare": 24380,
- "milne": 24381,
- "bundled": 24382,
- "exasperated": 24383,
- "talmud": 24384,
- "owes": 24385,
- "segregated": 24386,
- "##feng": 24387,
- "##uary": 24388,
- "dentist": 24389,
- "piracy": 24390,
- "props": 24391,
- "##rang": 24392,
- "devlin": 24393,
- "##torium": 24394,
- "malicious": 24395,
- "paws": 24396,
- "##laid": 24397,
- "dependency": 24398,
- "##ergy": 24399,
- "##fers": 24400,
- "##enna": 24401,
- "258": 24402,
- "pistons": 24403,
- "rourke": 24404,
- "jed": 24405,
- "grammatical": 24406,
- "tres": 24407,
- "maha": 24408,
- "wig": 24409,
- "512": 24410,
- "ghostly": 24411,
- "jayne": 24412,
- "##achal": 24413,
- "##creen": 24414,
- "##ilis": 24415,
- "##lins": 24416,
- "##rence": 24417,
- "designate": 24418,
- "##with": 24419,
- "arrogance": 24420,
- "cambodian": 24421,
- "clones": 24422,
- "showdown": 24423,
- "throttle": 24424,
- "twain": 24425,
- "##ception": 24426,
- "lobes": 24427,
- "metz": 24428,
- "nagoya": 24429,
- "335": 24430,
- "braking": 24431,
- "##furt": 24432,
- "385": 24433,
- "roaming": 24434,
- "##minster": 24435,
- "amin": 24436,
- "crippled": 24437,
- "##37": 24438,
- "##llary": 24439,
- "indifferent": 24440,
- "hoffmann": 24441,
- "idols": 24442,
- "intimidating": 24443,
- "1751": 24444,
- "261": 24445,
- "influenza": 24446,
- "memo": 24447,
- "onions": 24448,
- "1748": 24449,
- "bandage": 24450,
- "consciously": 24451,
- "##landa": 24452,
- "##rage": 24453,
- "clandestine": 24454,
- "observes": 24455,
- "swiped": 24456,
- "tangle": 24457,
- "##ener": 24458,
- "##jected": 24459,
- "##trum": 24460,
- "##bill": 24461,
- "##lta": 24462,
- "hugs": 24463,
- "congresses": 24464,
- "josiah": 24465,
- "spirited": 24466,
- "##dek": 24467,
- "humanist": 24468,
- "managerial": 24469,
- "filmmaking": 24470,
- "inmate": 24471,
- "rhymes": 24472,
- "debuting": 24473,
- "grimsby": 24474,
- "ur": 24475,
- "##laze": 24476,
- "duplicate": 24477,
- "vigor": 24478,
- "##tf": 24479,
- "republished": 24480,
- "bolshevik": 24481,
- "refurbishment": 24482,
- "antibiotics": 24483,
- "martini": 24484,
- "methane": 24485,
- "newscasts": 24486,
- "royale": 24487,
- "horizons": 24488,
- "levant": 24489,
- "iain": 24490,
- "visas": 24491,
- "##ischen": 24492,
- "paler": 24493,
- "##around": 24494,
- "manifestation": 24495,
- "snuck": 24496,
- "alf": 24497,
- "chop": 24498,
- "futile": 24499,
- "pedestal": 24500,
- "rehab": 24501,
- "##kat": 24502,
- "bmg": 24503,
- "kerman": 24504,
- "res": 24505,
- "fairbanks": 24506,
- "jarrett": 24507,
- "abstraction": 24508,
- "saharan": 24509,
- "##zek": 24510,
- "1746": 24511,
- "procedural": 24512,
- "clearer": 24513,
- "kincaid": 24514,
- "sash": 24515,
- "luciano": 24516,
- "##ffey": 24517,
- "crunch": 24518,
- "helmut": 24519,
- "##vara": 24520,
- "revolutionaries": 24521,
- "##tute": 24522,
- "creamy": 24523,
- "leach": 24524,
- "##mmon": 24525,
- "1747": 24526,
- "permitting": 24527,
- "nes": 24528,
- "plight": 24529,
- "wendell": 24530,
- "##lese": 24531,
- "contra": 24532,
- "ts": 24533,
- "clancy": 24534,
- "ipa": 24535,
- "mach": 24536,
- "staples": 24537,
- "autopsy": 24538,
- "disturbances": 24539,
- "nueva": 24540,
- "karin": 24541,
- "pontiac": 24542,
- "##uding": 24543,
- "proxy": 24544,
- "venerable": 24545,
- "haunt": 24546,
- "leto": 24547,
- "bergman": 24548,
- "expands": 24549,
- "##helm": 24550,
- "wal": 24551,
- "##pipe": 24552,
- "canning": 24553,
- "celine": 24554,
- "cords": 24555,
- "obesity": 24556,
- "##enary": 24557,
- "intrusion": 24558,
- "planner": 24559,
- "##phate": 24560,
- "reasoned": 24561,
- "sequencing": 24562,
- "307": 24563,
- "harrow": 24564,
- "##chon": 24565,
- "##dora": 24566,
- "marred": 24567,
- "mcintyre": 24568,
- "repay": 24569,
- "tarzan": 24570,
- "darting": 24571,
- "248": 24572,
- "harrisburg": 24573,
- "margarita": 24574,
- "repulsed": 24575,
- "##hur": 24576,
- "##lding": 24577,
- "belinda": 24578,
- "hamburger": 24579,
- "novo": 24580,
- "compliant": 24581,
- "runways": 24582,
- "bingham": 24583,
- "registrar": 24584,
- "skyscraper": 24585,
- "ic": 24586,
- "cuthbert": 24587,
- "improvisation": 24588,
- "livelihood": 24589,
- "##corp": 24590,
- "##elial": 24591,
- "admiring": 24592,
- "##dened": 24593,
- "sporadic": 24594,
- "believer": 24595,
- "casablanca": 24596,
- "popcorn": 24597,
- "##29": 24598,
- "asha": 24599,
- "shovel": 24600,
- "##bek": 24601,
- "##dice": 24602,
- "coiled": 24603,
- "tangible": 24604,
- "##dez": 24605,
- "casper": 24606,
- "elsie": 24607,
- "resin": 24608,
- "tenderness": 24609,
- "rectory": 24610,
- "##ivision": 24611,
- "avail": 24612,
- "sonar": 24613,
- "##mori": 24614,
- "boutique": 24615,
- "##dier": 24616,
- "guerre": 24617,
- "bathed": 24618,
- "upbringing": 24619,
- "vaulted": 24620,
- "sandals": 24621,
- "blessings": 24622,
- "##naut": 24623,
- "##utnant": 24624,
- "1680": 24625,
- "306": 24626,
- "foxes": 24627,
- "pia": 24628,
- "corrosion": 24629,
- "hesitantly": 24630,
- "confederates": 24631,
- "crystalline": 24632,
- "footprints": 24633,
- "shapiro": 24634,
- "tirana": 24635,
- "valentin": 24636,
- "drones": 24637,
- "45th": 24638,
- "microscope": 24639,
- "shipments": 24640,
- "texted": 24641,
- "inquisition": 24642,
- "wry": 24643,
- "guernsey": 24644,
- "unauthorized": 24645,
- "resigning": 24646,
- "760": 24647,
- "ripple": 24648,
- "schubert": 24649,
- "stu": 24650,
- "reassure": 24651,
- "felony": 24652,
- "##ardo": 24653,
- "brittle": 24654,
- "koreans": 24655,
- "##havan": 24656,
- "##ives": 24657,
- "dun": 24658,
- "implicit": 24659,
- "tyres": 24660,
- "##aldi": 24661,
- "##lth": 24662,
- "magnolia": 24663,
- "##ehan": 24664,
- "##puri": 24665,
- "##poulos": 24666,
- "aggressively": 24667,
- "fei": 24668,
- "gr": 24669,
- "familiarity": 24670,
- "##poo": 24671,
- "indicative": 24672,
- "##trust": 24673,
- "fundamentally": 24674,
- "jimmie": 24675,
- "overrun": 24676,
- "395": 24677,
- "anchors": 24678,
- "moans": 24679,
- "##opus": 24680,
- "britannia": 24681,
- "armagh": 24682,
- "##ggle": 24683,
- "purposely": 24684,
- "seizing": 24685,
- "##vao": 24686,
- "bewildered": 24687,
- "mundane": 24688,
- "avoidance": 24689,
- "cosmopolitan": 24690,
- "geometridae": 24691,
- "quartermaster": 24692,
- "caf": 24693,
- "415": 24694,
- "chatter": 24695,
- "engulfed": 24696,
- "gleam": 24697,
- "purge": 24698,
- "##icate": 24699,
- "juliette": 24700,
- "jurisprudence": 24701,
- "guerra": 24702,
- "revisions": 24703,
- "##bn": 24704,
- "casimir": 24705,
- "brew": 24706,
- "##jm": 24707,
- "1749": 24708,
- "clapton": 24709,
- "cloudy": 24710,
- "conde": 24711,
- "hermitage": 24712,
- "278": 24713,
- "simulations": 24714,
- "torches": 24715,
- "vincenzo": 24716,
- "matteo": 24717,
- "##rill": 24718,
- "hidalgo": 24719,
- "booming": 24720,
- "westbound": 24721,
- "accomplishment": 24722,
- "tentacles": 24723,
- "unaffected": 24724,
- "##sius": 24725,
- "annabelle": 24726,
- "flopped": 24727,
- "sloping": 24728,
- "##litz": 24729,
- "dreamer": 24730,
- "interceptor": 24731,
- "vu": 24732,
- "##loh": 24733,
- "consecration": 24734,
- "copying": 24735,
- "messaging": 24736,
- "breaker": 24737,
- "climates": 24738,
- "hospitalized": 24739,
- "1752": 24740,
- "torino": 24741,
- "afternoons": 24742,
- "winfield": 24743,
- "witnessing": 24744,
- "##teacher": 24745,
- "breakers": 24746,
- "choirs": 24747,
- "sawmill": 24748,
- "coldly": 24749,
- "##ege": 24750,
- "sipping": 24751,
- "haste": 24752,
- "uninhabited": 24753,
- "conical": 24754,
- "bibliography": 24755,
- "pamphlets": 24756,
- "severn": 24757,
- "edict": 24758,
- "##oca": 24759,
- "deux": 24760,
- "illnesses": 24761,
- "grips": 24762,
- "##pl": 24763,
- "rehearsals": 24764,
- "sis": 24765,
- "thinkers": 24766,
- "tame": 24767,
- "##keepers": 24768,
- "1690": 24769,
- "acacia": 24770,
- "reformer": 24771,
- "##osed": 24772,
- "##rys": 24773,
- "shuffling": 24774,
- "##iring": 24775,
- "##shima": 24776,
- "eastbound": 24777,
- "ionic": 24778,
- "rhea": 24779,
- "flees": 24780,
- "littered": 24781,
- "##oum": 24782,
- "rocker": 24783,
- "vomiting": 24784,
- "groaning": 24785,
- "champ": 24786,
- "overwhelmingly": 24787,
- "civilizations": 24788,
- "paces": 24789,
- "sloop": 24790,
- "adoptive": 24791,
- "##tish": 24792,
- "skaters": 24793,
- "##vres": 24794,
- "aiding": 24795,
- "mango": 24796,
- "##joy": 24797,
- "nikola": 24798,
- "shriek": 24799,
- "##ignon": 24800,
- "pharmaceuticals": 24801,
- "##mg": 24802,
- "tuna": 24803,
- "calvert": 24804,
- "gustavo": 24805,
- "stocked": 24806,
- "yearbook": 24807,
- "##urai": 24808,
- "##mana": 24809,
- "computed": 24810,
- "subsp": 24811,
- "riff": 24812,
- "hanoi": 24813,
- "kelvin": 24814,
- "hamid": 24815,
- "moors": 24816,
- "pastures": 24817,
- "summons": 24818,
- "jihad": 24819,
- "nectar": 24820,
- "##ctors": 24821,
- "bayou": 24822,
- "untitled": 24823,
- "pleasing": 24824,
- "vastly": 24825,
- "republics": 24826,
- "intellect": 24827,
- "##η": 24828,
- "##ulio": 24829,
- "##tou": 24830,
- "crumbling": 24831,
- "stylistic": 24832,
- "sb": 24833,
- "##ی": 24834,
- "consolation": 24835,
- "frequented": 24836,
- "h₂o": 24837,
- "walden": 24838,
- "widows": 24839,
- "##iens": 24840,
- "404": 24841,
- "##ignment": 24842,
- "chunks": 24843,
- "improves": 24844,
- "288": 24845,
- "grit": 24846,
- "recited": 24847,
- "##dev": 24848,
- "snarl": 24849,
- "sociological": 24850,
- "##arte": 24851,
- "##gul": 24852,
- "inquired": 24853,
- "##held": 24854,
- "bruise": 24855,
- "clube": 24856,
- "consultancy": 24857,
- "homogeneous": 24858,
- "hornets": 24859,
- "multiplication": 24860,
- "pasta": 24861,
- "prick": 24862,
- "savior": 24863,
- "##grin": 24864,
- "##kou": 24865,
- "##phile": 24866,
- "yoon": 24867,
- "##gara": 24868,
- "grimes": 24869,
- "vanishing": 24870,
- "cheering": 24871,
- "reacting": 24872,
- "bn": 24873,
- "distillery": 24874,
- "##quisite": 24875,
- "##vity": 24876,
- "coe": 24877,
- "dockyard": 24878,
- "massif": 24879,
- "##jord": 24880,
- "escorts": 24881,
- "voss": 24882,
- "##valent": 24883,
- "byte": 24884,
- "chopped": 24885,
- "hawke": 24886,
- "illusions": 24887,
- "workings": 24888,
- "floats": 24889,
- "##koto": 24890,
- "##vac": 24891,
- "kv": 24892,
- "annapolis": 24893,
- "madden": 24894,
- "##onus": 24895,
- "alvaro": 24896,
- "noctuidae": 24897,
- "##cum": 24898,
- "##scopic": 24899,
- "avenge": 24900,
- "steamboat": 24901,
- "forte": 24902,
- "illustrates": 24903,
- "erika": 24904,
- "##trip": 24905,
- "570": 24906,
- "dew": 24907,
- "nationalities": 24908,
- "bran": 24909,
- "manifested": 24910,
- "thirsty": 24911,
- "diversified": 24912,
- "muscled": 24913,
- "reborn": 24914,
- "##standing": 24915,
- "arson": 24916,
- "##lessness": 24917,
- "##dran": 24918,
- "##logram": 24919,
- "##boys": 24920,
- "##kushima": 24921,
- "##vious": 24922,
- "willoughby": 24923,
- "##phobia": 24924,
- "286": 24925,
- "alsace": 24926,
- "dashboard": 24927,
- "yuki": 24928,
- "##chai": 24929,
- "granville": 24930,
- "myspace": 24931,
- "publicized": 24932,
- "tricked": 24933,
- "##gang": 24934,
- "adjective": 24935,
- "##ater": 24936,
- "relic": 24937,
- "reorganisation": 24938,
- "enthusiastically": 24939,
- "indications": 24940,
- "saxe": 24941,
- "##lassified": 24942,
- "consolidate": 24943,
- "iec": 24944,
- "padua": 24945,
- "helplessly": 24946,
- "ramps": 24947,
- "renaming": 24948,
- "regulars": 24949,
- "pedestrians": 24950,
- "accents": 24951,
- "convicts": 24952,
- "inaccurate": 24953,
- "lowers": 24954,
- "mana": 24955,
- "##pati": 24956,
- "barrie": 24957,
- "bjp": 24958,
- "outta": 24959,
- "someplace": 24960,
- "berwick": 24961,
- "flanking": 24962,
- "invoked": 24963,
- "marrow": 24964,
- "sparsely": 24965,
- "excerpts": 24966,
- "clothed": 24967,
- "rei": 24968,
- "##ginal": 24969,
- "wept": 24970,
- "##straße": 24971,
- "##vish": 24972,
- "alexa": 24973,
- "excel": 24974,
- "##ptive": 24975,
- "membranes": 24976,
- "aquitaine": 24977,
- "creeks": 24978,
- "cutler": 24979,
- "sheppard": 24980,
- "implementations": 24981,
- "ns": 24982,
- "##dur": 24983,
- "fragrance": 24984,
- "budge": 24985,
- "concordia": 24986,
- "magnesium": 24987,
- "marcelo": 24988,
- "##antes": 24989,
- "gladly": 24990,
- "vibrating": 24991,
- "##rral": 24992,
- "##ggles": 24993,
- "montrose": 24994,
- "##omba": 24995,
- "lew": 24996,
- "seamus": 24997,
- "1630": 24998,
- "cocky": 24999,
- "##ament": 25000,
- "##uen": 25001,
- "bjorn": 25002,
- "##rrick": 25003,
- "fielder": 25004,
- "fluttering": 25005,
- "##lase": 25006,
- "methyl": 25007,
- "kimberley": 25008,
- "mcdowell": 25009,
- "reductions": 25010,
- "barbed": 25011,
- "##jic": 25012,
- "##tonic": 25013,
- "aeronautical": 25014,
- "condensed": 25015,
- "distracting": 25016,
- "##promising": 25017,
- "huffed": 25018,
- "##cala": 25019,
- "##sle": 25020,
- "claudius": 25021,
- "invincible": 25022,
- "missy": 25023,
- "pious": 25024,
- "balthazar": 25025,
- "ci": 25026,
- "##lang": 25027,
- "butte": 25028,
- "combo": 25029,
- "orson": 25030,
- "##dication": 25031,
- "myriad": 25032,
- "1707": 25033,
- "silenced": 25034,
- "##fed": 25035,
- "##rh": 25036,
- "coco": 25037,
- "netball": 25038,
- "yourselves": 25039,
- "##oza": 25040,
- "clarify": 25041,
- "heller": 25042,
- "peg": 25043,
- "durban": 25044,
- "etudes": 25045,
- "offender": 25046,
- "roast": 25047,
- "blackmail": 25048,
- "curvature": 25049,
- "##woods": 25050,
- "vile": 25051,
- "309": 25052,
- "illicit": 25053,
- "suriname": 25054,
- "##linson": 25055,
- "overture": 25056,
- "1685": 25057,
- "bubbling": 25058,
- "gymnast": 25059,
- "tucking": 25060,
- "##mming": 25061,
- "##ouin": 25062,
- "maldives": 25063,
- "##bala": 25064,
- "gurney": 25065,
- "##dda": 25066,
- "##eased": 25067,
- "##oides": 25068,
- "backside": 25069,
- "pinto": 25070,
- "jars": 25071,
- "racehorse": 25072,
- "tending": 25073,
- "##rdial": 25074,
- "baronetcy": 25075,
- "wiener": 25076,
- "duly": 25077,
- "##rke": 25078,
- "barbarian": 25079,
- "cupping": 25080,
- "flawed": 25081,
- "##thesis": 25082,
- "bertha": 25083,
- "pleistocene": 25084,
- "puddle": 25085,
- "swearing": 25086,
- "##nob": 25087,
- "##tically": 25088,
- "fleeting": 25089,
- "prostate": 25090,
- "amulet": 25091,
- "educating": 25092,
- "##mined": 25093,
- "##iti": 25094,
- "##tler": 25095,
- "75th": 25096,
- "jens": 25097,
- "respondents": 25098,
- "analytics": 25099,
- "cavaliers": 25100,
- "papacy": 25101,
- "raju": 25102,
- "##iente": 25103,
- "##ulum": 25104,
- "##tip": 25105,
- "funnel": 25106,
- "271": 25107,
- "disneyland": 25108,
- "##lley": 25109,
- "sociologist": 25110,
- "##iam": 25111,
- "2500": 25112,
- "faulkner": 25113,
- "louvre": 25114,
- "menon": 25115,
- "##dson": 25116,
- "276": 25117,
- "##ower": 25118,
- "afterlife": 25119,
- "mannheim": 25120,
- "peptide": 25121,
- "referees": 25122,
- "comedians": 25123,
- "meaningless": 25124,
- "##anger": 25125,
- "##laise": 25126,
- "fabrics": 25127,
- "hurley": 25128,
- "renal": 25129,
- "sleeps": 25130,
- "##bour": 25131,
- "##icle": 25132,
- "breakout": 25133,
- "kristin": 25134,
- "roadside": 25135,
- "animator": 25136,
- "clover": 25137,
- "disdain": 25138,
- "unsafe": 25139,
- "redesign": 25140,
- "##urity": 25141,
- "firth": 25142,
- "barnsley": 25143,
- "portage": 25144,
- "reset": 25145,
- "narrows": 25146,
- "268": 25147,
- "commandos": 25148,
- "expansive": 25149,
- "speechless": 25150,
- "tubular": 25151,
- "##lux": 25152,
- "essendon": 25153,
- "eyelashes": 25154,
- "smashwords": 25155,
- "##yad": 25156,
- "##bang": 25157,
- "##claim": 25158,
- "craved": 25159,
- "sprinted": 25160,
- "chet": 25161,
- "somme": 25162,
- "astor": 25163,
- "wrocław": 25164,
- "orton": 25165,
- "266": 25166,
- "bane": 25167,
- "##erving": 25168,
- "##uing": 25169,
- "mischief": 25170,
- "##amps": 25171,
- "##sund": 25172,
- "scaling": 25173,
- "terre": 25174,
- "##xious": 25175,
- "impairment": 25176,
- "offenses": 25177,
- "undermine": 25178,
- "moi": 25179,
- "soy": 25180,
- "contiguous": 25181,
- "arcadia": 25182,
- "inuit": 25183,
- "seam": 25184,
- "##tops": 25185,
- "macbeth": 25186,
- "rebelled": 25187,
- "##icative": 25188,
- "##iot": 25189,
- "590": 25190,
- "elaborated": 25191,
- "frs": 25192,
- "uniformed": 25193,
- "##dberg": 25194,
- "259": 25195,
- "powerless": 25196,
- "priscilla": 25197,
- "stimulated": 25198,
- "980": 25199,
- "qc": 25200,
- "arboretum": 25201,
- "frustrating": 25202,
- "trieste": 25203,
- "bullock": 25204,
- "##nified": 25205,
- "enriched": 25206,
- "glistening": 25207,
- "intern": 25208,
- "##adia": 25209,
- "locus": 25210,
- "nouvelle": 25211,
- "ollie": 25212,
- "ike": 25213,
- "lash": 25214,
- "starboard": 25215,
- "ee": 25216,
- "tapestry": 25217,
- "headlined": 25218,
- "hove": 25219,
- "rigged": 25220,
- "##vite": 25221,
- "pollock": 25222,
- "##yme": 25223,
- "thrive": 25224,
- "clustered": 25225,
- "cas": 25226,
- "roi": 25227,
- "gleamed": 25228,
- "olympiad": 25229,
- "##lino": 25230,
- "pressured": 25231,
- "regimes": 25232,
- "##hosis": 25233,
- "##lick": 25234,
- "ripley": 25235,
- "##ophone": 25236,
- "kickoff": 25237,
- "gallon": 25238,
- "rockwell": 25239,
- "##arable": 25240,
- "crusader": 25241,
- "glue": 25242,
- "revolutions": 25243,
- "scrambling": 25244,
- "1714": 25245,
- "grover": 25246,
- "##jure": 25247,
- "englishman": 25248,
- "aztec": 25249,
- "263": 25250,
- "contemplating": 25251,
- "coven": 25252,
- "ipad": 25253,
- "preach": 25254,
- "triumphant": 25255,
- "tufts": 25256,
- "##esian": 25257,
- "rotational": 25258,
- "##phus": 25259,
- "328": 25260,
- "falkland": 25261,
- "##brates": 25262,
- "strewn": 25263,
- "clarissa": 25264,
- "rejoin": 25265,
- "environmentally": 25266,
- "glint": 25267,
- "banded": 25268,
- "drenched": 25269,
- "moat": 25270,
- "albanians": 25271,
- "johor": 25272,
- "rr": 25273,
- "maestro": 25274,
- "malley": 25275,
- "nouveau": 25276,
- "shaded": 25277,
- "taxonomy": 25278,
- "v6": 25279,
- "adhere": 25280,
- "bunk": 25281,
- "airfields": 25282,
- "##ritan": 25283,
- "1741": 25284,
- "encompass": 25285,
- "remington": 25286,
- "tran": 25287,
- "##erative": 25288,
- "amelie": 25289,
- "mazda": 25290,
- "friar": 25291,
- "morals": 25292,
- "passions": 25293,
- "##zai": 25294,
- "breadth": 25295,
- "vis": 25296,
- "##hae": 25297,
- "argus": 25298,
- "burnham": 25299,
- "caressing": 25300,
- "insider": 25301,
- "rudd": 25302,
- "##imov": 25303,
- "##mini": 25304,
- "##rso": 25305,
- "italianate": 25306,
- "murderous": 25307,
- "textual": 25308,
- "wainwright": 25309,
- "armada": 25310,
- "bam": 25311,
- "weave": 25312,
- "timer": 25313,
- "##taken": 25314,
- "##nh": 25315,
- "fra": 25316,
- "##crest": 25317,
- "ardent": 25318,
- "salazar": 25319,
- "taps": 25320,
- "tunis": 25321,
- "##ntino": 25322,
- "allegro": 25323,
- "gland": 25324,
- "philanthropic": 25325,
- "##chester": 25326,
- "implication": 25327,
- "##optera": 25328,
- "esq": 25329,
- "judas": 25330,
- "noticeably": 25331,
- "wynn": 25332,
- "##dara": 25333,
- "inched": 25334,
- "indexed": 25335,
- "crises": 25336,
- "villiers": 25337,
- "bandit": 25338,
- "royalties": 25339,
- "patterned": 25340,
- "cupboard": 25341,
- "interspersed": 25342,
- "accessory": 25343,
- "isla": 25344,
- "kendrick": 25345,
- "entourage": 25346,
- "stitches": 25347,
- "##esthesia": 25348,
- "headwaters": 25349,
- "##ior": 25350,
- "interlude": 25351,
- "distraught": 25352,
- "draught": 25353,
- "1727": 25354,
- "##basket": 25355,
- "biased": 25356,
- "sy": 25357,
- "transient": 25358,
- "triad": 25359,
- "subgenus": 25360,
- "adapting": 25361,
- "kidd": 25362,
- "shortstop": 25363,
- "##umatic": 25364,
- "dimly": 25365,
- "spiked": 25366,
- "mcleod": 25367,
- "reprint": 25368,
- "nellie": 25369,
- "pretoria": 25370,
- "windmill": 25371,
- "##cek": 25372,
- "singled": 25373,
- "##mps": 25374,
- "273": 25375,
- "reunite": 25376,
- "##orous": 25377,
- "747": 25378,
- "bankers": 25379,
- "outlying": 25380,
- "##omp": 25381,
- "##ports": 25382,
- "##tream": 25383,
- "apologies": 25384,
- "cosmetics": 25385,
- "patsy": 25386,
- "##deh": 25387,
- "##ocks": 25388,
- "##yson": 25389,
- "bender": 25390,
- "nantes": 25391,
- "serene": 25392,
- "##nad": 25393,
- "lucha": 25394,
- "mmm": 25395,
- "323": 25396,
- "##cius": 25397,
- "##gli": 25398,
- "cmll": 25399,
- "coinage": 25400,
- "nestor": 25401,
- "juarez": 25402,
- "##rook": 25403,
- "smeared": 25404,
- "sprayed": 25405,
- "twitching": 25406,
- "sterile": 25407,
- "irina": 25408,
- "embodied": 25409,
- "juveniles": 25410,
- "enveloped": 25411,
- "miscellaneous": 25412,
- "cancers": 25413,
- "dq": 25414,
- "gulped": 25415,
- "luisa": 25416,
- "crested": 25417,
- "swat": 25418,
- "donegal": 25419,
- "ref": 25420,
- "##anov": 25421,
- "##acker": 25422,
- "hearst": 25423,
- "mercantile": 25424,
- "##lika": 25425,
- "doorbell": 25426,
- "ua": 25427,
- "vicki": 25428,
- "##alla": 25429,
- "##som": 25430,
- "bilbao": 25431,
- "psychologists": 25432,
- "stryker": 25433,
- "sw": 25434,
- "horsemen": 25435,
- "turkmenistan": 25436,
- "wits": 25437,
- "##national": 25438,
- "anson": 25439,
- "mathew": 25440,
- "screenings": 25441,
- "##umb": 25442,
- "rihanna": 25443,
- "##agne": 25444,
- "##nessy": 25445,
- "aisles": 25446,
- "##iani": 25447,
- "##osphere": 25448,
- "hines": 25449,
- "kenton": 25450,
- "saskatoon": 25451,
- "tasha": 25452,
- "truncated": 25453,
- "##champ": 25454,
- "##itan": 25455,
- "mildred": 25456,
- "advises": 25457,
- "fredrik": 25458,
- "interpreting": 25459,
- "inhibitors": 25460,
- "##athi": 25461,
- "spectroscopy": 25462,
- "##hab": 25463,
- "##kong": 25464,
- "karim": 25465,
- "panda": 25466,
- "##oia": 25467,
- "##nail": 25468,
- "##vc": 25469,
- "conqueror": 25470,
- "kgb": 25471,
- "leukemia": 25472,
- "##dity": 25473,
- "arrivals": 25474,
- "cheered": 25475,
- "pisa": 25476,
- "phosphorus": 25477,
- "shielded": 25478,
- "##riated": 25479,
- "mammal": 25480,
- "unitarian": 25481,
- "urgently": 25482,
- "chopin": 25483,
- "sanitary": 25484,
- "##mission": 25485,
- "spicy": 25486,
- "drugged": 25487,
- "hinges": 25488,
- "##tort": 25489,
- "tipping": 25490,
- "trier": 25491,
- "impoverished": 25492,
- "westchester": 25493,
- "##caster": 25494,
- "267": 25495,
- "epoch": 25496,
- "nonstop": 25497,
- "##gman": 25498,
- "##khov": 25499,
- "aromatic": 25500,
- "centrally": 25501,
- "cerro": 25502,
- "##tively": 25503,
- "##vio": 25504,
- "billions": 25505,
- "modulation": 25506,
- "sedimentary": 25507,
- "283": 25508,
- "facilitating": 25509,
- "outrageous": 25510,
- "goldstein": 25511,
- "##eak": 25512,
- "##kt": 25513,
- "ld": 25514,
- "maitland": 25515,
- "penultimate": 25516,
- "pollard": 25517,
- "##dance": 25518,
- "fleets": 25519,
- "spaceship": 25520,
- "vertebrae": 25521,
- "##nig": 25522,
- "alcoholism": 25523,
- "als": 25524,
- "recital": 25525,
- "##bham": 25526,
- "##ference": 25527,
- "##omics": 25528,
- "m2": 25529,
- "##bm": 25530,
- "trois": 25531,
- "##tropical": 25532,
- "##в": 25533,
- "commemorates": 25534,
- "##meric": 25535,
- "marge": 25536,
- "##raction": 25537,
- "1643": 25538,
- "670": 25539,
- "cosmetic": 25540,
- "ravaged": 25541,
- "##ige": 25542,
- "catastrophe": 25543,
- "eng": 25544,
- "##shida": 25545,
- "albrecht": 25546,
- "arterial": 25547,
- "bellamy": 25548,
- "decor": 25549,
- "harmon": 25550,
- "##rde": 25551,
- "bulbs": 25552,
- "synchronized": 25553,
- "vito": 25554,
- "easiest": 25555,
- "shetland": 25556,
- "shielding": 25557,
- "wnba": 25558,
- "##glers": 25559,
- "##ssar": 25560,
- "##riam": 25561,
- "brianna": 25562,
- "cumbria": 25563,
- "##aceous": 25564,
- "##rard": 25565,
- "cores": 25566,
- "thayer": 25567,
- "##nsk": 25568,
- "brood": 25569,
- "hilltop": 25570,
- "luminous": 25571,
- "carts": 25572,
- "keynote": 25573,
- "larkin": 25574,
- "logos": 25575,
- "##cta": 25576,
- "##ا": 25577,
- "##mund": 25578,
- "##quay": 25579,
- "lilith": 25580,
- "tinted": 25581,
- "277": 25582,
- "wrestle": 25583,
- "mobilization": 25584,
- "##uses": 25585,
- "sequential": 25586,
- "siam": 25587,
- "bloomfield": 25588,
- "takahashi": 25589,
- "274": 25590,
- "##ieving": 25591,
- "presenters": 25592,
- "ringo": 25593,
- "blazed": 25594,
- "witty": 25595,
- "##oven": 25596,
- "##ignant": 25597,
- "devastation": 25598,
- "haydn": 25599,
- "harmed": 25600,
- "newt": 25601,
- "therese": 25602,
- "##peed": 25603,
- "gershwin": 25604,
- "molina": 25605,
- "rabbis": 25606,
- "sudanese": 25607,
- "001": 25608,
- "innate": 25609,
- "restarted": 25610,
- "##sack": 25611,
- "##fus": 25612,
- "slices": 25613,
- "wb": 25614,
- "##shah": 25615,
- "enroll": 25616,
- "hypothetical": 25617,
- "hysterical": 25618,
- "1743": 25619,
- "fabio": 25620,
- "indefinite": 25621,
- "warped": 25622,
- "##hg": 25623,
- "exchanging": 25624,
- "525": 25625,
- "unsuitable": 25626,
- "##sboro": 25627,
- "gallo": 25628,
- "1603": 25629,
- "bret": 25630,
- "cobalt": 25631,
- "homemade": 25632,
- "##hunter": 25633,
- "mx": 25634,
- "operatives": 25635,
- "##dhar": 25636,
- "terraces": 25637,
- "durable": 25638,
- "latch": 25639,
- "pens": 25640,
- "whorls": 25641,
- "##ctuated": 25642,
- "##eaux": 25643,
- "billing": 25644,
- "ligament": 25645,
- "succumbed": 25646,
- "##gly": 25647,
- "regulators": 25648,
- "spawn": 25649,
- "##brick": 25650,
- "##stead": 25651,
- "filmfare": 25652,
- "rochelle": 25653,
- "##nzo": 25654,
- "1725": 25655,
- "circumstance": 25656,
- "saber": 25657,
- "supplements": 25658,
- "##nsky": 25659,
- "##tson": 25660,
- "crowe": 25661,
- "wellesley": 25662,
- "carrot": 25663,
- "##9th": 25664,
- "##movable": 25665,
- "primate": 25666,
- "drury": 25667,
- "sincerely": 25668,
- "topical": 25669,
- "##mad": 25670,
- "##rao": 25671,
- "callahan": 25672,
- "kyiv": 25673,
- "smarter": 25674,
- "tits": 25675,
- "undo": 25676,
- "##yeh": 25677,
- "announcements": 25678,
- "anthologies": 25679,
- "barrio": 25680,
- "nebula": 25681,
- "##islaus": 25682,
- "##shaft": 25683,
- "##tyn": 25684,
- "bodyguards": 25685,
- "2021": 25686,
- "assassinate": 25687,
- "barns": 25688,
- "emmett": 25689,
- "scully": 25690,
- "##mah": 25691,
- "##yd": 25692,
- "##eland": 25693,
- "##tino": 25694,
- "##itarian": 25695,
- "demoted": 25696,
- "gorman": 25697,
- "lashed": 25698,
- "prized": 25699,
- "adventist": 25700,
- "writ": 25701,
- "##gui": 25702,
- "alla": 25703,
- "invertebrates": 25704,
- "##ausen": 25705,
- "1641": 25706,
- "amman": 25707,
- "1742": 25708,
- "align": 25709,
- "healy": 25710,
- "redistribution": 25711,
- "##gf": 25712,
- "##rize": 25713,
- "insulation": 25714,
- "##drop": 25715,
- "adherents": 25716,
- "hezbollah": 25717,
- "vitro": 25718,
- "ferns": 25719,
- "yanking": 25720,
- "269": 25721,
- "php": 25722,
- "registering": 25723,
- "uppsala": 25724,
- "cheerleading": 25725,
- "confines": 25726,
- "mischievous": 25727,
- "tully": 25728,
- "##ross": 25729,
- "49th": 25730,
- "docked": 25731,
- "roam": 25732,
- "stipulated": 25733,
- "pumpkin": 25734,
- "##bry": 25735,
- "prompt": 25736,
- "##ezer": 25737,
- "blindly": 25738,
- "shuddering": 25739,
- "craftsmen": 25740,
- "frail": 25741,
- "scented": 25742,
- "katharine": 25743,
- "scramble": 25744,
- "shaggy": 25745,
- "sponge": 25746,
- "helix": 25747,
- "zaragoza": 25748,
- "279": 25749,
- "##52": 25750,
- "43rd": 25751,
- "backlash": 25752,
- "fontaine": 25753,
- "seizures": 25754,
- "posse": 25755,
- "cowan": 25756,
- "nonfiction": 25757,
- "telenovela": 25758,
- "wwii": 25759,
- "hammered": 25760,
- "undone": 25761,
- "##gpur": 25762,
- "encircled": 25763,
- "irs": 25764,
- "##ivation": 25765,
- "artefacts": 25766,
- "oneself": 25767,
- "searing": 25768,
- "smallpox": 25769,
- "##belle": 25770,
- "##osaurus": 25771,
- "shandong": 25772,
- "breached": 25773,
- "upland": 25774,
- "blushing": 25775,
- "rankin": 25776,
- "infinitely": 25777,
- "psyche": 25778,
- "tolerated": 25779,
- "docking": 25780,
- "evicted": 25781,
- "##col": 25782,
- "unmarked": 25783,
- "##lving": 25784,
- "gnome": 25785,
- "lettering": 25786,
- "litres": 25787,
- "musique": 25788,
- "##oint": 25789,
- "benevolent": 25790,
- "##jal": 25791,
- "blackened": 25792,
- "##anna": 25793,
- "mccall": 25794,
- "racers": 25795,
- "tingle": 25796,
- "##ocene": 25797,
- "##orestation": 25798,
- "introductions": 25799,
- "radically": 25800,
- "292": 25801,
- "##hiff": 25802,
- "##باد": 25803,
- "1610": 25804,
- "1739": 25805,
- "munchen": 25806,
- "plead": 25807,
- "##nka": 25808,
- "condo": 25809,
- "scissors": 25810,
- "##sight": 25811,
- "##tens": 25812,
- "apprehension": 25813,
- "##cey": 25814,
- "##yin": 25815,
- "hallmark": 25816,
- "watering": 25817,
- "formulas": 25818,
- "sequels": 25819,
- "##llas": 25820,
- "aggravated": 25821,
- "bae": 25822,
- "commencing": 25823,
- "##building": 25824,
- "enfield": 25825,
- "prohibits": 25826,
- "marne": 25827,
- "vedic": 25828,
- "civilized": 25829,
- "euclidean": 25830,
- "jagger": 25831,
- "beforehand": 25832,
- "blasts": 25833,
- "dumont": 25834,
- "##arney": 25835,
- "##nem": 25836,
- "740": 25837,
- "conversions": 25838,
- "hierarchical": 25839,
- "rios": 25840,
- "simulator": 25841,
- "##dya": 25842,
- "##lellan": 25843,
- "hedges": 25844,
- "oleg": 25845,
- "thrusts": 25846,
- "shadowed": 25847,
- "darby": 25848,
- "maximize": 25849,
- "1744": 25850,
- "gregorian": 25851,
- "##nded": 25852,
- "##routed": 25853,
- "sham": 25854,
- "unspecified": 25855,
- "##hog": 25856,
- "emory": 25857,
- "factual": 25858,
- "##smo": 25859,
- "##tp": 25860,
- "fooled": 25861,
- "##rger": 25862,
- "ortega": 25863,
- "wellness": 25864,
- "marlon": 25865,
- "##oton": 25866,
- "##urance": 25867,
- "casket": 25868,
- "keating": 25869,
- "ley": 25870,
- "enclave": 25871,
- "##ayan": 25872,
- "char": 25873,
- "influencing": 25874,
- "jia": 25875,
- "##chenko": 25876,
- "412": 25877,
- "ammonia": 25878,
- "erebidae": 25879,
- "incompatible": 25880,
- "violins": 25881,
- "cornered": 25882,
- "##arat": 25883,
- "grooves": 25884,
- "astronauts": 25885,
- "columbian": 25886,
- "rampant": 25887,
- "fabrication": 25888,
- "kyushu": 25889,
- "mahmud": 25890,
- "vanish": 25891,
- "##dern": 25892,
- "mesopotamia": 25893,
- "##lete": 25894,
- "ict": 25895,
- "##rgen": 25896,
- "caspian": 25897,
- "kenji": 25898,
- "pitted": 25899,
- "##vered": 25900,
- "999": 25901,
- "grimace": 25902,
- "roanoke": 25903,
- "tchaikovsky": 25904,
- "twinned": 25905,
- "##analysis": 25906,
- "##awan": 25907,
- "xinjiang": 25908,
- "arias": 25909,
- "clemson": 25910,
- "kazakh": 25911,
- "sizable": 25912,
- "1662": 25913,
- "##khand": 25914,
- "##vard": 25915,
- "plunge": 25916,
- "tatum": 25917,
- "vittorio": 25918,
- "##nden": 25919,
- "cholera": 25920,
- "##dana": 25921,
- "##oper": 25922,
- "bracing": 25923,
- "indifference": 25924,
- "projectile": 25925,
- "superliga": 25926,
- "##chee": 25927,
- "realises": 25928,
- "upgrading": 25929,
- "299": 25930,
- "porte": 25931,
- "retribution": 25932,
- "##vies": 25933,
- "nk": 25934,
- "stil": 25935,
- "##resses": 25936,
- "ama": 25937,
- "bureaucracy": 25938,
- "blackberry": 25939,
- "bosch": 25940,
- "testosterone": 25941,
- "collapses": 25942,
- "greer": 25943,
- "##pathic": 25944,
- "ioc": 25945,
- "fifties": 25946,
- "malls": 25947,
- "##erved": 25948,
- "bao": 25949,
- "baskets": 25950,
- "adolescents": 25951,
- "siegfried": 25952,
- "##osity": 25953,
- "##tosis": 25954,
- "mantra": 25955,
- "detecting": 25956,
- "existent": 25957,
- "fledgling": 25958,
- "##cchi": 25959,
- "dissatisfied": 25960,
- "gan": 25961,
- "telecommunication": 25962,
- "mingled": 25963,
- "sobbed": 25964,
- "6000": 25965,
- "controversies": 25966,
- "outdated": 25967,
- "taxis": 25968,
- "##raus": 25969,
- "fright": 25970,
- "slams": 25971,
- "##lham": 25972,
- "##fect": 25973,
- "##tten": 25974,
- "detectors": 25975,
- "fetal": 25976,
- "tanned": 25977,
- "##uw": 25978,
- "fray": 25979,
- "goth": 25980,
- "olympian": 25981,
- "skipping": 25982,
- "mandates": 25983,
- "scratches": 25984,
- "sheng": 25985,
- "unspoken": 25986,
- "hyundai": 25987,
- "tracey": 25988,
- "hotspur": 25989,
- "restrictive": 25990,
- "##buch": 25991,
- "americana": 25992,
- "mundo": 25993,
- "##bari": 25994,
- "burroughs": 25995,
- "diva": 25996,
- "vulcan": 25997,
- "##6th": 25998,
- "distinctions": 25999,
- "thumping": 26000,
- "##ngen": 26001,
- "mikey": 26002,
- "sheds": 26003,
- "fide": 26004,
- "rescues": 26005,
- "springsteen": 26006,
- "vested": 26007,
- "valuation": 26008,
- "##ece": 26009,
- "##ely": 26010,
- "pinnacle": 26011,
- "rake": 26012,
- "sylvie": 26013,
- "##edo": 26014,
- "almond": 26015,
- "quivering": 26016,
- "##irus": 26017,
- "alteration": 26018,
- "faltered": 26019,
- "##wad": 26020,
- "51st": 26021,
- "hydra": 26022,
- "ticked": 26023,
- "##kato": 26024,
- "recommends": 26025,
- "##dicated": 26026,
- "antigua": 26027,
- "arjun": 26028,
- "stagecoach": 26029,
- "wilfred": 26030,
- "trickle": 26031,
- "pronouns": 26032,
- "##pon": 26033,
- "aryan": 26034,
- "nighttime": 26035,
- "##anian": 26036,
- "gall": 26037,
- "pea": 26038,
- "stitch": 26039,
- "##hei": 26040,
- "leung": 26041,
- "milos": 26042,
- "##dini": 26043,
- "eritrea": 26044,
- "nexus": 26045,
- "starved": 26046,
- "snowfall": 26047,
- "kant": 26048,
- "parasitic": 26049,
- "cot": 26050,
- "discus": 26051,
- "hana": 26052,
- "strikers": 26053,
- "appleton": 26054,
- "kitchens": 26055,
- "##erina": 26056,
- "##partisan": 26057,
- "##itha": 26058,
- "##vius": 26059,
- "disclose": 26060,
- "metis": 26061,
- "##channel": 26062,
- "1701": 26063,
- "tesla": 26064,
- "##vera": 26065,
- "fitch": 26066,
- "1735": 26067,
- "blooded": 26068,
- "##tila": 26069,
- "decimal": 26070,
- "##tang": 26071,
- "##bai": 26072,
- "cyclones": 26073,
- "eun": 26074,
- "bottled": 26075,
- "peas": 26076,
- "pensacola": 26077,
- "basha": 26078,
- "bolivian": 26079,
- "crabs": 26080,
- "boil": 26081,
- "lanterns": 26082,
- "partridge": 26083,
- "roofed": 26084,
- "1645": 26085,
- "necks": 26086,
- "##phila": 26087,
- "opined": 26088,
- "patting": 26089,
- "##kla": 26090,
- "##lland": 26091,
- "chuckles": 26092,
- "volta": 26093,
- "whereupon": 26094,
- "##nche": 26095,
- "devout": 26096,
- "euroleague": 26097,
- "suicidal": 26098,
- "##dee": 26099,
- "inherently": 26100,
- "involuntary": 26101,
- "knitting": 26102,
- "nasser": 26103,
- "##hide": 26104,
- "puppets": 26105,
- "colourful": 26106,
- "courageous": 26107,
- "southend": 26108,
- "stills": 26109,
- "miraculous": 26110,
- "hodgson": 26111,
- "richer": 26112,
- "rochdale": 26113,
- "ethernet": 26114,
- "greta": 26115,
- "uniting": 26116,
- "prism": 26117,
- "umm": 26118,
- "##haya": 26119,
- "##itical": 26120,
- "##utation": 26121,
- "deterioration": 26122,
- "pointe": 26123,
- "prowess": 26124,
- "##ropriation": 26125,
- "lids": 26126,
- "scranton": 26127,
- "billings": 26128,
- "subcontinent": 26129,
- "##koff": 26130,
- "##scope": 26131,
- "brute": 26132,
- "kellogg": 26133,
- "psalms": 26134,
- "degraded": 26135,
- "##vez": 26136,
- "stanisław": 26137,
- "##ructured": 26138,
- "ferreira": 26139,
- "pun": 26140,
- "astonishing": 26141,
- "gunnar": 26142,
- "##yat": 26143,
- "arya": 26144,
- "prc": 26145,
- "gottfried": 26146,
- "##tight": 26147,
- "excursion": 26148,
- "##ographer": 26149,
- "dina": 26150,
- "##quil": 26151,
- "##nare": 26152,
- "huffington": 26153,
- "illustrious": 26154,
- "wilbur": 26155,
- "gundam": 26156,
- "verandah": 26157,
- "##zard": 26158,
- "naacp": 26159,
- "##odle": 26160,
- "constructive": 26161,
- "fjord": 26162,
- "kade": 26163,
- "##naud": 26164,
- "generosity": 26165,
- "thrilling": 26166,
- "baseline": 26167,
- "cayman": 26168,
- "frankish": 26169,
- "plastics": 26170,
- "accommodations": 26171,
- "zoological": 26172,
- "##fting": 26173,
- "cedric": 26174,
- "qb": 26175,
- "motorized": 26176,
- "##dome": 26177,
- "##otted": 26178,
- "squealed": 26179,
- "tackled": 26180,
- "canucks": 26181,
- "budgets": 26182,
- "situ": 26183,
- "asthma": 26184,
- "dail": 26185,
- "gabled": 26186,
- "grasslands": 26187,
- "whimpered": 26188,
- "writhing": 26189,
- "judgments": 26190,
- "##65": 26191,
- "minnie": 26192,
- "pv": 26193,
- "##carbon": 26194,
- "bananas": 26195,
- "grille": 26196,
- "domes": 26197,
- "monique": 26198,
- "odin": 26199,
- "maguire": 26200,
- "markham": 26201,
- "tierney": 26202,
- "##estra": 26203,
- "##chua": 26204,
- "libel": 26205,
- "poke": 26206,
- "speedy": 26207,
- "atrium": 26208,
- "laval": 26209,
- "notwithstanding": 26210,
- "##edly": 26211,
- "fai": 26212,
- "kala": 26213,
- "##sur": 26214,
- "robb": 26215,
- "##sma": 26216,
- "listings": 26217,
- "luz": 26218,
- "supplementary": 26219,
- "tianjin": 26220,
- "##acing": 26221,
- "enzo": 26222,
- "jd": 26223,
- "ric": 26224,
- "scanner": 26225,
- "croats": 26226,
- "transcribed": 26227,
- "##49": 26228,
- "arden": 26229,
- "cv": 26230,
- "##hair": 26231,
- "##raphy": 26232,
- "##lver": 26233,
- "##uy": 26234,
- "357": 26235,
- "seventies": 26236,
- "staggering": 26237,
- "alam": 26238,
- "horticultural": 26239,
- "hs": 26240,
- "regression": 26241,
- "timbers": 26242,
- "blasting": 26243,
- "##ounded": 26244,
- "montagu": 26245,
- "manipulating": 26246,
- "##cit": 26247,
- "catalytic": 26248,
- "1550": 26249,
- "troopers": 26250,
- "##meo": 26251,
- "condemnation": 26252,
- "fitzpatrick": 26253,
- "##oire": 26254,
- "##roved": 26255,
- "inexperienced": 26256,
- "1670": 26257,
- "castes": 26258,
- "##lative": 26259,
- "outing": 26260,
- "314": 26261,
- "dubois": 26262,
- "flicking": 26263,
- "quarrel": 26264,
- "ste": 26265,
- "learners": 26266,
- "1625": 26267,
- "iq": 26268,
- "whistled": 26269,
- "##class": 26270,
- "282": 26271,
- "classify": 26272,
- "tariffs": 26273,
- "temperament": 26274,
- "355": 26275,
- "folly": 26276,
- "liszt": 26277,
- "##yles": 26278,
- "immersed": 26279,
- "jordanian": 26280,
- "ceasefire": 26281,
- "apparel": 26282,
- "extras": 26283,
- "maru": 26284,
- "fished": 26285,
- "##bio": 26286,
- "harta": 26287,
- "stockport": 26288,
- "assortment": 26289,
- "craftsman": 26290,
- "paralysis": 26291,
- "transmitters": 26292,
- "##cola": 26293,
- "blindness": 26294,
- "##wk": 26295,
- "fatally": 26296,
- "proficiency": 26297,
- "solemnly": 26298,
- "##orno": 26299,
- "repairing": 26300,
- "amore": 26301,
- "groceries": 26302,
- "ultraviolet": 26303,
- "##chase": 26304,
- "schoolhouse": 26305,
- "##tua": 26306,
- "resurgence": 26307,
- "nailed": 26308,
- "##otype": 26309,
- "##×": 26310,
- "ruse": 26311,
- "saliva": 26312,
- "diagrams": 26313,
- "##tructing": 26314,
- "albans": 26315,
- "rann": 26316,
- "thirties": 26317,
- "1b": 26318,
- "antennas": 26319,
- "hilarious": 26320,
- "cougars": 26321,
- "paddington": 26322,
- "stats": 26323,
- "##eger": 26324,
- "breakaway": 26325,
- "ipod": 26326,
- "reza": 26327,
- "authorship": 26328,
- "prohibiting": 26329,
- "scoffed": 26330,
- "##etz": 26331,
- "##ttle": 26332,
- "conscription": 26333,
- "defected": 26334,
- "trondheim": 26335,
- "##fires": 26336,
- "ivanov": 26337,
- "keenan": 26338,
- "##adan": 26339,
- "##ciful": 26340,
- "##fb": 26341,
- "##slow": 26342,
- "locating": 26343,
- "##ials": 26344,
- "##tford": 26345,
- "cadiz": 26346,
- "basalt": 26347,
- "blankly": 26348,
- "interned": 26349,
- "rags": 26350,
- "rattling": 26351,
- "##tick": 26352,
- "carpathian": 26353,
- "reassured": 26354,
- "sync": 26355,
- "bum": 26356,
- "guildford": 26357,
- "iss": 26358,
- "staunch": 26359,
- "##onga": 26360,
- "astronomers": 26361,
- "sera": 26362,
- "sofie": 26363,
- "emergencies": 26364,
- "susquehanna": 26365,
- "##heard": 26366,
- "duc": 26367,
- "mastery": 26368,
- "vh1": 26369,
- "williamsburg": 26370,
- "bayer": 26371,
- "buckled": 26372,
- "craving": 26373,
- "##khan": 26374,
- "##rdes": 26375,
- "bloomington": 26376,
- "##write": 26377,
- "alton": 26378,
- "barbecue": 26379,
- "##bians": 26380,
- "justine": 26381,
- "##hri": 26382,
- "##ndt": 26383,
- "delightful": 26384,
- "smartphone": 26385,
- "newtown": 26386,
- "photon": 26387,
- "retrieval": 26388,
- "peugeot": 26389,
- "hissing": 26390,
- "##monium": 26391,
- "##orough": 26392,
- "flavors": 26393,
- "lighted": 26394,
- "relaunched": 26395,
- "tainted": 26396,
- "##games": 26397,
- "##lysis": 26398,
- "anarchy": 26399,
- "microscopic": 26400,
- "hopping": 26401,
- "adept": 26402,
- "evade": 26403,
- "evie": 26404,
- "##beau": 26405,
- "inhibit": 26406,
- "sinn": 26407,
- "adjustable": 26408,
- "hurst": 26409,
- "intuition": 26410,
- "wilton": 26411,
- "cisco": 26412,
- "44th": 26413,
- "lawful": 26414,
- "lowlands": 26415,
- "stockings": 26416,
- "thierry": 26417,
- "##dalen": 26418,
- "##hila": 26419,
- "##nai": 26420,
- "fates": 26421,
- "prank": 26422,
- "tb": 26423,
- "maison": 26424,
- "lobbied": 26425,
- "provocative": 26426,
- "1724": 26427,
- "4a": 26428,
- "utopia": 26429,
- "##qual": 26430,
- "carbonate": 26431,
- "gujarati": 26432,
- "purcell": 26433,
- "##rford": 26434,
- "curtiss": 26435,
- "##mei": 26436,
- "overgrown": 26437,
- "arenas": 26438,
- "mediation": 26439,
- "swallows": 26440,
- "##rnik": 26441,
- "respectful": 26442,
- "turnbull": 26443,
- "##hedron": 26444,
- "##hope": 26445,
- "alyssa": 26446,
- "ozone": 26447,
- "##ʻi": 26448,
- "ami": 26449,
- "gestapo": 26450,
- "johansson": 26451,
- "snooker": 26452,
- "canteen": 26453,
- "cuff": 26454,
- "declines": 26455,
- "empathy": 26456,
- "stigma": 26457,
- "##ags": 26458,
- "##iner": 26459,
- "##raine": 26460,
- "taxpayers": 26461,
- "gui": 26462,
- "volga": 26463,
- "##wright": 26464,
- "##copic": 26465,
- "lifespan": 26466,
- "overcame": 26467,
- "tattooed": 26468,
- "enactment": 26469,
- "giggles": 26470,
- "##ador": 26471,
- "##camp": 26472,
- "barrington": 26473,
- "bribe": 26474,
- "obligatory": 26475,
- "orbiting": 26476,
- "peng": 26477,
- "##enas": 26478,
- "elusive": 26479,
- "sucker": 26480,
- "##vating": 26481,
- "cong": 26482,
- "hardship": 26483,
- "empowered": 26484,
- "anticipating": 26485,
- "estrada": 26486,
- "cryptic": 26487,
- "greasy": 26488,
- "detainees": 26489,
- "planck": 26490,
- "sudbury": 26491,
- "plaid": 26492,
- "dod": 26493,
- "marriott": 26494,
- "kayla": 26495,
- "##ears": 26496,
- "##vb": 26497,
- "##zd": 26498,
- "mortally": 26499,
- "##hein": 26500,
- "cognition": 26501,
- "radha": 26502,
- "319": 26503,
- "liechtenstein": 26504,
- "meade": 26505,
- "richly": 26506,
- "argyle": 26507,
- "harpsichord": 26508,
- "liberalism": 26509,
- "trumpets": 26510,
- "lauded": 26511,
- "tyrant": 26512,
- "salsa": 26513,
- "tiled": 26514,
- "lear": 26515,
- "promoters": 26516,
- "reused": 26517,
- "slicing": 26518,
- "trident": 26519,
- "##chuk": 26520,
- "##gami": 26521,
- "##lka": 26522,
- "cantor": 26523,
- "checkpoint": 26524,
- "##points": 26525,
- "gaul": 26526,
- "leger": 26527,
- "mammalian": 26528,
- "##tov": 26529,
- "##aar": 26530,
- "##schaft": 26531,
- "doha": 26532,
- "frenchman": 26533,
- "nirvana": 26534,
- "##vino": 26535,
- "delgado": 26536,
- "headlining": 26537,
- "##eron": 26538,
- "##iography": 26539,
- "jug": 26540,
- "tko": 26541,
- "1649": 26542,
- "naga": 26543,
- "intersections": 26544,
- "##jia": 26545,
- "benfica": 26546,
- "nawab": 26547,
- "##suka": 26548,
- "ashford": 26549,
- "gulp": 26550,
- "##deck": 26551,
- "##vill": 26552,
- "##rug": 26553,
- "brentford": 26554,
- "frazier": 26555,
- "pleasures": 26556,
- "dunne": 26557,
- "potsdam": 26558,
- "shenzhen": 26559,
- "dentistry": 26560,
- "##tec": 26561,
- "flanagan": 26562,
- "##dorff": 26563,
- "##hear": 26564,
- "chorale": 26565,
- "dinah": 26566,
- "prem": 26567,
- "quezon": 26568,
- "##rogated": 26569,
- "relinquished": 26570,
- "sutra": 26571,
- "terri": 26572,
- "##pani": 26573,
- "flaps": 26574,
- "##rissa": 26575,
- "poly": 26576,
- "##rnet": 26577,
- "homme": 26578,
- "aback": 26579,
- "##eki": 26580,
- "linger": 26581,
- "womb": 26582,
- "##kson": 26583,
- "##lewood": 26584,
- "doorstep": 26585,
- "orthodoxy": 26586,
- "threaded": 26587,
- "westfield": 26588,
- "##rval": 26589,
- "dioceses": 26590,
- "fridays": 26591,
- "subsided": 26592,
- "##gata": 26593,
- "loyalists": 26594,
- "##biotic": 26595,
- "##ettes": 26596,
- "letterman": 26597,
- "lunatic": 26598,
- "prelate": 26599,
- "tenderly": 26600,
- "invariably": 26601,
- "souza": 26602,
- "thug": 26603,
- "winslow": 26604,
- "##otide": 26605,
- "furlongs": 26606,
- "gogh": 26607,
- "jeopardy": 26608,
- "##runa": 26609,
- "pegasus": 26610,
- "##umble": 26611,
- "humiliated": 26612,
- "standalone": 26613,
- "tagged": 26614,
- "##roller": 26615,
- "freshmen": 26616,
- "klan": 26617,
- "##bright": 26618,
- "attaining": 26619,
- "initiating": 26620,
- "transatlantic": 26621,
- "logged": 26622,
- "viz": 26623,
- "##uance": 26624,
- "1723": 26625,
- "combatants": 26626,
- "intervening": 26627,
- "stephane": 26628,
- "chieftain": 26629,
- "despised": 26630,
- "grazed": 26631,
- "317": 26632,
- "cdc": 26633,
- "galveston": 26634,
- "godzilla": 26635,
- "macro": 26636,
- "simulate": 26637,
- "##planes": 26638,
- "parades": 26639,
- "##esses": 26640,
- "960": 26641,
- "##ductive": 26642,
- "##unes": 26643,
- "equator": 26644,
- "overdose": 26645,
- "##cans": 26646,
- "##hosh": 26647,
- "##lifting": 26648,
- "joshi": 26649,
- "epstein": 26650,
- "sonora": 26651,
- "treacherous": 26652,
- "aquatics": 26653,
- "manchu": 26654,
- "responsive": 26655,
- "##sation": 26656,
- "supervisory": 26657,
- "##christ": 26658,
- "##llins": 26659,
- "##ibar": 26660,
- "##balance": 26661,
- "##uso": 26662,
- "kimball": 26663,
- "karlsruhe": 26664,
- "mab": 26665,
- "##emy": 26666,
- "ignores": 26667,
- "phonetic": 26668,
- "reuters": 26669,
- "spaghetti": 26670,
- "820": 26671,
- "almighty": 26672,
- "danzig": 26673,
- "rumbling": 26674,
- "tombstone": 26675,
- "designations": 26676,
- "lured": 26677,
- "outset": 26678,
- "##felt": 26679,
- "supermarkets": 26680,
- "##wt": 26681,
- "grupo": 26682,
- "kei": 26683,
- "kraft": 26684,
- "susanna": 26685,
- "##blood": 26686,
- "comprehension": 26687,
- "genealogy": 26688,
- "##aghan": 26689,
- "##verted": 26690,
- "redding": 26691,
- "##ythe": 26692,
- "1722": 26693,
- "bowing": 26694,
- "##pore": 26695,
- "##roi": 26696,
- "lest": 26697,
- "sharpened": 26698,
- "fulbright": 26699,
- "valkyrie": 26700,
- "sikhs": 26701,
- "##unds": 26702,
- "swans": 26703,
- "bouquet": 26704,
- "merritt": 26705,
- "##tage": 26706,
- "##venting": 26707,
- "commuted": 26708,
- "redhead": 26709,
- "clerks": 26710,
- "leasing": 26711,
- "cesare": 26712,
- "dea": 26713,
- "hazy": 26714,
- "##vances": 26715,
- "fledged": 26716,
- "greenfield": 26717,
- "servicemen": 26718,
- "##gical": 26719,
- "armando": 26720,
- "blackout": 26721,
- "dt": 26722,
- "sagged": 26723,
- "downloadable": 26724,
- "intra": 26725,
- "potion": 26726,
- "pods": 26727,
- "##4th": 26728,
- "##mism": 26729,
- "xp": 26730,
- "attendants": 26731,
- "gambia": 26732,
- "stale": 26733,
- "##ntine": 26734,
- "plump": 26735,
- "asteroids": 26736,
- "rediscovered": 26737,
- "buds": 26738,
- "flea": 26739,
- "hive": 26740,
- "##neas": 26741,
- "1737": 26742,
- "classifications": 26743,
- "debuts": 26744,
- "##eles": 26745,
- "olympus": 26746,
- "scala": 26747,
- "##eurs": 26748,
- "##gno": 26749,
- "##mute": 26750,
- "hummed": 26751,
- "sigismund": 26752,
- "visuals": 26753,
- "wiggled": 26754,
- "await": 26755,
- "pilasters": 26756,
- "clench": 26757,
- "sulfate": 26758,
- "##ances": 26759,
- "bellevue": 26760,
- "enigma": 26761,
- "trainee": 26762,
- "snort": 26763,
- "##sw": 26764,
- "clouded": 26765,
- "denim": 26766,
- "##rank": 26767,
- "##rder": 26768,
- "churning": 26769,
- "hartman": 26770,
- "lodges": 26771,
- "riches": 26772,
- "sima": 26773,
- "##missible": 26774,
- "accountable": 26775,
- "socrates": 26776,
- "regulates": 26777,
- "mueller": 26778,
- "##cr": 26779,
- "1702": 26780,
- "avoids": 26781,
- "solids": 26782,
- "himalayas": 26783,
- "nutrient": 26784,
- "pup": 26785,
- "##jevic": 26786,
- "squat": 26787,
- "fades": 26788,
- "nec": 26789,
- "##lates": 26790,
- "##pina": 26791,
- "##rona": 26792,
- "##ου": 26793,
- "privateer": 26794,
- "tequila": 26795,
- "##gative": 26796,
- "##mpton": 26797,
- "apt": 26798,
- "hornet": 26799,
- "immortals": 26800,
- "##dou": 26801,
- "asturias": 26802,
- "cleansing": 26803,
- "dario": 26804,
- "##rries": 26805,
- "##anta": 26806,
- "etymology": 26807,
- "servicing": 26808,
- "zhejiang": 26809,
- "##venor": 26810,
- "##nx": 26811,
- "horned": 26812,
- "erasmus": 26813,
- "rayon": 26814,
- "relocating": 26815,
- "£10": 26816,
- "##bags": 26817,
- "escalated": 26818,
- "promenade": 26819,
- "stubble": 26820,
- "2010s": 26821,
- "artisans": 26822,
- "axial": 26823,
- "liquids": 26824,
- "mora": 26825,
- "sho": 26826,
- "yoo": 26827,
- "##tsky": 26828,
- "bundles": 26829,
- "oldies": 26830,
- "##nally": 26831,
- "notification": 26832,
- "bastion": 26833,
- "##ths": 26834,
- "sparkle": 26835,
- "##lved": 26836,
- "1728": 26837,
- "leash": 26838,
- "pathogen": 26839,
- "highs": 26840,
- "##hmi": 26841,
- "immature": 26842,
- "880": 26843,
- "gonzaga": 26844,
- "ignatius": 26845,
- "mansions": 26846,
- "monterrey": 26847,
- "sweets": 26848,
- "bryson": 26849,
- "##loe": 26850,
- "polled": 26851,
- "regatta": 26852,
- "brightest": 26853,
- "pei": 26854,
- "rosy": 26855,
- "squid": 26856,
- "hatfield": 26857,
- "payroll": 26858,
- "addict": 26859,
- "meath": 26860,
- "cornerback": 26861,
- "heaviest": 26862,
- "lodging": 26863,
- "##mage": 26864,
- "capcom": 26865,
- "rippled": 26866,
- "##sily": 26867,
- "barnet": 26868,
- "mayhem": 26869,
- "ymca": 26870,
- "snuggled": 26871,
- "rousseau": 26872,
- "##cute": 26873,
- "blanchard": 26874,
- "284": 26875,
- "fragmented": 26876,
- "leighton": 26877,
- "chromosomes": 26878,
- "risking": 26879,
- "##md": 26880,
- "##strel": 26881,
- "##utter": 26882,
- "corinne": 26883,
- "coyotes": 26884,
- "cynical": 26885,
- "hiroshi": 26886,
- "yeomanry": 26887,
- "##ractive": 26888,
- "ebook": 26889,
- "grading": 26890,
- "mandela": 26891,
- "plume": 26892,
- "agustin": 26893,
- "magdalene": 26894,
- "##rkin": 26895,
- "bea": 26896,
- "femme": 26897,
- "trafford": 26898,
- "##coll": 26899,
- "##lun": 26900,
- "##tance": 26901,
- "52nd": 26902,
- "fourier": 26903,
- "upton": 26904,
- "##mental": 26905,
- "camilla": 26906,
- "gust": 26907,
- "iihf": 26908,
- "islamabad": 26909,
- "longevity": 26910,
- "##kala": 26911,
- "feldman": 26912,
- "netting": 26913,
- "##rization": 26914,
- "endeavour": 26915,
- "foraging": 26916,
- "mfa": 26917,
- "orr": 26918,
- "##open": 26919,
- "greyish": 26920,
- "contradiction": 26921,
- "graz": 26922,
- "##ruff": 26923,
- "handicapped": 26924,
- "marlene": 26925,
- "tweed": 26926,
- "oaxaca": 26927,
- "spp": 26928,
- "campos": 26929,
- "miocene": 26930,
- "pri": 26931,
- "configured": 26932,
- "cooks": 26933,
- "pluto": 26934,
- "cozy": 26935,
- "pornographic": 26936,
- "##entes": 26937,
- "70th": 26938,
- "fairness": 26939,
- "glided": 26940,
- "jonny": 26941,
- "lynne": 26942,
- "rounding": 26943,
- "sired": 26944,
- "##emon": 26945,
- "##nist": 26946,
- "remade": 26947,
- "uncover": 26948,
- "##mack": 26949,
- "complied": 26950,
- "lei": 26951,
- "newsweek": 26952,
- "##jured": 26953,
- "##parts": 26954,
- "##enting": 26955,
- "##pg": 26956,
- "293": 26957,
- "finer": 26958,
- "guerrillas": 26959,
- "athenian": 26960,
- "deng": 26961,
- "disused": 26962,
- "stepmother": 26963,
- "accuse": 26964,
- "gingerly": 26965,
- "seduction": 26966,
- "521": 26967,
- "confronting": 26968,
- "##walker": 26969,
- "##going": 26970,
- "gora": 26971,
- "nostalgia": 26972,
- "sabres": 26973,
- "virginity": 26974,
- "wrenched": 26975,
- "##minated": 26976,
- "syndication": 26977,
- "wielding": 26978,
- "eyre": 26979,
- "##56": 26980,
- "##gnon": 26981,
- "##igny": 26982,
- "behaved": 26983,
- "taxpayer": 26984,
- "sweeps": 26985,
- "##growth": 26986,
- "childless": 26987,
- "gallant": 26988,
- "##ywood": 26989,
- "amplified": 26990,
- "geraldine": 26991,
- "scrape": 26992,
- "##ffi": 26993,
- "babylonian": 26994,
- "fresco": 26995,
- "##rdan": 26996,
- "##kney": 26997,
- "##position": 26998,
- "1718": 26999,
- "restricting": 27000,
- "tack": 27001,
- "fukuoka": 27002,
- "osborn": 27003,
- "selector": 27004,
- "partnering": 27005,
- "##dlow": 27006,
- "318": 27007,
- "gnu": 27008,
- "kia": 27009,
- "tak": 27010,
- "whitley": 27011,
- "gables": 27012,
- "##54": 27013,
- "##mania": 27014,
- "mri": 27015,
- "softness": 27016,
- "immersion": 27017,
- "##bots": 27018,
- "##evsky": 27019,
- "1713": 27020,
- "chilling": 27021,
- "insignificant": 27022,
- "pcs": 27023,
- "##uis": 27024,
- "elites": 27025,
- "lina": 27026,
- "purported": 27027,
- "supplemental": 27028,
- "teaming": 27029,
- "##americana": 27030,
- "##dding": 27031,
- "##inton": 27032,
- "proficient": 27033,
- "rouen": 27034,
- "##nage": 27035,
- "##rret": 27036,
- "niccolo": 27037,
- "selects": 27038,
- "##bread": 27039,
- "fluffy": 27040,
- "1621": 27041,
- "gruff": 27042,
- "knotted": 27043,
- "mukherjee": 27044,
- "polgara": 27045,
- "thrash": 27046,
- "nicholls": 27047,
- "secluded": 27048,
- "smoothing": 27049,
- "thru": 27050,
- "corsica": 27051,
- "loaf": 27052,
- "whitaker": 27053,
- "inquiries": 27054,
- "##rrier": 27055,
- "##kam": 27056,
- "indochina": 27057,
- "289": 27058,
- "marlins": 27059,
- "myles": 27060,
- "peking": 27061,
- "##tea": 27062,
- "extracts": 27063,
- "pastry": 27064,
- "superhuman": 27065,
- "connacht": 27066,
- "vogel": 27067,
- "##ditional": 27068,
- "##het": 27069,
- "##udged": 27070,
- "##lash": 27071,
- "gloss": 27072,
- "quarries": 27073,
- "refit": 27074,
- "teaser": 27075,
- "##alic": 27076,
- "##gaon": 27077,
- "20s": 27078,
- "materialized": 27079,
- "sling": 27080,
- "camped": 27081,
- "pickering": 27082,
- "tung": 27083,
- "tracker": 27084,
- "pursuant": 27085,
- "##cide": 27086,
- "cranes": 27087,
- "soc": 27088,
- "##cini": 27089,
- "##typical": 27090,
- "##viere": 27091,
- "anhalt": 27092,
- "overboard": 27093,
- "workout": 27094,
- "chores": 27095,
- "fares": 27096,
- "orphaned": 27097,
- "stains": 27098,
- "##logie": 27099,
- "fenton": 27100,
- "surpassing": 27101,
- "joyah": 27102,
- "triggers": 27103,
- "##itte": 27104,
- "grandmaster": 27105,
- "##lass": 27106,
- "##lists": 27107,
- "clapping": 27108,
- "fraudulent": 27109,
- "ledger": 27110,
- "nagasaki": 27111,
- "##cor": 27112,
- "##nosis": 27113,
- "##tsa": 27114,
- "eucalyptus": 27115,
- "tun": 27116,
- "##icio": 27117,
- "##rney": 27118,
- "##tara": 27119,
- "dax": 27120,
- "heroism": 27121,
- "ina": 27122,
- "wrexham": 27123,
- "onboard": 27124,
- "unsigned": 27125,
- "##dates": 27126,
- "moshe": 27127,
- "galley": 27128,
- "winnie": 27129,
- "droplets": 27130,
- "exiles": 27131,
- "praises": 27132,
- "watered": 27133,
- "noodles": 27134,
- "##aia": 27135,
- "fein": 27136,
- "adi": 27137,
- "leland": 27138,
- "multicultural": 27139,
- "stink": 27140,
- "bingo": 27141,
- "comets": 27142,
- "erskine": 27143,
- "modernized": 27144,
- "canned": 27145,
- "constraint": 27146,
- "domestically": 27147,
- "chemotherapy": 27148,
- "featherweight": 27149,
- "stifled": 27150,
- "##mum": 27151,
- "darkly": 27152,
- "irresistible": 27153,
- "refreshing": 27154,
- "hasty": 27155,
- "isolate": 27156,
- "##oys": 27157,
- "kitchener": 27158,
- "planners": 27159,
- "##wehr": 27160,
- "cages": 27161,
- "yarn": 27162,
- "implant": 27163,
- "toulon": 27164,
- "elects": 27165,
- "childbirth": 27166,
- "yue": 27167,
- "##lind": 27168,
- "##lone": 27169,
- "cn": 27170,
- "rightful": 27171,
- "sportsman": 27172,
- "junctions": 27173,
- "remodeled": 27174,
- "specifies": 27175,
- "##rgh": 27176,
- "291": 27177,
- "##oons": 27178,
- "complimented": 27179,
- "##urgent": 27180,
- "lister": 27181,
- "ot": 27182,
- "##logic": 27183,
- "bequeathed": 27184,
- "cheekbones": 27185,
- "fontana": 27186,
- "gabby": 27187,
- "##dial": 27188,
- "amadeus": 27189,
- "corrugated": 27190,
- "maverick": 27191,
- "resented": 27192,
- "triangles": 27193,
- "##hered": 27194,
- "##usly": 27195,
- "nazareth": 27196,
- "tyrol": 27197,
- "1675": 27198,
- "assent": 27199,
- "poorer": 27200,
- "sectional": 27201,
- "aegean": 27202,
- "##cous": 27203,
- "296": 27204,
- "nylon": 27205,
- "ghanaian": 27206,
- "##egorical": 27207,
- "##weig": 27208,
- "cushions": 27209,
- "forbid": 27210,
- "fusiliers": 27211,
- "obstruction": 27212,
- "somerville": 27213,
- "##scia": 27214,
- "dime": 27215,
- "earrings": 27216,
- "elliptical": 27217,
- "leyte": 27218,
- "oder": 27219,
- "polymers": 27220,
- "timmy": 27221,
- "atm": 27222,
- "midtown": 27223,
- "piloted": 27224,
- "settles": 27225,
- "continual": 27226,
- "externally": 27227,
- "mayfield": 27228,
- "##uh": 27229,
- "enrichment": 27230,
- "henson": 27231,
- "keane": 27232,
- "persians": 27233,
- "1733": 27234,
- "benji": 27235,
- "braden": 27236,
- "pep": 27237,
- "324": 27238,
- "##efe": 27239,
- "contenders": 27240,
- "pepsi": 27241,
- "valet": 27242,
- "##isches": 27243,
- "298": 27244,
- "##asse": 27245,
- "##earing": 27246,
- "goofy": 27247,
- "stroll": 27248,
- "##amen": 27249,
- "authoritarian": 27250,
- "occurrences": 27251,
- "adversary": 27252,
- "ahmedabad": 27253,
- "tangent": 27254,
- "toppled": 27255,
- "dorchester": 27256,
- "1672": 27257,
- "modernism": 27258,
- "marxism": 27259,
- "islamist": 27260,
- "charlemagne": 27261,
- "exponential": 27262,
- "racks": 27263,
- "unicode": 27264,
- "brunette": 27265,
- "mbc": 27266,
- "pic": 27267,
- "skirmish": 27268,
- "##bund": 27269,
- "##lad": 27270,
- "##powered": 27271,
- "##yst": 27272,
- "hoisted": 27273,
- "messina": 27274,
- "shatter": 27275,
- "##ctum": 27276,
- "jedi": 27277,
- "vantage": 27278,
- "##music": 27279,
- "##neil": 27280,
- "clemens": 27281,
- "mahmoud": 27282,
- "corrupted": 27283,
- "authentication": 27284,
- "lowry": 27285,
- "nils": 27286,
- "##washed": 27287,
- "omnibus": 27288,
- "wounding": 27289,
- "jillian": 27290,
- "##itors": 27291,
- "##opped": 27292,
- "serialized": 27293,
- "narcotics": 27294,
- "handheld": 27295,
- "##arm": 27296,
- "##plicity": 27297,
- "intersecting": 27298,
- "stimulating": 27299,
- "##onis": 27300,
- "crate": 27301,
- "fellowships": 27302,
- "hemingway": 27303,
- "casinos": 27304,
- "climatic": 27305,
- "fordham": 27306,
- "copeland": 27307,
- "drip": 27308,
- "beatty": 27309,
- "leaflets": 27310,
- "robber": 27311,
- "brothel": 27312,
- "madeira": 27313,
- "##hedral": 27314,
- "sphinx": 27315,
- "ultrasound": 27316,
- "##vana": 27317,
- "valor": 27318,
- "forbade": 27319,
- "leonid": 27320,
- "villas": 27321,
- "##aldo": 27322,
- "duane": 27323,
- "marquez": 27324,
- "##cytes": 27325,
- "disadvantaged": 27326,
- "forearms": 27327,
- "kawasaki": 27328,
- "reacts": 27329,
- "consular": 27330,
- "lax": 27331,
- "uncles": 27332,
- "uphold": 27333,
- "##hopper": 27334,
- "concepcion": 27335,
- "dorsey": 27336,
- "lass": 27337,
- "##izan": 27338,
- "arching": 27339,
- "passageway": 27340,
- "1708": 27341,
- "researches": 27342,
- "tia": 27343,
- "internationals": 27344,
- "##graphs": 27345,
- "##opers": 27346,
- "distinguishes": 27347,
- "javanese": 27348,
- "divert": 27349,
- "##uven": 27350,
- "plotted": 27351,
- "##listic": 27352,
- "##rwin": 27353,
- "##erik": 27354,
- "##tify": 27355,
- "affirmative": 27356,
- "signifies": 27357,
- "validation": 27358,
- "##bson": 27359,
- "kari": 27360,
- "felicity": 27361,
- "georgina": 27362,
- "zulu": 27363,
- "##eros": 27364,
- "##rained": 27365,
- "##rath": 27366,
- "overcoming": 27367,
- "##dot": 27368,
- "argyll": 27369,
- "##rbin": 27370,
- "1734": 27371,
- "chiba": 27372,
- "ratification": 27373,
- "windy": 27374,
- "earls": 27375,
- "parapet": 27376,
- "##marks": 27377,
- "hunan": 27378,
- "pristine": 27379,
- "astrid": 27380,
- "punta": 27381,
- "##gart": 27382,
- "brodie": 27383,
- "##kota": 27384,
- "##oder": 27385,
- "malaga": 27386,
- "minerva": 27387,
- "rouse": 27388,
- "##phonic": 27389,
- "bellowed": 27390,
- "pagoda": 27391,
- "portals": 27392,
- "reclamation": 27393,
- "##gur": 27394,
- "##odies": 27395,
- "##⁄₄": 27396,
- "parentheses": 27397,
- "quoting": 27398,
- "allergic": 27399,
- "palette": 27400,
- "showcases": 27401,
- "benefactor": 27402,
- "heartland": 27403,
- "nonlinear": 27404,
- "##tness": 27405,
- "bladed": 27406,
- "cheerfully": 27407,
- "scans": 27408,
- "##ety": 27409,
- "##hone": 27410,
- "1666": 27411,
- "girlfriends": 27412,
- "pedersen": 27413,
- "hiram": 27414,
- "sous": 27415,
- "##liche": 27416,
- "##nator": 27417,
- "1683": 27418,
- "##nery": 27419,
- "##orio": 27420,
- "##umen": 27421,
- "bobo": 27422,
- "primaries": 27423,
- "smiley": 27424,
- "##cb": 27425,
- "unearthed": 27426,
- "uniformly": 27427,
- "fis": 27428,
- "metadata": 27429,
- "1635": 27430,
- "ind": 27431,
- "##oted": 27432,
- "recoil": 27433,
- "##titles": 27434,
- "##tura": 27435,
- "##ια": 27436,
- "406": 27437,
- "hilbert": 27438,
- "jamestown": 27439,
- "mcmillan": 27440,
- "tulane": 27441,
- "seychelles": 27442,
- "##frid": 27443,
- "antics": 27444,
- "coli": 27445,
- "fated": 27446,
- "stucco": 27447,
- "##grants": 27448,
- "1654": 27449,
- "bulky": 27450,
- "accolades": 27451,
- "arrays": 27452,
- "caledonian": 27453,
- "carnage": 27454,
- "optimism": 27455,
- "puebla": 27456,
- "##tative": 27457,
- "##cave": 27458,
- "enforcing": 27459,
- "rotherham": 27460,
- "seo": 27461,
- "dunlop": 27462,
- "aeronautics": 27463,
- "chimed": 27464,
- "incline": 27465,
- "zoning": 27466,
- "archduke": 27467,
- "hellenistic": 27468,
- "##oses": 27469,
- "##sions": 27470,
- "candi": 27471,
- "thong": 27472,
- "##ople": 27473,
- "magnate": 27474,
- "rustic": 27475,
- "##rsk": 27476,
- "projective": 27477,
- "slant": 27478,
- "##offs": 27479,
- "danes": 27480,
- "hollis": 27481,
- "vocalists": 27482,
- "##ammed": 27483,
- "congenital": 27484,
- "contend": 27485,
- "gesellschaft": 27486,
- "##ocating": 27487,
- "##pressive": 27488,
- "douglass": 27489,
- "quieter": 27490,
- "##cm": 27491,
- "##kshi": 27492,
- "howled": 27493,
- "salim": 27494,
- "spontaneously": 27495,
- "townsville": 27496,
- "buena": 27497,
- "southport": 27498,
- "##bold": 27499,
- "kato": 27500,
- "1638": 27501,
- "faerie": 27502,
- "stiffly": 27503,
- "##vus": 27504,
- "##rled": 27505,
- "297": 27506,
- "flawless": 27507,
- "realising": 27508,
- "taboo": 27509,
- "##7th": 27510,
- "bytes": 27511,
- "straightening": 27512,
- "356": 27513,
- "jena": 27514,
- "##hid": 27515,
- "##rmin": 27516,
- "cartwright": 27517,
- "berber": 27518,
- "bertram": 27519,
- "soloists": 27520,
- "411": 27521,
- "noses": 27522,
- "417": 27523,
- "coping": 27524,
- "fission": 27525,
- "hardin": 27526,
- "inca": 27527,
- "##cen": 27528,
- "1717": 27529,
- "mobilized": 27530,
- "vhf": 27531,
- "##raf": 27532,
- "biscuits": 27533,
- "curate": 27534,
- "##85": 27535,
- "##anial": 27536,
- "331": 27537,
- "gaunt": 27538,
- "neighbourhoods": 27539,
- "1540": 27540,
- "##abas": 27541,
- "blanca": 27542,
- "bypassed": 27543,
- "sockets": 27544,
- "behold": 27545,
- "coincidentally": 27546,
- "##bane": 27547,
- "nara": 27548,
- "shave": 27549,
- "splinter": 27550,
- "terrific": 27551,
- "##arion": 27552,
- "##erian": 27553,
- "commonplace": 27554,
- "juris": 27555,
- "redwood": 27556,
- "waistband": 27557,
- "boxed": 27558,
- "caitlin": 27559,
- "fingerprints": 27560,
- "jennie": 27561,
- "naturalized": 27562,
- "##ired": 27563,
- "balfour": 27564,
- "craters": 27565,
- "jody": 27566,
- "bungalow": 27567,
- "hugely": 27568,
- "quilt": 27569,
- "glitter": 27570,
- "pigeons": 27571,
- "undertaker": 27572,
- "bulging": 27573,
- "constrained": 27574,
- "goo": 27575,
- "##sil": 27576,
- "##akh": 27577,
- "assimilation": 27578,
- "reworked": 27579,
- "##person": 27580,
- "persuasion": 27581,
- "##pants": 27582,
- "felicia": 27583,
- "##cliff": 27584,
- "##ulent": 27585,
- "1732": 27586,
- "explodes": 27587,
- "##dun": 27588,
- "##inium": 27589,
- "##zic": 27590,
- "lyman": 27591,
- "vulture": 27592,
- "hog": 27593,
- "overlook": 27594,
- "begs": 27595,
- "northwards": 27596,
- "ow": 27597,
- "spoil": 27598,
- "##urer": 27599,
- "fatima": 27600,
- "favorably": 27601,
- "accumulate": 27602,
- "sargent": 27603,
- "sorority": 27604,
- "corresponded": 27605,
- "dispersal": 27606,
- "kochi": 27607,
- "toned": 27608,
- "##imi": 27609,
- "##lita": 27610,
- "internacional": 27611,
- "newfound": 27612,
- "##agger": 27613,
- "##lynn": 27614,
- "##rigue": 27615,
- "booths": 27616,
- "peanuts": 27617,
- "##eborg": 27618,
- "medicare": 27619,
- "muriel": 27620,
- "nur": 27621,
- "##uram": 27622,
- "crates": 27623,
- "millennia": 27624,
- "pajamas": 27625,
- "worsened": 27626,
- "##breakers": 27627,
- "jimi": 27628,
- "vanuatu": 27629,
- "yawned": 27630,
- "##udeau": 27631,
- "carousel": 27632,
- "##hony": 27633,
- "hurdle": 27634,
- "##ccus": 27635,
- "##mounted": 27636,
- "##pod": 27637,
- "rv": 27638,
- "##eche": 27639,
- "airship": 27640,
- "ambiguity": 27641,
- "compulsion": 27642,
- "recapture": 27643,
- "##claiming": 27644,
- "arthritis": 27645,
- "##osomal": 27646,
- "1667": 27647,
- "asserting": 27648,
- "ngc": 27649,
- "sniffing": 27650,
- "dade": 27651,
- "discontent": 27652,
- "glendale": 27653,
- "ported": 27654,
- "##amina": 27655,
- "defamation": 27656,
- "rammed": 27657,
- "##scent": 27658,
- "fling": 27659,
- "livingstone": 27660,
- "##fleet": 27661,
- "875": 27662,
- "##ppy": 27663,
- "apocalyptic": 27664,
- "comrade": 27665,
- "lcd": 27666,
- "##lowe": 27667,
- "cessna": 27668,
- "eine": 27669,
- "persecuted": 27670,
- "subsistence": 27671,
- "demi": 27672,
- "hoop": 27673,
- "reliefs": 27674,
- "710": 27675,
- "coptic": 27676,
- "progressing": 27677,
- "stemmed": 27678,
- "perpetrators": 27679,
- "1665": 27680,
- "priestess": 27681,
- "##nio": 27682,
- "dobson": 27683,
- "ebony": 27684,
- "rooster": 27685,
- "itf": 27686,
- "tortricidae": 27687,
- "##bbon": 27688,
- "##jian": 27689,
- "cleanup": 27690,
- "##jean": 27691,
- "##øy": 27692,
- "1721": 27693,
- "eighties": 27694,
- "taxonomic": 27695,
- "holiness": 27696,
- "##hearted": 27697,
- "##spar": 27698,
- "antilles": 27699,
- "showcasing": 27700,
- "stabilized": 27701,
- "##nb": 27702,
- "gia": 27703,
- "mascara": 27704,
- "michelangelo": 27705,
- "dawned": 27706,
- "##uria": 27707,
- "##vinsky": 27708,
- "extinguished": 27709,
- "fitz": 27710,
- "grotesque": 27711,
- "£100": 27712,
- "##fera": 27713,
- "##loid": 27714,
- "##mous": 27715,
- "barges": 27716,
- "neue": 27717,
- "throbbed": 27718,
- "cipher": 27719,
- "johnnie": 27720,
- "##a1": 27721,
- "##mpt": 27722,
- "outburst": 27723,
- "##swick": 27724,
- "spearheaded": 27725,
- "administrations": 27726,
- "c1": 27727,
- "heartbreak": 27728,
- "pixels": 27729,
- "pleasantly": 27730,
- "##enay": 27731,
- "lombardy": 27732,
- "plush": 27733,
- "##nsed": 27734,
- "bobbie": 27735,
- "##hly": 27736,
- "reapers": 27737,
- "tremor": 27738,
- "xiang": 27739,
- "minogue": 27740,
- "substantive": 27741,
- "hitch": 27742,
- "barak": 27743,
- "##wyl": 27744,
- "kwan": 27745,
- "##encia": 27746,
- "910": 27747,
- "obscene": 27748,
- "elegance": 27749,
- "indus": 27750,
- "surfer": 27751,
- "bribery": 27752,
- "conserve": 27753,
- "##hyllum": 27754,
- "##masters": 27755,
- "horatio": 27756,
- "##fat": 27757,
- "apes": 27758,
- "rebound": 27759,
- "psychotic": 27760,
- "##pour": 27761,
- "iteration": 27762,
- "##mium": 27763,
- "##vani": 27764,
- "botanic": 27765,
- "horribly": 27766,
- "antiques": 27767,
- "dispose": 27768,
- "paxton": 27769,
- "##hli": 27770,
- "##wg": 27771,
- "timeless": 27772,
- "1704": 27773,
- "disregard": 27774,
- "engraver": 27775,
- "hounds": 27776,
- "##bau": 27777,
- "##version": 27778,
- "looted": 27779,
- "uno": 27780,
- "facilitates": 27781,
- "groans": 27782,
- "masjid": 27783,
- "rutland": 27784,
- "antibody": 27785,
- "disqualification": 27786,
- "decatur": 27787,
- "footballers": 27788,
- "quake": 27789,
- "slacks": 27790,
- "48th": 27791,
- "rein": 27792,
- "scribe": 27793,
- "stabilize": 27794,
- "commits": 27795,
- "exemplary": 27796,
- "tho": 27797,
- "##hort": 27798,
- "##chison": 27799,
- "pantry": 27800,
- "traversed": 27801,
- "##hiti": 27802,
- "disrepair": 27803,
- "identifiable": 27804,
- "vibrated": 27805,
- "baccalaureate": 27806,
- "##nnis": 27807,
- "csa": 27808,
- "interviewing": 27809,
- "##iensis": 27810,
- "##raße": 27811,
- "greaves": 27812,
- "wealthiest": 27813,
- "343": 27814,
- "classed": 27815,
- "jogged": 27816,
- "£5": 27817,
- "##58": 27818,
- "##atal": 27819,
- "illuminating": 27820,
- "knicks": 27821,
- "respecting": 27822,
- "##uno": 27823,
- "scrubbed": 27824,
- "##iji": 27825,
- "##dles": 27826,
- "kruger": 27827,
- "moods": 27828,
- "growls": 27829,
- "raider": 27830,
- "silvia": 27831,
- "chefs": 27832,
- "kam": 27833,
- "vr": 27834,
- "cree": 27835,
- "percival": 27836,
- "##terol": 27837,
- "gunter": 27838,
- "counterattack": 27839,
- "defiant": 27840,
- "henan": 27841,
- "ze": 27842,
- "##rasia": 27843,
- "##riety": 27844,
- "equivalence": 27845,
- "submissions": 27846,
- "##fra": 27847,
- "##thor": 27848,
- "bautista": 27849,
- "mechanically": 27850,
- "##heater": 27851,
- "cornice": 27852,
- "herbal": 27853,
- "templar": 27854,
- "##mering": 27855,
- "outputs": 27856,
- "ruining": 27857,
- "ligand": 27858,
- "renumbered": 27859,
- "extravagant": 27860,
- "mika": 27861,
- "blockbuster": 27862,
- "eta": 27863,
- "insurrection": 27864,
- "##ilia": 27865,
- "darkening": 27866,
- "ferocious": 27867,
- "pianos": 27868,
- "strife": 27869,
- "kinship": 27870,
- "##aer": 27871,
- "melee": 27872,
- "##anor": 27873,
- "##iste": 27874,
- "##may": 27875,
- "##oue": 27876,
- "decidedly": 27877,
- "weep": 27878,
- "##jad": 27879,
- "##missive": 27880,
- "##ppel": 27881,
- "354": 27882,
- "puget": 27883,
- "unease": 27884,
- "##gnant": 27885,
- "1629": 27886,
- "hammering": 27887,
- "kassel": 27888,
- "ob": 27889,
- "wessex": 27890,
- "##lga": 27891,
- "bromwich": 27892,
- "egan": 27893,
- "paranoia": 27894,
- "utilization": 27895,
- "##atable": 27896,
- "##idad": 27897,
- "contradictory": 27898,
- "provoke": 27899,
- "##ols": 27900,
- "##ouring": 27901,
- "##tangled": 27902,
- "knesset": 27903,
- "##very": 27904,
- "##lette": 27905,
- "plumbing": 27906,
- "##sden": 27907,
- "##¹": 27908,
- "greensboro": 27909,
- "occult": 27910,
- "sniff": 27911,
- "338": 27912,
- "zev": 27913,
- "beaming": 27914,
- "gamer": 27915,
- "haggard": 27916,
- "mahal": 27917,
- "##olt": 27918,
- "##pins": 27919,
- "mendes": 27920,
- "utmost": 27921,
- "briefing": 27922,
- "gunnery": 27923,
- "##gut": 27924,
- "##pher": 27925,
- "##zh": 27926,
- "##rok": 27927,
- "1679": 27928,
- "khalifa": 27929,
- "sonya": 27930,
- "##boot": 27931,
- "principals": 27932,
- "urbana": 27933,
- "wiring": 27934,
- "##liffe": 27935,
- "##minating": 27936,
- "##rrado": 27937,
- "dahl": 27938,
- "nyu": 27939,
- "skepticism": 27940,
- "np": 27941,
- "townspeople": 27942,
- "ithaca": 27943,
- "lobster": 27944,
- "somethin": 27945,
- "##fur": 27946,
- "##arina": 27947,
- "##−1": 27948,
- "freighter": 27949,
- "zimmerman": 27950,
- "biceps": 27951,
- "contractual": 27952,
- "##herton": 27953,
- "amend": 27954,
- "hurrying": 27955,
- "subconscious": 27956,
- "##anal": 27957,
- "336": 27958,
- "meng": 27959,
- "clermont": 27960,
- "spawning": 27961,
- "##eia": 27962,
- "##lub": 27963,
- "dignitaries": 27964,
- "impetus": 27965,
- "snacks": 27966,
- "spotting": 27967,
- "twigs": 27968,
- "##bilis": 27969,
- "##cz": 27970,
- "##ouk": 27971,
- "libertadores": 27972,
- "nic": 27973,
- "skylar": 27974,
- "##aina": 27975,
- "##firm": 27976,
- "gustave": 27977,
- "asean": 27978,
- "##anum": 27979,
- "dieter": 27980,
- "legislatures": 27981,
- "flirt": 27982,
- "bromley": 27983,
- "trolls": 27984,
- "umar": 27985,
- "##bbies": 27986,
- "##tyle": 27987,
- "blah": 27988,
- "parc": 27989,
- "bridgeport": 27990,
- "crank": 27991,
- "negligence": 27992,
- "##nction": 27993,
- "46th": 27994,
- "constantin": 27995,
- "molded": 27996,
- "bandages": 27997,
- "seriousness": 27998,
- "00pm": 27999,
- "siegel": 28000,
- "carpets": 28001,
- "compartments": 28002,
- "upbeat": 28003,
- "statehood": 28004,
- "##dner": 28005,
- "##edging": 28006,
- "marko": 28007,
- "730": 28008,
- "platt": 28009,
- "##hane": 28010,
- "paving": 28011,
- "##iy": 28012,
- "1738": 28013,
- "abbess": 28014,
- "impatience": 28015,
- "limousine": 28016,
- "nbl": 28017,
- "##talk": 28018,
- "441": 28019,
- "lucille": 28020,
- "mojo": 28021,
- "nightfall": 28022,
- "robbers": 28023,
- "##nais": 28024,
- "karel": 28025,
- "brisk": 28026,
- "calves": 28027,
- "replicate": 28028,
- "ascribed": 28029,
- "telescopes": 28030,
- "##olf": 28031,
- "intimidated": 28032,
- "##reen": 28033,
- "ballast": 28034,
- "specialization": 28035,
- "##sit": 28036,
- "aerodynamic": 28037,
- "caliphate": 28038,
- "rainer": 28039,
- "visionary": 28040,
- "##arded": 28041,
- "epsilon": 28042,
- "##aday": 28043,
- "##onte": 28044,
- "aggregation": 28045,
- "auditory": 28046,
- "boosted": 28047,
- "reunification": 28048,
- "kathmandu": 28049,
- "loco": 28050,
- "robyn": 28051,
- "402": 28052,
- "acknowledges": 28053,
- "appointing": 28054,
- "humanoid": 28055,
- "newell": 28056,
- "redeveloped": 28057,
- "restraints": 28058,
- "##tained": 28059,
- "barbarians": 28060,
- "chopper": 28061,
- "1609": 28062,
- "italiana": 28063,
- "##lez": 28064,
- "##lho": 28065,
- "investigates": 28066,
- "wrestlemania": 28067,
- "##anies": 28068,
- "##bib": 28069,
- "690": 28070,
- "##falls": 28071,
- "creaked": 28072,
- "dragoons": 28073,
- "gravely": 28074,
- "minions": 28075,
- "stupidity": 28076,
- "volley": 28077,
- "##harat": 28078,
- "##week": 28079,
- "musik": 28080,
- "##eries": 28081,
- "##uously": 28082,
- "fungal": 28083,
- "massimo": 28084,
- "semantics": 28085,
- "malvern": 28086,
- "##ahl": 28087,
- "##pee": 28088,
- "discourage": 28089,
- "embryo": 28090,
- "imperialism": 28091,
- "1910s": 28092,
- "profoundly": 28093,
- "##ddled": 28094,
- "jiangsu": 28095,
- "sparkled": 28096,
- "stat": 28097,
- "##holz": 28098,
- "sweatshirt": 28099,
- "tobin": 28100,
- "##iction": 28101,
- "sneered": 28102,
- "##cheon": 28103,
- "##oit": 28104,
- "brit": 28105,
- "causal": 28106,
- "smyth": 28107,
- "##neuve": 28108,
- "diffuse": 28109,
- "perrin": 28110,
- "silvio": 28111,
- "##ipes": 28112,
- "##recht": 28113,
- "detonated": 28114,
- "iqbal": 28115,
- "selma": 28116,
- "##nism": 28117,
- "##zumi": 28118,
- "roasted": 28119,
- "##riders": 28120,
- "tay": 28121,
- "##ados": 28122,
- "##mament": 28123,
- "##mut": 28124,
- "##rud": 28125,
- "840": 28126,
- "completes": 28127,
- "nipples": 28128,
- "cfa": 28129,
- "flavour": 28130,
- "hirsch": 28131,
- "##laus": 28132,
- "calderon": 28133,
- "sneakers": 28134,
- "moravian": 28135,
- "##ksha": 28136,
- "1622": 28137,
- "rq": 28138,
- "294": 28139,
- "##imeters": 28140,
- "bodo": 28141,
- "##isance": 28142,
- "##pre": 28143,
- "##ronia": 28144,
- "anatomical": 28145,
- "excerpt": 28146,
- "##lke": 28147,
- "dh": 28148,
- "kunst": 28149,
- "##tablished": 28150,
- "##scoe": 28151,
- "biomass": 28152,
- "panted": 28153,
- "unharmed": 28154,
- "gael": 28155,
- "housemates": 28156,
- "montpellier": 28157,
- "##59": 28158,
- "coa": 28159,
- "rodents": 28160,
- "tonic": 28161,
- "hickory": 28162,
- "singleton": 28163,
- "##taro": 28164,
- "451": 28165,
- "1719": 28166,
- "aldo": 28167,
- "breaststroke": 28168,
- "dempsey": 28169,
- "och": 28170,
- "rocco": 28171,
- "##cuit": 28172,
- "merton": 28173,
- "dissemination": 28174,
- "midsummer": 28175,
- "serials": 28176,
- "##idi": 28177,
- "haji": 28178,
- "polynomials": 28179,
- "##rdon": 28180,
- "gs": 28181,
- "enoch": 28182,
- "prematurely": 28183,
- "shutter": 28184,
- "taunton": 28185,
- "£3": 28186,
- "##grating": 28187,
- "##inates": 28188,
- "archangel": 28189,
- "harassed": 28190,
- "##asco": 28191,
- "326": 28192,
- "archway": 28193,
- "dazzling": 28194,
- "##ecin": 28195,
- "1736": 28196,
- "sumo": 28197,
- "wat": 28198,
- "##kovich": 28199,
- "1086": 28200,
- "honneur": 28201,
- "##ently": 28202,
- "##nostic": 28203,
- "##ttal": 28204,
- "##idon": 28205,
- "1605": 28206,
- "403": 28207,
- "1716": 28208,
- "blogger": 28209,
- "rents": 28210,
- "##gnan": 28211,
- "hires": 28212,
- "##ikh": 28213,
- "##dant": 28214,
- "howie": 28215,
- "##rons": 28216,
- "handler": 28217,
- "retracted": 28218,
- "shocks": 28219,
- "1632": 28220,
- "arun": 28221,
- "duluth": 28222,
- "kepler": 28223,
- "trumpeter": 28224,
- "##lary": 28225,
- "peeking": 28226,
- "seasoned": 28227,
- "trooper": 28228,
- "##mara": 28229,
- "laszlo": 28230,
- "##iciencies": 28231,
- "##rti": 28232,
- "heterosexual": 28233,
- "##inatory": 28234,
- "##ssion": 28235,
- "indira": 28236,
- "jogging": 28237,
- "##inga": 28238,
- "##lism": 28239,
- "beit": 28240,
- "dissatisfaction": 28241,
- "malice": 28242,
- "##ately": 28243,
- "nedra": 28244,
- "peeling": 28245,
- "##rgeon": 28246,
- "47th": 28247,
- "stadiums": 28248,
- "475": 28249,
- "vertigo": 28250,
- "##ains": 28251,
- "iced": 28252,
- "restroom": 28253,
- "##plify": 28254,
- "##tub": 28255,
- "illustrating": 28256,
- "pear": 28257,
- "##chner": 28258,
- "##sibility": 28259,
- "inorganic": 28260,
- "rappers": 28261,
- "receipts": 28262,
- "watery": 28263,
- "##kura": 28264,
- "lucinda": 28265,
- "##oulos": 28266,
- "reintroduced": 28267,
- "##8th": 28268,
- "##tched": 28269,
- "gracefully": 28270,
- "saxons": 28271,
- "nutritional": 28272,
- "wastewater": 28273,
- "rained": 28274,
- "favourites": 28275,
- "bedrock": 28276,
- "fisted": 28277,
- "hallways": 28278,
- "likeness": 28279,
- "upscale": 28280,
- "##lateral": 28281,
- "1580": 28282,
- "blinds": 28283,
- "prequel": 28284,
- "##pps": 28285,
- "##tama": 28286,
- "deter": 28287,
- "humiliating": 28288,
- "restraining": 28289,
- "tn": 28290,
- "vents": 28291,
- "1659": 28292,
- "laundering": 28293,
- "recess": 28294,
- "rosary": 28295,
- "tractors": 28296,
- "coulter": 28297,
- "federer": 28298,
- "##ifiers": 28299,
- "##plin": 28300,
- "persistence": 28301,
- "##quitable": 28302,
- "geschichte": 28303,
- "pendulum": 28304,
- "quakers": 28305,
- "##beam": 28306,
- "bassett": 28307,
- "pictorial": 28308,
- "buffet": 28309,
- "koln": 28310,
- "##sitor": 28311,
- "drills": 28312,
- "reciprocal": 28313,
- "shooters": 28314,
- "##57": 28315,
- "##cton": 28316,
- "##tees": 28317,
- "converge": 28318,
- "pip": 28319,
- "dmitri": 28320,
- "donnelly": 28321,
- "yamamoto": 28322,
- "aqua": 28323,
- "azores": 28324,
- "demographics": 28325,
- "hypnotic": 28326,
- "spitfire": 28327,
- "suspend": 28328,
- "wryly": 28329,
- "roderick": 28330,
- "##rran": 28331,
- "sebastien": 28332,
- "##asurable": 28333,
- "mavericks": 28334,
- "##fles": 28335,
- "##200": 28336,
- "himalayan": 28337,
- "prodigy": 28338,
- "##iance": 28339,
- "transvaal": 28340,
- "demonstrators": 28341,
- "handcuffs": 28342,
- "dodged": 28343,
- "mcnamara": 28344,
- "sublime": 28345,
- "1726": 28346,
- "crazed": 28347,
- "##efined": 28348,
- "##till": 28349,
- "ivo": 28350,
- "pondered": 28351,
- "reconciled": 28352,
- "shrill": 28353,
- "sava": 28354,
- "##duk": 28355,
- "bal": 28356,
- "cad": 28357,
- "heresy": 28358,
- "jaipur": 28359,
- "goran": 28360,
- "##nished": 28361,
- "341": 28362,
- "lux": 28363,
- "shelly": 28364,
- "whitehall": 28365,
- "##hre": 28366,
- "israelis": 28367,
- "peacekeeping": 28368,
- "##wled": 28369,
- "1703": 28370,
- "demetrius": 28371,
- "ousted": 28372,
- "##arians": 28373,
- "##zos": 28374,
- "beale": 28375,
- "anwar": 28376,
- "backstroke": 28377,
- "raged": 28378,
- "shrinking": 28379,
- "cremated": 28380,
- "##yck": 28381,
- "benign": 28382,
- "towing": 28383,
- "wadi": 28384,
- "darmstadt": 28385,
- "landfill": 28386,
- "parana": 28387,
- "soothe": 28388,
- "colleen": 28389,
- "sidewalks": 28390,
- "mayfair": 28391,
- "tumble": 28392,
- "hepatitis": 28393,
- "ferrer": 28394,
- "superstructure": 28395,
- "##gingly": 28396,
- "##urse": 28397,
- "##wee": 28398,
- "anthropological": 28399,
- "translators": 28400,
- "##mies": 28401,
- "closeness": 28402,
- "hooves": 28403,
- "##pw": 28404,
- "mondays": 28405,
- "##roll": 28406,
- "##vita": 28407,
- "landscaping": 28408,
- "##urized": 28409,
- "purification": 28410,
- "sock": 28411,
- "thorns": 28412,
- "thwarted": 28413,
- "jalan": 28414,
- "tiberius": 28415,
- "##taka": 28416,
- "saline": 28417,
- "##rito": 28418,
- "confidently": 28419,
- "khyber": 28420,
- "sculptors": 28421,
- "##ij": 28422,
- "brahms": 28423,
- "hammersmith": 28424,
- "inspectors": 28425,
- "battista": 28426,
- "fivb": 28427,
- "fragmentation": 28428,
- "hackney": 28429,
- "##uls": 28430,
- "arresting": 28431,
- "exercising": 28432,
- "antoinette": 28433,
- "bedfordshire": 28434,
- "##zily": 28435,
- "dyed": 28436,
- "##hema": 28437,
- "1656": 28438,
- "racetrack": 28439,
- "variability": 28440,
- "##tique": 28441,
- "1655": 28442,
- "austrians": 28443,
- "deteriorating": 28444,
- "madman": 28445,
- "theorists": 28446,
- "aix": 28447,
- "lehman": 28448,
- "weathered": 28449,
- "1731": 28450,
- "decreed": 28451,
- "eruptions": 28452,
- "1729": 28453,
- "flaw": 28454,
- "quinlan": 28455,
- "sorbonne": 28456,
- "flutes": 28457,
- "nunez": 28458,
- "1711": 28459,
- "adored": 28460,
- "downwards": 28461,
- "fable": 28462,
- "rasped": 28463,
- "1712": 28464,
- "moritz": 28465,
- "mouthful": 28466,
- "renegade": 28467,
- "shivers": 28468,
- "stunts": 28469,
- "dysfunction": 28470,
- "restrain": 28471,
- "translit": 28472,
- "327": 28473,
- "pancakes": 28474,
- "##avio": 28475,
- "##cision": 28476,
- "##tray": 28477,
- "351": 28478,
- "vial": 28479,
- "##lden": 28480,
- "bain": 28481,
- "##maid": 28482,
- "##oxide": 28483,
- "chihuahua": 28484,
- "malacca": 28485,
- "vimes": 28486,
- "##rba": 28487,
- "##rnier": 28488,
- "1664": 28489,
- "donnie": 28490,
- "plaques": 28491,
- "##ually": 28492,
- "337": 28493,
- "bangs": 28494,
- "floppy": 28495,
- "huntsville": 28496,
- "loretta": 28497,
- "nikolay": 28498,
- "##otte": 28499,
- "eater": 28500,
- "handgun": 28501,
- "ubiquitous": 28502,
- "##hett": 28503,
- "eras": 28504,
- "zodiac": 28505,
- "1634": 28506,
- "##omorphic": 28507,
- "1820s": 28508,
- "##zog": 28509,
- "cochran": 28510,
- "##bula": 28511,
- "##lithic": 28512,
- "warring": 28513,
- "##rada": 28514,
- "dalai": 28515,
- "excused": 28516,
- "blazers": 28517,
- "mcconnell": 28518,
- "reeling": 28519,
- "bot": 28520,
- "este": 28521,
- "##abi": 28522,
- "geese": 28523,
- "hoax": 28524,
- "taxon": 28525,
- "##bla": 28526,
- "guitarists": 28527,
- "##icon": 28528,
- "condemning": 28529,
- "hunts": 28530,
- "inversion": 28531,
- "moffat": 28532,
- "taekwondo": 28533,
- "##lvis": 28534,
- "1624": 28535,
- "stammered": 28536,
- "##rest": 28537,
- "##rzy": 28538,
- "sousa": 28539,
- "fundraiser": 28540,
- "marylebone": 28541,
- "navigable": 28542,
- "uptown": 28543,
- "cabbage": 28544,
- "daniela": 28545,
- "salman": 28546,
- "shitty": 28547,
- "whimper": 28548,
- "##kian": 28549,
- "##utive": 28550,
- "programmers": 28551,
- "protections": 28552,
- "rm": 28553,
- "##rmi": 28554,
- "##rued": 28555,
- "forceful": 28556,
- "##enes": 28557,
- "fuss": 28558,
- "##tao": 28559,
- "##wash": 28560,
- "brat": 28561,
- "oppressive": 28562,
- "reykjavik": 28563,
- "spartak": 28564,
- "ticking": 28565,
- "##inkles": 28566,
- "##kiewicz": 28567,
- "adolph": 28568,
- "horst": 28569,
- "maui": 28570,
- "protege": 28571,
- "straighten": 28572,
- "cpc": 28573,
- "landau": 28574,
- "concourse": 28575,
- "clements": 28576,
- "resultant": 28577,
- "##ando": 28578,
- "imaginative": 28579,
- "joo": 28580,
- "reactivated": 28581,
- "##rem": 28582,
- "##ffled": 28583,
- "##uising": 28584,
- "consultative": 28585,
- "##guide": 28586,
- "flop": 28587,
- "kaitlyn": 28588,
- "mergers": 28589,
- "parenting": 28590,
- "somber": 28591,
- "##vron": 28592,
- "supervise": 28593,
- "vidhan": 28594,
- "##imum": 28595,
- "courtship": 28596,
- "exemplified": 28597,
- "harmonies": 28598,
- "medallist": 28599,
- "refining": 28600,
- "##rrow": 28601,
- "##ка": 28602,
- "amara": 28603,
- "##hum": 28604,
- "780": 28605,
- "goalscorer": 28606,
- "sited": 28607,
- "overshadowed": 28608,
- "rohan": 28609,
- "displeasure": 28610,
- "secretive": 28611,
- "multiplied": 28612,
- "osman": 28613,
- "##orth": 28614,
- "engravings": 28615,
- "padre": 28616,
- "##kali": 28617,
- "##veda": 28618,
- "miniatures": 28619,
- "mis": 28620,
- "##yala": 28621,
- "clap": 28622,
- "pali": 28623,
- "rook": 28624,
- "##cana": 28625,
- "1692": 28626,
- "57th": 28627,
- "antennae": 28628,
- "astro": 28629,
- "oskar": 28630,
- "1628": 28631,
- "bulldog": 28632,
- "crotch": 28633,
- "hackett": 28634,
- "yucatan": 28635,
- "##sure": 28636,
- "amplifiers": 28637,
- "brno": 28638,
- "ferrara": 28639,
- "migrating": 28640,
- "##gree": 28641,
- "thanking": 28642,
- "turing": 28643,
- "##eza": 28644,
- "mccann": 28645,
- "ting": 28646,
- "andersson": 28647,
- "onslaught": 28648,
- "gaines": 28649,
- "ganga": 28650,
- "incense": 28651,
- "standardization": 28652,
- "##mation": 28653,
- "sentai": 28654,
- "scuba": 28655,
- "stuffing": 28656,
- "turquoise": 28657,
- "waivers": 28658,
- "alloys": 28659,
- "##vitt": 28660,
- "regaining": 28661,
- "vaults": 28662,
- "##clops": 28663,
- "##gizing": 28664,
- "digger": 28665,
- "furry": 28666,
- "memorabilia": 28667,
- "probing": 28668,
- "##iad": 28669,
- "payton": 28670,
- "rec": 28671,
- "deutschland": 28672,
- "filippo": 28673,
- "opaque": 28674,
- "seamen": 28675,
- "zenith": 28676,
- "afrikaans": 28677,
- "##filtration": 28678,
- "disciplined": 28679,
- "inspirational": 28680,
- "##merie": 28681,
- "banco": 28682,
- "confuse": 28683,
- "grafton": 28684,
- "tod": 28685,
- "##dgets": 28686,
- "championed": 28687,
- "simi": 28688,
- "anomaly": 28689,
- "biplane": 28690,
- "##ceptive": 28691,
- "electrode": 28692,
- "##para": 28693,
- "1697": 28694,
- "cleavage": 28695,
- "crossbow": 28696,
- "swirl": 28697,
- "informant": 28698,
- "##lars": 28699,
- "##osta": 28700,
- "afi": 28701,
- "bonfire": 28702,
- "spec": 28703,
- "##oux": 28704,
- "lakeside": 28705,
- "slump": 28706,
- "##culus": 28707,
- "##lais": 28708,
- "##qvist": 28709,
- "##rrigan": 28710,
- "1016": 28711,
- "facades": 28712,
- "borg": 28713,
- "inwardly": 28714,
- "cervical": 28715,
- "xl": 28716,
- "pointedly": 28717,
- "050": 28718,
- "stabilization": 28719,
- "##odon": 28720,
- "chests": 28721,
- "1699": 28722,
- "hacked": 28723,
- "ctv": 28724,
- "orthogonal": 28725,
- "suzy": 28726,
- "##lastic": 28727,
- "gaulle": 28728,
- "jacobite": 28729,
- "rearview": 28730,
- "##cam": 28731,
- "##erted": 28732,
- "ashby": 28733,
- "##drik": 28734,
- "##igate": 28735,
- "##mise": 28736,
- "##zbek": 28737,
- "affectionately": 28738,
- "canine": 28739,
- "disperse": 28740,
- "latham": 28741,
- "##istles": 28742,
- "##ivar": 28743,
- "spielberg": 28744,
- "##orin": 28745,
- "##idium": 28746,
- "ezekiel": 28747,
- "cid": 28748,
- "##sg": 28749,
- "durga": 28750,
- "middletown": 28751,
- "##cina": 28752,
- "customized": 28753,
- "frontiers": 28754,
- "harden": 28755,
- "##etano": 28756,
- "##zzy": 28757,
- "1604": 28758,
- "bolsheviks": 28759,
- "##66": 28760,
- "coloration": 28761,
- "yoko": 28762,
- "##bedo": 28763,
- "briefs": 28764,
- "slabs": 28765,
- "debra": 28766,
- "liquidation": 28767,
- "plumage": 28768,
- "##oin": 28769,
- "blossoms": 28770,
- "dementia": 28771,
- "subsidy": 28772,
- "1611": 28773,
- "proctor": 28774,
- "relational": 28775,
- "jerseys": 28776,
- "parochial": 28777,
- "ter": 28778,
- "##ici": 28779,
- "esa": 28780,
- "peshawar": 28781,
- "cavalier": 28782,
- "loren": 28783,
- "cpi": 28784,
- "idiots": 28785,
- "shamrock": 28786,
- "1646": 28787,
- "dutton": 28788,
- "malabar": 28789,
- "mustache": 28790,
- "##endez": 28791,
- "##ocytes": 28792,
- "referencing": 28793,
- "terminates": 28794,
- "marche": 28795,
- "yarmouth": 28796,
- "##sop": 28797,
- "acton": 28798,
- "mated": 28799,
- "seton": 28800,
- "subtly": 28801,
- "baptised": 28802,
- "beige": 28803,
- "extremes": 28804,
- "jolted": 28805,
- "kristina": 28806,
- "telecast": 28807,
- "##actic": 28808,
- "safeguard": 28809,
- "waldo": 28810,
- "##baldi": 28811,
- "##bular": 28812,
- "endeavors": 28813,
- "sloppy": 28814,
- "subterranean": 28815,
- "##ensburg": 28816,
- "##itung": 28817,
- "delicately": 28818,
- "pigment": 28819,
- "tq": 28820,
- "##scu": 28821,
- "1626": 28822,
- "##ound": 28823,
- "collisions": 28824,
- "coveted": 28825,
- "herds": 28826,
- "##personal": 28827,
- "##meister": 28828,
- "##nberger": 28829,
- "chopra": 28830,
- "##ricting": 28831,
- "abnormalities": 28832,
- "defective": 28833,
- "galician": 28834,
- "lucie": 28835,
- "##dilly": 28836,
- "alligator": 28837,
- "likened": 28838,
- "##genase": 28839,
- "burundi": 28840,
- "clears": 28841,
- "complexion": 28842,
- "derelict": 28843,
- "deafening": 28844,
- "diablo": 28845,
- "fingered": 28846,
- "champaign": 28847,
- "dogg": 28848,
- "enlist": 28849,
- "isotope": 28850,
- "labeling": 28851,
- "mrna": 28852,
- "##erre": 28853,
- "brilliance": 28854,
- "marvelous": 28855,
- "##ayo": 28856,
- "1652": 28857,
- "crawley": 28858,
- "ether": 28859,
- "footed": 28860,
- "dwellers": 28861,
- "deserts": 28862,
- "hamish": 28863,
- "rubs": 28864,
- "warlock": 28865,
- "skimmed": 28866,
- "##lizer": 28867,
- "870": 28868,
- "buick": 28869,
- "embark": 28870,
- "heraldic": 28871,
- "irregularities": 28872,
- "##ajan": 28873,
- "kiara": 28874,
- "##kulam": 28875,
- "##ieg": 28876,
- "antigen": 28877,
- "kowalski": 28878,
- "##lge": 28879,
- "oakley": 28880,
- "visitation": 28881,
- "##mbit": 28882,
- "vt": 28883,
- "##suit": 28884,
- "1570": 28885,
- "murderers": 28886,
- "##miento": 28887,
- "##rites": 28888,
- "chimneys": 28889,
- "##sling": 28890,
- "condemn": 28891,
- "custer": 28892,
- "exchequer": 28893,
- "havre": 28894,
- "##ghi": 28895,
- "fluctuations": 28896,
- "##rations": 28897,
- "dfb": 28898,
- "hendricks": 28899,
- "vaccines": 28900,
- "##tarian": 28901,
- "nietzsche": 28902,
- "biking": 28903,
- "juicy": 28904,
- "##duced": 28905,
- "brooding": 28906,
- "scrolling": 28907,
- "selangor": 28908,
- "##ragan": 28909,
- "352": 28910,
- "annum": 28911,
- "boomed": 28912,
- "seminole": 28913,
- "sugarcane": 28914,
- "##dna": 28915,
- "departmental": 28916,
- "dismissing": 28917,
- "innsbruck": 28918,
- "arteries": 28919,
- "ashok": 28920,
- "batavia": 28921,
- "daze": 28922,
- "kun": 28923,
- "overtook": 28924,
- "##rga": 28925,
- "##tlan": 28926,
- "beheaded": 28927,
- "gaddafi": 28928,
- "holm": 28929,
- "electronically": 28930,
- "faulty": 28931,
- "galilee": 28932,
- "fractures": 28933,
- "kobayashi": 28934,
- "##lized": 28935,
- "gunmen": 28936,
- "magma": 28937,
- "aramaic": 28938,
- "mala": 28939,
- "eastenders": 28940,
- "inference": 28941,
- "messengers": 28942,
- "bf": 28943,
- "##qu": 28944,
- "407": 28945,
- "bathrooms": 28946,
- "##vere": 28947,
- "1658": 28948,
- "flashbacks": 28949,
- "ideally": 28950,
- "misunderstood": 28951,
- "##jali": 28952,
- "##weather": 28953,
- "mendez": 28954,
- "##grounds": 28955,
- "505": 28956,
- "uncanny": 28957,
- "##iii": 28958,
- "1709": 28959,
- "friendships": 28960,
- "##nbc": 28961,
- "sacrament": 28962,
- "accommodated": 28963,
- "reiterated": 28964,
- "logistical": 28965,
- "pebbles": 28966,
- "thumped": 28967,
- "##escence": 28968,
- "administering": 28969,
- "decrees": 28970,
- "drafts": 28971,
- "##flight": 28972,
- "##cased": 28973,
- "##tula": 28974,
- "futuristic": 28975,
- "picket": 28976,
- "intimidation": 28977,
- "winthrop": 28978,
- "##fahan": 28979,
- "interfered": 28980,
- "339": 28981,
- "afar": 28982,
- "francoise": 28983,
- "morally": 28984,
- "uta": 28985,
- "cochin": 28986,
- "croft": 28987,
- "dwarfs": 28988,
- "##bruck": 28989,
- "##dents": 28990,
- "##nami": 28991,
- "biker": 28992,
- "##hner": 28993,
- "##meral": 28994,
- "nano": 28995,
- "##isen": 28996,
- "##ometric": 28997,
- "##pres": 28998,
- "##ан": 28999,
- "brightened": 29000,
- "meek": 29001,
- "parcels": 29002,
- "securely": 29003,
- "gunners": 29004,
- "##jhl": 29005,
- "##zko": 29006,
- "agile": 29007,
- "hysteria": 29008,
- "##lten": 29009,
- "##rcus": 29010,
- "bukit": 29011,
- "champs": 29012,
- "chevy": 29013,
- "cuckoo": 29014,
- "leith": 29015,
- "sadler": 29016,
- "theologians": 29017,
- "welded": 29018,
- "##section": 29019,
- "1663": 29020,
- "jj": 29021,
- "plurality": 29022,
- "xander": 29023,
- "##rooms": 29024,
- "##formed": 29025,
- "shredded": 29026,
- "temps": 29027,
- "intimately": 29028,
- "pau": 29029,
- "tormented": 29030,
- "##lok": 29031,
- "##stellar": 29032,
- "1618": 29033,
- "charred": 29034,
- "ems": 29035,
- "essen": 29036,
- "##mmel": 29037,
- "alarms": 29038,
- "spraying": 29039,
- "ascot": 29040,
- "blooms": 29041,
- "twinkle": 29042,
- "##abia": 29043,
- "##apes": 29044,
- "internment": 29045,
- "obsidian": 29046,
- "##chaft": 29047,
- "snoop": 29048,
- "##dav": 29049,
- "##ooping": 29050,
- "malibu": 29051,
- "##tension": 29052,
- "quiver": 29053,
- "##itia": 29054,
- "hays": 29055,
- "mcintosh": 29056,
- "travers": 29057,
- "walsall": 29058,
- "##ffie": 29059,
- "1623": 29060,
- "beverley": 29061,
- "schwarz": 29062,
- "plunging": 29063,
- "structurally": 29064,
- "m3": 29065,
- "rosenthal": 29066,
- "vikram": 29067,
- "##tsk": 29068,
- "770": 29069,
- "ghz": 29070,
- "##onda": 29071,
- "##tiv": 29072,
- "chalmers": 29073,
- "groningen": 29074,
- "pew": 29075,
- "reckon": 29076,
- "unicef": 29077,
- "##rvis": 29078,
- "55th": 29079,
- "##gni": 29080,
- "1651": 29081,
- "sulawesi": 29082,
- "avila": 29083,
- "cai": 29084,
- "metaphysical": 29085,
- "screwing": 29086,
- "turbulence": 29087,
- "##mberg": 29088,
- "augusto": 29089,
- "samba": 29090,
- "56th": 29091,
- "baffled": 29092,
- "momentary": 29093,
- "toxin": 29094,
- "##urian": 29095,
- "##wani": 29096,
- "aachen": 29097,
- "condoms": 29098,
- "dali": 29099,
- "steppe": 29100,
- "##3d": 29101,
- "##app": 29102,
- "##oed": 29103,
- "##year": 29104,
- "adolescence": 29105,
- "dauphin": 29106,
- "electrically": 29107,
- "inaccessible": 29108,
- "microscopy": 29109,
- "nikita": 29110,
- "##ega": 29111,
- "atv": 29112,
- "##cel": 29113,
- "##enter": 29114,
- "##oles": 29115,
- "##oteric": 29116,
- "##ы": 29117,
- "accountants": 29118,
- "punishments": 29119,
- "wrongly": 29120,
- "bribes": 29121,
- "adventurous": 29122,
- "clinch": 29123,
- "flinders": 29124,
- "southland": 29125,
- "##hem": 29126,
- "##kata": 29127,
- "gough": 29128,
- "##ciency": 29129,
- "lads": 29130,
- "soared": 29131,
- "##ה": 29132,
- "undergoes": 29133,
- "deformation": 29134,
- "outlawed": 29135,
- "rubbish": 29136,
- "##arus": 29137,
- "##mussen": 29138,
- "##nidae": 29139,
- "##rzburg": 29140,
- "arcs": 29141,
- "##ingdon": 29142,
- "##tituted": 29143,
- "1695": 29144,
- "wheelbase": 29145,
- "wheeling": 29146,
- "bombardier": 29147,
- "campground": 29148,
- "zebra": 29149,
- "##lices": 29150,
- "##oj": 29151,
- "##bain": 29152,
- "lullaby": 29153,
- "##ecure": 29154,
- "donetsk": 29155,
- "wylie": 29156,
- "grenada": 29157,
- "##arding": 29158,
- "##ης": 29159,
- "squinting": 29160,
- "eireann": 29161,
- "opposes": 29162,
- "##andra": 29163,
- "maximal": 29164,
- "runes": 29165,
- "##broken": 29166,
- "##cuting": 29167,
- "##iface": 29168,
- "##ror": 29169,
- "##rosis": 29170,
- "additive": 29171,
- "britney": 29172,
- "adultery": 29173,
- "triggering": 29174,
- "##drome": 29175,
- "detrimental": 29176,
- "aarhus": 29177,
- "containment": 29178,
- "jc": 29179,
- "swapped": 29180,
- "vichy": 29181,
- "##ioms": 29182,
- "madly": 29183,
- "##oric": 29184,
- "##rag": 29185,
- "brant": 29186,
- "##ckey": 29187,
- "##trix": 29188,
- "1560": 29189,
- "1612": 29190,
- "broughton": 29191,
- "rustling": 29192,
- "##stems": 29193,
- "##uder": 29194,
- "asbestos": 29195,
- "mentoring": 29196,
- "##nivorous": 29197,
- "finley": 29198,
- "leaps": 29199,
- "##isan": 29200,
- "apical": 29201,
- "pry": 29202,
- "slits": 29203,
- "substitutes": 29204,
- "##dict": 29205,
- "intuitive": 29206,
- "fantasia": 29207,
- "insistent": 29208,
- "unreasonable": 29209,
- "##igen": 29210,
- "##vna": 29211,
- "domed": 29212,
- "hannover": 29213,
- "margot": 29214,
- "ponder": 29215,
- "##zziness": 29216,
- "impromptu": 29217,
- "jian": 29218,
- "lc": 29219,
- "rampage": 29220,
- "stemming": 29221,
- "##eft": 29222,
- "andrey": 29223,
- "gerais": 29224,
- "whichever": 29225,
- "amnesia": 29226,
- "appropriated": 29227,
- "anzac": 29228,
- "clicks": 29229,
- "modifying": 29230,
- "ultimatum": 29231,
- "cambrian": 29232,
- "maids": 29233,
- "verve": 29234,
- "yellowstone": 29235,
- "##mbs": 29236,
- "conservatoire": 29237,
- "##scribe": 29238,
- "adherence": 29239,
- "dinners": 29240,
- "spectra": 29241,
- "imperfect": 29242,
- "mysteriously": 29243,
- "sidekick": 29244,
- "tatar": 29245,
- "tuba": 29246,
- "##aks": 29247,
- "##ifolia": 29248,
- "distrust": 29249,
- "##athan": 29250,
- "##zle": 29251,
- "c2": 29252,
- "ronin": 29253,
- "zac": 29254,
- "##pse": 29255,
- "celaena": 29256,
- "instrumentalist": 29257,
- "scents": 29258,
- "skopje": 29259,
- "##mbling": 29260,
- "comical": 29261,
- "compensated": 29262,
- "vidal": 29263,
- "condor": 29264,
- "intersect": 29265,
- "jingle": 29266,
- "wavelengths": 29267,
- "##urrent": 29268,
- "mcqueen": 29269,
- "##izzly": 29270,
- "carp": 29271,
- "weasel": 29272,
- "422": 29273,
- "kanye": 29274,
- "militias": 29275,
- "postdoctoral": 29276,
- "eugen": 29277,
- "gunslinger": 29278,
- "##ɛ": 29279,
- "faux": 29280,
- "hospice": 29281,
- "##for": 29282,
- "appalled": 29283,
- "derivation": 29284,
- "dwarves": 29285,
- "##elis": 29286,
- "dilapidated": 29287,
- "##folk": 29288,
- "astoria": 29289,
- "philology": 29290,
- "##lwyn": 29291,
- "##otho": 29292,
- "##saka": 29293,
- "inducing": 29294,
- "philanthropy": 29295,
- "##bf": 29296,
- "##itative": 29297,
- "geek": 29298,
- "markedly": 29299,
- "sql": 29300,
- "##yce": 29301,
- "bessie": 29302,
- "indices": 29303,
- "rn": 29304,
- "##flict": 29305,
- "495": 29306,
- "frowns": 29307,
- "resolving": 29308,
- "weightlifting": 29309,
- "tugs": 29310,
- "cleric": 29311,
- "contentious": 29312,
- "1653": 29313,
- "mania": 29314,
- "rms": 29315,
- "##miya": 29316,
- "##reate": 29317,
- "##ruck": 29318,
- "##tucket": 29319,
- "bien": 29320,
- "eels": 29321,
- "marek": 29322,
- "##ayton": 29323,
- "##cence": 29324,
- "discreet": 29325,
- "unofficially": 29326,
- "##ife": 29327,
- "leaks": 29328,
- "##bber": 29329,
- "1705": 29330,
- "332": 29331,
- "dung": 29332,
- "compressor": 29333,
- "hillsborough": 29334,
- "pandit": 29335,
- "shillings": 29336,
- "distal": 29337,
- "##skin": 29338,
- "381": 29339,
- "##tat": 29340,
- "##you": 29341,
- "nosed": 29342,
- "##nir": 29343,
- "mangrove": 29344,
- "undeveloped": 29345,
- "##idia": 29346,
- "textures": 29347,
- "##inho": 29348,
- "##500": 29349,
- "##rise": 29350,
- "ae": 29351,
- "irritating": 29352,
- "nay": 29353,
- "amazingly": 29354,
- "bancroft": 29355,
- "apologetic": 29356,
- "compassionate": 29357,
- "kata": 29358,
- "symphonies": 29359,
- "##lovic": 29360,
- "airspace": 29361,
- "##lch": 29362,
- "930": 29363,
- "gifford": 29364,
- "precautions": 29365,
- "fulfillment": 29366,
- "sevilla": 29367,
- "vulgar": 29368,
- "martinique": 29369,
- "##urities": 29370,
- "looting": 29371,
- "piccolo": 29372,
- "tidy": 29373,
- "##dermott": 29374,
- "quadrant": 29375,
- "armchair": 29376,
- "incomes": 29377,
- "mathematicians": 29378,
- "stampede": 29379,
- "nilsson": 29380,
- "##inking": 29381,
- "##scan": 29382,
- "foo": 29383,
- "quarterfinal": 29384,
- "##ostal": 29385,
- "shang": 29386,
- "shouldered": 29387,
- "squirrels": 29388,
- "##owe": 29389,
- "344": 29390,
- "vinegar": 29391,
- "##bner": 29392,
- "##rchy": 29393,
- "##systems": 29394,
- "delaying": 29395,
- "##trics": 29396,
- "ars": 29397,
- "dwyer": 29398,
- "rhapsody": 29399,
- "sponsoring": 29400,
- "##gration": 29401,
- "bipolar": 29402,
- "cinder": 29403,
- "starters": 29404,
- "##olio": 29405,
- "##urst": 29406,
- "421": 29407,
- "signage": 29408,
- "##nty": 29409,
- "aground": 29410,
- "figurative": 29411,
- "mons": 29412,
- "acquaintances": 29413,
- "duets": 29414,
- "erroneously": 29415,
- "soyuz": 29416,
- "elliptic": 29417,
- "recreated": 29418,
- "##cultural": 29419,
- "##quette": 29420,
- "##ssed": 29421,
- "##tma": 29422,
- "##zcz": 29423,
- "moderator": 29424,
- "scares": 29425,
- "##itaire": 29426,
- "##stones": 29427,
- "##udence": 29428,
- "juniper": 29429,
- "sighting": 29430,
- "##just": 29431,
- "##nsen": 29432,
- "britten": 29433,
- "calabria": 29434,
- "ry": 29435,
- "bop": 29436,
- "cramer": 29437,
- "forsyth": 29438,
- "stillness": 29439,
- "##л": 29440,
- "airmen": 29441,
- "gathers": 29442,
- "unfit": 29443,
- "##umber": 29444,
- "##upt": 29445,
- "taunting": 29446,
- "##rip": 29447,
- "seeker": 29448,
- "streamlined": 29449,
- "##bution": 29450,
- "holster": 29451,
- "schumann": 29452,
- "tread": 29453,
- "vox": 29454,
- "##gano": 29455,
- "##onzo": 29456,
- "strive": 29457,
- "dil": 29458,
- "reforming": 29459,
- "covent": 29460,
- "newbury": 29461,
- "predicting": 29462,
- "##orro": 29463,
- "decorate": 29464,
- "tre": 29465,
- "##puted": 29466,
- "andover": 29467,
- "ie": 29468,
- "asahi": 29469,
- "dept": 29470,
- "dunkirk": 29471,
- "gills": 29472,
- "##tori": 29473,
- "buren": 29474,
- "huskies": 29475,
- "##stis": 29476,
- "##stov": 29477,
- "abstracts": 29478,
- "bets": 29479,
- "loosen": 29480,
- "##opa": 29481,
- "1682": 29482,
- "yearning": 29483,
- "##glio": 29484,
- "##sir": 29485,
- "berman": 29486,
- "effortlessly": 29487,
- "enamel": 29488,
- "napoli": 29489,
- "persist": 29490,
- "##peration": 29491,
- "##uez": 29492,
- "attache": 29493,
- "elisa": 29494,
- "b1": 29495,
- "invitations": 29496,
- "##kic": 29497,
- "accelerating": 29498,
- "reindeer": 29499,
- "boardwalk": 29500,
- "clutches": 29501,
- "nelly": 29502,
- "polka": 29503,
- "starbucks": 29504,
- "##kei": 29505,
- "adamant": 29506,
- "huey": 29507,
- "lough": 29508,
- "unbroken": 29509,
- "adventurer": 29510,
- "embroidery": 29511,
- "inspecting": 29512,
- "stanza": 29513,
- "##ducted": 29514,
- "naia": 29515,
- "taluka": 29516,
- "##pone": 29517,
- "##roids": 29518,
- "chases": 29519,
- "deprivation": 29520,
- "florian": 29521,
- "##jing": 29522,
- "##ppet": 29523,
- "earthly": 29524,
- "##lib": 29525,
- "##ssee": 29526,
- "colossal": 29527,
- "foreigner": 29528,
- "vet": 29529,
- "freaks": 29530,
- "patrice": 29531,
- "rosewood": 29532,
- "triassic": 29533,
- "upstate": 29534,
- "##pkins": 29535,
- "dominates": 29536,
- "ata": 29537,
- "chants": 29538,
- "ks": 29539,
- "vo": 29540,
- "##400": 29541,
- "##bley": 29542,
- "##raya": 29543,
- "##rmed": 29544,
- "555": 29545,
- "agra": 29546,
- "infiltrate": 29547,
- "##ailing": 29548,
- "##ilation": 29549,
- "##tzer": 29550,
- "##uppe": 29551,
- "##werk": 29552,
- "binoculars": 29553,
- "enthusiast": 29554,
- "fujian": 29555,
- "squeak": 29556,
- "##avs": 29557,
- "abolitionist": 29558,
- "almeida": 29559,
- "boredom": 29560,
- "hampstead": 29561,
- "marsden": 29562,
- "rations": 29563,
- "##ands": 29564,
- "inflated": 29565,
- "334": 29566,
- "bonuses": 29567,
- "rosalie": 29568,
- "patna": 29569,
- "##rco": 29570,
- "329": 29571,
- "detachments": 29572,
- "penitentiary": 29573,
- "54th": 29574,
- "flourishing": 29575,
- "woolf": 29576,
- "##dion": 29577,
- "##etched": 29578,
- "papyrus": 29579,
- "##lster": 29580,
- "##nsor": 29581,
- "##toy": 29582,
- "bobbed": 29583,
- "dismounted": 29584,
- "endelle": 29585,
- "inhuman": 29586,
- "motorola": 29587,
- "tbs": 29588,
- "wince": 29589,
- "wreath": 29590,
- "##ticus": 29591,
- "hideout": 29592,
- "inspections": 29593,
- "sanjay": 29594,
- "disgrace": 29595,
- "infused": 29596,
- "pudding": 29597,
- "stalks": 29598,
- "##urbed": 29599,
- "arsenic": 29600,
- "leases": 29601,
- "##hyl": 29602,
- "##rrard": 29603,
- "collarbone": 29604,
- "##waite": 29605,
- "##wil": 29606,
- "dowry": 29607,
- "##bant": 29608,
- "##edance": 29609,
- "genealogical": 29610,
- "nitrate": 29611,
- "salamanca": 29612,
- "scandals": 29613,
- "thyroid": 29614,
- "necessitated": 29615,
- "##!": 29616,
- "##\"": 29617,
- "###": 29618,
- "##$": 29619,
- "##%": 29620,
- "##&": 29621,
- "##'": 29622,
- "##(": 29623,
- "##)": 29624,
- "##*": 29625,
- "##+": 29626,
- "##,": 29627,
- "##-": 29628,
- "##.": 29629,
- "##/": 29630,
- "##:": 29631,
- "##;": 29632,
- "##<": 29633,
- "##=": 29634,
- "##>": 29635,
- "##?": 29636,
- "##@": 29637,
- "##[": 29638,
- "##\\": 29639,
- "##]": 29640,
- "##^": 29641,
- "##_": 29642,
- "##`": 29643,
- "##{": 29644,
- "##|": 29645,
- "##}": 29646,
- "##~": 29647,
- "##¡": 29648,
- "##¢": 29649,
- "##£": 29650,
- "##¤": 29651,
- "##¥": 29652,
- "##¦": 29653,
- "##§": 29654,
- "##¨": 29655,
- "##©": 29656,
- "##ª": 29657,
- "##«": 29658,
- "##¬": 29659,
- "##®": 29660,
- "##±": 29661,
- "##´": 29662,
- "##µ": 29663,
- "##¶": 29664,
- "##·": 29665,
- "##º": 29666,
- "##»": 29667,
- "##¼": 29668,
- "##¾": 29669,
- "##¿": 29670,
- "##æ": 29671,
- "##ð": 29672,
- "##÷": 29673,
- "##þ": 29674,
- "##đ": 29675,
- "##ħ": 29676,
- "##ŋ": 29677,
- "##œ": 29678,
- "##ƒ": 29679,
- "##ɐ": 29680,
- "##ɑ": 29681,
- "##ɒ": 29682,
- "##ɔ": 29683,
- "##ɕ": 29684,
- "##ə": 29685,
- "##ɡ": 29686,
- "##ɣ": 29687,
- "##ɨ": 29688,
- "##ɪ": 29689,
- "##ɫ": 29690,
- "##ɬ": 29691,
- "##ɯ": 29692,
- "##ɲ": 29693,
- "##ɴ": 29694,
- "##ɹ": 29695,
- "##ɾ": 29696,
- "##ʀ": 29697,
- "##ʁ": 29698,
- "##ʂ": 29699,
- "##ʃ": 29700,
- "##ʉ": 29701,
- "##ʊ": 29702,
- "##ʋ": 29703,
- "##ʌ": 29704,
- "##ʎ": 29705,
- "##ʐ": 29706,
- "##ʑ": 29707,
- "##ʒ": 29708,
- "##ʔ": 29709,
- "##ʰ": 29710,
- "##ʲ": 29711,
- "##ʳ": 29712,
- "##ʷ": 29713,
- "##ʸ": 29714,
- "##ʻ": 29715,
- "##ʼ": 29716,
- "##ʾ": 29717,
- "##ʿ": 29718,
- "##ˈ": 29719,
- "##ˡ": 29720,
- "##ˢ": 29721,
- "##ˣ": 29722,
- "##ˤ": 29723,
- "##β": 29724,
- "##γ": 29725,
- "##δ": 29726,
- "##ε": 29727,
- "##ζ": 29728,
- "##θ": 29729,
- "##κ": 29730,
- "##λ": 29731,
- "##μ": 29732,
- "##ξ": 29733,
- "##ο": 29734,
- "##π": 29735,
- "##ρ": 29736,
- "##σ": 29737,
- "##τ": 29738,
- "##υ": 29739,
- "##φ": 29740,
- "##χ": 29741,
- "##ψ": 29742,
- "##ω": 29743,
- "##б": 29744,
- "##г": 29745,
- "##д": 29746,
- "##ж": 29747,
- "##з": 29748,
- "##м": 29749,
- "##п": 29750,
- "##с": 29751,
- "##у": 29752,
- "##ф": 29753,
- "##х": 29754,
- "##ц": 29755,
- "##ч": 29756,
- "##ш": 29757,
- "##щ": 29758,
- "##ъ": 29759,
- "##э": 29760,
- "##ю": 29761,
- "##ђ": 29762,
- "##є": 29763,
- "##і": 29764,
- "##ј": 29765,
- "##љ": 29766,
- "##њ": 29767,
- "##ћ": 29768,
- "##ӏ": 29769,
- "##ա": 29770,
- "##բ": 29771,
- "##գ": 29772,
- "##դ": 29773,
- "##ե": 29774,
- "##թ": 29775,
- "##ի": 29776,
- "##լ": 29777,
- "##կ": 29778,
- "##հ": 29779,
- "##մ": 29780,
- "##յ": 29781,
- "##ն": 29782,
- "##ո": 29783,
- "##պ": 29784,
- "##ս": 29785,
- "##վ": 29786,
- "##տ": 29787,
- "##ր": 29788,
- "##ւ": 29789,
- "##ք": 29790,
- "##־": 29791,
- "##א": 29792,
- "##ב": 29793,
- "##ג": 29794,
- "##ד": 29795,
- "##ו": 29796,
- "##ז": 29797,
- "##ח": 29798,
- "##ט": 29799,
- "##י": 29800,
- "##ך": 29801,
- "##כ": 29802,
- "##ל": 29803,
- "##ם": 29804,
- "##מ": 29805,
- "##ן": 29806,
- "##נ": 29807,
- "##ס": 29808,
- "##ע": 29809,
- "##ף": 29810,
- "##פ": 29811,
- "##ץ": 29812,
- "##צ": 29813,
- "##ק": 29814,
- "##ר": 29815,
- "##ש": 29816,
- "##ת": 29817,
- "##،": 29818,
- "##ء": 29819,
- "##ب": 29820,
- "##ت": 29821,
- "##ث": 29822,
- "##ج": 29823,
- "##ح": 29824,
- "##خ": 29825,
- "##ذ": 29826,
- "##ز": 29827,
- "##س": 29828,
- "##ش": 29829,
- "##ص": 29830,
- "##ض": 29831,
- "##ط": 29832,
- "##ظ": 29833,
- "##ع": 29834,
- "##غ": 29835,
- "##ـ": 29836,
- "##ف": 29837,
- "##ق": 29838,
- "##ك": 29839,
- "##و": 29840,
- "##ى": 29841,
- "##ٹ": 29842,
- "##پ": 29843,
- "##چ": 29844,
- "##ک": 29845,
- "##گ": 29846,
- "##ں": 29847,
- "##ھ": 29848,
- "##ہ": 29849,
- "##ے": 29850,
- "##अ": 29851,
- "##आ": 29852,
- "##उ": 29853,
- "##ए": 29854,
- "##क": 29855,
- "##ख": 29856,
- "##ग": 29857,
- "##च": 29858,
- "##ज": 29859,
- "##ट": 29860,
- "##ड": 29861,
- "##ण": 29862,
- "##त": 29863,
- "##थ": 29864,
- "##द": 29865,
- "##ध": 29866,
- "##न": 29867,
- "##प": 29868,
- "##ब": 29869,
- "##भ": 29870,
- "##म": 29871,
- "##य": 29872,
- "##र": 29873,
- "##ल": 29874,
- "##व": 29875,
- "##श": 29876,
- "##ष": 29877,
- "##स": 29878,
- "##ह": 29879,
- "##ा": 29880,
- "##ि": 29881,
- "##ी": 29882,
- "##ो": 29883,
- "##।": 29884,
- "##॥": 29885,
- "##ং": 29886,
- "##অ": 29887,
- "##আ": 29888,
- "##ই": 29889,
- "##উ": 29890,
- "##এ": 29891,
- "##ও": 29892,
- "##ক": 29893,
- "##খ": 29894,
- "##গ": 29895,
- "##চ": 29896,
- "##ছ": 29897,
- "##জ": 29898,
- "##ট": 29899,
- "##ড": 29900,
- "##ণ": 29901,
- "##ত": 29902,
- "##থ": 29903,
- "##দ": 29904,
- "##ধ": 29905,
- "##ন": 29906,
- "##প": 29907,
- "##ব": 29908,
- "##ভ": 29909,
- "##ম": 29910,
- "##য": 29911,
- "##র": 29912,
- "##ল": 29913,
- "##শ": 29914,
- "##ষ": 29915,
- "##স": 29916,
- "##হ": 29917,
- "##া": 29918,
- "##ি": 29919,
- "##ী": 29920,
- "##ে": 29921,
- "##க": 29922,
- "##ச": 29923,
- "##ட": 29924,
- "##த": 29925,
- "##ந": 29926,
- "##ன": 29927,
- "##ப": 29928,
- "##ம": 29929,
- "##ய": 29930,
- "##ர": 29931,
- "##ல": 29932,
- "##ள": 29933,
- "##வ": 29934,
- "##ா": 29935,
- "##ி": 29936,
- "##ு": 29937,
- "##ே": 29938,
- "##ை": 29939,
- "##ನ": 29940,
- "##ರ": 29941,
- "##ಾ": 29942,
- "##ක": 29943,
- "##ය": 29944,
- "##ර": 29945,
- "##ල": 29946,
- "##ව": 29947,
- "##ා": 29948,
- "##ก": 29949,
- "##ง": 29950,
- "##ต": 29951,
- "##ท": 29952,
- "##น": 29953,
- "##พ": 29954,
- "##ม": 29955,
- "##ย": 29956,
- "##ร": 29957,
- "##ล": 29958,
- "##ว": 29959,
- "##ส": 29960,
- "##อ": 29961,
- "##า": 29962,
- "##เ": 29963,
- "##་": 29964,
- "##།": 29965,
- "##ག": 29966,
- "##ང": 29967,
- "##ད": 29968,
- "##ན": 29969,
- "##པ": 29970,
- "##བ": 29971,
- "##མ": 29972,
- "##འ": 29973,
- "##ར": 29974,
- "##ལ": 29975,
- "##ས": 29976,
- "##မ": 29977,
- "##ა": 29978,
- "##ბ": 29979,
- "##გ": 29980,
- "##დ": 29981,
- "##ე": 29982,
- "##ვ": 29983,
- "##თ": 29984,
- "##ი": 29985,
- "##კ": 29986,
- "##ლ": 29987,
- "##მ": 29988,
- "##ნ": 29989,
- "##ო": 29990,
- "##რ": 29991,
- "##ს": 29992,
- "##ტ": 29993,
- "##უ": 29994,
- "##ᄀ": 29995,
- "##ᄂ": 29996,
- "##ᄃ": 29997,
- "##ᄅ": 29998,
- "##ᄆ": 29999,
- "##ᄇ": 30000,
- "##ᄉ": 30001,
- "##ᄊ": 30002,
- "##ᄋ": 30003,
- "##ᄌ": 30004,
- "##ᄎ": 30005,
- "##ᄏ": 30006,
- "##ᄐ": 30007,
- "##ᄑ": 30008,
- "##ᄒ": 30009,
- "##ᅡ": 30010,
- "##ᅢ": 30011,
- "##ᅥ": 30012,
- "##ᅦ": 30013,
- "##ᅧ": 30014,
- "##ᅩ": 30015,
- "##ᅪ": 30016,
- "##ᅭ": 30017,
- "##ᅮ": 30018,
- "##ᅯ": 30019,
- "##ᅲ": 30020,
- "##ᅳ": 30021,
- "##ᅴ": 30022,
- "##ᅵ": 30023,
- "##ᆨ": 30024,
- "##ᆫ": 30025,
- "##ᆯ": 30026,
- "##ᆷ": 30027,
- "##ᆸ": 30028,
- "##ᆼ": 30029,
- "##ᴬ": 30030,
- "##ᴮ": 30031,
- "##ᴰ": 30032,
- "##ᴵ": 30033,
- "##ᴺ": 30034,
- "##ᵀ": 30035,
- "##ᵃ": 30036,
- "##ᵇ": 30037,
- "##ᵈ": 30038,
- "##ᵉ": 30039,
- "##ᵍ": 30040,
- "##ᵏ": 30041,
- "##ᵐ": 30042,
- "##ᵒ": 30043,
- "##ᵖ": 30044,
- "##ᵗ": 30045,
- "##ᵘ": 30046,
- "##ᵣ": 30047,
- "##ᵤ": 30048,
- "##ᵥ": 30049,
- "##ᶜ": 30050,
- "##ᶠ": 30051,
- "##‐": 30052,
- "##‑": 30053,
- "##‒": 30054,
- "##–": 30055,
- "##—": 30056,
- "##―": 30057,
- "##‖": 30058,
- "##‘": 30059,
- "##’": 30060,
- "##‚": 30061,
- "##“": 30062,
- "##”": 30063,
- "##„": 30064,
- "##†": 30065,
- "##‡": 30066,
- "##•": 30067,
- "##…": 30068,
- "##‰": 30069,
- "##′": 30070,
- "##″": 30071,
- "##›": 30072,
- "##‿": 30073,
- "##⁄": 30074,
- "##⁰": 30075,
- "##ⁱ": 30076,
- "##⁴": 30077,
- "##⁵": 30078,
- "##⁶": 30079,
- "##⁷": 30080,
- "##⁸": 30081,
- "##⁹": 30082,
- "##⁻": 30083,
- "##ⁿ": 30084,
- "##₅": 30085,
- "##₆": 30086,
- "##₇": 30087,
- "##₈": 30088,
- "##₉": 30089,
- "##₊": 30090,
- "##₍": 30091,
- "##₎": 30092,
- "##ₐ": 30093,
- "##ₑ": 30094,
- "##ₒ": 30095,
- "##ₓ": 30096,
- "##ₕ": 30097,
- "##ₖ": 30098,
- "##ₗ": 30099,
- "##ₘ": 30100,
- "##ₚ": 30101,
- "##ₛ": 30102,
- "##ₜ": 30103,
- "##₤": 30104,
- "##₩": 30105,
- "##€": 30106,
- "##₱": 30107,
- "##₹": 30108,
- "##ℓ": 30109,
- "##№": 30110,
- "##ℝ": 30111,
- "##™": 30112,
- "##⅓": 30113,
- "##⅔": 30114,
- "##←": 30115,
- "##↑": 30116,
- "##→": 30117,
- "##↓": 30118,
- "##↔": 30119,
- "##↦": 30120,
- "##⇄": 30121,
- "##⇌": 30122,
- "##⇒": 30123,
- "##∂": 30124,
- "##∅": 30125,
- "##∆": 30126,
- "##∇": 30127,
- "##∈": 30128,
- "##∗": 30129,
- "##∘": 30130,
- "##√": 30131,
- "##∞": 30132,
- "##∧": 30133,
- "##∨": 30134,
- "##∩": 30135,
- "##∪": 30136,
- "##≈": 30137,
- "##≡": 30138,
- "##≤": 30139,
- "##≥": 30140,
- "##⊂": 30141,
- "##⊆": 30142,
- "##⊕": 30143,
- "##⊗": 30144,
- "##⋅": 30145,
- "##─": 30146,
- "##│": 30147,
- "##■": 30148,
- "##▪": 30149,
- "##●": 30150,
- "##★": 30151,
- "##☆": 30152,
- "##☉": 30153,
- "##♠": 30154,
- "##♣": 30155,
- "##♥": 30156,
- "##♦": 30157,
- "##♯": 30158,
- "##⟨": 30159,
- "##⟩": 30160,
- "##ⱼ": 30161,
- "##⺩": 30162,
- "##⺼": 30163,
- "##⽥": 30164,
- "##、": 30165,
- "##。": 30166,
- "##〈": 30167,
- "##〉": 30168,
- "##《": 30169,
- "##》": 30170,
- "##「": 30171,
- "##」": 30172,
- "##『": 30173,
- "##』": 30174,
- "##〜": 30175,
- "##あ": 30176,
- "##い": 30177,
- "##う": 30178,
- "##え": 30179,
- "##お": 30180,
- "##か": 30181,
- "##き": 30182,
- "##く": 30183,
- "##け": 30184,
- "##こ": 30185,
- "##さ": 30186,
- "##し": 30187,
- "##す": 30188,
- "##せ": 30189,
- "##そ": 30190,
- "##た": 30191,
- "##ち": 30192,
- "##っ": 30193,
- "##つ": 30194,
- "##て": 30195,
- "##と": 30196,
- "##な": 30197,
- "##に": 30198,
- "##ぬ": 30199,
- "##ね": 30200,
- "##の": 30201,
- "##は": 30202,
- "##ひ": 30203,
- "##ふ": 30204,
- "##へ": 30205,
- "##ほ": 30206,
- "##ま": 30207,
- "##み": 30208,
- "##む": 30209,
- "##め": 30210,
- "##も": 30211,
- "##や": 30212,
- "##ゆ": 30213,
- "##よ": 30214,
- "##ら": 30215,
- "##り": 30216,
- "##る": 30217,
- "##れ": 30218,
- "##ろ": 30219,
- "##を": 30220,
- "##ん": 30221,
- "##ァ": 30222,
- "##ア": 30223,
- "##ィ": 30224,
- "##イ": 30225,
- "##ウ": 30226,
- "##ェ": 30227,
- "##エ": 30228,
- "##オ": 30229,
- "##カ": 30230,
- "##キ": 30231,
- "##ク": 30232,
- "##ケ": 30233,
- "##コ": 30234,
- "##サ": 30235,
- "##シ": 30236,
- "##ス": 30237,
- "##セ": 30238,
- "##タ": 30239,
- "##チ": 30240,
- "##ッ": 30241,
- "##ツ": 30242,
- "##テ": 30243,
- "##ト": 30244,
- "##ナ": 30245,
- "##ニ": 30246,
- "##ノ": 30247,
- "##ハ": 30248,
- "##ヒ": 30249,
- "##フ": 30250,
- "##ヘ": 30251,
- "##ホ": 30252,
- "##マ": 30253,
- "##ミ": 30254,
- "##ム": 30255,
- "##メ": 30256,
- "##モ": 30257,
- "##ャ": 30258,
- "##ュ": 30259,
- "##ョ": 30260,
- "##ラ": 30261,
- "##リ": 30262,
- "##ル": 30263,
- "##レ": 30264,
- "##ロ": 30265,
- "##ワ": 30266,
- "##ン": 30267,
- "##・": 30268,
- "##ー": 30269,
- "##一": 30270,
- "##三": 30271,
- "##上": 30272,
- "##下": 30273,
- "##不": 30274,
- "##世": 30275,
- "##中": 30276,
- "##主": 30277,
- "##久": 30278,
- "##之": 30279,
- "##也": 30280,
- "##事": 30281,
- "##二": 30282,
- "##五": 30283,
- "##井": 30284,
- "##京": 30285,
- "##人": 30286,
- "##亻": 30287,
- "##仁": 30288,
- "##介": 30289,
- "##代": 30290,
- "##仮": 30291,
- "##伊": 30292,
- "##会": 30293,
- "##佐": 30294,
- "##侍": 30295,
- "##保": 30296,
- "##信": 30297,
- "##健": 30298,
- "##元": 30299,
- "##光": 30300,
- "##八": 30301,
- "##公": 30302,
- "##内": 30303,
- "##出": 30304,
- "##分": 30305,
- "##前": 30306,
- "##劉": 30307,
- "##力": 30308,
- "##加": 30309,
- "##勝": 30310,
- "##北": 30311,
- "##区": 30312,
- "##十": 30313,
- "##千": 30314,
- "##南": 30315,
- "##博": 30316,
- "##原": 30317,
- "##口": 30318,
- "##古": 30319,
- "##史": 30320,
- "##司": 30321,
- "##合": 30322,
- "##吉": 30323,
- "##同": 30324,
- "##名": 30325,
- "##和": 30326,
- "##囗": 30327,
- "##四": 30328,
- "##国": 30329,
- "##國": 30330,
- "##土": 30331,
- "##地": 30332,
- "##坂": 30333,
- "##城": 30334,
- "##堂": 30335,
- "##場": 30336,
- "##士": 30337,
- "##夏": 30338,
- "##外": 30339,
- "##大": 30340,
- "##天": 30341,
- "##太": 30342,
- "##夫": 30343,
- "##奈": 30344,
- "##女": 30345,
- "##子": 30346,
- "##学": 30347,
- "##宀": 30348,
- "##宇": 30349,
- "##安": 30350,
- "##宗": 30351,
- "##定": 30352,
- "##宣": 30353,
- "##宮": 30354,
- "##家": 30355,
- "##宿": 30356,
- "##寺": 30357,
- "##將": 30358,
- "##小": 30359,
- "##尚": 30360,
- "##山": 30361,
- "##岡": 30362,
- "##島": 30363,
- "##崎": 30364,
- "##川": 30365,
- "##州": 30366,
- "##巿": 30367,
- "##帝": 30368,
- "##平": 30369,
- "##年": 30370,
- "##幸": 30371,
- "##广": 30372,
- "##弘": 30373,
- "##張": 30374,
- "##彳": 30375,
- "##後": 30376,
- "##御": 30377,
- "##德": 30378,
- "##心": 30379,
- "##忄": 30380,
- "##志": 30381,
- "##忠": 30382,
- "##愛": 30383,
- "##成": 30384,
- "##我": 30385,
- "##戦": 30386,
- "##戸": 30387,
- "##手": 30388,
- "##扌": 30389,
- "##政": 30390,
- "##文": 30391,
- "##新": 30392,
- "##方": 30393,
- "##日": 30394,
- "##明": 30395,
- "##星": 30396,
- "##春": 30397,
- "##昭": 30398,
- "##智": 30399,
- "##曲": 30400,
- "##書": 30401,
- "##月": 30402,
- "##有": 30403,
- "##朝": 30404,
- "##木": 30405,
- "##本": 30406,
- "##李": 30407,
- "##村": 30408,
- "##東": 30409,
- "##松": 30410,
- "##林": 30411,
- "##森": 30412,
- "##楊": 30413,
- "##樹": 30414,
- "##橋": 30415,
- "##歌": 30416,
- "##止": 30417,
- "##正": 30418,
- "##武": 30419,
- "##比": 30420,
- "##氏": 30421,
- "##民": 30422,
- "##水": 30423,
- "##氵": 30424,
- "##氷": 30425,
- "##永": 30426,
- "##江": 30427,
- "##沢": 30428,
- "##河": 30429,
- "##治": 30430,
- "##法": 30431,
- "##海": 30432,
- "##清": 30433,
- "##漢": 30434,
- "##瀬": 30435,
- "##火": 30436,
- "##版": 30437,
- "##犬": 30438,
- "##王": 30439,
- "##生": 30440,
- "##田": 30441,
- "##男": 30442,
- "##疒": 30443,
- "##発": 30444,
- "##白": 30445,
- "##的": 30446,
- "##皇": 30447,
- "##目": 30448,
- "##相": 30449,
- "##省": 30450,
- "##真": 30451,
- "##石": 30452,
- "##示": 30453,
- "##社": 30454,
- "##神": 30455,
- "##福": 30456,
- "##禾": 30457,
- "##秀": 30458,
- "##秋": 30459,
- "##空": 30460,
- "##立": 30461,
- "##章": 30462,
- "##竹": 30463,
- "##糹": 30464,
- "##美": 30465,
- "##義": 30466,
- "##耳": 30467,
- "##良": 30468,
- "##艹": 30469,
- "##花": 30470,
- "##英": 30471,
- "##華": 30472,
- "##葉": 30473,
- "##藤": 30474,
- "##行": 30475,
- "##街": 30476,
- "##西": 30477,
- "##見": 30478,
- "##訁": 30479,
- "##語": 30480,
- "##谷": 30481,
- "##貝": 30482,
- "##貴": 30483,
- "##車": 30484,
- "##軍": 30485,
- "##辶": 30486,
- "##道": 30487,
- "##郎": 30488,
- "##郡": 30489,
- "##部": 30490,
- "##都": 30491,
- "##里": 30492,
- "##野": 30493,
- "##金": 30494,
- "##鈴": 30495,
- "##镇": 30496,
- "##長": 30497,
- "##門": 30498,
- "##間": 30499,
- "##阝": 30500,
- "##阿": 30501,
- "##陳": 30502,
- "##陽": 30503,
- "##雄": 30504,
- "##青": 30505,
- "##面": 30506,
- "##風": 30507,
- "##食": 30508,
- "##香": 30509,
- "##馬": 30510,
- "##高": 30511,
- "##龍": 30512,
- "##龸": 30513,
- "##fi": 30514,
- "##fl": 30515,
- "##!": 30516,
- "##(": 30517,
- "##)": 30518,
- "##,": 30519,
- "##-": 30520,
- "##.": 30521,
- "##/": 30522,
- "##:": 30523,
- "##?": 30524,
- "##~": 30525,
- "": 30526
- }
- }
-}
diff --git a/caddy_chatbot/src/model/tokenizer_config.json b/caddy_chatbot/src/model/tokenizer_config.json
deleted file mode 100644
index c4de5cd..0000000
--- a/caddy_chatbot/src/model/tokenizer_config.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "added_tokens_decoder": {
- "0": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false,
- "special": true
- },
- "1": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false,
- "special": true
- },
- "2": {
- "content": "",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false,
- "special": true
- },
- "3": {
- "content": "",
- "lstrip": false,
- "normalized": true,
- "rstrip": false,
- "single_word": false,
- "special": true
- },
- "104": {
- "content": "[UNK]",
- "lstrip": false,
- "normalized": false,
- "rstrip": false,
- "single_word": false,
- "special": true
- },
- "30526": {
- "content": "",
- "lstrip": true,
- "normalized": false,
- "rstrip": false,
- "single_word": false,
- "special": true
- }
- },
- "bos_token": "",
- "clean_up_tokenization_spaces": true,
- "cls_token": "",
- "do_lower_case": true,
- "eos_token": "",
- "mask_token": "",
- "max_length": 128,
- "model_max_length": 512,
- "pad_to_multiple_of": null,
- "pad_token": "",
- "pad_token_type_id": 0,
- "padding_side": "right",
- "sep_token": "",
- "stride": 0,
- "strip_accents": null,
- "tokenize_chinese_chars": true,
- "tokenizer_class": "MPNetTokenizer",
- "truncation_side": "right",
- "truncation_strategy": "longest_first",
- "unk_token": "[UNK]"
-}
diff --git a/caddy_chatbot/src/model/vocab.txt b/caddy_chatbot/src/model/vocab.txt
deleted file mode 100644
index 1c51ab7..0000000
--- a/caddy_chatbot/src/model/vocab.txt
+++ /dev/null
@@ -1,30527 +0,0 @@
-
-
-
-
-[PAD]
-[unused0]
-[unused1]
-[unused2]
-[unused3]
-[unused4]
-[unused5]
-[unused6]
-[unused7]
-[unused8]
-[unused9]
-[unused10]
-[unused11]
-[unused12]
-[unused13]
-[unused14]
-[unused15]
-[unused16]
-[unused17]
-[unused18]
-[unused19]
-[unused20]
-[unused21]
-[unused22]
-[unused23]
-[unused24]
-[unused25]
-[unused26]
-[unused27]
-[unused28]
-[unused29]
-[unused30]
-[unused31]
-[unused32]
-[unused33]
-[unused34]
-[unused35]
-[unused36]
-[unused37]
-[unused38]
-[unused39]
-[unused40]
-[unused41]
-[unused42]
-[unused43]
-[unused44]
-[unused45]
-[unused46]
-[unused47]
-[unused48]
-[unused49]
-[unused50]
-[unused51]
-[unused52]
-[unused53]
-[unused54]
-[unused55]
-[unused56]
-[unused57]
-[unused58]
-[unused59]
-[unused60]
-[unused61]
-[unused62]
-[unused63]
-[unused64]
-[unused65]
-[unused66]
-[unused67]
-[unused68]
-[unused69]
-[unused70]
-[unused71]
-[unused72]
-[unused73]
-[unused74]
-[unused75]
-[unused76]
-[unused77]
-[unused78]
-[unused79]
-[unused80]
-[unused81]
-[unused82]
-[unused83]
-[unused84]
-[unused85]
-[unused86]
-[unused87]
-[unused88]
-[unused89]
-[unused90]
-[unused91]
-[unused92]
-[unused93]
-[unused94]
-[unused95]
-[unused96]
-[unused97]
-[unused98]
-[UNK]
-[CLS]
-[SEP]
-[MASK]
-[unused99]
-[unused100]
-[unused101]
-[unused102]
-[unused103]
-[unused104]
-[unused105]
-[unused106]
-[unused107]
-[unused108]
-[unused109]
-[unused110]
-[unused111]
-[unused112]
-[unused113]
-[unused114]
-[unused115]
-[unused116]
-[unused117]
-[unused118]
-[unused119]
-[unused120]
-[unused121]
-[unused122]
-[unused123]
-[unused124]
-[unused125]
-[unused126]
-[unused127]
-[unused128]
-[unused129]
-[unused130]
-[unused131]
-[unused132]
-[unused133]
-[unused134]
-[unused135]
-[unused136]
-[unused137]
-[unused138]
-[unused139]
-[unused140]
-[unused141]
-[unused142]
-[unused143]
-[unused144]
-[unused145]
-[unused146]
-[unused147]
-[unused148]
-[unused149]
-[unused150]
-[unused151]
-[unused152]
-[unused153]
-[unused154]
-[unused155]
-[unused156]
-[unused157]
-[unused158]
-[unused159]
-[unused160]
-[unused161]
-[unused162]
-[unused163]
-[unused164]
-[unused165]
-[unused166]
-[unused167]
-[unused168]
-[unused169]
-[unused170]
-[unused171]
-[unused172]
-[unused173]
-[unused174]
-[unused175]
-[unused176]
-[unused177]
-[unused178]
-[unused179]
-[unused180]
-[unused181]
-[unused182]
-[unused183]
-[unused184]
-[unused185]
-[unused186]
-[unused187]
-[unused188]
-[unused189]
-[unused190]
-[unused191]
-[unused192]
-[unused193]
-[unused194]
-[unused195]
-[unused196]
-[unused197]
-[unused198]
-[unused199]
-[unused200]
-[unused201]
-[unused202]
-[unused203]
-[unused204]
-[unused205]
-[unused206]
-[unused207]
-[unused208]
-[unused209]
-[unused210]
-[unused211]
-[unused212]
-[unused213]
-[unused214]
-[unused215]
-[unused216]
-[unused217]
-[unused218]
-[unused219]
-[unused220]
-[unused221]
-[unused222]
-[unused223]
-[unused224]
-[unused225]
-[unused226]
-[unused227]
-[unused228]
-[unused229]
-[unused230]
-[unused231]
-[unused232]
-[unused233]
-[unused234]
-[unused235]
-[unused236]
-[unused237]
-[unused238]
-[unused239]
-[unused240]
-[unused241]
-[unused242]
-[unused243]
-[unused244]
-[unused245]
-[unused246]
-[unused247]
-[unused248]
-[unused249]
-[unused250]
-[unused251]
-[unused252]
-[unused253]
-[unused254]
-[unused255]
-[unused256]
-[unused257]
-[unused258]
-[unused259]
-[unused260]
-[unused261]
-[unused262]
-[unused263]
-[unused264]
-[unused265]
-[unused266]
-[unused267]
-[unused268]
-[unused269]
-[unused270]
-[unused271]
-[unused272]
-[unused273]
-[unused274]
-[unused275]
-[unused276]
-[unused277]
-[unused278]
-[unused279]
-[unused280]
-[unused281]
-[unused282]
-[unused283]
-[unused284]
-[unused285]
-[unused286]
-[unused287]
-[unused288]
-[unused289]
-[unused290]
-[unused291]
-[unused292]
-[unused293]
-[unused294]
-[unused295]
-[unused296]
-[unused297]
-[unused298]
-[unused299]
-[unused300]
-[unused301]
-[unused302]
-[unused303]
-[unused304]
-[unused305]
-[unused306]
-[unused307]
-[unused308]
-[unused309]
-[unused310]
-[unused311]
-[unused312]
-[unused313]
-[unused314]
-[unused315]
-[unused316]
-[unused317]
-[unused318]
-[unused319]
-[unused320]
-[unused321]
-[unused322]
-[unused323]
-[unused324]
-[unused325]
-[unused326]
-[unused327]
-[unused328]
-[unused329]
-[unused330]
-[unused331]
-[unused332]
-[unused333]
-[unused334]
-[unused335]
-[unused336]
-[unused337]
-[unused338]
-[unused339]
-[unused340]
-[unused341]
-[unused342]
-[unused343]
-[unused344]
-[unused345]
-[unused346]
-[unused347]
-[unused348]
-[unused349]
-[unused350]
-[unused351]
-[unused352]
-[unused353]
-[unused354]
-[unused355]
-[unused356]
-[unused357]
-[unused358]
-[unused359]
-[unused360]
-[unused361]
-[unused362]
-[unused363]
-[unused364]
-[unused365]
-[unused366]
-[unused367]
-[unused368]
-[unused369]
-[unused370]
-[unused371]
-[unused372]
-[unused373]
-[unused374]
-[unused375]
-[unused376]
-[unused377]
-[unused378]
-[unused379]
-[unused380]
-[unused381]
-[unused382]
-[unused383]
-[unused384]
-[unused385]
-[unused386]
-[unused387]
-[unused388]
-[unused389]
-[unused390]
-[unused391]
-[unused392]
-[unused393]
-[unused394]
-[unused395]
-[unused396]
-[unused397]
-[unused398]
-[unused399]
-[unused400]
-[unused401]
-[unused402]
-[unused403]
-[unused404]
-[unused405]
-[unused406]
-[unused407]
-[unused408]
-[unused409]
-[unused410]
-[unused411]
-[unused412]
-[unused413]
-[unused414]
-[unused415]
-[unused416]
-[unused417]
-[unused418]
-[unused419]
-[unused420]
-[unused421]
-[unused422]
-[unused423]
-[unused424]
-[unused425]
-[unused426]
-[unused427]
-[unused428]
-[unused429]
-[unused430]
-[unused431]
-[unused432]
-[unused433]
-[unused434]
-[unused435]
-[unused436]
-[unused437]
-[unused438]
-[unused439]
-[unused440]
-[unused441]
-[unused442]
-[unused443]
-[unused444]
-[unused445]
-[unused446]
-[unused447]
-[unused448]
-[unused449]
-[unused450]
-[unused451]
-[unused452]
-[unused453]
-[unused454]
-[unused455]
-[unused456]
-[unused457]
-[unused458]
-[unused459]
-[unused460]
-[unused461]
-[unused462]
-[unused463]
-[unused464]
-[unused465]
-[unused466]
-[unused467]
-[unused468]
-[unused469]
-[unused470]
-[unused471]
-[unused472]
-[unused473]
-[unused474]
-[unused475]
-[unused476]
-[unused477]
-[unused478]
-[unused479]
-[unused480]
-[unused481]
-[unused482]
-[unused483]
-[unused484]
-[unused485]
-[unused486]
-[unused487]
-[unused488]
-[unused489]
-[unused490]
-[unused491]
-[unused492]
-[unused493]
-[unused494]
-[unused495]
-[unused496]
-[unused497]
-[unused498]
-[unused499]
-[unused500]
-[unused501]
-[unused502]
-[unused503]
-[unused504]
-[unused505]
-[unused506]
-[unused507]
-[unused508]
-[unused509]
-[unused510]
-[unused511]
-[unused512]
-[unused513]
-[unused514]
-[unused515]
-[unused516]
-[unused517]
-[unused518]
-[unused519]
-[unused520]
-[unused521]
-[unused522]
-[unused523]
-[unused524]
-[unused525]
-[unused526]
-[unused527]
-[unused528]
-[unused529]
-[unused530]
-[unused531]
-[unused532]
-[unused533]
-[unused534]
-[unused535]
-[unused536]
-[unused537]
-[unused538]
-[unused539]
-[unused540]
-[unused541]
-[unused542]
-[unused543]
-[unused544]
-[unused545]
-[unused546]
-[unused547]
-[unused548]
-[unused549]
-[unused550]
-[unused551]
-[unused552]
-[unused553]
-[unused554]
-[unused555]
-[unused556]
-[unused557]
-[unused558]
-[unused559]
-[unused560]
-[unused561]
-[unused562]
-[unused563]
-[unused564]
-[unused565]
-[unused566]
-[unused567]
-[unused568]
-[unused569]
-[unused570]
-[unused571]
-[unused572]
-[unused573]
-[unused574]
-[unused575]
-[unused576]
-[unused577]
-[unused578]
-[unused579]
-[unused580]
-[unused581]
-[unused582]
-[unused583]
-[unused584]
-[unused585]
-[unused586]
-[unused587]
-[unused588]
-[unused589]
-[unused590]
-[unused591]
-[unused592]
-[unused593]
-[unused594]
-[unused595]
-[unused596]
-[unused597]
-[unused598]
-[unused599]
-[unused600]
-[unused601]
-[unused602]
-[unused603]
-[unused604]
-[unused605]
-[unused606]
-[unused607]
-[unused608]
-[unused609]
-[unused610]
-[unused611]
-[unused612]
-[unused613]
-[unused614]
-[unused615]
-[unused616]
-[unused617]
-[unused618]
-[unused619]
-[unused620]
-[unused621]
-[unused622]
-[unused623]
-[unused624]
-[unused625]
-[unused626]
-[unused627]
-[unused628]
-[unused629]
-[unused630]
-[unused631]
-[unused632]
-[unused633]
-[unused634]
-[unused635]
-[unused636]
-[unused637]
-[unused638]
-[unused639]
-[unused640]
-[unused641]
-[unused642]
-[unused643]
-[unused644]
-[unused645]
-[unused646]
-[unused647]
-[unused648]
-[unused649]
-[unused650]
-[unused651]
-[unused652]
-[unused653]
-[unused654]
-[unused655]
-[unused656]
-[unused657]
-[unused658]
-[unused659]
-[unused660]
-[unused661]
-[unused662]
-[unused663]
-[unused664]
-[unused665]
-[unused666]
-[unused667]
-[unused668]
-[unused669]
-[unused670]
-[unused671]
-[unused672]
-[unused673]
-[unused674]
-[unused675]
-[unused676]
-[unused677]
-[unused678]
-[unused679]
-[unused680]
-[unused681]
-[unused682]
-[unused683]
-[unused684]
-[unused685]
-[unused686]
-[unused687]
-[unused688]
-[unused689]
-[unused690]
-[unused691]
-[unused692]
-[unused693]
-[unused694]
-[unused695]
-[unused696]
-[unused697]
-[unused698]
-[unused699]
-[unused700]
-[unused701]
-[unused702]
-[unused703]
-[unused704]
-[unused705]
-[unused706]
-[unused707]
-[unused708]
-[unused709]
-[unused710]
-[unused711]
-[unused712]
-[unused713]
-[unused714]
-[unused715]
-[unused716]
-[unused717]
-[unused718]
-[unused719]
-[unused720]
-[unused721]
-[unused722]
-[unused723]
-[unused724]
-[unused725]
-[unused726]
-[unused727]
-[unused728]
-[unused729]
-[unused730]
-[unused731]
-[unused732]
-[unused733]
-[unused734]
-[unused735]
-[unused736]
-[unused737]
-[unused738]
-[unused739]
-[unused740]
-[unused741]
-[unused742]
-[unused743]
-[unused744]
-[unused745]
-[unused746]
-[unused747]
-[unused748]
-[unused749]
-[unused750]
-[unused751]
-[unused752]
-[unused753]
-[unused754]
-[unused755]
-[unused756]
-[unused757]
-[unused758]
-[unused759]
-[unused760]
-[unused761]
-[unused762]
-[unused763]
-[unused764]
-[unused765]
-[unused766]
-[unused767]
-[unused768]
-[unused769]
-[unused770]
-[unused771]
-[unused772]
-[unused773]
-[unused774]
-[unused775]
-[unused776]
-[unused777]
-[unused778]
-[unused779]
-[unused780]
-[unused781]
-[unused782]
-[unused783]
-[unused784]
-[unused785]
-[unused786]
-[unused787]
-[unused788]
-[unused789]
-[unused790]
-[unused791]
-[unused792]
-[unused793]
-[unused794]
-[unused795]
-[unused796]
-[unused797]
-[unused798]
-[unused799]
-[unused800]
-[unused801]
-[unused802]
-[unused803]
-[unused804]
-[unused805]
-[unused806]
-[unused807]
-[unused808]
-[unused809]
-[unused810]
-[unused811]
-[unused812]
-[unused813]
-[unused814]
-[unused815]
-[unused816]
-[unused817]
-[unused818]
-[unused819]
-[unused820]
-[unused821]
-[unused822]
-[unused823]
-[unused824]
-[unused825]
-[unused826]
-[unused827]
-[unused828]
-[unused829]
-[unused830]
-[unused831]
-[unused832]
-[unused833]
-[unused834]
-[unused835]
-[unused836]
-[unused837]
-[unused838]
-[unused839]
-[unused840]
-[unused841]
-[unused842]
-[unused843]
-[unused844]
-[unused845]
-[unused846]
-[unused847]
-[unused848]
-[unused849]
-[unused850]
-[unused851]
-[unused852]
-[unused853]
-[unused854]
-[unused855]
-[unused856]
-[unused857]
-[unused858]
-[unused859]
-[unused860]
-[unused861]
-[unused862]
-[unused863]
-[unused864]
-[unused865]
-[unused866]
-[unused867]
-[unused868]
-[unused869]
-[unused870]
-[unused871]
-[unused872]
-[unused873]
-[unused874]
-[unused875]
-[unused876]
-[unused877]
-[unused878]
-[unused879]
-[unused880]
-[unused881]
-[unused882]
-[unused883]
-[unused884]
-[unused885]
-[unused886]
-[unused887]
-[unused888]
-[unused889]
-[unused890]
-[unused891]
-[unused892]
-[unused893]
-[unused894]
-[unused895]
-[unused896]
-[unused897]
-[unused898]
-[unused899]
-[unused900]
-[unused901]
-[unused902]
-[unused903]
-[unused904]
-[unused905]
-[unused906]
-[unused907]
-[unused908]
-[unused909]
-[unused910]
-[unused911]
-[unused912]
-[unused913]
-[unused914]
-[unused915]
-[unused916]
-[unused917]
-[unused918]
-[unused919]
-[unused920]
-[unused921]
-[unused922]
-[unused923]
-[unused924]
-[unused925]
-[unused926]
-[unused927]
-[unused928]
-[unused929]
-[unused930]
-[unused931]
-[unused932]
-[unused933]
-[unused934]
-[unused935]
-[unused936]
-[unused937]
-[unused938]
-[unused939]
-[unused940]
-[unused941]
-[unused942]
-[unused943]
-[unused944]
-[unused945]
-[unused946]
-[unused947]
-[unused948]
-[unused949]
-[unused950]
-[unused951]
-[unused952]
-[unused953]
-[unused954]
-[unused955]
-[unused956]
-[unused957]
-[unused958]
-[unused959]
-[unused960]
-[unused961]
-[unused962]
-[unused963]
-[unused964]
-[unused965]
-[unused966]
-[unused967]
-[unused968]
-[unused969]
-[unused970]
-[unused971]
-[unused972]
-[unused973]
-[unused974]
-[unused975]
-[unused976]
-[unused977]
-[unused978]
-[unused979]
-[unused980]
-[unused981]
-[unused982]
-[unused983]
-[unused984]
-[unused985]
-[unused986]
-[unused987]
-[unused988]
-[unused989]
-[unused990]
-[unused991]
-[unused992]
-[unused993]
-!
-"
-#
-$
-%
-&
-'
-(
-)
-*
-+
-,
--
-.
-/
-0
-1
-2
-3
-4
-5
-6
-7
-8
-9
-:
-;
-<
-=
->
-?
-@
-[
-\
-]
-^
-_
-`
-a
-b
-c
-d
-e
-f
-g
-h
-i
-j
-k
-l
-m
-n
-o
-p
-q
-r
-s
-t
-u
-v
-w
-x
-y
-z
-{
-|
-}
-~
-¡
-¢
-£
-¤
-¥
-¦
-§
-¨
-©
-ª
-«
-¬
-®
-°
-±
-²
-³
-´
-µ
-¶
-·
-¹
-º
-»
-¼
-½
-¾
-¿
-×
-ß
-æ
-ð
-÷
-ø
-þ
-đ
-ħ
-ı
-ł
-ŋ
-œ
-ƒ
-ɐ
-ɑ
-ɒ
-ɔ
-ɕ
-ə
-ɛ
-ɡ
-ɣ
-ɨ
-ɪ
-ɫ
-ɬ
-ɯ
-ɲ
-ɴ
-ɹ
-ɾ
-ʀ
-ʁ
-ʂ
-ʃ
-ʉ
-ʊ
-ʋ
-ʌ
-ʎ
-ʐ
-ʑ
-ʒ
-ʔ
-ʰ
-ʲ
-ʳ
-ʷ
-ʸ
-ʻ
-ʼ
-ʾ
-ʿ
-ˈ
-ː
-ˡ
-ˢ
-ˣ
-ˤ
-α
-β
-γ
-δ
-ε
-ζ
-η
-θ
-ι
-κ
-λ
-μ
-ν
-ξ
-ο
-π
-ρ
-ς
-σ
-τ
-υ
-φ
-χ
-ψ
-ω
-а
-б
-в
-г
-д
-е
-ж
-з
-и
-к
-л
-м
-н
-о
-п
-р
-с
-т
-у
-ф
-х
-ц
-ч
-ш
-щ
-ъ
-ы
-ь
-э
-ю
-я
-ђ
-є
-і
-ј
-љ
-њ
-ћ
-ӏ
-ա
-բ
-գ
-դ
-ե
-թ
-ի
-լ
-կ
-հ
-մ
-յ
-ն
-ո
-պ
-ս
-վ
-տ
-ր
-ւ
-ք
-־
-א
-ב
-ג
-ד
-ה
-ו
-ז
-ח
-ט
-י
-ך
-כ
-ל
-ם
-מ
-ן
-נ
-ס
-ע
-ף
-פ
-ץ
-צ
-ק
-ר
-ש
-ת
-،
-ء
-ا
-ب
-ة
-ت
-ث
-ج
-ح
-خ
-د
-ذ
-ر
-ز
-س
-ش
-ص
-ض
-ط
-ظ
-ع
-غ
-ـ
-ف
-ق
-ك
-ل
-م
-ن
-ه
-و
-ى
-ي
-ٹ
-پ
-چ
-ک
-گ
-ں
-ھ
-ہ
-ی
-ے
-अ
-आ
-उ
-ए
-क
-ख
-ग
-च
-ज
-ट
-ड
-ण
-त
-थ
-द
-ध
-न
-प
-ब
-भ
-म
-य
-र
-ल
-व
-श
-ष
-स
-ह
-ा
-ि
-ी
-ो
-।
-॥
-ং
-অ
-আ
-ই
-উ
-এ
-ও
-ক
-খ
-গ
-চ
-ছ
-জ
-ট
-ড
-ণ
-ত
-থ
-দ
-ধ
-ন
-প
-ব
-ভ
-ম
-য
-র
-ল
-শ
-ষ
-স
-হ
-া
-ি
-ী
-ে
-க
-ச
-ட
-த
-ந
-ன
-ப
-ம
-ய
-ர
-ல
-ள
-வ
-ா
-ி
-ு
-ே
-ை
-ನ
-ರ
-ಾ
-ක
-ය
-ර
-ල
-ව
-ා
-ก
-ง
-ต
-ท
-น
-พ
-ม
-ย
-ร
-ล
-ว
-ส
-อ
-า
-เ
-་
-།
-ག
-ང
-ད
-ན
-པ
-བ
-མ
-འ
-ར
-ལ
-ས
-မ
-ა
-ბ
-გ
-დ
-ე
-ვ
-თ
-ი
-კ
-ლ
-მ
-ნ
-ო
-რ
-ს
-ტ
-უ
-ᄀ
-ᄂ
-ᄃ
-ᄅ
-ᄆ
-ᄇ
-ᄉ
-ᄊ
-ᄋ
-ᄌ
-ᄎ
-ᄏ
-ᄐ
-ᄑ
-ᄒ
-ᅡ
-ᅢ
-ᅥ
-ᅦ
-ᅧ
-ᅩ
-ᅪ
-ᅭ
-ᅮ
-ᅯ
-ᅲ
-ᅳ
-ᅴ
-ᅵ
-ᆨ
-ᆫ
-ᆯ
-ᆷ
-ᆸ
-ᆼ
-ᴬ
-ᴮ
-ᴰ
-ᴵ
-ᴺ
-ᵀ
-ᵃ
-ᵇ
-ᵈ
-ᵉ
-ᵍ
-ᵏ
-ᵐ
-ᵒ
-ᵖ
-ᵗ
-ᵘ
-ᵢ
-ᵣ
-ᵤ
-ᵥ
-ᶜ
-ᶠ
-‐
-‑
-‒
-–
-—
-―
-‖
-‘
-’
-‚
-“
-”
-„
-†
-‡
-•
-…
-‰
-′
-″
-›
-‿
-⁄
-⁰
-ⁱ
-⁴
-⁵
-⁶
-⁷
-⁸
-⁹
-⁺
-⁻
-ⁿ
-₀
-₁
-₂
-₃
-₄
-₅
-₆
-₇
-₈
-₉
-₊
-₍
-₎
-ₐ
-ₑ
-ₒ
-ₓ
-ₕ
-ₖ
-ₗ
-ₘ
-ₙ
-ₚ
-ₛ
-ₜ
-₤
-₩
-€
-₱
-₹
-ℓ
-№
-ℝ
-™
-⅓
-⅔
-←
-↑
-→
-↓
-↔
-↦
-⇄
-⇌
-⇒
-∂
-∅
-∆
-∇
-∈
-−
-∗
-∘
-√
-∞
-∧
-∨
-∩
-∪
-≈
-≡
-≤
-≥
-⊂
-⊆
-⊕
-⊗
-⋅
-─
-│
-■
-▪
-●
-★
-☆
-☉
-♠
-♣
-♥
-♦
-♭
-♯
-⟨
-⟩
-ⱼ
-⺩
-⺼
-⽥
-、
-。
-〈
-〉
-《
-》
-「
-」
-『
-』
-〜
-あ
-い
-う
-え
-お
-か
-き
-く
-け
-こ
-さ
-し
-す
-せ
-そ
-た
-ち
-っ
-つ
-て
-と
-な
-に
-ぬ
-ね
-の
-は
-ひ
-ふ
-へ
-ほ
-ま
-み
-む
-め
-も
-や
-ゆ
-よ
-ら
-り
-る
-れ
-ろ
-を
-ん
-ァ
-ア
-ィ
-イ
-ウ
-ェ
-エ
-オ
-カ
-キ
-ク
-ケ
-コ
-サ
-シ
-ス
-セ
-タ
-チ
-ッ
-ツ
-テ
-ト
-ナ
-ニ
-ノ
-ハ
-ヒ
-フ
-ヘ
-ホ
-マ
-ミ
-ム
-メ
-モ
-ャ
-ュ
-ョ
-ラ
-リ
-ル
-レ
-ロ
-ワ
-ン
-・
-ー
-一
-三
-上
-下
-不
-世
-中
-主
-久
-之
-也
-事
-二
-五
-井
-京
-人
-亻
-仁
-介
-代
-仮
-伊
-会
-佐
-侍
-保
-信
-健
-元
-光
-八
-公
-内
-出
-分
-前
-劉
-力
-加
-勝
-北
-区
-十
-千
-南
-博
-原
-口
-古
-史
-司
-合
-吉
-同
-名
-和
-囗
-四
-国
-國
-土
-地
-坂
-城
-堂
-場
-士
-夏
-外
-大
-天
-太
-夫
-奈
-女
-子
-学
-宀
-宇
-安
-宗
-定
-宣
-宮
-家
-宿
-寺
-將
-小
-尚
-山
-岡
-島
-崎
-川
-州
-巿
-帝
-平
-年
-幸
-广
-弘
-張
-彳
-後
-御
-德
-心
-忄
-志
-忠
-愛
-成
-我
-戦
-戸
-手
-扌
-政
-文
-新
-方
-日
-明
-星
-春
-昭
-智
-曲
-書
-月
-有
-朝
-木
-本
-李
-村
-東
-松
-林
-森
-楊
-樹
-橋
-歌
-止
-正
-武
-比
-氏
-民
-水
-氵
-氷
-永
-江
-沢
-河
-治
-法
-海
-清
-漢
-瀬
-火
-版
-犬
-王
-生
-田
-男
-疒
-発
-白
-的
-皇
-目
-相
-省
-真
-石
-示
-社
-神
-福
-禾
-秀
-秋
-空
-立
-章
-竹
-糹
-美
-義
-耳
-良
-艹
-花
-英
-華
-葉
-藤
-行
-街
-西
-見
-訁
-語
-谷
-貝
-貴
-車
-軍
-辶
-道
-郎
-郡
-部
-都
-里
-野
-金
-鈴
-镇
-長
-門
-間
-阝
-阿
-陳
-陽
-雄
-青
-面
-風
-食
-香
-馬
-高
-龍
-龸
-fi
-fl
-!
-(
-)
-,
--
-.
-/
-:
-?
-~
-the
-of
-and
-in
-to
-was
-he
-is
-as
-for
-on
-with
-that
-it
-his
-by
-at
-from
-her
-##s
-she
-you
-had
-an
-were
-but
-be
-this
-are
-not
-my
-they
-one
-which
-or
-have
-him
-me
-first
-all
-also
-their
-has
-up
-who
-out
-been
-when
-after
-there
-into
-new
-two
-its
-##a
-time
-would
-no
-what
-about
-said
-we
-over
-then
-other
-so
-more
-##e
-can
-if
-like
-back
-them
-only
-some
-could
-##i
-where
-just
-##ing
-during
-before
-##n
-do
-##o
-made
-school
-through
-than
-now
-years
-most
-world
-may
-between
-down
-well
-three
-##d
-year
-while
-will
-##ed
-##r
-##y
-later
-##t
-city
-under
-around
-did
-such
-being
-used
-state
-people
-part
-know
-against
-your
-many
-second
-university
-both
-national
-##er
-these
-don
-known
-off
-way
-until
-re
-how
-even
-get
-head
-...
-didn
-##ly
-team
-american
-because
-de
-##l
-born
-united
-film
-since
-still
-long
-work
-south
-us
-became
-any
-high
-again
-day
-family
-see
-right
-man
-eyes
-house
-season
-war
-states
-including
-took
-life
-north
-same
-each
-called
-name
-much
-place
-however
-go
-four
-group
-another
-found
-won
-area
-here
-going
-10
-away
-series
-left
-home
-music
-best
-make
-hand
-number
-company
-several
-never
-last
-john
-000
-very
-album
-take
-end
-good
-too
-following
-released
-game
-played
-little
-began
-district
-##m
-old
-want
-those
-side
-held
-own
-early
-county
-ll
-league
-use
-west
-##u
-face
-think
-##es
-2010
-government
-##h
-march
-came
-small
-general
-town
-june
-##on
-line
-based
-something
-##k
-september
-thought
-looked
-along
-international
-2011
-air
-july
-club
-went
-january
-october
-our
-august
-april
-york
-12
-few
-2012
-2008
-east
-show
-member
-college
-2009
-father
-public
-##us
-come
-men
-five
-set
-station
-church
-##c
-next
-former
-november
-room
-party
-located
-december
-2013
-age
-got
-2007
-##g
-system
-let
-love
-2006
-though
-every
-2014
-look
-song
-water
-century
-without
-body
-black
-night
-within
-great
-women
-single
-ve
-building
-large
-population
-river
-named
-band
-white
-started
-##an
-once
-15
-20
-should
-18
-2015
-service
-top
-built
-british
-open
-death
-king
-moved
-local
-times
-children
-february
-book
-why
-11
-door
-need
-president
-order
-final
-road
-wasn
-although
-due
-major
-died
-village
-third
-knew
-2016
-asked
-turned
-st
-wanted
-say
-##p
-together
-received
-main
-son
-served
-different
-##en
-behind
-himself
-felt
-members
-power
-football
-law
-voice
-play
-##in
-near
-park
-history
-30
-having
-2005
-16
-##man
-saw
-mother
-##al
-army
-point
-front
-help
-english
-street
-art
-late
-hands
-games
-award
-##ia
-young
-14
-put
-published
-country
-division
-across
-told
-13
-often
-ever
-french
-london
-center
-six
-red
-2017
-led
-days
-include
-light
-25
-find
-tell
-among
-species
-really
-according
-central
-half
-2004
-form
-original
-gave
-office
-making
-enough
-lost
-full
-opened
-must
-included
-live
-given
-german
-player
-run
-business
-woman
-community
-cup
-might
-million
-land
-2000
-court
-development
-17
-short
-round
-ii
-km
-seen
-class
-story
-always
-become
-sure
-research
-almost
-director
-council
-la
-##2
-career
-things
-using
-island
-##z
-couldn
-car
-##is
-24
-close
-force
-##1
-better
-free
-support
-control
-field
-students
-2003
-education
-married
-##b
-nothing
-worked
-others
-record
-big
-inside
-level
-anything
-continued
-give
-james
-##3
-military
-established
-non
-returned
-feel
-does
-title
-written
-thing
-feet
-william
-far
-co
-association
-hard
-already
-2002
-##ra
-championship
-human
-western
-100
-##na
-department
-hall
-role
-various
-production
-21
-19
-heart
-2001
-living
-fire
-version
-##ers
-##f
-television
-royal
-##4
-produced
-working
-act
-case
-society
-region
-present
-radio
-period
-looking
-least
-total
-keep
-england
-wife
-program
-per
-brother
-mind
-special
-22
-##le
-am
-works
-soon
-##6
-political
-george
-services
-taken
-created
-##7
-further
-able
-reached
-david
-union
-joined
-upon
-done
-important
-social
-information
-either
-##ic
-##x
-appeared
-position
-ground
-lead
-rock
-dark
-election
-23
-board
-france
-hair
-course
-arms
-site
-police
-girl
-instead
-real
-sound
-##v
-words
-moment
-##te
-someone
-##8
-summer
-project
-announced
-san
-less
-wrote
-past
-followed
-##5
-blue
-founded
-al
-finally
-india
-taking
-records
-america
-##ne
-1999
-design
-considered
-northern
-god
-stop
-battle
-toward
-european
-outside
-described
-track
-today
-playing
-language
-28
-call
-26
-heard
-professional
-low
-australia
-miles
-california
-win
-yet
-green
-##ie
-trying
-blood
-##ton
-southern
-science
-maybe
-everything
-match
-square
-27
-mouth
-video
-race
-recorded
-leave
-above
-##9
-daughter
-points
-space
-1998
-museum
-change
-middle
-common
-##0
-move
-tv
-post
-##ta
-lake
-seven
-tried
-elected
-closed
-ten
-paul
-minister
-##th
-months
-start
-chief
-return
-canada
-person
-sea
-release
-similar
-modern
-brought
-rest
-hit
-formed
-mr
-##la
-1997
-floor
-event
-doing
-thomas
-1996
-robert
-care
-killed
-training
-star
-week
-needed
-turn
-finished
-railway
-rather
-news
-health
-sent
-example
-ran
-term
-michael
-coming
-currently
-yes
-forces
-despite
-gold
-areas
-50
-stage
-fact
-29
-dead
-says
-popular
-2018
-originally
-germany
-probably
-developed
-result
-pulled
-friend
-stood
-money
-running
-mi
-signed
-word
-songs
-child
-eventually
-met
-tour
-average
-teams
-minutes
-festival
-current
-deep
-kind
-1995
-decided
-usually
-eastern
-seemed
-##ness
-episode
-bed
-added
-table
-indian
-private
-charles
-route
-available
-idea
-throughout
-centre
-addition
-appointed
-style
-1994
-books
-eight
-construction
-press
-mean
-wall
-friends
-remained
-schools
-study
-##ch
-##um
-institute
-oh
-chinese
-sometimes
-events
-possible
-1992
-australian
-type
-brown
-forward
-talk
-process
-food
-debut
-seat
-performance
-committee
-features
-character
-arts
-herself
-else
-lot
-strong
-russian
-range
-hours
-peter
-arm
-##da
-morning
-dr
-sold
-##ry
-quickly
-directed
-1993
-guitar
-china
-##w
-31
-list
-##ma
-performed
-media
-uk
-players
-smile
-##rs
-myself
-40
-placed
-coach
-province
-towards
-wouldn
-leading
-whole
-boy
-official
-designed
-grand
-census
-##el
-europe
-attack
-japanese
-henry
-1991
-##re
-##os
-cross
-getting
-alone
-action
-lower
-network
-wide
-washington
-japan
-1990
-hospital
-believe
-changed
-sister
-##ar
-hold
-gone
-sir
-hadn
-ship
-##ka
-studies
-academy
-shot
-rights
-below
-base
-bad
-involved
-kept
-largest
-##ist
-bank
-future
-especially
-beginning
-mark
-movement
-section
-female
-magazine
-plan
-professor
-lord
-longer
-##ian
-sat
-walked
-hill
-actually
-civil
-energy
-model
-families
-size
-thus
-aircraft
-completed
-includes
-data
-captain
-##or
-fight
-vocals
-featured
-richard
-bridge
-fourth
-1989
-officer
-stone
-hear
-##ism
-means
-medical
-groups
-management
-self
-lips
-competition
-entire
-lived
-technology
-leaving
-federal
-tournament
-bit
-passed
-hot
-independent
-awards
-kingdom
-mary
-spent
-fine
-doesn
-reported
-##ling
-jack
-fall
-raised
-itself
-stay
-true
-studio
-1988
-sports
-replaced
-paris
-systems
-saint
-leader
-theatre
-whose
-market
-capital
-parents
-spanish
-canadian
-earth
-##ity
-cut
-degree
-writing
-bay
-christian
-awarded
-natural
-higher
-bill
-##as
-coast
-provided
-previous
-senior
-ft
-valley
-organization
-stopped
-onto
-countries
-parts
-conference
-queen
-security
-interest
-saying
-allowed
-master
-earlier
-phone
-matter
-smith
-winning
-try
-happened
-moving
-campaign
-los
-##ley
-breath
-nearly
-mid
-1987
-certain
-girls
-date
-italian
-african
-standing
-fell
-artist
-##ted
-shows
-deal
-mine
-industry
-1986
-##ng
-everyone
-republic
-provide
-collection
-library
-student
-##ville
-primary
-owned
-older
-via
-heavy
-1st
-makes
-##able
-attention
-anyone
-africa
-##ri
-stated
-length
-ended
-fingers
-command
-staff
-skin
-foreign
-opening
-governor
-okay
-medal
-kill
-sun
-cover
-job
-1985
-introduced
-chest
-hell
-feeling
-##ies
-success
-meet
-reason
-standard
-meeting
-novel
-1984
-trade
-source
-buildings
-##land
-rose
-guy
-goal
-##ur
-chapter
-native
-husband
-previously
-unit
-limited
-entered
-weeks
-producer
-operations
-mountain
-takes
-covered
-forced
-related
-roman
-complete
-successful
-key
-texas
-cold
-##ya
-channel
-1980
-traditional
-films
-dance
-clear
-approximately
-500
-nine
-van
-prince
-question
-active
-tracks
-ireland
-regional
-silver
-author
-personal
-sense
-operation
-##ine
-economic
-1983
-holding
-twenty
-isbn
-additional
-speed
-hour
-edition
-regular
-historic
-places
-whom
-shook
-movie
-km²
-secretary
-prior
-report
-chicago
-read
-foundation
-view
-engine
-scored
-1982
-units
-ask
-airport
-property
-ready
-immediately
-lady
-month
-listed
-contract
-##de
-manager
-themselves
-lines
-##ki
-navy
-writer
-meant
-##ts
-runs
-##ro
-practice
-championships
-singer
-glass
-commission
-required
-forest
-starting
-culture
-generally
-giving
-access
-attended
-test
-couple
-stand
-catholic
-martin
-caught
-executive
-##less
-eye
-##ey
-thinking
-chair
-quite
-shoulder
-1979
-hope
-decision
-plays
-defeated
-municipality
-whether
-structure
-offered
-slowly
-pain
-ice
-direction
-##ion
-paper
-mission
-1981
-mostly
-200
-noted
-individual
-managed
-nature
-lives
-plant
-##ha
-helped
-except
-studied
-computer
-figure
-relationship
-issue
-significant
-loss
-die
-smiled
-gun
-ago
-highest
-1972
-##am
-male
-bring
-goals
-mexico
-problem
-distance
-commercial
-completely
-location
-annual
-famous
-drive
-1976
-neck
-1978
-surface
-caused
-italy
-understand
-greek
-highway
-wrong
-hotel
-comes
-appearance
-joseph
-double
-issues
-musical
-companies
-castle
-income
-review
-assembly
-bass
-initially
-parliament
-artists
-experience
-1974
-particular
-walk
-foot
-engineering
-talking
-window
-dropped
-##ter
-miss
-baby
-boys
-break
-1975
-stars
-edge
-remember
-policy
-carried
-train
-stadium
-bar
-sex
-angeles
-evidence
-##ge
-becoming
-assistant
-soviet
-1977
-upper
-step
-wing
-1970
-youth
-financial
-reach
-##ll
-actor
-numerous
-##se
-##st
-nodded
-arrived
-##ation
-minute
-##nt
-believed
-sorry
-complex
-beautiful
-victory
-associated
-temple
-1968
-1973
-chance
-perhaps
-metal
-##son
-1945
-bishop
-##et
-lee
-launched
-particularly
-tree
-le
-retired
-subject
-prize
-contains
-yeah
-theory
-empire
-##ce
-suddenly
-waiting
-trust
-recording
-##to
-happy
-terms
-camp
-champion
-1971
-religious
-pass
-zealand
-names
-2nd
-port
-ancient
-tom
-corner
-represented
-watch
-legal
-anti
-justice
-cause
-watched
-brothers
-45
-material
-changes
-simply
-response
-louis
-fast
-##ting
-answer
-60
-historical
-1969
-stories
-straight
-create
-feature
-increased
-rate
-administration
-virginia
-el
-activities
-cultural
-overall
-winner
-programs
-basketball
-legs
-guard
-beyond
-cast
-doctor
-mm
-flight
-results
-remains
-cost
-effect
-winter
-##ble
-larger
-islands
-problems
-chairman
-grew
-commander
-isn
-1967
-pay
-failed
-selected
-hurt
-fort
-box
-regiment
-majority
-journal
-35
-edward
-plans
-##ke
-##ni
-shown
-pretty
-irish
-characters
-directly
-scene
-likely
-operated
-allow
-spring
-##j
-junior
-matches
-looks
-mike
-houses
-fellow
-##tion
-beach
-marriage
-##ham
-##ive
-rules
-oil
-65
-florida
-expected
-nearby
-congress
-sam
-peace
-recent
-iii
-wait
-subsequently
-cell
-##do
-variety
-serving
-agreed
-please
-poor
-joe
-pacific
-attempt
-wood
-democratic
-piece
-prime
-##ca
-rural
-mile
-touch
-appears
-township
-1964
-1966
-soldiers
-##men
-##ized
-1965
-pennsylvania
-closer
-fighting
-claimed
-score
-jones
-physical
-editor
-##ous
-filled
-genus
-specific
-sitting
-super
-mom
-##va
-therefore
-supported
-status
-fear
-cases
-store
-meaning
-wales
-minor
-spain
-tower
-focus
-vice
-frank
-follow
-parish
-separate
-golden
-horse
-fifth
-remaining
-branch
-32
-presented
-stared
-##id
-uses
-secret
-forms
-##co
-baseball
-exactly
-##ck
-choice
-note
-discovered
-travel
-composed
-truth
-russia
-ball
-color
-kiss
-dad
-wind
-continue
-ring
-referred
-numbers
-digital
-greater
-##ns
-metres
-slightly
-direct
-increase
-1960
-responsible
-crew
-rule
-trees
-troops
-##no
-broke
-goes
-individuals
-hundred
-weight
-creek
-sleep
-memory
-defense
-provides
-ordered
-code
-value
-jewish
-windows
-1944
-safe
-judge
-whatever
-corps
-realized
-growing
-pre
-##ga
-cities
-alexander
-gaze
-lies
-spread
-scott
-letter
-showed
-situation
-mayor
-transport
-watching
-workers
-extended
-##li
-expression
-normal
-##ment
-chart
-multiple
-border
-##ba
-host
-##ner
-daily
-mrs
-walls
-piano
-##ko
-heat
-cannot
-##ate
-earned
-products
-drama
-era
-authority
-seasons
-join
-grade
-##io
-sign
-difficult
-machine
-1963
-territory
-mainly
-##wood
-stations
-squadron
-1962
-stepped
-iron
-19th
-##led
-serve
-appear
-sky
-speak
-broken
-charge
-knowledge
-kilometres
-removed
-ships
-article
-campus
-simple
-##ty
-pushed
-britain
-##ve
-leaves
-recently
-cd
-soft
-boston
-latter
-easy
-acquired
-poland
-##sa
-quality
-officers
-presence
-planned
-nations
-mass
-broadcast
-jean
-share
-image
-influence
-wild
-offer
-emperor
-electric
-reading
-headed
-ability
-promoted
-yellow
-ministry
-1942
-throat
-smaller
-politician
-##by
-latin
-spoke
-cars
-williams
-males
-lack
-pop
-80
-##ier
-acting
-seeing
-consists
-##ti
-estate
-1961
-pressure
-johnson
-newspaper
-jr
-chris
-olympics
-online
-conditions
-beat
-elements
-walking
-vote
-##field
-needs
-carolina
-text
-featuring
-global
-block
-shirt
-levels
-francisco
-purpose
-females
-et
-dutch
-duke
-ahead
-gas
-twice
-safety
-serious
-turning
-highly
-lieutenant
-firm
-maria
-amount
-mixed
-daniel
-proposed
-perfect
-agreement
-affairs
-3rd
-seconds
-contemporary
-paid
-1943
-prison
-save
-kitchen
-label
-administrative
-intended
-constructed
-academic
-nice
-teacher
-races
-1956
-formerly
-corporation
-ben
-nation
-issued
-shut
-1958
-drums
-housing
-victoria
-seems
-opera
-1959
-graduated
-function
-von
-mentioned
-picked
-build
-recognized
-shortly
-protection
-picture
-notable
-exchange
-elections
-1980s
-loved
-percent
-racing
-fish
-elizabeth
-garden
-volume
-hockey
-1941
-beside
-settled
-##ford
-1940
-competed
-replied
-drew
-1948
-actress
-marine
-scotland
-steel
-glanced
-farm
-steve
-1957
-risk
-tonight
-positive
-magic
-singles
-effects
-gray
-screen
-dog
-##ja
-residents
-bus
-sides
-none
-secondary
-literature
-polish
-destroyed
-flying
-founder
-households
-1939
-lay
-reserve
-usa
-gallery
-##ler
-1946
-industrial
-younger
-approach
-appearances
-urban
-ones
-1950
-finish
-avenue
-powerful
-fully
-growth
-page
-honor
-jersey
-projects
-advanced
-revealed
-basic
-90
-infantry
-pair
-equipment
-visit
-33
-evening
-search
-grant
-effort
-solo
-treatment
-buried
-republican
-primarily
-bottom
-owner
-1970s
-israel
-gives
-jim
-dream
-bob
-remain
-spot
-70
-notes
-produce
-champions
-contact
-ed
-soul
-accepted
-ways
-del
-##ally
-losing
-split
-price
-capacity
-basis
-trial
-questions
-##ina
-1955
-20th
-guess
-officially
-memorial
-naval
-initial
-##ization
-whispered
-median
-engineer
-##ful
-sydney
-##go
-columbia
-strength
-300
-1952
-tears
-senate
-00
-card
-asian
-agent
-1947
-software
-44
-draw
-warm
-supposed
-com
-pro
-##il
-transferred
-leaned
-##at
-candidate
-escape
-mountains
-asia
-potential
-activity
-entertainment
-seem
-traffic
-jackson
-murder
-36
-slow
-product
-orchestra
-haven
-agency
-bbc
-taught
-website
-comedy
-unable
-storm
-planning
-albums
-rugby
-environment
-scientific
-grabbed
-protect
-##hi
-boat
-typically
-1954
-1953
-damage
-principal
-divided
-dedicated
-mount
-ohio
-##berg
-pick
-fought
-driver
-##der
-empty
-shoulders
-sort
-thank
-berlin
-prominent
-account
-freedom
-necessary
-efforts
-alex
-headquarters
-follows
-alongside
-des
-simon
-andrew
-suggested
-operating
-learning
-steps
-1949
-sweet
-technical
-begin
-easily
-34
-teeth
-speaking
-settlement
-scale
-##sh
-renamed
-ray
-max
-enemy
-semi
-joint
-compared
-##rd
-scottish
-leadership
-analysis
-offers
-georgia
-pieces
-captured
-animal
-deputy
-guest
-organized
-##lin
-tony
-combined
-method
-challenge
-1960s
-huge
-wants
-battalion
-sons
-rise
-crime
-types
-facilities
-telling
-path
-1951
-platform
-sit
-1990s
-##lo
-tells
-assigned
-rich
-pull
-##ot
-commonly
-alive
-##za
-letters
-concept
-conducted
-wearing
-happen
-bought
-becomes
-holy
-gets
-ocean
-defeat
-languages
-purchased
-coffee
-occurred
-titled
-##q
-declared
-applied
-sciences
-concert
-sounds
-jazz
-brain
-##me
-painting
-fleet
-tax
-nick
-##ius
-michigan
-count
-animals
-leaders
-episodes
-##line
-content
-##den
-birth
-##it
-clubs
-64
-palace
-critical
-refused
-fair
-leg
-laughed
-returning
-surrounding
-participated
-formation
-lifted
-pointed
-connected
-rome
-medicine
-laid
-taylor
-santa
-powers
-adam
-tall
-shared
-focused
-knowing
-yards
-entrance
-falls
-##wa
-calling
-##ad
-sources
-chosen
-beneath
-resources
-yard
-##ite
-nominated
-silence
-zone
-defined
-##que
-gained
-thirty
-38
-bodies
-moon
-##ard
-adopted
-christmas
-widely
-register
-apart
-iran
-premier
-serves
-du
-unknown
-parties
-##les
-generation
-##ff
-continues
-quick
-fields
-brigade
-quiet
-teaching
-clothes
-impact
-weapons
-partner
-flat
-theater
-supreme
-1938
-37
-relations
-##tor
-plants
-suffered
-1936
-wilson
-kids
-begins
-##age
-1918
-seats
-armed
-internet
-models
-worth
-laws
-400
-communities
-classes
-background
-knows
-thanks
-quarter
-reaching
-humans
-carry
-killing
-format
-kong
-hong
-setting
-75
-architecture
-disease
-railroad
-inc
-possibly
-wish
-arthur
-thoughts
-harry
-doors
-density
-##di
-crowd
-illinois
-stomach
-tone
-unique
-reports
-anyway
-##ir
-liberal
-der
-vehicle
-thick
-dry
-drug
-faced
-largely
-facility
-theme
-holds
-creation
-strange
-colonel
-##mi
-revolution
-bell
-politics
-turns
-silent
-rail
-relief
-independence
-combat
-shape
-write
-determined
-sales
-learned
-4th
-finger
-oxford
-providing
-1937
-heritage
-fiction
-situated
-designated
-allowing
-distribution
-hosted
-##est
-sight
-interview
-estimated
-reduced
-##ria
-toronto
-footballer
-keeping
-guys
-damn
-claim
-motion
-sport
-sixth
-stayed
-##ze
-en
-rear
-receive
-handed
-twelve
-dress
-audience
-granted
-brazil
-##well
-spirit
-##ated
-noticed
-etc
-olympic
-representative
-eric
-tight
-trouble
-reviews
-drink
-vampire
-missing
-roles
-ranked
-newly
-household
-finals
-wave
-critics
-##ee
-phase
-massachusetts
-pilot
-unlike
-philadelphia
-bright
-guns
-crown
-organizations
-roof
-42
-respectively
-clearly
-tongue
-marked
-circle
-fox
-korea
-bronze
-brian
-expanded
-sexual
-supply
-yourself
-inspired
-labour
-fc
-##ah
-reference
-vision
-draft
-connection
-brand
-reasons
-1935
-classic
-driving
-trip
-jesus
-cells
-entry
-1920
-neither
-trail
-claims
-atlantic
-orders
-labor
-nose
-afraid
-identified
-intelligence
-calls
-cancer
-attacked
-passing
-stephen
-positions
-imperial
-grey
-jason
-39
-sunday
-48
-swedish
-avoid
-extra
-uncle
-message
-covers
-allows
-surprise
-materials
-fame
-hunter
-##ji
-1930
-citizens
-figures
-davis
-environmental
-confirmed
-shit
-titles
-di
-performing
-difference
-acts
-attacks
-##ov
-existing
-votes
-opportunity
-nor
-shop
-entirely
-trains
-opposite
-pakistan
-##pa
-develop
-resulted
-representatives
-actions
-reality
-pressed
-##ish
-barely
-wine
-conversation
-faculty
-northwest
-ends
-documentary
-nuclear
-stock
-grace
-sets
-eat
-alternative
-##ps
-bag
-resulting
-creating
-surprised
-cemetery
-1919
-drop
-finding
-sarah
-cricket
-streets
-tradition
-ride
-1933
-exhibition
-target
-ear
-explained
-rain
-composer
-injury
-apartment
-municipal
-educational
-occupied
-netherlands
-clean
-billion
-constitution
-learn
-1914
-maximum
-classical
-francis
-lose
-opposition
-jose
-ontario
-bear
-core
-hills
-rolled
-ending
-drawn
-permanent
-fun
-##tes
-##lla
-lewis
-sites
-chamber
-ryan
-##way
-scoring
-height
-1934
-##house
-lyrics
-staring
-55
-officials
-1917
-snow
-oldest
-##tic
-orange
-##ger
-qualified
-interior
-apparently
-succeeded
-thousand
-dinner
-lights
-existence
-fans
-heavily
-41
-greatest
-conservative
-send
-bowl
-plus
-enter
-catch
-##un
-economy
-duty
-1929
-speech
-authorities
-princess
-performances
-versions
-shall
-graduate
-pictures
-effective
-remembered
-poetry
-desk
-crossed
-starring
-starts
-passenger
-sharp
-##ant
-acres
-ass
-weather
-falling
-rank
-fund
-supporting
-check
-adult
-publishing
-heads
-cm
-southeast
-lane
-##burg
-application
-bc
-##ura
-les
-condition
-transfer
-prevent
-display
-ex
-regions
-earl
-federation
-cool
-relatively
-answered
-besides
-1928
-obtained
-portion
-##town
-mix
-##ding
-reaction
-liked
-dean
-express
-peak
-1932
-##tte
-counter
-religion
-chain
-rare
-miller
-convention
-aid
-lie
-vehicles
-mobile
-perform
-squad
-wonder
-lying
-crazy
-sword
-##ping
-attempted
-centuries
-weren
-philosophy
-category
-##ize
-anna
-interested
-47
-sweden
-wolf
-frequently
-abandoned
-kg
-literary
-alliance
-task
-entitled
-##ay
-threw
-promotion
-factory
-tiny
-soccer
-visited
-matt
-fm
-achieved
-52
-defence
-internal
-persian
-43
-methods
-##ging
-arrested
-otherwise
-cambridge
-programming
-villages
-elementary
-districts
-rooms
-criminal
-conflict
-worry
-trained
-1931
-attempts
-waited
-signal
-bird
-truck
-subsequent
-programme
-##ol
-ad
-49
-communist
-details
-faith
-sector
-patrick
-carrying
-laugh
-##ss
-controlled
-korean
-showing
-origin
-fuel
-evil
-1927
-##ent
-brief
-identity
-darkness
-address
-pool
-missed
-publication
-web
-planet
-ian
-anne
-wings
-invited
-##tt
-briefly
-standards
-kissed
-##be
-ideas
-climate
-causing
-walter
-worse
-albert
-articles
-winners
-desire
-aged
-northeast
-dangerous
-gate
-doubt
-1922
-wooden
-multi
-##ky
-poet
-rising
-funding
-46
-communications
-communication
-violence
-copies
-prepared
-ford
-investigation
-skills
-1924
-pulling
-electronic
-##ak
-##ial
-##han
-containing
-ultimately
-offices
-singing
-understanding
-restaurant
-tomorrow
-fashion
-christ
-ward
-da
-pope
-stands
-5th
-flow
-studios
-aired
-commissioned
-contained
-exist
-fresh
-americans
-##per
-wrestling
-approved
-kid
-employed
-respect
-suit
-1925
-angel
-asking
-increasing
-frame
-angry
-selling
-1950s
-thin
-finds
-##nd
-temperature
-statement
-ali
-explain
-inhabitants
-towns
-extensive
-narrow
-51
-jane
-flowers
-images
-promise
-somewhere
-object
-fly
-closely
-##ls
-1912
-bureau
-cape
-1926
-weekly
-presidential
-legislative
-1921
-##ai
-##au
-launch
-founding
-##ny
-978
-##ring
-artillery
-strike
-un
-institutions
-roll
-writers
-landing
-chose
-kevin
-anymore
-pp
-##ut
-attorney
-fit
-dan
-billboard
-receiving
-agricultural
-breaking
-sought
-dave
-admitted
-lands
-mexican
-##bury
-charlie
-specifically
-hole
-iv
-howard
-credit
-moscow
-roads
-accident
-1923
-proved
-wear
-struck
-hey
-guards
-stuff
-slid
-expansion
-1915
-cat
-anthony
-##kin
-melbourne
-opposed
-sub
-southwest
-architect
-failure
-plane
-1916
-##ron
-map
-camera
-tank
-listen
-regarding
-wet
-introduction
-metropolitan
-link
-ep
-fighter
-inch
-grown
-gene
-anger
-fixed
-buy
-dvd
-khan
-domestic
-worldwide
-chapel
-mill
-functions
-examples
-##head
-developing
-1910
-turkey
-hits
-pocket
-antonio
-papers
-grow
-unless
-circuit
-18th
-concerned
-attached
-journalist
-selection
-journey
-converted
-provincial
-painted
-hearing
-aren
-bands
-negative
-aside
-wondered
-knight
-lap
-survey
-ma
-##ow
-noise
-billy
-##ium
-shooting
-guide
-bedroom
-priest
-resistance
-motor
-homes
-sounded
-giant
-##mer
-150
-scenes
-equal
-comic
-patients
-hidden
-solid
-actual
-bringing
-afternoon
-touched
-funds
-wedding
-consisted
-marie
-canal
-sr
-kim
-treaty
-turkish
-recognition
-residence
-cathedral
-broad
-knees
-incident
-shaped
-fired
-norwegian
-handle
-cheek
-contest
-represent
-##pe
-representing
-beauty
-##sen
-birds
-advantage
-emergency
-wrapped
-drawing
-notice
-pink
-broadcasting
-##ong
-somehow
-bachelor
-seventh
-collected
-registered
-establishment
-alan
-assumed
-chemical
-personnel
-roger
-retirement
-jeff
-portuguese
-wore
-tied
-device
-threat
-progress
-advance
-##ised
-banks
-hired
-manchester
-nfl
-teachers
-structures
-forever
-##bo
-tennis
-helping
-saturday
-sale
-applications
-junction
-hip
-incorporated
-neighborhood
-dressed
-ceremony
-##ds
-influenced
-hers
-visual
-stairs
-decades
-inner
-kansas
-hung
-hoped
-gain
-scheduled
-downtown
-engaged
-austria
-clock
-norway
-certainly
-pale
-protected
-1913
-victor
-employees
-plate
-putting
-surrounded
-##ists
-finishing
-blues
-tropical
-##ries
-minnesota
-consider
-philippines
-accept
-54
-retrieved
-1900
-concern
-anderson
-properties
-institution
-gordon
-successfully
-vietnam
-##dy
-backing
-outstanding
-muslim
-crossing
-folk
-producing
-usual
-demand
-occurs
-observed
-lawyer
-educated
-##ana
-kelly
-string
-pleasure
-budget
-items
-quietly
-colorado
-philip
-typical
-##worth
-derived
-600
-survived
-asks
-mental
-##ide
-56
-jake
-jews
-distinguished
-ltd
-1911
-sri
-extremely
-53
-athletic
-loud
-thousands
-worried
-shadow
-transportation
-horses
-weapon
-arena
-importance
-users
-tim
-objects
-contributed
-dragon
-douglas
-aware
-senator
-johnny
-jordan
-sisters
-engines
-flag
-investment
-samuel
-shock
-capable
-clark
-row
-wheel
-refers
-session
-familiar
-biggest
-wins
-hate
-maintained
-drove
-hamilton
-request
-expressed
-injured
-underground
-churches
-walker
-wars
-tunnel
-passes
-stupid
-agriculture
-softly
-cabinet
-regarded
-joining
-indiana
-##ea
-##ms
-push
-dates
-spend
-behavior
-woods
-protein
-gently
-chase
-morgan
-mention
-burning
-wake
-combination
-occur
-mirror
-leads
-jimmy
-indeed
-impossible
-singapore
-paintings
-covering
-##nes
-soldier
-locations
-attendance
-sell
-historian
-wisconsin
-invasion
-argued
-painter
-diego
-changing
-egypt
-##don
-experienced
-inches
-##ku
-missouri
-vol
-grounds
-spoken
-switzerland
-##gan
-reform
-rolling
-ha
-forget
-massive
-resigned
-burned
-allen
-tennessee
-locked
-values
-improved
-##mo
-wounded
-universe
-sick
-dating
-facing
-pack
-purchase
-user
-##pur
-moments
-##ul
-merged
-anniversary
-1908
-coal
-brick
-understood
-causes
-dynasty
-queensland
-establish
-stores
-crisis
-promote
-hoping
-views
-cards
-referee
-extension
-##si
-raise
-arizona
-improve
-colonial
-formal
-charged
-##rt
-palm
-lucky
-hide
-rescue
-faces
-95
-feelings
-candidates
-juan
-##ell
-goods
-6th
-courses
-weekend
-59
-luke
-cash
-fallen
-##om
-delivered
-affected
-installed
-carefully
-tries
-swiss
-hollywood
-costs
-lincoln
-responsibility
-##he
-shore
-file
-proper
-normally
-maryland
-assistance
-jump
-constant
-offering
-friendly
-waters
-persons
-realize
-contain
-trophy
-800
-partnership
-factor
-58
-musicians
-cry
-bound
-oregon
-indicated
-hero
-houston
-medium
-##ure
-consisting
-somewhat
-##ara
-57
-cycle
-##che
-beer
-moore
-frederick
-gotten
-eleven
-worst
-weak
-approached
-arranged
-chin
-loan
-universal
-bond
-fifteen
-pattern
-disappeared
-##ney
-translated
-##zed
-lip
-arab
-capture
-interests
-insurance
-##chi
-shifted
-cave
-prix
-warning
-sections
-courts
-coat
-plot
-smell
-feed
-golf
-favorite
-maintain
-knife
-vs
-voted
-degrees
-finance
-quebec
-opinion
-translation
-manner
-ruled
-operate
-productions
-choose
-musician
-discovery
-confused
-tired
-separated
-stream
-techniques
-committed
-attend
-ranking
-kings
-throw
-passengers
-measure
-horror
-fan
-mining
-sand
-danger
-salt
-calm
-decade
-dam
-require
-runner
-##ik
-rush
-associate
-greece
-##ker
-rivers
-consecutive
-matthew
-##ski
-sighed
-sq
-documents
-steam
-edited
-closing
-tie
-accused
-1905
-##ini
-islamic
-distributed
-directors
-organisation
-bruce
-7th
-breathing
-mad
-lit
-arrival
-concrete
-taste
-08
-composition
-shaking
-faster
-amateur
-adjacent
-stating
-1906
-twin
-flew
-##ran
-tokyo
-publications
-##tone
-obviously
-ridge
-storage
-1907
-carl
-pages
-concluded
-desert
-driven
-universities
-ages
-terminal
-sequence
-borough
-250
-constituency
-creative
-cousin
-economics
-dreams
-margaret
-notably
-reduce
-montreal
-mode
-17th
-ears
-saved
-jan
-vocal
-##ica
-1909
-andy
-##jo
-riding
-roughly
-threatened
-##ise
-meters
-meanwhile
-landed
-compete
-repeated
-grass
-czech
-regularly
-charges
-tea
-sudden
-appeal
-##ung
-solution
-describes
-pierre
-classification
-glad
-parking
-##ning
-belt
-physics
-99
-rachel
-add
-hungarian
-participate
-expedition
-damaged
-gift
-childhood
-85
-fifty
-##red
-mathematics
-jumped
-letting
-defensive
-mph
-##ux
-##gh
-testing
-##hip
-hundreds
-shoot
-owners
-matters
-smoke
-israeli
-kentucky
-dancing
-mounted
-grandfather
-emma
-designs
-profit
-argentina
-##gs
-truly
-li
-lawrence
-cole
-begun
-detroit
-willing
-branches
-smiling
-decide
-miami
-enjoyed
-recordings
-##dale
-poverty
-ethnic
-gay
-##bi
-gary
-arabic
-09
-accompanied
-##one
-##ons
-fishing
-determine
-residential
-acid
-##ary
-alice
-returns
-starred
-mail
-##ang
-jonathan
-strategy
-##ue
-net
-forty
-cook
-businesses
-equivalent
-commonwealth
-distinct
-ill
-##cy
-seriously
-##ors
-##ped
-shift
-harris
-replace
-rio
-imagine
-formula
-ensure
-##ber
-additionally
-scheme
-conservation
-occasionally
-purposes
-feels
-favor
-##and
-##ore
-1930s
-contrast
-hanging
-hunt
-movies
-1904
-instruments
-victims
-danish
-christopher
-busy
-demon
-sugar
-earliest
-colony
-studying
-balance
-duties
-##ks
-belgium
-slipped
-carter
-05
-visible
-stages
-iraq
-fifa
-##im
-commune
-forming
-zero
-07
-continuing
-talked
-counties
-legend
-bathroom
-option
-tail
-clay
-daughters
-afterwards
-severe
-jaw
-visitors
-##ded
-devices
-aviation
-russell
-kate
-##vi
-entering
-subjects
-##ino
-temporary
-swimming
-forth
-smooth
-ghost
-audio
-bush
-operates
-rocks
-movements
-signs
-eddie
-##tz
-ann
-voices
-honorary
-06
-memories
-dallas
-pure
-measures
-racial
-promised
-66
-harvard
-ceo
-16th
-parliamentary
-indicate
-benefit
-flesh
-dublin
-louisiana
-1902
-1901
-patient
-sleeping
-1903
-membership
-coastal
-medieval
-wanting
-element
-scholars
-rice
-62
-limit
-survive
-makeup
-rating
-definitely
-collaboration
-obvious
-##tan
-boss
-ms
-baron
-birthday
-linked
-soil
-diocese
-##lan
-ncaa
-##mann
-offensive
-shell
-shouldn
-waist
-##tus
-plain
-ross
-organ
-resolution
-manufacturing
-adding
-relative
-kennedy
-98
-whilst
-moth
-marketing
-gardens
-crash
-72
-heading
-partners
-credited
-carlos
-moves
-cable
-##zi
-marshall
-##out
-depending
-bottle
-represents
-rejected
-responded
-existed
-04
-jobs
-denmark
-lock
-##ating
-treated
-graham
-routes
-talent
-commissioner
-drugs
-secure
-tests
-reign
-restored
-photography
-##gi
-contributions
-oklahoma
-designer
-disc
-grin
-seattle
-robin
-paused
-atlanta
-unusual
-##gate
-praised
-las
-laughing
-satellite
-hungary
-visiting
-##sky
-interesting
-factors
-deck
-poems
-norman
-##water
-stuck
-speaker
-rifle
-domain
-premiered
-##her
-dc
-comics
-actors
-01
-reputation
-eliminated
-8th
-ceiling
-prisoners
-script
-##nce
-leather
-austin
-mississippi
-rapidly
-admiral
-parallel
-charlotte
-guilty
-tools
-gender
-divisions
-fruit
-##bs
-laboratory
-nelson
-fantasy
-marry
-rapid
-aunt
-tribe
-requirements
-aspects
-suicide
-amongst
-adams
-bone
-ukraine
-abc
-kick
-sees
-edinburgh
-clothing
-column
-rough
-gods
-hunting
-broadway
-gathered
-concerns
-##ek
-spending
-ty
-12th
-snapped
-requires
-solar
-bones
-cavalry
-##tta
-iowa
-drinking
-waste
-index
-franklin
-charity
-thompson
-stewart
-tip
-flash
-landscape
-friday
-enjoy
-singh
-poem
-listening
-##back
-eighth
-fred
-differences
-adapted
-bomb
-ukrainian
-surgery
-corporate
-masters
-anywhere
-##more
-waves
-odd
-sean
-portugal
-orleans
-dick
-debate
-kent
-eating
-puerto
-cleared
-96
-expect
-cinema
-97
-guitarist
-blocks
-electrical
-agree
-involving
-depth
-dying
-panel
-struggle
-##ged
-peninsula
-adults
-novels
-emerged
-vienna
-metro
-debuted
-shoes
-tamil
-songwriter
-meets
-prove
-beating
-instance
-heaven
-scared
-sending
-marks
-artistic
-passage
-superior
-03
-significantly
-shopping
-##tive
-retained
-##izing
-malaysia
-technique
-cheeks
-##ola
-warren
-maintenance
-destroy
-extreme
-allied
-120
-appearing
-##yn
-fill
-advice
-alabama
-qualifying
-policies
-cleveland
-hat
-battery
-smart
-authors
-10th
-soundtrack
-acted
-dated
-lb
-glance
-equipped
-coalition
-funny
-outer
-ambassador
-roy
-possibility
-couples
-campbell
-dna
-loose
-ethan
-supplies
-1898
-gonna
-88
-monster
-##res
-shake
-agents
-frequency
-springs
-dogs
-practices
-61
-gang
-plastic
-easier
-suggests
-gulf
-blade
-exposed
-colors
-industries
-markets
-pan
-nervous
-electoral
-charts
-legislation
-ownership
-##idae
-mac
-appointment
-shield
-copy
-assault
-socialist
-abbey
-monument
-license
-throne
-employment
-jay
-93
-replacement
-charter
-cloud
-powered
-suffering
-accounts
-oak
-connecticut
-strongly
-wright
-colour
-crystal
-13th
-context
-welsh
-networks
-voiced
-gabriel
-jerry
-##cing
-forehead
-mp
-##ens
-manage
-schedule
-totally
-remix
-##ii
-forests
-occupation
-print
-nicholas
-brazilian
-strategic
-vampires
-engineers
-76
-roots
-seek
-correct
-instrumental
-und
-alfred
-backed
-hop
-##des
-stanley
-robinson
-traveled
-wayne
-welcome
-austrian
-achieve
-67
-exit
-rates
-1899
-strip
-whereas
-##cs
-sing
-deeply
-adventure
-bobby
-rick
-jamie
-careful
-components
-cap
-useful
-personality
-knee
-##shi
-pushing
-hosts
-02
-protest
-ca
-ottoman
-symphony
-##sis
-63
-boundary
-1890
-processes
-considering
-considerable
-tons
-##work
-##ft
-##nia
-cooper
-trading
-dear
-conduct
-91
-illegal
-apple
-revolutionary
-holiday
-definition
-harder
-##van
-jacob
-circumstances
-destruction
-##lle
-popularity
-grip
-classified
-liverpool
-donald
-baltimore
-flows
-seeking
-honour
-approval
-92
-mechanical
-till
-happening
-statue
-critic
-increasingly
-immediate
-describe
-commerce
-stare
-##ster
-indonesia
-meat
-rounds
-boats
-baker
-orthodox
-depression
-formally
-worn
-naked
-claire
-muttered
-sentence
-11th
-emily
-document
-77
-criticism
-wished
-vessel
-spiritual
-bent
-virgin
-parker
-minimum
-murray
-lunch
-danny
-printed
-compilation
-keyboards
-false
-blow
-belonged
-68
-raising
-78
-cutting
-##board
-pittsburgh
-##up
-9th
-shadows
-81
-hated
-indigenous
-jon
-15th
-barry
-scholar
-ah
-##zer
-oliver
-##gy
-stick
-susan
-meetings
-attracted
-spell
-romantic
-##ver
-ye
-1895
-photo
-demanded
-customers
-##ac
-1896
-logan
-revival
-keys
-modified
-commanded
-jeans
-##ious
-upset
-raw
-phil
-detective
-hiding
-resident
-vincent
-##bly
-experiences
-diamond
-defeating
-coverage
-lucas
-external
-parks
-franchise
-helen
-bible
-successor
-percussion
-celebrated
-il
-lift
-profile
-clan
-romania
-##ied
-mills
-##su
-nobody
-achievement
-shrugged
-fault
-1897
-rhythm
-initiative
-breakfast
-carbon
-700
-69
-lasted
-violent
-74
-wound
-ken
-killer
-gradually
-filmed
-°c
-dollars
-processing
-94
-remove
-criticized
-guests
-sang
-chemistry
-##vin
-legislature
-disney
-##bridge
-uniform
-escaped
-integrated
-proposal
-purple
-denied
-liquid
-karl
-influential
-morris
-nights
-stones
-intense
-experimental
-twisted
-71
-84
-##ld
-pace
-nazi
-mitchell
-ny
-blind
-reporter
-newspapers
-14th
-centers
-burn
-basin
-forgotten
-surviving
-filed
-collections
-monastery
-losses
-manual
-couch
-description
-appropriate
-merely
-tag
-missions
-sebastian
-restoration
-replacing
-triple
-73
-elder
-julia
-warriors
-benjamin
-julian
-convinced
-stronger
-amazing
-declined
-versus
-merchant
-happens
-output
-finland
-bare
-barbara
-absence
-ignored
-dawn
-injuries
-##port
-producers
-##ram
-82
-luis
-##ities
-kw
-admit
-expensive
-electricity
-nba
-exception
-symbol
-##ving
-ladies
-shower
-sheriff
-characteristics
-##je
-aimed
-button
-ratio
-effectively
-summit
-angle
-jury
-bears
-foster
-vessels
-pants
-executed
-evans
-dozen
-advertising
-kicked
-patrol
-1889
-competitions
-lifetime
-principles
-athletics
-##logy
-birmingham
-sponsored
-89
-rob
-nomination
-1893
-acoustic
-##sm
-creature
-longest
-##tra
-credits
-harbor
-dust
-josh
-##so
-territories
-milk
-infrastructure
-completion
-thailand
-indians
-leon
-archbishop
-##sy
-assist
-pitch
-blake
-arrangement
-girlfriend
-serbian
-operational
-hence
-sad
-scent
-fur
-dj
-sessions
-hp
-refer
-rarely
-##ora
-exists
-1892
-##ten
-scientists
-dirty
-penalty
-burst
-portrait
-seed
-79
-pole
-limits
-rival
-1894
-stable
-alpha
-grave
-constitutional
-alcohol
-arrest
-flower
-mystery
-devil
-architectural
-relationships
-greatly
-habitat
-##istic
-larry
-progressive
-remote
-cotton
-##ics
-##ok
-preserved
-reaches
-##ming
-cited
-86
-vast
-scholarship
-decisions
-cbs
-joy
-teach
-1885
-editions
-knocked
-eve
-searching
-partly
-participation
-gap
-animated
-fate
-excellent
-##ett
-na
-87
-alternate
-saints
-youngest
-##ily
-climbed
-##ita
-##tors
-suggest
-##ct
-discussion
-staying
-choir
-lakes
-jacket
-revenue
-nevertheless
-peaked
-instrument
-wondering
-annually
-managing
-neil
-1891
-signing
-terry
-##ice
-apply
-clinical
-brooklyn
-aim
-catherine
-fuck
-farmers
-figured
-ninth
-pride
-hugh
-evolution
-ordinary
-involvement
-comfortable
-shouted
-tech
-encouraged
-taiwan
-representation
-sharing
-##lia
-##em
-panic
-exact
-cargo
-competing
-fat
-cried
-83
-1920s
-occasions
-pa
-cabin
-borders
-utah
-marcus
-##isation
-badly
-muscles
-##ance
-victorian
-transition
-warner
-bet
-permission
-##rin
-slave
-terrible
-similarly
-shares
-seth
-uefa
-possession
-medals
-benefits
-colleges
-lowered
-perfectly
-mall
-transit
-##ye
-##kar
-publisher
-##ened
-harrison
-deaths
-elevation
-##ae
-asleep
-machines
-sigh
-ash
-hardly
-argument
-occasion
-parent
-leo
-decline
-1888
-contribution
-##ua
-concentration
-1000
-opportunities
-hispanic
-guardian
-extent
-emotions
-hips
-mason
-volumes
-bloody
-controversy
-diameter
-steady
-mistake
-phoenix
-identify
-violin
-##sk
-departure
-richmond
-spin
-funeral
-enemies
-1864
-gear
-literally
-connor
-random
-sergeant
-grab
-confusion
-1865
-transmission
-informed
-op
-leaning
-sacred
-suspended
-thinks
-gates
-portland
-luck
-agencies
-yours
-hull
-expert
-muscle
-layer
-practical
-sculpture
-jerusalem
-latest
-lloyd
-statistics
-deeper
-recommended
-warrior
-arkansas
-mess
-supports
-greg
-eagle
-1880
-recovered
-rated
-concerts
-rushed
-##ano
-stops
-eggs
-files
-premiere
-keith
-##vo
-delhi
-turner
-pit
-affair
-belief
-paint
-##zing
-mate
-##ach
-##ev
-victim
-##ology
-withdrew
-bonus
-styles
-fled
-##ud
-glasgow
-technologies
-funded
-nbc
-adaptation
-##ata
-portrayed
-cooperation
-supporters
-judges
-bernard
-justin
-hallway
-ralph
-##ick
-graduating
-controversial
-distant
-continental
-spider
-bite
-##ho
-recognize
-intention
-mixing
-##ese
-egyptian
-bow
-tourism
-suppose
-claiming
-tiger
-dominated
-participants
-vi
-##ru
-nurse
-partially
-tape
-##rum
-psychology
-##rn
-essential
-touring
-duo
-voting
-civilian
-emotional
-channels
-##king
-apparent
-hebrew
-1887
-tommy
-carrier
-intersection
-beast
-hudson
-##gar
-##zo
-lab
-nova
-bench
-discuss
-costa
-##ered
-detailed
-behalf
-drivers
-unfortunately
-obtain
-##lis
-rocky
-##dae
-siege
-friendship
-honey
-##rian
-1861
-amy
-hang
-posted
-governments
-collins
-respond
-wildlife
-preferred
-operator
-##po
-laura
-pregnant
-videos
-dennis
-suspected
-boots
-instantly
-weird
-automatic
-businessman
-alleged
-placing
-throwing
-ph
-mood
-1862
-perry
-venue
-jet
-remainder
-##lli
-##ci
-passion
-biological
-boyfriend
-1863
-dirt
-buffalo
-ron
-segment
-fa
-abuse
-##era
-genre
-thrown
-stroke
-colored
-stress
-exercise
-displayed
-##gen
-struggled
-##tti
-abroad
-dramatic
-wonderful
-thereafter
-madrid
-component
-widespread
-##sed
-tale
-citizen
-todd
-monday
-1886
-vancouver
-overseas
-forcing
-crying
-descent
-##ris
-discussed
-substantial
-ranks
-regime
-1870
-provinces
-switch
-drum
-zane
-ted
-tribes
-proof
-lp
-cream
-researchers
-volunteer
-manor
-silk
-milan
-donated
-allies
-venture
-principle
-delivery
-enterprise
-##ves
-##ans
-bars
-traditionally
-witch
-reminded
-copper
-##uk
-pete
-inter
-links
-colin
-grinned
-elsewhere
-competitive
-frequent
-##oy
-scream
-##hu
-tension
-texts
-submarine
-finnish
-defending
-defend
-pat
-detail
-1884
-affiliated
-stuart
-themes
-villa
-periods
-tool
-belgian
-ruling
-crimes
-answers
-folded
-licensed
-resort
-demolished
-hans
-lucy
-1881
-lion
-traded
-photographs
-writes
-craig
-##fa
-trials
-generated
-beth
-noble
-debt
-percentage
-yorkshire
-erected
-ss
-viewed
-grades
-confidence
-ceased
-islam
-telephone
-retail
-##ible
-chile
-m²
-roberts
-sixteen
-##ich
-commented
-hampshire
-innocent
-dual
-pounds
-checked
-regulations
-afghanistan
-sung
-rico
-liberty
-assets
-bigger
-options
-angels
-relegated
-tribute
-wells
-attending
-leaf
-##yan
-butler
-romanian
-forum
-monthly
-lisa
-patterns
-gmina
-##tory
-madison
-hurricane
-rev
-##ians
-bristol
-##ula
-elite
-valuable
-disaster
-democracy
-awareness
-germans
-freyja
-##ins
-loop
-absolutely
-paying
-populations
-maine
-sole
-prayer
-spencer
-releases
-doorway
-bull
-##ani
-lover
-midnight
-conclusion
-##sson
-thirteen
-lily
-mediterranean
-##lt
-nhl
-proud
-sample
-##hill
-drummer
-guinea
-##ova
-murphy
-climb
-##ston
-instant
-attributed
-horn
-ain
-railways
-steven
-##ao
-autumn
-ferry
-opponent
-root
-traveling
-secured
-corridor
-stretched
-tales
-sheet
-trinity
-cattle
-helps
-indicates
-manhattan
-murdered
-fitted
-1882
-gentle
-grandmother
-mines
-shocked
-vegas
-produces
-##light
-caribbean
-##ou
-belong
-continuous
-desperate
-drunk
-historically
-trio
-waved
-raf
-dealing
-nathan
-bat
-murmured
-interrupted
-residing
-scientist
-pioneer
-harold
-aaron
-##net
-delta
-attempting
-minority
-mini
-believes
-chorus
-tend
-lots
-eyed
-indoor
-load
-shots
-updated
-jail
-##llo
-concerning
-connecting
-wealth
-##ved
-slaves
-arrive
-rangers
-sufficient
-rebuilt
-##wick
-cardinal
-flood
-muhammad
-whenever
-relation
-runners
-moral
-repair
-viewers
-arriving
-revenge
-punk
-assisted
-bath
-fairly
-breathe
-lists
-innings
-illustrated
-whisper
-nearest
-voters
-clinton
-ties
-ultimate
-screamed
-beijing
-lions
-andre
-fictional
-gathering
-comfort
-radar
-suitable
-dismissed
-hms
-ban
-pine
-wrist
-atmosphere
-voivodeship
-bid
-timber
-##ned
-##nan
-giants
-##ane
-cameron
-recovery
-uss
-identical
-categories
-switched
-serbia
-laughter
-noah
-ensemble
-therapy
-peoples
-touching
-##off
-locally
-pearl
-platforms
-everywhere
-ballet
-tables
-lanka
-herbert
-outdoor
-toured
-derek
-1883
-spaces
-contested
-swept
-1878
-exclusive
-slight
-connections
-##dra
-winds
-prisoner
-collective
-bangladesh
-tube
-publicly
-wealthy
-thai
-##ys
-isolated
-select
-##ric
-insisted
-pen
-fortune
-ticket
-spotted
-reportedly
-animation
-enforcement
-tanks
-110
-decides
-wider
-lowest
-owen
-##time
-nod
-hitting
-##hn
-gregory
-furthermore
-magazines
-fighters
-solutions
-##ery
-pointing
-requested
-peru
-reed
-chancellor
-knights
-mask
-worker
-eldest
-flames
-reduction
-1860
-volunteers
-##tis
-reporting
-##hl
-wire
-advisory
-endemic
-origins
-settlers
-pursue
-knock
-consumer
-1876
-eu
-compound
-creatures
-mansion
-sentenced
-ivan
-deployed
-guitars
-frowned
-involves
-mechanism
-kilometers
-perspective
-shops
-maps
-terminus
-duncan
-alien
-fist
-bridges
-##pers
-heroes
-fed
-derby
-swallowed
-##ros
-patent
-sara
-illness
-characterized
-adventures
-slide
-hawaii
-jurisdiction
-##op
-organised
-##side
-adelaide
-walks
-biology
-se
-##ties
-rogers
-swing
-tightly
-boundaries
-##rie
-prepare
-implementation
-stolen
-##sha
-certified
-colombia
-edwards
-garage
-##mm
-recalled
-##ball
-rage
-harm
-nigeria
-breast
-##ren
-furniture
-pupils
-settle
-##lus
-cuba
-balls
-client
-alaska
-21st
-linear
-thrust
-celebration
-latino
-genetic
-terror
-##cia
-##ening
-lightning
-fee
-witness
-lodge
-establishing
-skull
-##ique
-earning
-hood
-##ei
-rebellion
-wang
-sporting
-warned
-missile
-devoted
-activist
-porch
-worship
-fourteen
-package
-1871
-decorated
-##shire
-housed
-##ock
-chess
-sailed
-doctors
-oscar
-joan
-treat
-garcia
-harbour
-jeremy
-##ire
-traditions
-dominant
-jacques
-##gon
-##wan
-relocated
-1879
-amendment
-sized
-companion
-simultaneously
-volleyball
-spun
-acre
-increases
-stopping
-loves
-belongs
-affect
-drafted
-tossed
-scout
-battles
-1875
-filming
-shoved
-munich
-tenure
-vertical
-romance
-pc
-##cher
-argue
-##ical
-craft
-ranging
-www
-opens
-honest
-tyler
-yesterday
-virtual
-##let
-muslims
-reveal
-snake
-immigrants
-radical
-screaming
-speakers
-firing
-saving
-belonging
-ease
-lighting
-prefecture
-blame
-farmer
-hungry
-grows
-rubbed
-beam
-sur
-subsidiary
-##cha
-armenian
-sao
-dropping
-conventional
-##fer
-microsoft
-reply
-qualify
-spots
-1867
-sweat
-festivals
-##ken
-immigration
-physician
-discover
-exposure
-sandy
-explanation
-isaac
-implemented
-##fish
-hart
-initiated
-connect
-stakes
-presents
-heights
-householder
-pleased
-tourist
-regardless
-slip
-closest
-##ction
-surely
-sultan
-brings
-riley
-preparation
-aboard
-slammed
-baptist
-experiment
-ongoing
-interstate
-organic
-playoffs
-##ika
-1877
-130
-##tar
-hindu
-error
-tours
-tier
-plenty
-arrangements
-talks
-trapped
-excited
-sank
-ho
-athens
-1872
-denver
-welfare
-suburb
-athletes
-trick
-diverse
-belly
-exclusively
-yelled
-1868
-##med
-conversion
-##ette
-1874
-internationally
-computers
-conductor
-abilities
-sensitive
-hello
-dispute
-measured
-globe
-rocket
-prices
-amsterdam
-flights
-tigers
-inn
-municipalities
-emotion
-references
-3d
-##mus
-explains
-airlines
-manufactured
-pm
-archaeological
-1873
-interpretation
-devon
-comment
-##ites
-settlements
-kissing
-absolute
-improvement
-suite
-impressed
-barcelona
-sullivan
-jefferson
-towers
-jesse
-julie
-##tin
-##lu
-grandson
-hi
-gauge
-regard
-rings
-interviews
-trace
-raymond
-thumb
-departments
-burns
-serial
-bulgarian
-scores
-demonstrated
-##ix
-1866
-kyle
-alberta
-underneath
-romanized
-##ward
-relieved
-acquisition
-phrase
-cliff
-reveals
-han
-cuts
-merger
-custom
-##dar
-nee
-gilbert
-graduation
-##nts
-assessment
-cafe
-difficulty
-demands
-swung
-democrat
-jennifer
-commons
-1940s
-grove
-##yo
-completing
-focuses
-sum
-substitute
-bearing
-stretch
-reception
-##py
-reflected
-essentially
-destination
-pairs
-##ched
-survival
-resource
-##bach
-promoting
-doubles
-messages
-tear
-##down
-##fully
-parade
-florence
-harvey
-incumbent
-partial
-framework
-900
-pedro
-frozen
-procedure
-olivia
-controls
-##mic
-shelter
-personally
-temperatures
-##od
-brisbane
-tested
-sits
-marble
-comprehensive
-oxygen
-leonard
-##kov
-inaugural
-iranian
-referring
-quarters
-attitude
-##ivity
-mainstream
-lined
-mars
-dakota
-norfolk
-unsuccessful
-##°
-explosion
-helicopter
-congressional
-##sing
-inspector
-bitch
-seal
-departed
-divine
-##ters
-coaching
-examination
-punishment
-manufacturer
-sink
-columns
-unincorporated
-signals
-nevada
-squeezed
-dylan
-dining
-photos
-martial
-manuel
-eighteen
-elevator
-brushed
-plates
-ministers
-ivy
-congregation
-##len
-slept
-specialized
-taxes
-curve
-restricted
-negotiations
-likes
-statistical
-arnold
-inspiration
-execution
-bold
-intermediate
-significance
-margin
-ruler
-wheels
-gothic
-intellectual
-dependent
-listened
-eligible
-buses
-widow
-syria
-earn
-cincinnati
-collapsed
-recipient
-secrets
-accessible
-philippine
-maritime
-goddess
-clerk
-surrender
-breaks
-playoff
-database
-##ified
-##lon
-ideal
-beetle
-aspect
-soap
-regulation
-strings
-expand
-anglo
-shorter
-crosses
-retreat
-tough
-coins
-wallace
-directions
-pressing
-##oon
-shipping
-locomotives
-comparison
-topics
-nephew
-##mes
-distinction
-honors
-travelled
-sierra
-ibn
-##over
-fortress
-sa
-recognised
-carved
-1869
-clients
-##dan
-intent
-##mar
-coaches
-describing
-bread
-##ington
-beaten
-northwestern
-##ona
-merit
-youtube
-collapse
-challenges
-em
-historians
-objective
-submitted
-virus
-attacking
-drake
-assume
-##ere
-diseases
-marc
-stem
-leeds
-##cus
-##ab
-farming
-glasses
-##lock
-visits
-nowhere
-fellowship
-relevant
-carries
-restaurants
-experiments
-101
-constantly
-bases
-targets
-shah
-tenth
-opponents
-verse
-territorial
-##ira
-writings
-corruption
-##hs
-instruction
-inherited
-reverse
-emphasis
-##vic
-employee
-arch
-keeps
-rabbi
-watson
-payment
-uh
-##ala
-nancy
-##tre
-venice
-fastest
-sexy
-banned
-adrian
-properly
-ruth
-touchdown
-dollar
-boards
-metre
-circles
-edges
-favour
-comments
-ok
-travels
-liberation
-scattered
-firmly
-##ular
-holland
-permitted
-diesel
-kenya
-den
-originated
-##ral
-demons
-resumed
-dragged
-rider
-##rus
-servant
-blinked
-extend
-torn
-##ias
-##sey
-input
-meal
-everybody
-cylinder
-kinds
-camps
-##fe
-bullet
-logic
-##wn
-croatian
-evolved
-healthy
-fool
-chocolate
-wise
-preserve
-pradesh
-##ess
-respective
-1850
-##ew
-chicken
-artificial
-gross
-corresponding
-convicted
-cage
-caroline
-dialogue
-##dor
-narrative
-stranger
-mario
-br
-christianity
-failing
-trent
-commanding
-buddhist
-1848
-maurice
-focusing
-yale
-bike
-altitude
-##ering
-mouse
-revised
-##sley
-veteran
-##ig
-pulls
-theology
-crashed
-campaigns
-legion
-##ability
-drag
-excellence
-customer
-cancelled
-intensity
-excuse
-##lar
-liga
-participating
-contributing
-printing
-##burn
-variable
-##rk
-curious
-bin
-legacy
-renaissance
-##my
-symptoms
-binding
-vocalist
-dancer
-##nie
-grammar
-gospel
-democrats
-ya
-enters
-sc
-diplomatic
-hitler
-##ser
-clouds
-mathematical
-quit
-defended
-oriented
-##heim
-fundamental
-hardware
-impressive
-equally
-convince
-confederate
-guilt
-chuck
-sliding
-##ware
-magnetic
-narrowed
-petersburg
-bulgaria
-otto
-phd
-skill
-##ama
-reader
-hopes
-pitcher
-reservoir
-hearts
-automatically
-expecting
-mysterious
-bennett
-extensively
-imagined
-seeds
-monitor
-fix
-##ative
-journalism
-struggling
-signature
-ranch
-encounter
-photographer
-observation
-protests
-##pin
-influences
-##hr
-calendar
-##all
-cruz
-croatia
-locomotive
-hughes
-naturally
-shakespeare
-basement
-hook
-uncredited
-faded
-theories
-approaches
-dare
-phillips
-filling
-fury
-obama
-##ain
-efficient
-arc
-deliver
-min
-raid
-breeding
-inducted
-leagues
-efficiency
-axis
-montana
-eagles
-##ked
-supplied
-instructions
-karen
-picking
-indicating
-trap
-anchor
-practically
-christians
-tomb
-vary
-occasional
-electronics
-lords
-readers
-newcastle
-faint
-innovation
-collect
-situations
-engagement
-160
-claude
-mixture
-##feld
-peer
-tissue
-logo
-lean
-##ration
-°f
-floors
-##ven
-architects
-reducing
-##our
-##ments
-rope
-1859
-ottawa
-##har
-samples
-banking
-declaration
-proteins
-resignation
-francois
-saudi
-advocate
-exhibited
-armor
-twins
-divorce
-##ras
-abraham
-reviewed
-jo
-temporarily
-matrix
-physically
-pulse
-curled
-##ena
-difficulties
-bengal
-usage
-##ban
-annie
-riders
-certificate
-##pi
-holes
-warsaw
-distinctive
-jessica
-##mon
-mutual
-1857
-customs
-circular
-eugene
-removal
-loaded
-mere
-vulnerable
-depicted
-generations
-dame
-heir
-enormous
-lightly
-climbing
-pitched
-lessons
-pilots
-nepal
-ram
-google
-preparing
-brad
-louise
-renowned
-##₂
-liam
-##ably
-plaza
-shaw
-sophie
-brilliant
-bills
-##bar
-##nik
-fucking
-mainland
-server
-pleasant
-seized
-veterans
-jerked
-fail
-beta
-brush
-radiation
-stored
-warmth
-southeastern
-nate
-sin
-raced
-berkeley
-joke
-athlete
-designation
-trunk
-##low
-roland
-qualification
-archives
-heels
-artwork
-receives
-judicial
-reserves
-##bed
-woke
-installation
-abu
-floating
-fake
-lesser
-excitement
-interface
-concentrated
-addressed
-characteristic
-amanda
-saxophone
-monk
-auto
-##bus
-releasing
-egg
-dies
-interaction
-defender
-ce
-outbreak
-glory
-loving
-##bert
-sequel
-consciousness
-http
-awake
-ski
-enrolled
-##ress
-handling
-rookie
-brow
-somebody
-biography
-warfare
-amounts
-contracts
-presentation
-fabric
-dissolved
-challenged
-meter
-psychological
-lt
-elevated
-rally
-accurate
-##tha
-hospitals
-undergraduate
-specialist
-venezuela
-exhibit
-shed
-nursing
-protestant
-fluid
-structural
-footage
-jared
-consistent
-prey
-##ska
-succession
-reflect
-exile
-lebanon
-wiped
-suspect
-shanghai
-resting
-integration
-preservation
-marvel
-variant
-pirates
-sheep
-rounded
-capita
-sailing
-colonies
-manuscript
-deemed
-variations
-clarke
-functional
-emerging
-boxing
-relaxed
-curse
-azerbaijan
-heavyweight
-nickname
-editorial
-rang
-grid
-tightened
-earthquake
-flashed
-miguel
-rushing
-##ches
-improvements
-boxes
-brooks
-180
-consumption
-molecular
-felix
-societies
-repeatedly
-variation
-aids
-civic
-graphics
-professionals
-realm
-autonomous
-receiver
-delayed
-workshop
-militia
-chairs
-trump
-canyon
-##point
-harsh
-extending
-lovely
-happiness
-##jan
-stake
-eyebrows
-embassy
-wellington
-hannah
-##ella
-sony
-corners
-bishops
-swear
-cloth
-contents
-xi
-namely
-commenced
-1854
-stanford
-nashville
-courage
-graphic
-commitment
-garrison
-##bin
-hamlet
-clearing
-rebels
-attraction
-literacy
-cooking
-ruins
-temples
-jenny
-humanity
-celebrate
-hasn
-freight
-sixty
-rebel
-bastard
-##art
-newton
-##ada
-deer
-##ges
-##ching
-smiles
-delaware
-singers
-##ets
-approaching
-assists
-flame
-##ph
-boulevard
-barrel
-planted
-##ome
-pursuit
-##sia
-consequences
-posts
-shallow
-invitation
-rode
-depot
-ernest
-kane
-rod
-concepts
-preston
-topic
-chambers
-striking
-blast
-arrives
-descendants
-montgomery
-ranges
-worlds
-##lay
-##ari
-span
-chaos
-praise
-##ag
-fewer
-1855
-sanctuary
-mud
-fbi
-##ions
-programmes
-maintaining
-unity
-harper
-bore
-handsome
-closure
-tournaments
-thunder
-nebraska
-linda
-facade
-puts
-satisfied
-argentine
-dale
-cork
-dome
-panama
-##yl
-1858
-tasks
-experts
-##ates
-feeding
-equation
-##las
-##ida
-##tu
-engage
-bryan
-##ax
-um
-quartet
-melody
-disbanded
-sheffield
-blocked
-gasped
-delay
-kisses
-maggie
-connects
-##non
-sts
-poured
-creator
-publishers
-##we
-guided
-ellis
-extinct
-hug
-gaining
-##ord
-complicated
-##bility
-poll
-clenched
-investigate
-##use
-thereby
-quantum
-spine
-cdp
-humor
-kills
-administered
-semifinals
-##du
-encountered
-ignore
-##bu
-commentary
-##maker
-bother
-roosevelt
-140
-plains
-halfway
-flowing
-cultures
-crack
-imprisoned
-neighboring
-airline
-##ses
-##view
-##mate
-##ec
-gather
-wolves
-marathon
-transformed
-##ill
-cruise
-organisations
-carol
-punch
-exhibitions
-numbered
-alarm
-ratings
-daddy
-silently
-##stein
-queens
-colours
-impression
-guidance
-liu
-tactical
-##rat
-marshal
-della
-arrow
-##ings
-rested
-feared
-tender
-owns
-bitter
-advisor
-escort
-##ides
-spare
-farms
-grants
-##ene
-dragons
-encourage
-colleagues
-cameras
-##und
-sucked
-pile
-spirits
-prague
-statements
-suspension
-landmark
-fence
-torture
-recreation
-bags
-permanently
-survivors
-pond
-spy
-predecessor
-bombing
-coup
-##og
-protecting
-transformation
-glow
-##lands
-##book
-dug
-priests
-andrea
-feat
-barn
-jumping
-##chen
-##ologist
-##con
-casualties
-stern
-auckland
-pipe
-serie
-revealing
-ba
-##bel
-trevor
-mercy
-spectrum
-yang
-consist
-governing
-collaborated
-possessed
-epic
-comprises
-blew
-shane
-##ack
-lopez
-honored
-magical
-sacrifice
-judgment
-perceived
-hammer
-mtv
-baronet
-tune
-das
-missionary
-sheets
-350
-neutral
-oral
-threatening
-attractive
-shade
-aims
-seminary
-##master
-estates
-1856
-michel
-wounds
-refugees
-manufacturers
-##nic
-mercury
-syndrome
-porter
-##iya
-##din
-hamburg
-identification
-upstairs
-purse
-widened
-pause
-cared
-breathed
-affiliate
-santiago
-prevented
-celtic
-fisher
-125
-recruited
-byzantine
-reconstruction
-farther
-##mp
-diet
-sake
-au
-spite
-sensation
-##ert
-blank
-separation
-105
-##hon
-vladimir
-armies
-anime
-##lie
-accommodate
-orbit
-cult
-sofia
-archive
-##ify
-##box
-founders
-sustained
-disorder
-honours
-northeastern
-mia
-crops
-violet
-threats
-blanket
-fires
-canton
-followers
-southwestern
-prototype
-voyage
-assignment
-altered
-moderate
-protocol
-pistol
-##eo
-questioned
-brass
-lifting
-1852
-math
-authored
-##ual
-doug
-dimensional
-dynamic
-##san
-1851
-pronounced
-grateful
-quest
-uncomfortable
-boom
-presidency
-stevens
-relating
-politicians
-chen
-barrier
-quinn
-diana
-mosque
-tribal
-cheese
-palmer
-portions
-sometime
-chester
-treasure
-wu
-bend
-download
-millions
-reforms
-registration
-##osa
-consequently
-monitoring
-ate
-preliminary
-brandon
-invented
-ps
-eaten
-exterior
-intervention
-ports
-documented
-log
-displays
-lecture
-sally
-favourite
-##itz
-vermont
-lo
-invisible
-isle
-breed
-##ator
-journalists
-relay
-speaks
-backward
-explore
-midfielder
-actively
-stefan
-procedures
-cannon
-blond
-kenneth
-centered
-servants
-chains
-libraries
-malcolm
-essex
-henri
-slavery
-##hal
-facts
-fairy
-coached
-cassie
-cats
-washed
-cop
-##fi
-announcement
-item
-2000s
-vinyl
-activated
-marco
-frontier
-growled
-curriculum
-##das
-loyal
-accomplished
-leslie
-ritual
-kenny
-##00
-vii
-napoleon
-hollow
-hybrid
-jungle
-stationed
-friedrich
-counted
-##ulated
-platinum
-theatrical
-seated
-col
-rubber
-glen
-1840
-diversity
-healing
-extends
-id
-provisions
-administrator
-columbus
-##oe
-tributary
-te
-assured
-org
-##uous
-prestigious
-examined
-lectures
-grammy
-ronald
-associations
-bailey
-allan
-essays
-flute
-believing
-consultant
-proceedings
-travelling
-1853
-kit
-kerala
-yugoslavia
-buddy
-methodist
-##ith
-burial
-centres
-batman
-##nda
-discontinued
-bo
-dock
-stockholm
-lungs
-severely
-##nk
-citing
-manga
-##ugh
-steal
-mumbai
-iraqi
-robot
-celebrity
-bride
-broadcasts
-abolished
-pot
-joel
-overhead
-franz
-packed
-reconnaissance
-johann
-acknowledged
-introduce
-handled
-doctorate
-developments
-drinks
-alley
-palestine
-##nis
-##aki
-proceeded
-recover
-bradley
-grain
-patch
-afford
-infection
-nationalist
-legendary
-##ath
-interchange
-virtually
-gen
-gravity
-exploration
-amber
-vital
-wishes
-powell
-doctrine
-elbow
-screenplay
-##bird
-contribute
-indonesian
-pet
-creates
-##com
-enzyme
-kylie
-discipline
-drops
-manila
-hunger
-##ien
-layers
-suffer
-fever
-bits
-monica
-keyboard
-manages
-##hood
-searched
-appeals
-##bad
-testament
-grande
-reid
-##war
-beliefs
-congo
-##ification
-##dia
-si
-requiring
-##via
-casey
-1849
-regret
-streak
-rape
-depends
-syrian
-sprint
-pound
-tourists
-upcoming
-pub
-##xi
-tense
-##els
-practiced
-echo
-nationwide
-guild
-motorcycle
-liz
-##zar
-chiefs
-desired
-elena
-bye
-precious
-absorbed
-relatives
-booth
-pianist
-##mal
-citizenship
-exhausted
-wilhelm
-##ceae
-##hed
-noting
-quarterback
-urge
-hectares
-##gue
-ace
-holly
-##tal
-blonde
-davies
-parked
-sustainable
-stepping
-twentieth
-airfield
-galaxy
-nest
-chip
-##nell
-tan
-shaft
-paulo
-requirement
-##zy
-paradise
-tobacco
-trans
-renewed
-vietnamese
-##cker
-##ju
-suggesting
-catching
-holmes
-enjoying
-md
-trips
-colt
-holder
-butterfly
-nerve
-reformed
-cherry
-bowling
-trailer
-carriage
-goodbye
-appreciate
-toy
-joshua
-interactive
-enabled
-involve
-##kan
-collar
-determination
-bunch
-facebook
-recall
-shorts
-superintendent
-episcopal
-frustration
-giovanni
-nineteenth
-laser
-privately
-array
-circulation
-##ovic
-armstrong
-deals
-painful
-permit
-discrimination
-##wi
-aires
-retiring
-cottage
-ni
-##sta
-horizon
-ellen
-jamaica
-ripped
-fernando
-chapters
-playstation
-patron
-lecturer
-navigation
-behaviour
-genes
-georgian
-export
-solomon
-rivals
-swift
-seventeen
-rodriguez
-princeton
-independently
-sox
-1847
-arguing
-entity
-casting
-hank
-criteria
-oakland
-geographic
-milwaukee
-reflection
-expanding
-conquest
-dubbed
-##tv
-halt
-brave
-brunswick
-doi
-arched
-curtis
-divorced
-predominantly
-somerset
-streams
-ugly
-zoo
-horrible
-curved
-buenos
-fierce
-dictionary
-vector
-theological
-unions
-handful
-stability
-chan
-punjab
-segments
-##lly
-altar
-ignoring
-gesture
-monsters
-pastor
-##stone
-thighs
-unexpected
-operators
-abruptly
-coin
-compiled
-associates
-improving
-migration
-pin
-##ose
-compact
-collegiate
-reserved
-##urs
-quarterfinals
-roster
-restore
-assembled
-hurry
-oval
-##cies
-1846
-flags
-martha
-##del
-victories
-sharply
-##rated
-argues
-deadly
-neo
-drawings
-symbols
-performer
-##iel
-griffin
-restrictions
-editing
-andrews
-java
-journals
-arabia
-compositions
-dee
-pierce
-removing
-hindi
-casino
-runway
-civilians
-minds
-nasa
-hotels
-##zation
-refuge
-rent
-retain
-potentially
-conferences
-suburban
-conducting
-##tto
-##tions
-##tle
-descended
-massacre
-##cal
-ammunition
-terrain
-fork
-souls
-counts
-chelsea
-durham
-drives
-cab
-##bank
-perth
-realizing
-palestinian
-finn
-simpson
-##dal
-betty
-##ule
-moreover
-particles
-cardinals
-tent
-evaluation
-extraordinary
-##oid
-inscription
-##works
-wednesday
-chloe
-maintains
-panels
-ashley
-trucks
-##nation
-cluster
-sunlight
-strikes
-zhang
-##wing
-dialect
-canon
-##ap
-tucked
-##ws
-collecting
-##mas
-##can
-##sville
-maker
-quoted
-evan
-franco
-aria
-buying
-cleaning
-eva
-closet
-provision
-apollo
-clinic
-rat
-##ez
-necessarily
-ac
-##gle
-##ising
-venues
-flipped
-cent
-spreading
-trustees
-checking
-authorized
-##sco
-disappointed
-##ado
-notion
-duration
-trumpet
-hesitated
-topped
-brussels
-rolls
-theoretical
-hint
-define
-aggressive
-repeat
-wash
-peaceful
-optical
-width
-allegedly
-mcdonald
-strict
-copyright
-##illa
-investors
-mar
-jam
-witnesses
-sounding
-miranda
-michelle
-privacy
-hugo
-harmony
-##pp
-valid
-lynn
-glared
-nina
-102
-headquartered
-diving
-boarding
-gibson
-##ncy
-albanian
-marsh
-routine
-dealt
-enhanced
-er
-intelligent
-substance
-targeted
-enlisted
-discovers
-spinning
-observations
-pissed
-smoking
-rebecca
-capitol
-visa
-varied
-costume
-seemingly
-indies
-compensation
-surgeon
-thursday
-arsenal
-westminster
-suburbs
-rid
-anglican
-##ridge
-knots
-foods
-alumni
-lighter
-fraser
-whoever
-portal
-scandal
-##ray
-gavin
-advised
-instructor
-flooding
-terrorist
-##ale
-teenage
-interim
-senses
-duck
-teen
-thesis
-abby
-eager
-overcome
-##ile
-newport
-glenn
-rises
-shame
-##cc
-prompted
-priority
-forgot
-bomber
-nicolas
-protective
-360
-cartoon
-katherine
-breeze
-lonely
-trusted
-henderson
-richardson
-relax
-banner
-candy
-palms
-remarkable
-##rio
-legends
-cricketer
-essay
-ordained
-edmund
-rifles
-trigger
-##uri
-##away
-sail
-alert
-1830
-audiences
-penn
-sussex
-siblings
-pursued
-indianapolis
-resist
-rosa
-consequence
-succeed
-avoided
-1845
-##ulation
-inland
-##tie
-##nna
-counsel
-profession
-chronicle
-hurried
-##una
-eyebrow
-eventual
-bleeding
-innovative
-cure
-##dom
-committees
-accounting
-con
-scope
-hardy
-heather
-tenor
-gut
-herald
-codes
-tore
-scales
-wagon
-##oo
-luxury
-tin
-prefer
-fountain
-triangle
-bonds
-darling
-convoy
-dried
-traced
-beings
-troy
-accidentally
-slam
-findings
-smelled
-joey
-lawyers
-outcome
-steep
-bosnia
-configuration
-shifting
-toll
-brook
-performers
-lobby
-philosophical
-construct
-shrine
-aggregate
-boot
-cox
-phenomenon
-savage
-insane
-solely
-reynolds
-lifestyle
-##ima
-nationally
-holdings
-consideration
-enable
-edgar
-mo
-mama
-##tein
-fights
-relegation
-chances
-atomic
-hub
-conjunction
-awkward
-reactions
-currency
-finale
-kumar
-underwent
-steering
-elaborate
-gifts
-comprising
-melissa
-veins
-reasonable
-sunshine
-chi
-solve
-trails
-inhabited
-elimination
-ethics
-huh
-ana
-molly
-consent
-apartments
-layout
-marines
-##ces
-hunters
-bulk
-##oma
-hometown
-##wall
-##mont
-cracked
-reads
-neighbouring
-withdrawn
-admission
-wingspan
-damned
-anthology
-lancashire
-brands
-batting
-forgive
-cuban
-awful
-##lyn
-104
-dimensions
-imagination
-##ade
-dante
-##ship
-tracking
-desperately
-goalkeeper
-##yne
-groaned
-workshops
-confident
-burton
-gerald
-milton
-circus
-uncertain
-slope
-copenhagen
-sophia
-fog
-philosopher
-portraits
-accent
-cycling
-varying
-gripped
-larvae
-garrett
-specified
-scotia
-mature
-luther
-kurt
-rap
-##kes
-aerial
-750
-ferdinand
-heated
-es
-transported
-##shan
-safely
-nonetheless
-##orn
-##gal
-motors
-demanding
-##sburg
-startled
-##brook
-ally
-generate
-caps
-ghana
-stained
-demo
-mentions
-beds
-ap
-afterward
-diary
-##bling
-utility
-##iro
-richards
-1837
-conspiracy
-conscious
-shining
-footsteps
-observer
-cyprus
-urged
-loyalty
-developer
-probability
-olive
-upgraded
-gym
-miracle
-insects
-graves
-1844
-ourselves
-hydrogen
-amazon
-katie
-tickets
-poets
-##pm
-planes
-##pan
-prevention
-witnessed
-dense
-jin
-randy
-tang
-warehouse
-monroe
-bang
-archived
-elderly
-investigations
-alec
-granite
-mineral
-conflicts
-controlling
-aboriginal
-carlo
-##zu
-mechanics
-stan
-stark
-rhode
-skirt
-est
-##berry
-bombs
-respected
-##horn
-imposed
-limestone
-deny
-nominee
-memphis
-grabbing
-disabled
-##als
-amusement
-aa
-frankfurt
-corn
-referendum
-varies
-slowed
-disk
-firms
-unconscious
-incredible
-clue
-sue
-##zhou
-twist
-##cio
-joins
-idaho
-chad
-developers
-computing
-destroyer
-103
-mortal
-tucker
-kingston
-choices
-yu
-carson
-1800
-os
-whitney
-geneva
-pretend
-dimension
-staged
-plateau
-maya
-##une
-freestyle
-##bc
-rovers
-hiv
-##ids
-tristan
-classroom
-prospect
-##hus
-honestly
-diploma
-lied
-thermal
-auxiliary
-feast
-unlikely
-iata
-##tel
-morocco
-pounding
-treasury
-lithuania
-considerably
-1841
-dish
-1812
-geological
-matching
-stumbled
-destroying
-marched
-brien
-advances
-cake
-nicole
-belle
-settling
-measuring
-directing
-##mie
-tuesday
-bassist
-capabilities
-stunned
-fraud
-torpedo
-##list
-##phone
-anton
-wisdom
-surveillance
-ruined
-##ulate
-lawsuit
-healthcare
-theorem
-halls
-trend
-aka
-horizontal
-dozens
-acquire
-lasting
-swim
-hawk
-gorgeous
-fees
-vicinity
-decrease
-adoption
-tactics
-##ography
-pakistani
-##ole
-draws
-##hall
-willie
-burke
-heath
-algorithm
-integral
-powder
-elliott
-brigadier
-jackie
-tate
-varieties
-darker
-##cho
-lately
-cigarette
-specimens
-adds
-##ree
-##ensis
-##inger
-exploded
-finalist
-cia
-murders
-wilderness
-arguments
-nicknamed
-acceptance
-onwards
-manufacture
-robertson
-jets
-tampa
-enterprises
-blog
-loudly
-composers
-nominations
-1838
-ai
-malta
-inquiry
-automobile
-hosting
-viii
-rays
-tilted
-grief
-museums
-strategies
-furious
-euro
-equality
-cohen
-poison
-surrey
-wireless
-governed
-ridiculous
-moses
-##esh
-##room
-vanished
-##ito
-barnes
-attract
-morrison
-istanbul
-##iness
-absent
-rotation
-petition
-janet
-##logical
-satisfaction
-custody
-deliberately
-observatory
-comedian
-surfaces
-pinyin
-novelist
-strictly
-canterbury
-oslo
-monks
-embrace
-ibm
-jealous
-photograph
-continent
-dorothy
-marina
-doc
-excess
-holden
-allegations
-explaining
-stack
-avoiding
-lance
-storyline
-majesty
-poorly
-spike
-dos
-bradford
-raven
-travis
-classics
-proven
-voltage
-pillow
-fists
-butt
-1842
-interpreted
-##car
-1839
-gage
-telegraph
-lens
-promising
-expelled
-casual
-collector
-zones
-##min
-silly
-nintendo
-##kh
-##bra
-downstairs
-chef
-suspicious
-afl
-flies
-vacant
-uganda
-pregnancy
-condemned
-lutheran
-estimates
-cheap
-decree
-saxon
-proximity
-stripped
-idiot
-deposits
-contrary
-presenter
-magnus
-glacier
-im
-offense
-edwin
-##ori
-upright
-##long
-bolt
-##ois
-toss
-geographical
-##izes
-environments
-delicate
-marking
-abstract
-xavier
-nails
-windsor
-plantation
-occurring
-equity
-saskatchewan
-fears
-drifted
-sequences
-vegetation
-revolt
-##stic
-1843
-sooner
-fusion
-opposing
-nato
-skating
-1836
-secretly
-ruin
-lease
-##oc
-edit
-##nne
-flora
-anxiety
-ruby
-##ological
-##mia
-tel
-bout
-taxi
-emmy
-frost
-rainbow
-compounds
-foundations
-rainfall
-assassination
-nightmare
-dominican
-##win
-achievements
-deserve
-orlando
-intact
-armenia
-##nte
-calgary
-valentine
-106
-marion
-proclaimed
-theodore
-bells
-courtyard
-thigh
-gonzalez
-console
-troop
-minimal
-monte
-everyday
-##ence
-##if
-supporter
-terrorism
-buck
-openly
-presbyterian
-activists
-carpet
-##iers
-rubbing
-uprising
-##yi
-cute
-conceived
-legally
-##cht
-millennium
-cello
-velocity
-ji
-rescued
-cardiff
-1835
-rex
-concentrate
-senators
-beard
-rendered
-glowing
-battalions
-scouts
-competitors
-sculptor
-catalogue
-arctic
-ion
-raja
-bicycle
-wow
-glancing
-lawn
-##woman
-gentleman
-lighthouse
-publish
-predicted
-calculated
-##val
-variants
-##gne
-strain
-##ui
-winston
-deceased
-##nus
-touchdowns
-brady
-caleb
-sinking
-echoed
-crush
-hon
-blessed
-protagonist
-hayes
-endangered
-magnitude
-editors
-##tine
-estimate
-responsibilities
-##mel
-backup
-laying
-consumed
-sealed
-zurich
-lovers
-frustrated
-##eau
-ahmed
-kicking
-mit
-treasurer
-1832
-biblical
-refuse
-terrified
-pump
-agrees
-genuine
-imprisonment
-refuses
-plymouth
-##hen
-lou
-##nen
-tara
-trembling
-antarctic
-ton
-learns
-##tas
-crap
-crucial
-faction
-atop
-##borough
-wrap
-lancaster
-odds
-hopkins
-erik
-lyon
-##eon
-bros
-##ode
-snap
-locality
-tips
-empress
-crowned
-cal
-acclaimed
-chuckled
-##ory
-clara
-sends
-mild
-towel
-##fl
-##day
-##а
-wishing
-assuming
-interviewed
-##bal
-##die
-interactions
-eden
-cups
-helena
-##lf
-indie
-beck
-##fire
-batteries
-filipino
-wizard
-parted
-##lam
-traces
-##born
-rows
-idol
-albany
-delegates
-##ees
-##sar
-discussions
-##ex
-notre
-instructed
-belgrade
-highways
-suggestion
-lauren
-possess
-orientation
-alexandria
-abdul
-beats
-salary
-reunion
-ludwig
-alright
-wagner
-intimate
-pockets
-slovenia
-hugged
-brighton
-merchants
-cruel
-stole
-trek
-slopes
-repairs
-enrollment
-politically
-underlying
-promotional
-counting
-boeing
-##bb
-isabella
-naming
-##и
-keen
-bacteria
-listing
-separately
-belfast
-ussr
-450
-lithuanian
-anybody
-ribs
-sphere
-martinez
-cock
-embarrassed
-proposals
-fragments
-nationals
-##fs
-##wski
-premises
-fin
-1500
-alpine
-matched
-freely
-bounded
-jace
-sleeve
-##af
-gaming
-pier
-populated
-evident
-##like
-frances
-flooded
-##dle
-frightened
-pour
-trainer
-framed
-visitor
-challenging
-pig
-wickets
-##fold
-infected
-email
-##pes
-arose
-##aw
-reward
-ecuador
-oblast
-vale
-ch
-shuttle
-##usa
-bach
-rankings
-forbidden
-cornwall
-accordance
-salem
-consumers
-bruno
-fantastic
-toes
-machinery
-resolved
-julius
-remembering
-propaganda
-iceland
-bombardment
-tide
-contacts
-wives
-##rah
-concerto
-macdonald
-albania
-implement
-daisy
-tapped
-sudan
-helmet
-angela
-mistress
-##lic
-crop
-sunk
-finest
-##craft
-hostile
-##ute
-##tsu
-boxer
-fr
-paths
-adjusted
-habit
-ballot
-supervision
-soprano
-##zen
-bullets
-wicked
-sunset
-regiments
-disappear
-lamp
-performs
-app
-##gia
-##oa
-rabbit
-digging
-incidents
-entries
-##cion
-dishes
-##oi
-introducing
-##ati
-##fied
-freshman
-slot
-jill
-tackles
-baroque
-backs
-##iest
-lone
-sponsor
-destiny
-altogether
-convert
-##aro
-consensus
-shapes
-demonstration
-basically
-feminist
-auction
-artifacts
-##bing
-strongest
-twitter
-halifax
-2019
-allmusic
-mighty
-smallest
-precise
-alexandra
-viola
-##los
-##ille
-manuscripts
-##illo
-dancers
-ari
-managers
-monuments
-blades
-barracks
-springfield
-maiden
-consolidated
-electron
-##end
-berry
-airing
-wheat
-nobel
-inclusion
-blair
-payments
-geography
-bee
-cc
-eleanor
-react
-##hurst
-afc
-manitoba
-##yu
-su
-lineup
-fitness
-recreational
-investments
-airborne
-disappointment
-##dis
-edmonton
-viewing
-##row
-renovation
-##cast
-infant
-bankruptcy
-roses
-aftermath
-pavilion
-##yer
-carpenter
-withdrawal
-ladder
-##hy
-discussing
-popped
-reliable
-agreements
-rochester
-##abad
-curves
-bombers
-220
-rao
-reverend
-decreased
-choosing
-107
-stiff
-consulting
-naples
-crawford
-tracy
-ka
-ribbon
-cops
-##lee
-crushed
-deciding
-unified
-teenager
-accepting
-flagship
-explorer
-poles
-sanchez
-inspection
-revived
-skilled
-induced
-exchanged
-flee
-locals
-tragedy
-swallow
-loading
-hanna
-demonstrate
-##ela
-salvador
-flown
-contestants
-civilization
-##ines
-wanna
-rhodes
-fletcher
-hector
-knocking
-considers
-##ough
-nash
-mechanisms
-sensed
-mentally
-walt
-unclear
-##eus
-renovated
-madame
-##cks
-crews
-governmental
-##hin
-undertaken
-monkey
-##ben
-##ato
-fatal
-armored
-copa
-caves
-governance
-grasp
-perception
-certification
-froze
-damp
-tugged
-wyoming
-##rg
-##ero
-newman
-##lor
-nerves
-curiosity
-graph
-115
-##ami
-withdraw
-tunnels
-dull
-meredith
-moss
-exhibits
-neighbors
-communicate
-accuracy
-explored
-raiders
-republicans
-secular
-kat
-superman
-penny
-criticised
-##tch
-freed
-update
-conviction
-wade
-ham
-likewise
-delegation
-gotta
-doll
-promises
-technological
-myth
-nationality
-resolve
-convent
-##mark
-sharon
-dig
-sip
-coordinator
-entrepreneur
-fold
-##dine
-capability
-councillor
-synonym
-blown
-swan
-cursed
-1815
-jonas
-haired
-sofa
-canvas
-keeper
-rivalry
-##hart
-rapper
-speedway
-swords
-postal
-maxwell
-estonia
-potter
-recurring
-##nn
-##ave
-errors
-##oni
-cognitive
-1834
-##²
-claws
-nadu
-roberto
-bce
-wrestler
-ellie
-##ations
-infinite
-ink
-##tia
-presumably
-finite
-staircase
-108
-noel
-patricia
-nacional
-##cation
-chill
-eternal
-tu
-preventing
-prussia
-fossil
-limbs
-##logist
-ernst
-frog
-perez
-rene
-##ace
-pizza
-prussian
-##ios
-##vy
-molecules
-regulatory
-answering
-opinions
-sworn
-lengths
-supposedly
-hypothesis
-upward
-habitats
-seating
-ancestors
-drank
-yield
-hd
-synthesis
-researcher
-modest
-##var
-mothers
-peered
-voluntary
-homeland
-##the
-acclaim
-##igan
-static
-valve
-luxembourg
-alto
-carroll
-fe
-receptor
-norton
-ambulance
-##tian
-johnston
-catholics
-depicting
-jointly
-elephant
-gloria
-mentor
-badge
-ahmad
-distinguish
-remarked
-councils
-precisely
-allison
-advancing
-detection
-crowded
-##10
-cooperative
-ankle
-mercedes
-dagger
-surrendered
-pollution
-commit
-subway
-jeffrey
-lesson
-sculptures
-provider
-##fication
-membrane
-timothy
-rectangular
-fiscal
-heating
-teammate
-basket
-particle
-anonymous
-deployment
-##ple
-missiles
-courthouse
-proportion
-shoe
-sec
-##ller
-complaints
-forbes
-blacks
-abandon
-remind
-sizes
-overwhelming
-autobiography
-natalie
-##awa
-risks
-contestant
-countryside
-babies
-scorer
-invaded
-enclosed
-proceed
-hurling
-disorders
-##cu
-reflecting
-continuously
-cruiser
-graduates
-freeway
-investigated
-ore
-deserved
-maid
-blocking
-phillip
-jorge
-shakes
-dove
-mann
-variables
-lacked
-burden
-accompanying
-que
-consistently
-organizing
-provisional
-complained
-endless
-##rm
-tubes
-juice
-georges
-krishna
-mick
-labels
-thriller
-##uch
-laps
-arcade
-sage
-snail
-##table
-shannon
-fi
-laurence
-seoul
-vacation
-presenting
-hire
-churchill
-surprisingly
-prohibited
-savannah
-technically
-##oli
-170
-##lessly
-testimony
-suited
-speeds
-toys
-romans
-mlb
-flowering
-measurement
-talented
-kay
-settings
-charleston
-expectations
-shattered
-achieving
-triumph
-ceremonies
-portsmouth
-lanes
-mandatory
-loser
-stretching
-cologne
-realizes
-seventy
-cornell
-careers
-webb
-##ulating
-americas
-budapest
-ava
-suspicion
-##ison
-yo
-conrad
-##hai
-sterling
-jessie
-rector
-##az
-1831
-transform
-organize
-loans
-christine
-volcanic
-warrant
-slender
-summers
-subfamily
-newer
-danced
-dynamics
-rhine
-proceeds
-heinrich
-gastropod
-commands
-sings
-facilitate
-easter
-ra
-positioned
-responses
-expense
-fruits
-yanked
-imported
-25th
-velvet
-vic
-primitive
-tribune
-baldwin
-neighbourhood
-donna
-rip
-hay
-pr
-##uro
-1814
-espn
-welcomed
-##aria
-qualifier
-glare
-highland
-timing
-##cted
-shells
-eased
-geometry
-louder
-exciting
-slovakia
-##sion
-##iz
-##lot
-savings
-prairie
-##ques
-marching
-rafael
-tonnes
-##lled
-curtain
-preceding
-shy
-heal
-greene
-worthy
-##pot
-detachment
-bury
-sherman
-##eck
-reinforced
-seeks
-bottles
-contracted
-duchess
-outfit
-walsh
-##sc
-mickey
-##ase
-geoffrey
-archer
-squeeze
-dawson
-eliminate
-invention
-##enberg
-neal
-##eth
-stance
-dealer
-coral
-maple
-retire
-polo
-simplified
-##ht
-1833
-hid
-watts
-backwards
-jules
-##oke
-genesis
-mt
-frames
-rebounds
-burma
-woodland
-moist
-santos
-whispers
-drained
-subspecies
-##aa
-streaming
-ulster
-burnt
-correspondence
-maternal
-gerard
-denis
-stealing
-##load
-genius
-duchy
-##oria
-inaugurated
-momentum
-suits
-placement
-sovereign
-clause
-thames
-##hara
-confederation
-reservation
-sketch
-yankees
-lets
-rotten
-charm
-hal
-verses
-ultra
-commercially
-dot
-salon
-citation
-adopt
-winnipeg
-mist
-allocated
-cairo
-##boy
-jenkins
-interference
-objectives
-##wind
-1820
-portfolio
-armoured
-sectors
-##eh
-initiatives
-##world
-integrity
-exercises
-robe
-tap
-ab
-gazed
-##tones
-distracted
-rulers
-111
-favorable
-jerome
-tended
-cart
-factories
-##eri
-diplomat
-valued
-gravel
-charitable
-##try
-calvin
-exploring
-chang
-shepherd
-terrace
-pdf
-pupil
-##ural
-reflects
-ups
-##rch
-governors
-shelf
-depths
-##nberg
-trailed
-crest
-tackle
-##nian
-##ats
-hatred
-##kai
-clare
-makers
-ethiopia
-longtime
-detected
-embedded
-lacking
-slapped
-rely
-thomson
-anticipation
-iso
-morton
-successive
-agnes
-screenwriter
-straightened
-philippe
-playwright
-haunted
-licence
-iris
-intentions
-sutton
-112
-logical
-correctly
-##weight
-branded
-licked
-tipped
-silva
-ricky
-narrator
-requests
-##ents
-greeted
-supernatural
-cow
-##wald
-lung
-refusing
-employer
-strait
-gaelic
-liner
-##piece
-zoe
-sabha
-##mba
-driveway
-harvest
-prints
-bates
-reluctantly
-threshold
-algebra
-ira
-wherever
-coupled
-240
-assumption
-picks
-##air
-designers
-raids
-gentlemen
-##ean
-roller
-blowing
-leipzig
-locks
-screw
-dressing
-strand
-##lings
-scar
-dwarf
-depicts
-##nu
-nods
-##mine
-differ
-boris
-##eur
-yuan
-flip
-##gie
-mob
-invested
-questioning
-applying
-##ture
-shout
-##sel
-gameplay
-blamed
-illustrations
-bothered
-weakness
-rehabilitation
-##of
-##zes
-envelope
-rumors
-miners
-leicester
-subtle
-kerry
-##ico
-ferguson
-##fu
-premiership
-ne
-##cat
-bengali
-prof
-catches
-remnants
-dana
-##rily
-shouting
-presidents
-baltic
-ought
-ghosts
-dances
-sailors
-shirley
-fancy
-dominic
-##bie
-madonna
-##rick
-bark
-buttons
-gymnasium
-ashes
-liver
-toby
-oath
-providence
-doyle
-evangelical
-nixon
-cement
-carnegie
-embarked
-hatch
-surroundings
-guarantee
-needing
-pirate
-essence
-##bee
-filter
-crane
-hammond
-projected
-immune
-percy
-twelfth
-##ult
-regent
-doctoral
-damon
-mikhail
-##ichi
-lu
-critically
-elect
-realised
-abortion
-acute
-screening
-mythology
-steadily
-##fc
-frown
-nottingham
-kirk
-wa
-minneapolis
-##rra
-module
-algeria
-mc
-nautical
-encounters
-surprising
-statues
-availability
-shirts
-pie
-alma
-brows
-munster
-mack
-soup
-crater
-tornado
-sanskrit
-cedar
-explosive
-bordered
-dixon
-planets
-stamp
-exam
-happily
-##bble
-carriers
-kidnapped
-##vis
-accommodation
-emigrated
-##met
-knockout
-correspondent
-violation
-profits
-peaks
-lang
-specimen
-agenda
-ancestry
-pottery
-spelling
-equations
-obtaining
-ki
-linking
-1825
-debris
-asylum
-##20
-buddhism
-teddy
-##ants
-gazette
-##nger
-##sse
-dental
-eligibility
-utc
-fathers
-averaged
-zimbabwe
-francesco
-coloured
-hissed
-translator
-lynch
-mandate
-humanities
-mackenzie
-uniforms
-lin
-##iana
-##gio
-asset
-mhz
-fitting
-samantha
-genera
-wei
-rim
-beloved
-shark
-riot
-entities
-expressions
-indo
-carmen
-slipping
-owing
-abbot
-neighbor
-sidney
-##av
-rats
-recommendations
-encouraging
-squadrons
-anticipated
-commanders
-conquered
-##oto
-donations
-diagnosed
-##mond
-divide
-##iva
-guessed
-decoration
-vernon
-auditorium
-revelation
-conversations
-##kers
-##power
-herzegovina
-dash
-alike
-protested
-lateral
-herman
-accredited
-mg
-##gent
-freeman
-mel
-fiji
-crow
-crimson
-##rine
-livestock
-##pped
-humanitarian
-bored
-oz
-whip
-##lene
-##ali
-legitimate
-alter
-grinning
-spelled
-anxious
-oriental
-wesley
-##nin
-##hole
-carnival
-controller
-detect
-##ssa
-bowed
-educator
-kosovo
-macedonia
-##sin
-occupy
-mastering
-stephanie
-janeiro
-para
-unaware
-nurses
-noon
-135
-cam
-hopefully
-ranger
-combine
-sociology
-polar
-rica
-##eer
-neill
-##sman
-holocaust
-##ip
-doubled
-lust
-1828
-109
-decent
-cooling
-unveiled
-##card
-1829
-nsw
-homer
-chapman
-meyer
-##gin
-dive
-mae
-reagan
-expertise
-##gled
-darwin
-brooke
-sided
-prosecution
-investigating
-comprised
-petroleum
-genres
-reluctant
-differently
-trilogy
-johns
-vegetables
-corpse
-highlighted
-lounge
-pension
-unsuccessfully
-elegant
-aided
-ivory
-beatles
-amelia
-cain
-dubai
-sunny
-immigrant
-babe
-click
-##nder
-underwater
-pepper
-combining
-mumbled
-atlas
-horns
-accessed
-ballad
-physicians
-homeless
-gestured
-rpm
-freak
-louisville
-corporations
-patriots
-prizes
-rational
-warn
-modes
-decorative
-overnight
-din
-troubled
-phantom
-##ort
-monarch
-sheer
-##dorf
-generals
-guidelines
-organs
-addresses
-##zon
-enhance
-curling
-parishes
-cord
-##kie
-linux
-caesar
-deutsche
-bavaria
-##bia
-coleman
-cyclone
-##eria
-bacon
-petty
-##yama
-##old
-hampton
-diagnosis
-1824
-throws
-complexity
-rita
-disputed
-##₃
-pablo
-##sch
-marketed
-trafficking
-##ulus
-examine
-plague
-formats
-##oh
-vault
-faithful
-##bourne
-webster
-##ox
-highlights
-##ient
-##ann
-phones
-vacuum
-sandwich
-modeling
-##gated
-bolivia
-clergy
-qualities
-isabel
-##nas
-##ars
-wears
-screams
-reunited
-annoyed
-bra
-##ancy
-##rate
-differential
-transmitter
-tattoo
-container
-poker
-##och
-excessive
-resides
-cowboys
-##tum
-augustus
-trash
-providers
-statute
-retreated
-balcony
-reversed
-void
-storey
-preceded
-masses
-leap
-laughs
-neighborhoods
-wards
-schemes
-falcon
-santo
-battlefield
-pad
-ronnie
-thread
-lesbian
-venus
-##dian
-beg
-sandstone
-daylight
-punched
-gwen
-analog
-stroked
-wwe
-acceptable
-measurements
-dec
-toxic
-##kel
-adequate
-surgical
-economist
-parameters
-varsity
-##sberg
-quantity
-ella
-##chy
-##rton
-countess
-generating
-precision
-diamonds
-expressway
-ga
-##ı
-1821
-uruguay
-talents
-galleries
-expenses
-scanned
-colleague
-outlets
-ryder
-lucien
-##ila
-paramount
-##bon
-syracuse
-dim
-fangs
-gown
-sweep
-##sie
-toyota
-missionaries
-websites
-##nsis
-sentences
-adviser
-val
-trademark
-spells
-##plane
-patience
-starter
-slim
-##borg
-toe
-incredibly
-shoots
-elliot
-nobility
-##wyn
-cowboy
-endorsed
-gardner
-tendency
-persuaded
-organisms
-emissions
-kazakhstan
-amused
-boring
-chips
-themed
-##hand
-llc
-constantinople
-chasing
-systematic
-guatemala
-borrowed
-erin
-carey
-##hard
-highlands
-struggles
-1810
-##ifying
-##ced
-wong
-exceptions
-develops
-enlarged
-kindergarten
-castro
-##ern
-##rina
-leigh
-zombie
-juvenile
-##most
-consul
-##nar
-sailor
-hyde
-clarence
-intensive
-pinned
-nasty
-useless
-jung
-clayton
-stuffed
-exceptional
-ix
-apostolic
-230
-transactions
-##dge
-exempt
-swinging
-cove
-religions
-##ash
-shields
-dairy
-bypass
-190
-pursuing
-bug
-joyce
-bombay
-chassis
-southampton
-chat
-interact
-redesignated
-##pen
-nascar
-pray
-salmon
-rigid
-regained
-malaysian
-grim
-publicity
-constituted
-capturing
-toilet
-delegate
-purely
-tray
-drift
-loosely
-striker
-weakened
-trinidad
-mitch
-itv
-defines
-transmitted
-ming
-scarlet
-nodding
-fitzgerald
-fu
-narrowly
-sp
-tooth
-standings
-virtue
-##₁
-##wara
-##cting
-chateau
-gloves
-lid
-##nel
-hurting
-conservatory
-##pel
-sinclair
-reopened
-sympathy
-nigerian
-strode
-advocated
-optional
-chronic
-discharge
-##rc
-suck
-compatible
-laurel
-stella
-shi
-fails
-wage
-dodge
-128
-informal
-sorts
-levi
-buddha
-villagers
-##aka
-chronicles
-heavier
-summoned
-gateway
-3000
-eleventh
-jewelry
-translations
-accordingly
-seas
-##ency
-fiber
-pyramid
-cubic
-dragging
-##ista
-caring
-##ops
-android
-contacted
-lunar
-##dt
-kai
-lisbon
-patted
-1826
-sacramento
-theft
-madagascar
-subtropical
-disputes
-ta
-holidays
-piper
-willow
-mare
-cane
-itunes
-newfoundland
-benny
-companions
-dong
-raj
-observe
-roar
-charming
-plaque
-tibetan
-fossils
-enacted
-manning
-bubble
-tina
-tanzania
-##eda
-##hir
-funk
-swamp
-deputies
-cloak
-ufc
-scenario
-par
-scratch
-metals
-anthem
-guru
-engaging
-specially
-##boat
-dialects
-nineteen
-cecil
-duet
-disability
-messenger
-unofficial
-##lies
-defunct
-eds
-moonlight
-drainage
-surname
-puzzle
-honda
-switching
-conservatives
-mammals
-knox
-broadcaster
-sidewalk
-cope
-##ried
-benson
-princes
-peterson
-##sal
-bedford
-sharks
-eli
-wreck
-alberto
-gasp
-archaeology
-lgbt
-teaches
-securities
-madness
-compromise
-waving
-coordination
-davidson
-visions
-leased
-possibilities
-eighty
-jun
-fernandez
-enthusiasm
-assassin
-sponsorship
-reviewer
-kingdoms
-estonian
-laboratories
-##fy
-##nal
-applies
-verb
-celebrations
-##zzo
-rowing
-lightweight
-sadness
-submit
-mvp
-balanced
-dude
-##vas
-explicitly
-metric
-magnificent
-mound
-brett
-mohammad
-mistakes
-irregular
-##hing
-##ass
-sanders
-betrayed
-shipped
-surge
-##enburg
-reporters
-termed
-georg
-pity
-verbal
-bulls
-abbreviated
-enabling
-appealed
-##are
-##atic
-sicily
-sting
-heel
-sweetheart
-bart
-spacecraft
-brutal
-monarchy
-##tter
-aberdeen
-cameo
-diane
-##ub
-survivor
-clyde
-##aries
-complaint
-##makers
-clarinet
-delicious
-chilean
-karnataka
-coordinates
-1818
-panties
-##rst
-pretending
-ar
-dramatically
-kiev
-bella
-tends
-distances
-113
-catalog
-launching
-instances
-telecommunications
-portable
-lindsay
-vatican
-##eim
-angles
-aliens
-marker
-stint
-screens
-bolton
-##rne
-judy
-wool
-benedict
-plasma
-europa
-spark
-imaging
-filmmaker
-swiftly
-##een
-contributor
-##nor
-opted
-stamps
-apologize
-financing
-butter
-gideon
-sophisticated
-alignment
-avery
-chemicals
-yearly
-speculation
-prominence
-professionally
-##ils
-immortal
-institutional
-inception
-wrists
-identifying
-tribunal
-derives
-gains
-##wo
-papal
-preference
-linguistic
-vince
-operative
-brewery
-##ont
-unemployment
-boyd
-##ured
-##outs
-albeit
-prophet
-1813
-bi
-##rr
-##face
-##rad
-quarterly
-asteroid
-cleaned
-radius
-temper
-##llen
-telugu
-jerk
-viscount
-menu
-##ote
-glimpse
-##aya
-yacht
-hawaiian
-baden
-##rl
-laptop
-readily
-##gu
-monetary
-offshore
-scots
-watches
-##yang
-##arian
-upgrade
-needle
-xbox
-lea
-encyclopedia
-flank
-fingertips
-##pus
-delight
-teachings
-confirm
-roth
-beaches
-midway
-winters
-##iah
-teasing
-daytime
-beverly
-gambling
-bonnie
-##backs
-regulated
-clement
-hermann
-tricks
-knot
-##shing
-##uring
-##vre
-detached
-ecological
-owed
-specialty
-byron
-inventor
-bats
-stays
-screened
-unesco
-midland
-trim
-affection
-##ander
-##rry
-jess
-thoroughly
-feedback
-##uma
-chennai
-strained
-heartbeat
-wrapping
-overtime
-pleaded
-##sworth
-mon
-leisure
-oclc
-##tate
-##ele
-feathers
-angelo
-thirds
-nuts
-surveys
-clever
-gill
-commentator
-##dos
-darren
-rides
-gibraltar
-##nc
-##mu
-dissolution
-dedication
-shin
-meals
-saddle
-elvis
-reds
-chaired
-taller
-appreciation
-functioning
-niece
-favored
-advocacy
-robbie
-criminals
-suffolk
-yugoslav
-passport
-constable
-congressman
-hastings
-vera
-##rov
-consecrated
-sparks
-ecclesiastical
-confined
-##ovich
-muller
-floyd
-nora
-1822
-paved
-1827
-cumberland
-ned
-saga
-spiral
-##flow
-appreciated
-yi
-collaborative
-treating
-similarities
-feminine
-finishes
-##ib
-jade
-import
-##nse
-##hot
-champagne
-mice
-securing
-celebrities
-helsinki
-attributes
-##gos
-cousins
-phases
-ache
-lucia
-gandhi
-submission
-vicar
-spear
-shine
-tasmania
-biting
-detention
-constitute
-tighter
-seasonal
-##gus
-terrestrial
-matthews
-##oka
-effectiveness
-parody
-philharmonic
-##onic
-1816
-strangers
-encoded
-consortium
-guaranteed
-regards
-shifts
-tortured
-collision
-supervisor
-inform
-broader
-insight
-theaters
-armour
-emeritus
-blink
-incorporates
-mapping
-##50
-##ein
-handball
-flexible
-##nta
-substantially
-generous
-thief
-##own
-carr
-loses
-1793
-prose
-ucla
-romeo
-generic
-metallic
-realization
-damages
-mk
-commissioners
-zach
-default
-##ther
-helicopters
-lengthy
-stems
-spa
-partnered
-spectators
-rogue
-indication
-penalties
-teresa
-1801
-sen
-##tric
-dalton
-##wich
-irving
-photographic
-##vey
-dell
-deaf
-peters
-excluded
-unsure
-##vable
-patterson
-crawled
-##zio
-resided
-whipped
-latvia
-slower
-ecole
-pipes
-employers
-maharashtra
-comparable
-va
-textile
-pageant
-##gel
-alphabet
-binary
-irrigation
-chartered
-choked
-antoine
-offs
-waking
-supplement
-##wen
-quantities
-demolition
-regain
-locate
-urdu
-folks
-alt
-114
-##mc
-scary
-andreas
-whites
-##ava
-classrooms
-mw
-aesthetic
-publishes
-valleys
-guides
-cubs
-johannes
-bryant
-conventions
-affecting
-##itt
-drain
-awesome
-isolation
-prosecutor
-ambitious
-apology
-captive
-downs
-atmospheric
-lorenzo
-aisle
-beef
-foul
-##onia
-kidding
-composite
-disturbed
-illusion
-natives
-##ffer
-emi
-rockets
-riverside
-wartime
-painters
-adolf
-melted
-##ail
-uncertainty
-simulation
-hawks
-progressed
-meantime
-builder
-spray
-breach
-unhappy
-regina
-russians
-##urg
-determining
-##tation
-tram
-1806
-##quin
-aging
-##12
-1823
-garion
-rented
-mister
-diaz
-terminated
-clip
-1817
-depend
-nervously
-disco
-owe
-defenders
-shiva
-notorious
-disbelief
-shiny
-worcester
-##gation
-##yr
-trailing
-undertook
-islander
-belarus
-limitations
-watershed
-fuller
-overlooking
-utilized
-raphael
-1819
-synthetic
-breakdown
-klein
-##nate
-moaned
-memoir
-lamb
-practicing
-##erly
-cellular
-arrows
-exotic
-##graphy
-witches
-117
-charted
-rey
-hut
-hierarchy
-subdivision
-freshwater
-giuseppe
-aloud
-reyes
-qatar
-marty
-sideways
-utterly
-sexually
-jude
-prayers
-mccarthy
-softball
-blend
-damien
-##gging
-##metric
-wholly
-erupted
-lebanese
-negro
-revenues
-tasted
-comparative
-teamed
-transaction
-labeled
-maori
-sovereignty
-parkway
-trauma
-gran
-malay
-121
-advancement
-descendant
-2020
-buzz
-salvation
-inventory
-symbolic
-##making
-antarctica
-mps
-##gas
-##bro
-mohammed
-myanmar
-holt
-submarines
-tones
-##lman
-locker
-patriarch
-bangkok
-emerson
-remarks
-predators
-kin
-afghan
-confession
-norwich
-rental
-emerge
-advantages
-##zel
-rca
-##hold
-shortened
-storms
-aidan
-##matic
-autonomy
-compliance
-##quet
-dudley
-atp
-##osis
-1803
-motto
-documentation
-summary
-professors
-spectacular
-christina
-archdiocese
-flashing
-innocence
-remake
-##dell
-psychic
-reef
-scare
-employ
-rs
-sticks
-meg
-gus
-leans
-##ude
-accompany
-bergen
-tomas
-##iko
-doom
-wages
-pools
-##nch
-##bes
-breasts
-scholarly
-alison
-outline
-brittany
-breakthrough
-willis
-realistic
-##cut
-##boro
-competitor
-##stan
-pike
-picnic
-icon
-designing
-commercials
-washing
-villain
-skiing
-micro
-costumes
-auburn
-halted
-executives
-##hat
-logistics
-cycles
-vowel
-applicable
-barrett
-exclaimed
-eurovision
-eternity
-ramon
-##umi
-##lls
-modifications
-sweeping
-disgust
-##uck
-torch
-aviv
-ensuring
-rude
-dusty
-sonic
-donovan
-outskirts
-cu
-pathway
-##band
-##gun
-##lines
-disciplines
-acids
-cadet
-paired
-##40
-sketches
-##sive
-marriages
-##⁺
-folding
-peers
-slovak
-implies
-admired
-##beck
-1880s
-leopold
-instinct
-attained
-weston
-megan
-horace
-##ination
-dorsal
-ingredients
-evolutionary
-##its
-complications
-deity
-lethal
-brushing
-levy
-deserted
-institutes
-posthumously
-delivering
-telescope
-coronation
-motivated
-rapids
-luc
-flicked
-pays
-volcano
-tanner
-weighed
-##nica
-crowds
-frankie
-gifted
-addressing
-granddaughter
-winding
-##rna
-constantine
-gomez
-##front
-landscapes
-rudolf
-anthropology
-slate
-werewolf
-##lio
-astronomy
-circa
-rouge
-dreaming
-sack
-knelt
-drowned
-naomi
-prolific
-tracked
-freezing
-herb
-##dium
-agony
-randall
-twisting
-wendy
-deposit
-touches
-vein
-wheeler
-##bbled
-##bor
-batted
-retaining
-tire
-presently
-compare
-specification
-daemon
-nigel
-##grave
-merry
-recommendation
-czechoslovakia
-sandra
-ng
-roma
-##sts
-lambert
-inheritance
-sheikh
-winchester
-cries
-examining
-##yle
-comeback
-cuisine
-nave
-##iv
-ko
-retrieve
-tomatoes
-barker
-polished
-defining
-irene
-lantern
-personalities
-begging
-tract
-swore
-1809
-175
-##gic
-omaha
-brotherhood
-##rley
-haiti
-##ots
-exeter
-##ete
-##zia
-steele
-dumb
-pearson
-210
-surveyed
-elisabeth
-trends
-##ef
-fritz
-##rf
-premium
-bugs
-fraction
-calmly
-viking
-##birds
-tug
-inserted
-unusually
-##ield
-confronted
-distress
-crashing
-brent
-turks
-resign
-##olo
-cambodia
-gabe
-sauce
-##kal
-evelyn
-116
-extant
-clusters
-quarry
-teenagers
-luna
-##lers
-##ister
-affiliation
-drill
-##ashi
-panthers
-scenic
-libya
-anita
-strengthen
-inscriptions
-##cated
-lace
-sued
-judith
-riots
-##uted
-mint
-##eta
-preparations
-midst
-dub
-challenger
-##vich
-mock
-cf
-displaced
-wicket
-breaths
-enables
-schmidt
-analyst
-##lum
-ag
-highlight
-automotive
-axe
-josef
-newark
-sufficiently
-resembles
-50th
-##pal
-flushed
-mum
-traits
-##ante
-commodore
-incomplete
-warming
-titular
-ceremonial
-ethical
-118
-celebrating
-eighteenth
-cao
-lima
-medalist
-mobility
-strips
-snakes
-##city
-miniature
-zagreb
-barton
-escapes
-umbrella
-automated
-doubted
-differs
-cooled
-georgetown
-dresden
-cooked
-fade
-wyatt
-rna
-jacobs
-carlton
-abundant
-stereo
-boost
-madras
-inning
-##hia
-spur
-ip
-malayalam
-begged
-osaka
-groan
-escaping
-charging
-dose
-vista
-##aj
-bud
-papa
-communists
-advocates
-edged
-tri
-##cent
-resemble
-peaking
-necklace
-fried
-montenegro
-saxony
-goose
-glances
-stuttgart
-curator
-recruit
-grocery
-sympathetic
-##tting
-##fort
-127
-lotus
-randolph
-ancestor
-##rand
-succeeding
-jupiter
-1798
-macedonian
-##heads
-hiking
-1808
-handing
-fischer
-##itive
-garbage
-node
-##pies
-prone
-singular
-papua
-inclined
-attractions
-italia
-pouring
-motioned
-grandma
-garnered
-jacksonville
-corp
-ego
-ringing
-aluminum
-##hausen
-ordering
-##foot
-drawer
-traders
-synagogue
-##play
-##kawa
-resistant
-wandering
-fragile
-fiona
-teased
-var
-hardcore
-soaked
-jubilee
-decisive
-exposition
-mercer
-poster
-valencia
-hale
-kuwait
-1811
-##ises
-##wr
-##eed
-tavern
-gamma
-122
-johan
-##uer
-airways
-amino
-gil
-##ury
-vocational
-domains
-torres
-##sp
-generator
-folklore
-outcomes
-##keeper
-canberra
-shooter
-fl
-beams
-confrontation
-##lling
-##gram
-feb
-aligned
-forestry
-pipeline
-jax
-motorway
-conception
-decay
-##tos
-coffin
-##cott
-stalin
-1805
-escorted
-minded
-##nam
-sitcom
-purchasing
-twilight
-veronica
-additions
-passive
-tensions
-straw
-123
-frequencies
-1804
-refugee
-cultivation
-##iate
-christie
-clary
-bulletin
-crept
-disposal
-##rich
-##zong
-processor
-crescent
-##rol
-bmw
-emphasized
-whale
-nazis
-aurora
-##eng
-dwelling
-hauled
-sponsors
-toledo
-mega
-ideology
-theatres
-tessa
-cerambycidae
-saves
-turtle
-cone
-suspects
-kara
-rusty
-yelling
-greeks
-mozart
-shades
-cocked
-participant
-##tro
-shire
-spit
-freeze
-necessity
-##cos
-inmates
-nielsen
-councillors
-loaned
-uncommon
-omar
-peasants
-botanical
-offspring
-daniels
-formations
-jokes
-1794
-pioneers
-sigma
-licensing
-##sus
-wheelchair
-polite
-1807
-liquor
-pratt
-trustee
-##uta
-forewings
-balloon
-##zz
-kilometre
-camping
-explicit
-casually
-shawn
-foolish
-teammates
-nm
-hassan
-carrie
-judged
-satisfy
-vanessa
-knives
-selective
-cnn
-flowed
-##lice
-eclipse
-stressed
-eliza
-mathematician
-cease
-cultivated
-##roy
-commissions
-browns
-##ania
-destroyers
-sheridan
-meadow
-##rius
-minerals
-##cial
-downstream
-clash
-gram
-memoirs
-ventures
-baha
-seymour
-archie
-midlands
-edith
-fare
-flynn
-invite
-canceled
-tiles
-stabbed
-boulder
-incorporate
-amended
-camden
-facial
-mollusk
-unreleased
-descriptions
-yoga
-grabs
-550
-raises
-ramp
-shiver
-##rose
-coined
-pioneering
-tunes
-qing
-warwick
-tops
-119
-melanie
-giles
-##rous
-wandered
-##inal
-annexed
-nov
-30th
-unnamed
-##ished
-organizational
-airplane
-normandy
-stoke
-whistle
-blessing
-violations
-chased
-holders
-shotgun
-##ctic
-outlet
-reactor
-##vik
-tires
-tearing
-shores
-fortified
-mascot
-constituencies
-nc
-columnist
-productive
-tibet
-##rta
-lineage
-hooked
-oct
-tapes
-judging
-cody
-##gger
-hansen
-kashmir
-triggered
-##eva
-solved
-cliffs
-##tree
-resisted
-anatomy
-protesters
-transparent
-implied
-##iga
-injection
-mattress
-excluding
-##mbo
-defenses
-helpless
-devotion
-##elli
-growl
-liberals
-weber
-phenomena
-atoms
-plug
-##iff
-mortality
-apprentice
-howe
-convincing
-aaa
-swimmer
-barber
-leone
-promptly
-sodium
-def
-nowadays
-arise
-##oning
-gloucester
-corrected
-dignity
-norm
-erie
-##ders
-elders
-evacuated
-sylvia
-compression
-##yar
-hartford
-pose
-backpack
-reasoning
-accepts
-24th
-wipe
-millimetres
-marcel
-##oda
-dodgers
-albion
-1790
-overwhelmed
-aerospace
-oaks
-1795
-showcase
-acknowledge
-recovering
-nolan
-ashe
-hurts
-geology
-fashioned
-disappearance
-farewell
-swollen
-shrug
-marquis
-wimbledon
-124
-rue
-1792
-commemorate
-reduces
-experiencing
-inevitable
-calcutta
-intel
-##court
-murderer
-sticking
-fisheries
-imagery
-bloom
-280
-brake
-##inus
-gustav
-hesitation
-memorable
-po
-viral
-beans
-accidents
-tunisia
-antenna
-spilled
-consort
-treatments
-aye
-perimeter
-##gard
-donation
-hostage
-migrated
-banker
-addiction
-apex
-lil
-trout
-##ously
-conscience
-##nova
-rams
-sands
-genome
-passionate
-troubles
-##lets
-##set
-amid
-##ibility
-##ret
-higgins
-exceed
-vikings
-##vie
-payne
-##zan
-muscular
-##ste
-defendant
-sucking
-##wal
-ibrahim
-fuselage
-claudia
-vfl
-europeans
-snails
-interval
-##garh
-preparatory
-statewide
-tasked
-lacrosse
-viktor
-##lation
-angola
-##hra
-flint
-implications
-employs
-teens
-patrons
-stall
-weekends
-barriers
-scrambled
-nucleus
-tehran
-jenna
-parsons
-lifelong
-robots
-displacement
-5000
-##bles
-precipitation
-##gt
-knuckles
-clutched
-1802
-marrying
-ecology
-marx
-accusations
-declare
-scars
-kolkata
-mat
-meadows
-bermuda
-skeleton
-finalists
-vintage
-crawl
-coordinate
-affects
-subjected
-orchestral
-mistaken
-##tc
-mirrors
-dipped
-relied
-260
-arches
-candle
-##nick
-incorporating
-wildly
-fond
-basilica
-owl
-fringe
-rituals
-whispering
-stirred
-feud
-tertiary
-slick
-goat
-honorable
-whereby
-skip
-ricardo
-stripes
-parachute
-adjoining
-submerged
-synthesizer
-##gren
-intend
-positively
-ninety
-phi
-beaver
-partition
-fellows
-alexis
-prohibition
-carlisle
-bizarre
-fraternity
-##bre
-doubts
-icy
-cbc
-aquatic
-sneak
-sonny
-combines
-airports
-crude
-supervised
-spatial
-merge
-alfonso
-##bic
-corrupt
-scan
-undergo
-##ams
-disabilities
-colombian
-comparing
-dolphins
-perkins
-##lish
-reprinted
-unanimous
-bounced
-hairs
-underworld
-midwest
-semester
-bucket
-paperback
-miniseries
-coventry
-demise
-##leigh
-demonstrations
-sensor
-rotating
-yan
-##hler
-arrange
-soils
-##idge
-hyderabad
-labs
-##dr
-brakes
-grandchildren
-##nde
-negotiated
-rover
-ferrari
-continuation
-directorate
-augusta
-stevenson
-counterpart
-gore
-##rda
-nursery
-rican
-ave
-collectively
-broadly
-pastoral
-repertoire
-asserted
-discovering
-nordic
-styled
-fiba
-cunningham
-harley
-middlesex
-survives
-tumor
-tempo
-zack
-aiming
-lok
-urgent
-##rade
-##nto
-devils
-##ement
-contractor
-turin
-##wl
-##ool
-bliss
-repaired
-simmons
-moan
-astronomical
-cr
-negotiate
-lyric
-1890s
-lara
-bred
-clad
-angus
-pbs
-##ience
-engineered
-posed
-##lk
-hernandez
-possessions
-elbows
-psychiatric
-strokes
-confluence
-electorate
-lifts
-campuses
-lava
-alps
-##ep
-##ution
-##date
-physicist
-woody
-##page
-##ographic
-##itis
-juliet
-reformation
-sparhawk
-320
-complement
-suppressed
-jewel
-##½
-floated
-##kas
-continuity
-sadly
-##ische
-inability
-melting
-scanning
-paula
-flour
-judaism
-safer
-vague
-##lm
-solving
-curb
-##stown
-financially
-gable
-bees
-expired
-miserable
-cassidy
-dominion
-1789
-cupped
-145
-robbery
-facto
-amos
-warden
-resume
-tallest
-marvin
-ing
-pounded
-usd
-declaring
-gasoline
-##aux
-darkened
-270
-650
-sophomore
-##mere
-erection
-gossip
-televised
-risen
-dial
-##eu
-pillars
-##link
-passages
-profound
-##tina
-arabian
-ashton
-silicon
-nail
-##ead
-##lated
-##wer
-##hardt
-fleming
-firearms
-ducked
-circuits
-blows
-waterloo
-titans
-##lina
-atom
-fireplace
-cheshire
-financed
-activation
-algorithms
-##zzi
-constituent
-catcher
-cherokee
-partnerships
-sexuality
-platoon
-tragic
-vivian
-guarded
-whiskey
-meditation
-poetic
-##late
-##nga
-##ake
-porto
-listeners
-dominance
-kendra
-mona
-chandler
-factions
-22nd
-salisbury
-attitudes
-derivative
-##ido
-##haus
-intake
-paced
-javier
-illustrator
-barrels
-bias
-cockpit
-burnett
-dreamed
-ensuing
-##anda
-receptors
-someday
-hawkins
-mattered
-##lal
-slavic
-1799
-jesuit
-cameroon
-wasted
-tai
-wax
-lowering
-victorious
-freaking
-outright
-hancock
-librarian
-sensing
-bald
-calcium
-myers
-tablet
-announcing
-barack
-shipyard
-pharmaceutical
-##uan
-greenwich
-flush
-medley
-patches
-wolfgang
-pt
-speeches
-acquiring
-exams
-nikolai
-##gg
-hayden
-kannada
-##type
-reilly
-##pt
-waitress
-abdomen
-devastated
-capped
-pseudonym
-pharmacy
-fulfill
-paraguay
-1796
-clicked
-##trom
-archipelago
-syndicated
-##hman
-lumber
-orgasm
-rejection
-clifford
-lorraine
-advent
-mafia
-rodney
-brock
-##ght
-##used
-##elia
-cassette
-chamberlain
-despair
-mongolia
-sensors
-developmental
-upstream
-##eg
-##alis
-spanning
-165
-trombone
-basque
-seeded
-interred
-renewable
-rhys
-leapt
-revision
-molecule
-##ages
-chord
-vicious
-nord
-shivered
-23rd
-arlington
-debts
-corpus
-sunrise
-bays
-blackburn
-centimetres
-##uded
-shuddered
-gm
-strangely
-gripping
-cartoons
-isabelle
-orbital
-##ppa
-seals
-proving
-##lton
-refusal
-strengthened
-bust
-assisting
-baghdad
-batsman
-portrayal
-mara
-pushes
-spears
-og
-##cock
-reside
-nathaniel
-brennan
-1776
-confirmation
-caucus
-##worthy
-markings
-yemen
-nobles
-ku
-lazy
-viewer
-catalan
-encompasses
-sawyer
-##fall
-sparked
-substances
-patents
-braves
-arranger
-evacuation
-sergio
-persuade
-dover
-tolerance
-penguin
-cum
-jockey
-insufficient
-townships
-occupying
-declining
-plural
-processed
-projection
-puppet
-flanders
-introduces
-liability
-##yon
-gymnastics
-antwerp
-taipei
-hobart
-candles
-jeep
-wes
-observers
-126
-chaplain
-bundle
-glorious
-##hine
-hazel
-flung
-sol
-excavations
-dumped
-stares
-sh
-bangalore
-triangular
-icelandic
-intervals
-expressing
-turbine
-##vers
-songwriting
-crafts
-##igo
-jasmine
-ditch
-rite
-##ways
-entertaining
-comply
-sorrow
-wrestlers
-basel
-emirates
-marian
-rivera
-helpful
-##some
-caution
-downward
-networking
-##atory
-##tered
-darted
-genocide
-emergence
-replies
-specializing
-spokesman
-convenient
-unlocked
-fading
-augustine
-concentrations
-resemblance
-elijah
-investigator
-andhra
-##uda
-promotes
-bean
-##rrell
-fleeing
-wan
-simone
-announcer
-##ame
-##bby
-lydia
-weaver
-132
-residency
-modification
-##fest
-stretches
-##ast
-alternatively
-nat
-lowe
-lacks
-##ented
-pam
-tile
-concealed
-inferior
-abdullah
-residences
-tissues
-vengeance
-##ided
-moisture
-peculiar
-groove
-zip
-bologna
-jennings
-ninja
-oversaw
-zombies
-pumping
-batch
-livingston
-emerald
-installations
-1797
-peel
-nitrogen
-rama
-##fying
-##star
-schooling
-strands
-responding
-werner
-##ost
-lime
-casa
-accurately
-targeting
-##rod
-underway
-##uru
-hemisphere
-lester
-##yard
-occupies
-2d
-griffith
-angrily
-reorganized
-##owing
-courtney
-deposited
-##dd
-##30
-estadio
-##ifies
-dunn
-exiled
-##ying
-checks
-##combe
-##о
-##fly
-successes
-unexpectedly
-blu
-assessed
-##flower
-##ه
-observing
-sacked
-spiders
-kn
-##tail
-mu
-nodes
-prosperity
-audrey
-divisional
-155
-broncos
-tangled
-adjust
-feeds
-erosion
-paolo
-surf
-directory
-snatched
-humid
-admiralty
-screwed
-gt
-reddish
-##nese
-modules
-trench
-lamps
-bind
-leah
-bucks
-competes
-##nz
-##form
-transcription
-##uc
-isles
-violently
-clutching
-pga
-cyclist
-inflation
-flats
-ragged
-unnecessary
-##hian
-stubborn
-coordinated
-harriet
-baba
-disqualified
-330
-insect
-wolfe
-##fies
-reinforcements
-rocked
-duel
-winked
-embraced
-bricks
-##raj
-hiatus
-defeats
-pending
-brightly
-jealousy
-##xton
-##hm
-##uki
-lena
-gdp
-colorful
-##dley
-stein
-kidney
-##shu
-underwear
-wanderers
-##haw
-##icus
-guardians
-m³
-roared
-habits
-##wise
-permits
-gp
-uranium
-punished
-disguise
-bundesliga
-elise
-dundee
-erotic
-partisan
-pi
-collectors
-float
-individually
-rendering
-behavioral
-bucharest
-ser
-hare
-valerie
-corporal
-nutrition
-proportional
-##isa
-immense
-##kis
-pavement
-##zie
-##eld
-sutherland
-crouched
-1775
-##lp
-suzuki
-trades
-endurance
-operas
-crosby
-prayed
-priory
-rory
-socially
-##urn
-gujarat
-##pu
-walton
-cube
-pasha
-privilege
-lennon
-floods
-thorne
-waterfall
-nipple
-scouting
-approve
-##lov
-minorities
-voter
-dwight
-extensions
-assure
-ballroom
-slap
-dripping
-privileges
-rejoined
-confessed
-demonstrating
-patriotic
-yell
-investor
-##uth
-pagan
-slumped
-squares
-##cle
-##kins
-confront
-bert
-embarrassment
-##aid
-aston
-urging
-sweater
-starr
-yuri
-brains
-williamson
-commuter
-mortar
-structured
-selfish
-exports
-##jon
-cds
-##him
-unfinished
-##rre
-mortgage
-destinations
-##nagar
-canoe
-solitary
-buchanan
-delays
-magistrate
-fk
-##pling
-motivation
-##lier
-##vier
-recruiting
-assess
-##mouth
-malik
-antique
-1791
-pius
-rahman
-reich
-tub
-zhou
-smashed
-airs
-galway
-xii
-conditioning
-honduras
-discharged
-dexter
-##pf
-lionel
-129
-debates
-lemon
-tiffany
-volunteered
-dom
-dioxide
-procession
-devi
-sic
-tremendous
-advertisements
-colts
-transferring
-verdict
-hanover
-decommissioned
-utter
-relate
-pac
-racism
-##top
-beacon
-limp
-similarity
-terra
-occurrence
-ant
-##how
-becky
-capt
-updates
-armament
-richie
-pal
-##graph
-halloween
-mayo
-##ssen
-##bone
-cara
-serena
-fcc
-dolls
-obligations
-##dling
-violated
-lafayette
-jakarta
-exploitation
-##ime
-infamous
-iconic
-##lah
-##park
-kitty
-moody
-reginald
-dread
-spill
-crystals
-olivier
-modeled
-bluff
-equilibrium
-separating
-notices
-ordnance
-extinction
-onset
-cosmic
-attachment
-sammy
-expose
-privy
-anchored
-##bil
-abbott
-admits
-bending
-baritone
-emmanuel
-policeman
-vaughan
-winged
-climax
-dresses
-denny
-polytechnic
-mohamed
-burmese
-authentic
-nikki
-genetics
-grandparents
-homestead
-gaza
-postponed
-metacritic
-una
-##sby
-##bat
-unstable
-dissertation
-##rial
-##cian
-curls
-obscure
-uncovered
-bronx
-praying
-disappearing
-##hoe
-prehistoric
-coke
-turret
-mutations
-nonprofit
-pits
-monaco
-##ي
-##usion
-prominently
-dispatched
-podium
-##mir
-uci
-##uation
-133
-fortifications
-birthplace
-kendall
-##lby
-##oll
-preacher
-rack
-goodman
-##rman
-persistent
-##ott
-countless
-jaime
-recorder
-lexington
-persecution
-jumps
-renewal
-wagons
-##11
-crushing
-##holder
-decorations
-##lake
-abundance
-wrath
-laundry
-£1
-garde
-##rp
-jeanne
-beetles
-peasant
-##sl
-splitting
-caste
-sergei
-##rer
-##ema
-scripts
-##ively
-rub
-satellites
-##vor
-inscribed
-verlag
-scrapped
-gale
-packages
-chick
-potato
-slogan
-kathleen
-arabs
-##culture
-counterparts
-reminiscent
-choral
-##tead
-rand
-retains
-bushes
-dane
-accomplish
-courtesy
-closes
-##oth
-slaughter
-hague
-krakow
-lawson
-tailed
-elias
-ginger
-##ttes
-canopy
-betrayal
-rebuilding
-turf
-##hof
-frowning
-allegiance
-brigades
-kicks
-rebuild
-polls
-alias
-nationalism
-td
-rowan
-audition
-bowie
-fortunately
-recognizes
-harp
-dillon
-horrified
-##oro
-renault
-##tics
-ropes
-##α
-presumed
-rewarded
-infrared
-wiping
-accelerated
-illustration
-##rid
-presses
-practitioners
-badminton
-##iard
-detained
-##tera
-recognizing
-relates
-misery
-##sies
-##tly
-reproduction
-piercing
-potatoes
-thornton
-esther
-manners
-hbo
-##aan
-ours
-bullshit
-ernie
-perennial
-sensitivity
-illuminated
-rupert
-##jin
-##iss
-##ear
-rfc
-nassau
-##dock
-staggered
-socialism
-##haven
-appointments
-nonsense
-prestige
-sharma
-haul
-##tical
-solidarity
-gps
-##ook
-##rata
-igor
-pedestrian
-##uit
-baxter
-tenants
-wires
-medication
-unlimited
-guiding
-impacts
-diabetes
-##rama
-sasha
-pas
-clive
-extraction
-131
-continually
-constraints
-##bilities
-sonata
-hunted
-sixteenth
-chu
-planting
-quote
-mayer
-pretended
-abs
-spat
-##hua
-ceramic
-##cci
-curtains
-pigs
-pitching
-##dad
-latvian
-sore
-dayton
-##sted
-##qi
-patrols
-slice
-playground
-##nted
-shone
-stool
-apparatus
-inadequate
-mates
-treason
-##ija
-desires
-##liga
-##croft
-somalia
-laurent
-mir
-leonardo
-oracle
-grape
-obliged
-chevrolet
-thirteenth
-stunning
-enthusiastic
-##ede
-accounted
-concludes
-currents
-basil
-##kovic
-drought
-##rica
-mai
-##aire
-shove
-posting
-##shed
-pilgrimage
-humorous
-packing
-fry
-pencil
-wines
-smells
-144
-marilyn
-aching
-newest
-clung
-bon
-neighbours
-sanctioned
-##pie
-mug
-##stock
-drowning
-##mma
-hydraulic
-##vil
-hiring
-reminder
-lilly
-investigators
-##ncies
-sour
-##eous
-compulsory
-packet
-##rion
-##graphic
-##elle
-cannes
-##inate
-depressed
-##rit
-heroic
-importantly
-theresa
-##tled
-conway
-saturn
-marginal
-rae
-##xia
-corresponds
-royce
-pact
-jasper
-explosives
-packaging
-aluminium
-##ttered
-denotes
-rhythmic
-spans
-assignments
-hereditary
-outlined
-originating
-sundays
-lad
-reissued
-greeting
-beatrice
-##dic
-pillar
-marcos
-plots
-handbook
-alcoholic
-judiciary
-avant
-slides
-extract
-masculine
-blur
-##eum
-##force
-homage
-trembled
-owens
-hymn
-trey
-omega
-signaling
-socks
-accumulated
-reacted
-attic
-theo
-lining
-angie
-distraction
-primera
-talbot
-##key
-1200
-ti
-creativity
-billed
-##hey
-deacon
-eduardo
-identifies
-proposition
-dizzy
-gunner
-hogan
-##yam
-##pping
-##hol
-ja
-##chan
-jensen
-reconstructed
-##berger
-clearance
-darius
-##nier
-abe
-harlem
-plea
-dei
-circled
-emotionally
-notation
-fascist
-neville
-exceeded
-upwards
-viable
-ducks
-##fo
-workforce
-racer
-limiting
-shri
-##lson
-possesses
-1600
-kerr
-moths
-devastating
-laden
-disturbing
-locking
-##cture
-gal
-fearing
-accreditation
-flavor
-aide
-1870s
-mountainous
-##baum
-melt
-##ures
-motel
-texture
-servers
-soda
-##mb
-herd
-##nium
-erect
-puzzled
-hum
-peggy
-examinations
-gould
-testified
-geoff
-ren
-devised
-sacks
-##law
-denial
-posters
-grunted
-cesar
-tutor
-ec
-gerry
-offerings
-byrne
-falcons
-combinations
-ct
-incoming
-pardon
-rocking
-26th
-avengers
-flared
-mankind
-seller
-uttar
-loch
-nadia
-stroking
-exposing
-##hd
-fertile
-ancestral
-instituted
-##has
-noises
-prophecy
-taxation
-eminent
-vivid
-pol
-##bol
-dart
-indirect
-multimedia
-notebook
-upside
-displaying
-adrenaline
-referenced
-geometric
-##iving
-progression
-##ddy
-blunt
-announce
-##far
-implementing
-##lav
-aggression
-liaison
-cooler
-cares
-headache
-plantations
-gorge
-dots
-impulse
-thickness
-ashamed
-averaging
-kathy
-obligation
-precursor
-137
-fowler
-symmetry
-thee
-225
-hears
-##rai
-undergoing
-ads
-butcher
-bowler
-##lip
-cigarettes
-subscription
-goodness
-##ically
-browne
-##hos
-##tech
-kyoto
-donor
-##erty
-damaging
-friction
-drifting
-expeditions
-hardened
-prostitution
-152
-fauna
-blankets
-claw
-tossing
-snarled
-butterflies
-recruits
-investigative
-coated
-healed
-138
-communal
-hai
-xiii
-academics
-boone
-psychologist
-restless
-lahore
-stephens
-mba
-brendan
-foreigners
-printer
-##pc
-ached
-explode
-27th
-deed
-scratched
-dared
-##pole
-cardiac
-1780
-okinawa
-proto
-commando
-compelled
-oddly
-electrons
-##base
-replica
-thanksgiving
-##rist
-sheila
-deliberate
-stafford
-tidal
-representations
-hercules
-ou
-##path
-##iated
-kidnapping
-lenses
-##tling
-deficit
-samoa
-mouths
-consuming
-computational
-maze
-granting
-smirk
-razor
-fixture
-ideals
-inviting
-aiden
-nominal
-##vs
-issuing
-julio
-pitt
-ramsey
-docks
-##oss
-exhaust
-##owed
-bavarian
-draped
-anterior
-mating
-ethiopian
-explores
-noticing
-##nton
-discarded
-convenience
-hoffman
-endowment
-beasts
-cartridge
-mormon
-paternal
-probe
-sleeves
-interfere
-lump
-deadline
-##rail
-jenks
-bulldogs
-scrap
-alternating
-justified
-reproductive
-nam
-seize
-descending
-secretariat
-kirby
-coupe
-grouped
-smash
-panther
-sedan
-tapping
-##18
-lola
-cheer
-germanic
-unfortunate
-##eter
-unrelated
-##fan
-subordinate
-##sdale
-suzanne
-advertisement
-##ility
-horsepower
-##lda
-cautiously
-discourse
-luigi
-##mans
-##fields
-noun
-prevalent
-mao
-schneider
-everett
-surround
-governorate
-kira
-##avia
-westward
-##take
-misty
-rails
-sustainability
-134
-unused
-##rating
-packs
-toast
-unwilling
-regulate
-thy
-suffrage
-nile
-awe
-assam
-definitions
-travelers
-affordable
-##rb
-conferred
-sells
-undefeated
-beneficial
-torso
-basal
-repeating
-remixes
-##pass
-bahrain
-cables
-fang
-##itated
-excavated
-numbering
-statutory
-##rey
-deluxe
-##lian
-forested
-ramirez
-derbyshire
-zeus
-slamming
-transfers
-astronomer
-banana
-lottery
-berg
-histories
-bamboo
-##uchi
-resurrection
-posterior
-bowls
-vaguely
-##thi
-thou
-preserving
-tensed
-offence
-##inas
-meyrick
-callum
-ridden
-watt
-langdon
-tying
-lowland
-snorted
-daring
-truman
-##hale
-##girl
-aura
-overly
-filing
-weighing
-goa
-infections
-philanthropist
-saunders
-eponymous
-##owski
-latitude
-perspectives
-reviewing
-mets
-commandant
-radial
-##kha
-flashlight
-reliability
-koch
-vowels
-amazed
-ada
-elaine
-supper
-##rth
-##encies
-predator
-debated
-soviets
-cola
-##boards
-##nah
-compartment
-crooked
-arbitrary
-fourteenth
-##ctive
-havana
-majors
-steelers
-clips
-profitable
-ambush
-exited
-packers
-##tile
-nude
-cracks
-fungi
-##е
-limb
-trousers
-josie
-shelby
-tens
-frederic
-##ος
-definite
-smoothly
-constellation
-insult
-baton
-discs
-lingering
-##nco
-conclusions
-lent
-staging
-becker
-grandpa
-shaky
-##tron
-einstein
-obstacles
-sk
-adverse
-elle
-economically
-##moto
-mccartney
-thor
-dismissal
-motions
-readings
-nostrils
-treatise
-##pace
-squeezing
-evidently
-prolonged
-1783
-venezuelan
-je
-marguerite
-beirut
-takeover
-shareholders
-##vent
-denise
-digit
-airplay
-norse
-##bbling
-imaginary
-pills
-hubert
-blaze
-vacated
-eliminating
-##ello
-vine
-mansfield
-##tty
-retrospective
-barrow
-borne
-clutch
-bail
-forensic
-weaving
-##nett
-##witz
-desktop
-citadel
-promotions
-worrying
-dorset
-ieee
-subdivided
-##iating
-manned
-expeditionary
-pickup
-synod
-chuckle
-185
-barney
-##rz
-##ffin
-functionality
-karachi
-litigation
-meanings
-uc
-lick
-turbo
-anders
-##ffed
-execute
-curl
-oppose
-ankles
-typhoon
-##د
-##ache
-##asia
-linguistics
-compassion
-pressures
-grazing
-perfection
-##iting
-immunity
-monopoly
-muddy
-backgrounds
-136
-namibia
-francesca
-monitors
-attracting
-stunt
-tuition
-##ии
-vegetable
-##mates
-##quent
-mgm
-jen
-complexes
-forts
-##ond
-cellar
-bites
-seventeenth
-royals
-flemish
-failures
-mast
-charities
-##cular
-peruvian
-capitals
-macmillan
-ipswich
-outward
-frigate
-postgraduate
-folds
-employing
-##ouse
-concurrently
-fiery
-##tai
-contingent
-nightmares
-monumental
-nicaragua
-##kowski
-lizard
-mal
-fielding
-gig
-reject
-##pad
-harding
-##ipe
-coastline
-##cin
-##nos
-beethoven
-humphrey
-innovations
-##tam
-##nge
-norris
-doris
-solicitor
-huang
-obey
-141
-##lc
-niagara
-##tton
-shelves
-aug
-bourbon
-curry
-nightclub
-specifications
-hilton
-##ndo
-centennial
-dispersed
-worm
-neglected
-briggs
-sm
-font
-kuala
-uneasy
-plc
-##nstein
-##bound
-##aking
-##burgh
-awaiting
-pronunciation
-##bbed
-##quest
-eh
-optimal
-zhu
-raped
-greens
-presided
-brenda
-worries
-##life
-venetian
-marxist
-turnout
-##lius
-refined
-braced
-sins
-grasped
-sunderland
-nickel
-speculated
-lowell
-cyrillic
-communism
-fundraising
-resembling
-colonists
-mutant
-freddie
-usc
-##mos
-gratitude
-##run
-mural
-##lous
-chemist
-wi
-reminds
-28th
-steals
-tess
-pietro
-##ingen
-promoter
-ri
-microphone
-honoured
-rai
-sant
-##qui
-feather
-##nson
-burlington
-kurdish
-terrorists
-deborah
-sickness
-##wed
-##eet
-hazard
-irritated
-desperation
-veil
-clarity
-##rik
-jewels
-xv
-##gged
-##ows
-##cup
-berkshire
-unfair
-mysteries
-orchid
-winced
-exhaustion
-renovations
-stranded
-obe
-infinity
-##nies
-adapt
-redevelopment
-thanked
-registry
-olga
-domingo
-noir
-tudor
-ole
-##atus
-commenting
-behaviors
-##ais
-crisp
-pauline
-probable
-stirling
-wigan
-##bian
-paralympics
-panting
-surpassed
-##rew
-luca
-barred
-pony
-famed
-##sters
-cassandra
-waiter
-carolyn
-exported
-##orted
-andres
-destructive
-deeds
-jonah
-castles
-vacancy
-suv
-##glass
-1788
-orchard
-yep
-famine
-belarusian
-sprang
-##forth
-skinny
-##mis
-administrators
-rotterdam
-zambia
-zhao
-boiler
-discoveries
-##ride
-##physics
-lucius
-disappointing
-outreach
-spoon
-##frame
-qualifications
-unanimously
-enjoys
-regency
-##iidae
-stade
-realism
-veterinary
-rodgers
-dump
-alain
-chestnut
-castile
-censorship
-rumble
-gibbs
-##itor
-communion
-reggae
-inactivated
-logs
-loads
-##houses
-homosexual
-##iano
-ale
-informs
-##cas
-phrases
-plaster
-linebacker
-ambrose
-kaiser
-fascinated
-850
-limerick
-recruitment
-forge
-mastered
-##nding
-leinster
-rooted
-threaten
-##strom
-borneo
-##hes
-suggestions
-scholarships
-propeller
-documentaries
-patronage
-coats
-constructing
-invest
-neurons
-comet
-entirety
-shouts
-identities
-annoying
-unchanged
-wary
-##antly
-##ogy
-neat
-oversight
-##kos
-phillies
-replay
-constance
-##kka
-incarnation
-humble
-skies
-minus
-##acy
-smithsonian
-##chel
-guerrilla
-jar
-cadets
-##plate
-surplus
-audit
-##aru
-cracking
-joanna
-louisa
-pacing
-##lights
-intentionally
-##iri
-diner
-nwa
-imprint
-australians
-tong
-unprecedented
-bunker
-naive
-specialists
-ark
-nichols
-railing
-leaked
-pedal
-##uka
-shrub
-longing
-roofs
-v8
-captains
-neural
-tuned
-##ntal
-##jet
-emission
-medina
-frantic
-codex
-definitive
-sid
-abolition
-intensified
-stocks
-enrique
-sustain
-genoa
-oxide
-##written
-clues
-cha
-##gers
-tributaries
-fragment
-venom
-##rity
-##ente
-##sca
-muffled
-vain
-sire
-laos
-##ingly
-##hana
-hastily
-snapping
-surfaced
-sentiment
-motive
-##oft
-contests
-approximate
-mesa
-luckily
-dinosaur
-exchanges
-propelled
-accord
-bourne
-relieve
-tow
-masks
-offended
-##ues
-cynthia
-##mmer
-rains
-bartender
-zinc
-reviewers
-lois
-##sai
-legged
-arrogant
-rafe
-rosie
-comprise
-handicap
-blockade
-inlet
-lagoon
-copied
-drilling
-shelley
-petals
-##inian
-mandarin
-obsolete
-##inated
-onward
-arguably
-productivity
-cindy
-praising
-seldom
-busch
-discusses
-raleigh
-shortage
-ranged
-stanton
-encouragement
-firstly
-conceded
-overs
-temporal
-##uke
-cbe
-##bos
-woo
-certainty
-pumps
-##pton
-stalked
-##uli
-lizzie
-periodic
-thieves
-weaker
-##night
-gases
-shoving
-chooses
-wc
-##chemical
-prompting
-weights
-##kill
-robust
-flanked
-sticky
-hu
-tuberculosis
-##eb
-##eal
-christchurch
-resembled
-wallet
-reese
-inappropriate
-pictured
-distract
-fixing
-fiddle
-giggled
-burger
-heirs
-hairy
-mechanic
-torque
-apache
-obsessed
-chiefly
-cheng
-logging
-##tag
-extracted
-meaningful
-numb
-##vsky
-gloucestershire
-reminding
-##bay
-unite
-##lit
-breeds
-diminished
-clown
-glove
-1860s
-##ن
-##ug
-archibald
-focal
-freelance
-sliced
-depiction
-##yk
-organism
-switches
-sights
-stray
-crawling
-##ril
-lever
-leningrad
-interpretations
-loops
-anytime
-reel
-alicia
-delighted
-##ech
-inhaled
-xiv
-suitcase
-bernie
-vega
-licenses
-northampton
-exclusion
-induction
-monasteries
-racecourse
-homosexuality
-##right
-##sfield
-##rky
-dimitri
-michele
-alternatives
-ions
-commentators
-genuinely
-objected
-pork
-hospitality
-fencing
-stephan
-warships
-peripheral
-wit
-drunken
-wrinkled
-quentin
-spends
-departing
-chung
-numerical
-spokesperson
-##zone
-johannesburg
-caliber
-killers
-##udge
-assumes
-neatly
-demographic
-abigail
-bloc
-##vel
-mounting
-##lain
-bentley
-slightest
-xu
-recipients
-##jk
-merlin
-##writer
-seniors
-prisons
-blinking
-hindwings
-flickered
-kappa
-##hel
-80s
-strengthening
-appealing
-brewing
-gypsy
-mali
-lashes
-hulk
-unpleasant
-harassment
-bio
-treaties
-predict
-instrumentation
-pulp
-troupe
-boiling
-mantle
-##ffe
-ins
-##vn
-dividing
-handles
-verbs
-##onal
-coconut
-senegal
-340
-thorough
-gum
-momentarily
-##sto
-cocaine
-panicked
-destined
-##turing
-teatro
-denying
-weary
-captained
-mans
-##hawks
-##code
-wakefield
-bollywood
-thankfully
-##16
-cyril
-##wu
-amendments
-##bahn
-consultation
-stud
-reflections
-kindness
-1787
-internally
-##ovo
-tex
-mosaic
-distribute
-paddy
-seeming
-143
-##hic
-piers
-##15
-##mura
-##verse
-popularly
-winger
-kang
-sentinel
-mccoy
-##anza
-covenant
-##bag
-verge
-fireworks
-suppress
-thrilled
-dominate
-##jar
-swansea
-##60
-142
-reconciliation
-##ndi
-stiffened
-cue
-dorian
-##uf
-damascus
-amor
-ida
-foremost
-##aga
-porsche
-unseen
-dir
-##had
-##azi
-stony
-lexi
-melodies
-##nko
-angular
-integer
-podcast
-ants
-inherent
-jaws
-justify
-persona
-##olved
-josephine
-##nr
-##ressed
-customary
-flashes
-gala
-cyrus
-glaring
-backyard
-ariel
-physiology
-greenland
-html
-stir
-avon
-atletico
-finch
-methodology
-ked
-##lent
-mas
-catholicism
-townsend
-branding
-quincy
-fits
-containers
-1777
-ashore
-aragon
-##19
-forearm
-poisoning
-##sd
-adopting
-conquer
-grinding
-amnesty
-keller
-finances
-evaluate
-forged
-lankan
-instincts
-##uto
-guam
-bosnian
-photographed
-workplace
-desirable
-protector
-##dog
-allocation
-intently
-encourages
-willy
-##sten
-bodyguard
-electro
-brighter
-##ν
-bihar
-##chev
-lasts
-opener
-amphibious
-sal
-verde
-arte
-##cope
-captivity
-vocabulary
-yields
-##tted
-agreeing
-desmond
-pioneered
-##chus
-strap
-campaigned
-railroads
-##ович
-emblem
-##dre
-stormed
-501
-##ulous
-marijuana
-northumberland
-##gn
-##nath
-bowen
-landmarks
-beaumont
-##qua
-danube
-##bler
-attorneys
-th
-ge
-flyers
-critique
-villains
-cass
-mutation
-acc
-##0s
-colombo
-mckay
-motif
-sampling
-concluding
-syndicate
-##rell
-neon
-stables
-ds
-warnings
-clint
-mourning
-wilkinson
-##tated
-merrill
-leopard
-evenings
-exhaled
-emil
-sonia
-ezra
-discrete
-stove
-farrell
-fifteenth
-prescribed
-superhero
-##rier
-worms
-helm
-wren
-##duction
-##hc
-expo
-##rator
-hq
-unfamiliar
-antony
-prevents
-acceleration
-fiercely
-mari
-painfully
-calculations
-cheaper
-ign
-clifton
-irvine
-davenport
-mozambique
-##np
-pierced
-##evich
-wonders
-##wig
-##cate
-##iling
-crusade
-ware
-##uel
-enzymes
-reasonably
-mls
-##coe
-mater
-ambition
-bunny
-eliot
-kernel
-##fin
-asphalt
-headmaster
-torah
-aden
-lush
-pins
-waived
-##care
-##yas
-joao
-substrate
-enforce
-##grad
-##ules
-alvarez
-selections
-epidemic
-tempted
-##bit
-bremen
-translates
-ensured
-waterfront
-29th
-forrest
-manny
-malone
-kramer
-reigning
-cookies
-simpler
-absorption
-205
-engraved
-##ffy
-evaluated
-1778
-haze
-146
-comforting
-crossover
-##abe
-thorn
-##rift
-##imo
-##pop
-suppression
-fatigue
-cutter
-##tr
-201
-wurttemberg
-##orf
-enforced
-hovering
-proprietary
-gb
-samurai
-syllable
-ascent
-lacey
-tick
-lars
-tractor
-merchandise
-rep
-bouncing
-defendants
-##yre
-huntington
-##ground
-##oko
-standardized
-##hor
-##hima
-assassinated
-nu
-predecessors
-rainy
-liar
-assurance
-lyrical
-##uga
-secondly
-flattened
-ios
-parameter
-undercover
-##mity
-bordeaux
-punish
-ridges
-markers
-exodus
-inactive
-hesitate
-debbie
-nyc
-pledge
-savoy
-nagar
-offset
-organist
-##tium
-hesse
-marin
-converting
-##iver
-diagram
-propulsion
-pu
-validity
-reverted
-supportive
-##dc
-ministries
-clans
-responds
-proclamation
-##inae
-##ø
-##rea
-ein
-pleading
-patriot
-sf
-birch
-islanders
-strauss
-hates
-##dh
-brandenburg
-concession
-rd
-##ob
-1900s
-killings
-textbook
-antiquity
-cinematography
-wharf
-embarrassing
-setup
-creed
-farmland
-inequality
-centred
-signatures
-fallon
-370
-##ingham
-##uts
-ceylon
-gazing
-directive
-laurie
-##tern
-globally
-##uated
-##dent
-allah
-excavation
-threads
-##cross
-148
-frantically
-icc
-utilize
-determines
-respiratory
-thoughtful
-receptions
-##dicate
-merging
-chandra
-seine
-147
-builders
-builds
-diagnostic
-dev
-visibility
-goddamn
-analyses
-dhaka
-cho
-proves
-chancel
-concurrent
-curiously
-canadians
-pumped
-restoring
-1850s
-turtles
-jaguar
-sinister
-spinal
-traction
-declan
-vows
-1784
-glowed
-capitalism
-swirling
-install
-universidad
-##lder
-##oat
-soloist
-##genic
-##oor
-coincidence
-beginnings
-nissan
-dip
-resorts
-caucasus
-combustion
-infectious
-##eno
-pigeon
-serpent
-##itating
-conclude
-masked
-salad
-jew
-##gr
-surreal
-toni
-##wc
-harmonica
-151
-##gins
-##etic
-##coat
-fishermen
-intending
-bravery
-##wave
-klaus
-titan
-wembley
-taiwanese
-ransom
-40th
-incorrect
-hussein
-eyelids
-jp
-cooke
-dramas
-utilities
-##etta
-##print
-eisenhower
-principally
-granada
-lana
-##rak
-openings
-concord
-##bl
-bethany
-connie
-morality
-sega
-##mons
-##nard
-earnings
-##kara
-##cine
-wii
-communes
-##rel
-coma
-composing
-softened
-severed
-grapes
-##17
-nguyen
-analyzed
-warlord
-hubbard
-heavenly
-behave
-slovenian
-##hit
-##ony
-hailed
-filmmakers
-trance
-caldwell
-skye
-unrest
-coward
-likelihood
-##aging
-bern
-sci
-taliban
-honolulu
-propose
-##wang
-1700
-browser
-imagining
-cobra
-contributes
-dukes
-instinctively
-conan
-violinist
-##ores
-accessories
-gradual
-##amp
-quotes
-sioux
-##dating
-undertake
-intercepted
-sparkling
-compressed
-139
-fungus
-tombs
-haley
-imposing
-rests
-degradation
-lincolnshire
-retailers
-wetlands
-tulsa
-distributor
-dungeon
-nun
-greenhouse
-convey
-atlantis
-aft
-exits
-oman
-dresser
-lyons
-##sti
-joking
-eddy
-judgement
-omitted
-digits
-##cts
-##game
-juniors
-##rae
-cents
-stricken
-une
-##ngo
-wizards
-weir
-breton
-nan
-technician
-fibers
-liking
-royalty
-##cca
-154
-persia
-terribly
-magician
-##rable
-##unt
-vance
-cafeteria
-booker
-camille
-warmer
-##static
-consume
-cavern
-gaps
-compass
-contemporaries
-foyer
-soothing
-graveyard
-maj
-plunged
-blush
-##wear
-cascade
-demonstrates
-ordinance
-##nov
-boyle
-##lana
-rockefeller
-shaken
-banjo
-izzy
-##ense
-breathless
-vines
-##32
-##eman
-alterations
-chromosome
-dwellings
-feudal
-mole
-153
-catalonia
-relics
-tenant
-mandated
-##fm
-fridge
-hats
-honesty
-patented
-raul
-heap
-cruisers
-accusing
-enlightenment
-infants
-wherein
-chatham
-contractors
-zen
-affinity
-hc
-osborne
-piston
-156
-traps
-maturity
-##rana
-lagos
-##zal
-peering
-##nay
-attendant
-dealers
-protocols
-subset
-prospects
-biographical
-##cre
-artery
-##zers
-insignia
-nuns
-endured
-##eration
-recommend
-schwartz
-serbs
-berger
-cromwell
-crossroads
-##ctor
-enduring
-clasped
-grounded
-##bine
-marseille
-twitched
-abel
-choke
-https
-catalyst
-moldova
-italians
-##tist
-disastrous
-wee
-##oured
-##nti
-wwf
-nope
-##piration
-##asa
-expresses
-thumbs
-167
-##nza
-coca
-1781
-cheating
-##ption
-skipped
-sensory
-heidelberg
-spies
-satan
-dangers
-semifinal
-202
-bohemia
-whitish
-confusing
-shipbuilding
-relies
-surgeons
-landings
-ravi
-baku
-moor
-suffix
-alejandro
-##yana
-litre
-upheld
-##unk
-rajasthan
-##rek
-coaster
-insists
-posture
-scenarios
-etienne
-favoured
-appoint
-transgender
-elephants
-poked
-greenwood
-defences
-fulfilled
-militant
-somali
-1758
-chalk
-potent
-##ucci
-migrants
-wink
-assistants
-nos
-restriction
-activism
-niger
-##ario
-colon
-shaun
-##sat
-daphne
-##erated
-swam
-congregations
-reprise
-considerations
-magnet
-playable
-xvi
-##р
-overthrow
-tobias
-knob
-chavez
-coding
-##mers
-propped
-katrina
-orient
-newcomer
-##suke
-temperate
-##pool
-farmhouse
-interrogation
-##vd
-committing
-##vert
-forthcoming
-strawberry
-joaquin
-macau
-ponds
-shocking
-siberia
-##cellular
-chant
-contributors
-##nant
-##ologists
-sped
-absorb
-hail
-1782
-spared
-##hore
-barbados
-karate
-opus
-originates
-saul
-##xie
-evergreen
-leaped
-##rock
-correlation
-exaggerated
-weekday
-unification
-bump
-tracing
-brig
-afb
-pathways
-utilizing
-##ners
-mod
-mb
-disturbance
-kneeling
-##stad
-##guchi
-100th
-pune
-##thy
-decreasing
-168
-manipulation
-miriam
-academia
-ecosystem
-occupational
-rbi
-##lem
-rift
-##14
-rotary
-stacked
-incorporation
-awakening
-generators
-guerrero
-racist
-##omy
-cyber
-derivatives
-culminated
-allie
-annals
-panzer
-sainte
-wikipedia
-pops
-zu
-austro
-##vate
-algerian
-politely
-nicholson
-mornings
-educate
-tastes
-thrill
-dartmouth
-##gating
-db
-##jee
-regan
-differing
-concentrating
-choreography
-divinity
-##media
-pledged
-alexandre
-routing
-gregor
-madeline
-##idal
-apocalypse
-##hora
-gunfire
-culminating
-elves
-fined
-liang
-lam
-programmed
-tar
-guessing
-transparency
-gabrielle
-##gna
-cancellation
-flexibility
-##lining
-accession
-shea
-stronghold
-nets
-specializes
-##rgan
-abused
-hasan
-sgt
-ling
-exceeding
-##₄
-admiration
-supermarket
-##ark
-photographers
-specialised
-tilt
-resonance
-hmm
-perfume
-380
-sami
-threatens
-garland
-botany
-guarding
-boiled
-greet
-puppy
-russo
-supplier
-wilmington
-vibrant
-vijay
-##bius
-paralympic
-grumbled
-paige
-faa
-licking
-margins
-hurricanes
-##gong
-fest
-grenade
-ripping
-##uz
-counseling
-weigh
-##sian
-needles
-wiltshire
-edison
-costly
-##not
-fulton
-tramway
-redesigned
-staffordshire
-cache
-gasping
-watkins
-sleepy
-candidacy
-##group
-monkeys
-timeline
-throbbing
-##bid
-##sos
-berth
-uzbekistan
-vanderbilt
-bothering
-overturned
-ballots
-gem
-##iger
-sunglasses
-subscribers
-hooker
-compelling
-ang
-exceptionally
-saloon
-stab
-##rdi
-carla
-terrifying
-rom
-##vision
-coil
-##oids
-satisfying
-vendors
-31st
-mackay
-deities
-overlooked
-ambient
-bahamas
-felipe
-olympia
-whirled
-botanist
-advertised
-tugging
-##dden
-disciples
-morales
-unionist
-rites
-foley
-morse
-motives
-creepy
-##₀
-soo
-##sz
-bargain
-highness
-frightening
-turnpike
-tory
-reorganization
-##cer
-depict
-biographer
-##walk
-unopposed
-manifesto
-##gles
-institut
-emile
-accidental
-kapoor
-##dam
-kilkenny
-cortex
-lively
-##13
-romanesque
-jain
-shan
-cannons
-##ood
-##ske
-petrol
-echoing
-amalgamated
-disappears
-cautious
-proposes
-sanctions
-trenton
-##ر
-flotilla
-aus
-contempt
-tor
-canary
-cote
-theirs
-##hun
-conceptual
-deleted
-fascinating
-paso
-blazing
-elf
-honourable
-hutchinson
-##eiro
-##outh
-##zin
-surveyor
-tee
-amidst
-wooded
-reissue
-intro
-##ono
-cobb
-shelters
-newsletter
-hanson
-brace
-encoding
-confiscated
-dem
-caravan
-marino
-scroll
-melodic
-cows
-imam
-##adi
-##aneous
-northward
-searches
-biodiversity
-cora
-310
-roaring
-##bers
-connell
-theologian
-halo
-compose
-pathetic
-unmarried
-dynamo
-##oot
-az
-calculation
-toulouse
-deserves
-humour
-nr
-forgiveness
-tam
-undergone
-martyr
-pamela
-myths
-whore
-counselor
-hicks
-290
-heavens
-battleship
-electromagnetic
-##bbs
-stellar
-establishments
-presley
-hopped
-##chin
-temptation
-90s
-wills
-nas
-##yuan
-nhs
-##nya
-seminars
-##yev
-adaptations
-gong
-asher
-lex
-indicator
-sikh
-tobago
-cites
-goin
-##yte
-satirical
-##gies
-characterised
-correspond
-bubbles
-lure
-participates
-##vid
-eruption
-skate
-therapeutic
-1785
-canals
-wholesale
-defaulted
-sac
-460
-petit
-##zzled
-virgil
-leak
-ravens
-256
-portraying
-##yx
-ghetto
-creators
-dams
-portray
-vicente
-##rington
-fae
-namesake
-bounty
-##arium
-joachim
-##ota
-##iser
-aforementioned
-axle
-snout
-depended
-dismantled
-reuben
-480
-##ibly
-gallagher
-##lau
-##pd
-earnest
-##ieu
-##iary
-inflicted
-objections
-##llar
-asa
-gritted
-##athy
-jericho
-##sea
-##was
-flick
-underside
-ceramics
-undead
-substituted
-195
-eastward
-undoubtedly
-wheeled
-chimney
-##iche
-guinness
-cb
-##ager
-siding
-##bell
-traitor
-baptiste
-disguised
-inauguration
-149
-tipperary
-choreographer
-perched
-warmed
-stationary
-eco
-##ike
-##ntes
-bacterial
-##aurus
-flores
-phosphate
-##core
-attacker
-invaders
-alvin
-intersects
-a1
-indirectly
-immigrated
-businessmen
-cornelius
-valves
-narrated
-pill
-sober
-ul
-nationale
-monastic
-applicants
-scenery
-##jack
-161
-motifs
-constitutes
-cpu
-##osh
-jurisdictions
-sd
-tuning
-irritation
-woven
-##uddin
-fertility
-gao
-##erie
-antagonist
-impatient
-glacial
-hides
-boarded
-denominations
-interception
-##jas
-cookie
-nicola
-##tee
-algebraic
-marquess
-bahn
-parole
-buyers
-bait
-turbines
-paperwork
-bestowed
-natasha
-renee
-oceans
-purchases
-157
-vaccine
-215
-##tock
-fixtures
-playhouse
-integrate
-jai
-oswald
-intellectuals
-##cky
-booked
-nests
-mortimer
-##isi
-obsession
-sept
-##gler
-##sum
-440
-scrutiny
-simultaneous
-squinted
-##shin
-collects
-oven
-shankar
-penned
-remarkably
-##я
-slips
-luggage
-spectral
-1786
-collaborations
-louie
-consolidation
-##ailed
-##ivating
-420
-hoover
-blackpool
-harness
-ignition
-vest
-tails
-belmont
-mongol
-skinner
-##nae
-visually
-mage
-derry
-##tism
-##unce
-stevie
-transitional
-##rdy
-redskins
-drying
-prep
-prospective
-##21
-annoyance
-oversee
-##loaded
-fills
-##books
-##iki
-announces
-fda
-scowled
-respects
-prasad
-mystic
-tucson
-##vale
-revue
-springer
-bankrupt
-1772
-aristotle
-salvatore
-habsburg
-##geny
-dal
-natal
-nut
-pod
-chewing
-darts
-moroccan
-walkover
-rosario
-lenin
-punjabi
-##ße
-grossed
-scattering
-wired
-invasive
-hui
-polynomial
-corridors
-wakes
-gina
-portrays
-##cratic
-arid
-retreating
-erich
-irwin
-sniper
-##dha
-linen
-lindsey
-maneuver
-butch
-shutting
-socio
-bounce
-commemorative
-postseason
-jeremiah
-pines
-275
-mystical
-beads
-bp
-abbas
-furnace
-bidding
-consulted
-assaulted
-empirical
-rubble
-enclosure
-sob
-weakly
-cancel
-polly
-yielded
-##emann
-curly
-prediction
-battered
-70s
-vhs
-jacqueline
-render
-sails
-barked
-detailing
-grayson
-riga
-sloane
-raging
-##yah
-herbs
-bravo
-##athlon
-alloy
-giggle
-imminent
-suffers
-assumptions
-waltz
-##itate
-accomplishments
-##ited
-bathing
-remixed
-deception
-prefix
-##emia
-deepest
-##tier
-##eis
-balkan
-frogs
-##rong
-slab
-##pate
-philosophers
-peterborough
-grains
-imports
-dickinson
-rwanda
-##atics
-1774
-dirk
-lan
-tablets
-##rove
-clone
-##rice
-caretaker
-hostilities
-mclean
-##gre
-regimental
-treasures
-norms
-impose
-tsar
-tango
-diplomacy
-variously
-complain
-192
-recognise
-arrests
-1779
-celestial
-pulitzer
-##dus
-bing
-libretto
-##moor
-adele
-splash
-##rite
-expectation
-lds
-confronts
-##izer
-spontaneous
-harmful
-wedge
-entrepreneurs
-buyer
-##ope
-bilingual
-translate
-rugged
-conner
-circulated
-uae
-eaton
-##gra
-##zzle
-lingered
-lockheed
-vishnu
-reelection
-alonso
-##oom
-joints
-yankee
-headline
-cooperate
-heinz
-laureate
-invading
-##sford
-echoes
-scandinavian
-##dham
-hugging
-vitamin
-salute
-micah
-hind
-trader
-##sper
-radioactive
-##ndra
-militants
-poisoned
-ratified
-remark
-campeonato
-deprived
-wander
-prop
-##dong
-outlook
-##tani
-##rix
-##eye
-chiang
-darcy
-##oping
-mandolin
-spice
-statesman
-babylon
-182
-walled
-forgetting
-afro
-##cap
-158
-giorgio
-buffer
-##polis
-planetary
-##gis
-overlap
-terminals
-kinda
-centenary
-##bir
-arising
-manipulate
-elm
-ke
-1770
-ak
-##tad
-chrysler
-mapped
-moose
-pomeranian
-quad
-macarthur
-assemblies
-shoreline
-recalls
-stratford
-##rted
-noticeable
-##evic
-imp
-##rita
-##sque
-accustomed
-supplying
-tents
-disgusted
-vogue
-sipped
-filters
-khz
-reno
-selecting
-luftwaffe
-mcmahon
-tyne
-masterpiece
-carriages
-collided
-dunes
-exercised
-flare
-remembers
-muzzle
-##mobile
-heck
-##rson
-burgess
-lunged
-middleton
-boycott
-bilateral
-##sity
-hazardous
-lumpur
-multiplayer
-spotlight
-jackets
-goldman
-liege
-porcelain
-rag
-waterford
-benz
-attracts
-hopeful
-battling
-ottomans
-kensington
-baked
-hymns
-cheyenne
-lattice
-levine
-borrow
-polymer
-clashes
-michaels
-monitored
-commitments
-denounced
-##25
-##von
-cavity
-##oney
-hobby
-akin
-##holders
-futures
-intricate
-cornish
-patty
-##oned
-illegally
-dolphin
-##lag
-barlow
-yellowish
-maddie
-apologized
-luton
-plagued
-##puram
-nana
-##rds
-sway
-fanny
-łodz
-##rino
-psi
-suspicions
-hanged
-##eding
-initiate
-charlton
-##por
-nak
-competent
-235
-analytical
-annex
-wardrobe
-reservations
-##rma
-sect
-162
-fairfax
-hedge
-piled
-buckingham
-uneven
-bauer
-simplicity
-snyder
-interpret
-accountability
-donors
-moderately
-byrd
-continents
-##cite
-##max
-disciple
-hr
-jamaican
-ping
-nominees
-##uss
-mongolian
-diver
-attackers
-eagerly
-ideological
-pillows
-miracles
-apartheid
-revolver
-sulfur
-clinics
-moran
-163
-##enko
-ile
-katy
-rhetoric
-##icated
-chronology
-recycling
-##hrer
-elongated
-mughal
-pascal
-profiles
-vibration
-databases
-domination
-##fare
-##rant
-matthias
-digest
-rehearsal
-polling
-weiss
-initiation
-reeves
-clinging
-flourished
-impress
-ngo
-##hoff
-##ume
-buckley
-symposium
-rhythms
-weed
-emphasize
-transforming
-##taking
-##gence
-##yman
-accountant
-analyze
-flicker
-foil
-priesthood
-voluntarily
-decreases
-##80
-##hya
-slater
-sv
-charting
-mcgill
-##lde
-moreno
-##iu
-besieged
-zur
-robes
-##phic
-admitting
-api
-deported
-turmoil
-peyton
-earthquakes
-##ares
-nationalists
-beau
-clair
-brethren
-interrupt
-welch
-curated
-galerie
-requesting
-164
-##ested
-impending
-steward
-viper
-##vina
-complaining
-beautifully
-brandy
-foam
-nl
-1660
-##cake
-alessandro
-punches
-laced
-explanations
-##lim
-attribute
-clit
-reggie
-discomfort
-##cards
-smoothed
-whales
-##cene
-adler
-countered
-duffy
-disciplinary
-widening
-recipe
-reliance
-conducts
-goats
-gradient
-preaching
-##shaw
-matilda
-quasi
-striped
-meridian
-cannabis
-cordoba
-certificates
-##agh
-##tering
-graffiti
-hangs
-pilgrims
-repeats
-##ych
-revive
-urine
-etat
-##hawk
-fueled
-belts
-fuzzy
-susceptible
-##hang
-mauritius
-salle
-sincere
-beers
-hooks
-##cki
-arbitration
-entrusted
-advise
-sniffed
-seminar
-junk
-donnell
-processors
-principality
-strapped
-celia
-mendoza
-everton
-fortunes
-prejudice
-starving
-reassigned
-steamer
-##lund
-tuck
-evenly
-foreman
-##ffen
-dans
-375
-envisioned
-slit
-##xy
-baseman
-liberia
-rosemary
-##weed
-electrified
-periodically
-potassium
-stride
-contexts
-sperm
-slade
-mariners
-influx
-bianca
-subcommittee
-##rane
-spilling
-icao
-estuary
-##nock
-delivers
-iphone
-##ulata
-isa
-mira
-bohemian
-dessert
-##sbury
-welcoming
-proudly
-slowing
-##chs
-musee
-ascension
-russ
-##vian
-waits
-##psy
-africans
-exploit
-##morphic
-gov
-eccentric
-crab
-peck
-##ull
-entrances
-formidable
-marketplace
-groom
-bolted
-metabolism
-patton
-robbins
-courier
-payload
-endure
-##ifier
-andes
-refrigerator
-##pr
-ornate
-##uca
-ruthless
-illegitimate
-masonry
-strasbourg
-bikes
-adobe
-##³
-apples
-quintet
-willingly
-niche
-bakery
-corpses
-energetic
-##cliffe
-##sser
-##ards
-177
-centimeters
-centro
-fuscous
-cretaceous
-rancho
-##yde
-andrei
-telecom
-tottenham
-oasis
-ordination
-vulnerability
-presiding
-corey
-cp
-penguins
-sims
-##pis
-malawi
-piss
-##48
-correction
-##cked
-##ffle
-##ryn
-countdown
-detectives
-psychiatrist
-psychedelic
-dinosaurs
-blouse
-##get
-choi
-vowed
-##oz
-randomly
-##pol
-49ers
-scrub
-blanche
-bruins
-dusseldorf
-##using
-unwanted
-##ums
-212
-dominique
-elevations
-headlights
-om
-laguna
-##oga
-1750
-famously
-ignorance
-shrewsbury
-##aine
-ajax
-breuning
-che
-confederacy
-greco
-overhaul
-##screen
-paz
-skirts
-disagreement
-cruelty
-jagged
-phoebe
-shifter
-hovered
-viruses
-##wes
-mandy
-##lined
-##gc
-landlord
-squirrel
-dashed
-##ι
-ornamental
-gag
-wally
-grange
-literal
-spurs
-undisclosed
-proceeding
-yin
-##text
-billie
-orphan
-spanned
-humidity
-indy
-weighted
-presentations
-explosions
-lucian
-##tary
-vaughn
-hindus
-##anga
-##hell
-psycho
-171
-daytona
-protects
-efficiently
-rematch
-sly
-tandem
-##oya
-rebranded
-impaired
-hee
-metropolis
-peach
-godfrey
-diaspora
-ethnicity
-prosperous
-gleaming
-dar
-grossing
-playback
-##rden
-stripe
-pistols
-##tain
-births
-labelled
-##cating
-172
-rudy
-alba
-##onne
-aquarium
-hostility
-##gb
-##tase
-shudder
-sumatra
-hardest
-lakers
-consonant
-creeping
-demos
-homicide
-capsule
-zeke
-liberties
-expulsion
-pueblo
-##comb
-trait
-transporting
-##ddin
-##neck
-##yna
-depart
-gregg
-mold
-ledge
-hangar
-oldham
-playboy
-termination
-analysts
-gmbh
-romero
-##itic
-insist
-cradle
-filthy
-brightness
-slash
-shootout
-deposed
-bordering
-##truct
-isis
-microwave
-tumbled
-sheltered
-cathy
-werewolves
-messy
-andersen
-convex
-clapped
-clinched
-satire
-wasting
-edo
-vc
-rufus
-##jak
-mont
-##etti
-poznan
-##keeping
-restructuring
-transverse
-##rland
-azerbaijani
-slovene
-gestures
-roommate
-choking
-shear
-##quist
-vanguard
-oblivious
-##hiro
-disagreed
-baptism
-##lich
-coliseum
-##aceae
-salvage
-societe
-cory
-locke
-relocation
-relying
-versailles
-ahl
-swelling
-##elo
-cheerful
-##word
-##edes
-gin
-sarajevo
-obstacle
-diverted
-##nac
-messed
-thoroughbred
-fluttered
-utrecht
-chewed
-acquaintance
-assassins
-dispatch
-mirza
-##wart
-nike
-salzburg
-swell
-yen
-##gee
-idle
-ligue
-samson
-##nds
-##igh
-playful
-spawned
-##cise
-tease
-##case
-burgundy
-##bot
-stirring
-skeptical
-interceptions
-marathi
-##dies
-bedrooms
-aroused
-pinch
-##lik
-preferences
-tattoos
-buster
-digitally
-projecting
-rust
-##ital
-kitten
-priorities
-addison
-pseudo
-##guard
-dusk
-icons
-sermon
-##psis
-##iba
-bt
-##lift
-##xt
-ju
-truce
-rink
-##dah
-##wy
-defects
-psychiatry
-offences
-calculate
-glucose
-##iful
-##rized
-##unda
-francaise
-##hari
-richest
-warwickshire
-carly
-1763
-purity
-redemption
-lending
-##cious
-muse
-bruises
-cerebral
-aero
-carving
-##name
-preface
-terminology
-invade
-monty
-##int
-anarchist
-blurred
-##iled
-rossi
-treats
-guts
-shu
-foothills
-ballads
-undertaking
-premise
-cecilia
-affiliates
-blasted
-conditional
-wilder
-minors
-drone
-rudolph
-buffy
-swallowing
-horton
-attested
-##hop
-rutherford
-howell
-primetime
-livery
-penal
-##bis
-minimize
-hydro
-wrecked
-wrought
-palazzo
-##gling
-cans
-vernacular
-friedman
-nobleman
-shale
-walnut
-danielle
-##ection
-##tley
-sears
-##kumar
-chords
-lend
-flipping
-streamed
-por
-dracula
-gallons
-sacrifices
-gamble
-orphanage
-##iman
-mckenzie
-##gible
-boxers
-daly
-##balls
-##ان
-208
-##ific
-##rative
-##iq
-exploited
-slated
-##uity
-circling
-hillary
-pinched
-goldberg
-provost
-campaigning
-lim
-piles
-ironically
-jong
-mohan
-successors
-usaf
-##tem
-##ught
-autobiographical
-haute
-preserves
-##ending
-acquitted
-comparisons
-203
-hydroelectric
-gangs
-cypriot
-torpedoes
-rushes
-chrome
-derive
-bumps
-instability
-fiat
-pets
-##mbe
-silas
-dye
-reckless
-settler
-##itation
-info
-heats
-##writing
-176
-canonical
-maltese
-fins
-mushroom
-stacy
-aspen
-avid
-##kur
-##loading
-vickers
-gaston
-hillside
-statutes
-wilde
-gail
-kung
-sabine
-comfortably
-motorcycles
-##rgo
-169
-pneumonia
-fetch
-##sonic
-axel
-faintly
-parallels
-##oop
-mclaren
-spouse
-compton
-interdisciplinary
-miner
-##eni
-181
-clamped
-##chal
-##llah
-separates
-versa
-##mler
-scarborough
-labrador
-##lity
-##osing
-rutgers
-hurdles
-como
-166
-burt
-divers
-##100
-wichita
-cade
-coincided
-##erson
-bruised
-mla
-##pper
-vineyard
-##ili
-##brush
-notch
-mentioning
-jase
-hearted
-kits
-doe
-##acle
-pomerania
-##ady
-ronan
-seizure
-pavel
-problematic
-##zaki
-domenico
-##ulin
-catering
-penelope
-dependence
-parental
-emilio
-ministerial
-atkinson
-##bolic
-clarkson
-chargers
-colby
-grill
-peeked
-arises
-summon
-##aged
-fools
-##grapher
-faculties
-qaeda
-##vial
-garner
-refurbished
-##hwa
-geelong
-disasters
-nudged
-bs
-shareholder
-lori
-algae
-reinstated
-rot
-##ades
-##nous
-invites
-stainless
-183
-inclusive
-##itude
-diocesan
-til
-##icz
-denomination
-##xa
-benton
-floral
-registers
-##ider
-##erman
-##kell
-absurd
-brunei
-guangzhou
-hitter
-retaliation
-##uled
-##eve
-blanc
-nh
-consistency
-contamination
-##eres
-##rner
-dire
-palermo
-broadcasters
-diaries
-inspire
-vols
-brewer
-tightening
-ky
-mixtape
-hormone
-##tok
-stokes
-##color
-##dly
-##ssi
-pg
-##ometer
-##lington
-sanitation
-##tility
-intercontinental
-apps
-##adt
-¹⁄₂
-cylinders
-economies
-favourable
-unison
-croix
-gertrude
-odyssey
-vanity
-dangling
-##logists
-upgrades
-dice
-middleweight
-practitioner
-##ight
-206
-henrik
-parlor
-orion
-angered
-lac
-python
-blurted
-##rri
-sensual
-intends
-swings
-angled
-##phs
-husky
-attain
-peerage
-precinct
-textiles
-cheltenham
-shuffled
-dai
-confess
-tasting
-bhutan
-##riation
-tyrone
-segregation
-abrupt
-ruiz
-##rish
-smirked
-blackwell
-confidential
-browning
-amounted
-##put
-vase
-scarce
-fabulous
-raided
-staple
-guyana
-unemployed
-glider
-shay
-##tow
-carmine
-troll
-intervene
-squash
-superstar
-##uce
-cylindrical
-len
-roadway
-researched
-handy
-##rium
-##jana
-meta
-lao
-declares
-##rring
-##tadt
-##elin
-##kova
-willem
-shrubs
-napoleonic
-realms
-skater
-qi
-volkswagen
-##ł
-tad
-hara
-archaeologist
-awkwardly
-eerie
-##kind
-wiley
-##heimer
-##24
-titus
-organizers
-cfl
-crusaders
-lama
-usb
-vent
-enraged
-thankful
-occupants
-maximilian
-##gaard
-possessing
-textbooks
-##oran
-collaborator
-quaker
-##ulo
-avalanche
-mono
-silky
-straits
-isaiah
-mustang
-surged
-resolutions
-potomac
-descend
-cl
-kilograms
-plato
-strains
-saturdays
-##olin
-bernstein
-##ype
-holstein
-ponytail
-##watch
-belize
-conversely
-heroine
-perpetual
-##ylus
-charcoal
-piedmont
-glee
-negotiating
-backdrop
-prologue
-##jah
-##mmy
-pasadena
-climbs
-ramos
-sunni
-##holm
-##tner
-##tri
-anand
-deficiency
-hertfordshire
-stout
-##avi
-aperture
-orioles
-##irs
-doncaster
-intrigued
-bombed
-coating
-otis
-##mat
-cocktail
-##jit
-##eto
-amir
-arousal
-sar
-##proof
-##act
-##ories
-dixie
-pots
-##bow
-whereabouts
-159
-##fted
-drains
-bullying
-cottages
-scripture
-coherent
-fore
-poe
-appetite
-##uration
-sampled
-##ators
-##dp
-derrick
-rotor
-jays
-peacock
-installment
-##rro
-advisors
-##coming
-rodeo
-scotch
-##mot
-##db
-##fen
-##vant
-ensued
-rodrigo
-dictatorship
-martyrs
-twenties
-##н
-towed
-incidence
-marta
-rainforest
-sai
-scaled
-##cles
-oceanic
-qualifiers
-symphonic
-mcbride
-dislike
-generalized
-aubrey
-colonization
-##iation
-##lion
-##ssing
-disliked
-lublin
-salesman
-##ulates
-spherical
-whatsoever
-sweating
-avalon
-contention
-punt
-severity
-alderman
-atari
-##dina
-##grant
-##rop
-scarf
-seville
-vertices
-annexation
-fairfield
-fascination
-inspiring
-launches
-palatinate
-regretted
-##rca
-feral
-##iom
-elk
-nap
-olsen
-reddy
-yong
-##leader
-##iae
-garment
-transports
-feng
-gracie
-outrage
-viceroy
-insides
-##esis
-breakup
-grady
-organizer
-softer
-grimaced
-222
-murals
-galicia
-arranging
-vectors
-##rsten
-bas
-##sb
-##cens
-sloan
-##eka
-bitten
-ara
-fender
-nausea
-bumped
-kris
-banquet
-comrades
-detector
-persisted
-##llan
-adjustment
-endowed
-cinemas
-##shot
-sellers
-##uman
-peek
-epa
-kindly
-neglect
-simpsons
-talon
-mausoleum
-runaway
-hangul
-lookout
-##cic
-rewards
-coughed
-acquainted
-chloride
-##ald
-quicker
-accordion
-neolithic
-##qa
-artemis
-coefficient
-lenny
-pandora
-tx
-##xed
-ecstasy
-litter
-segunda
-chairperson
-gemma
-hiss
-rumor
-vow
-nasal
-antioch
-compensate
-patiently
-transformers
-##eded
-judo
-morrow
-penis
-posthumous
-philips
-bandits
-husbands
-denote
-flaming
-##any
-##phones
-langley
-yorker
-1760
-walters
-##uo
-##kle
-gubernatorial
-fatty
-samsung
-leroy
-outlaw
-##nine
-unpublished
-poole
-jakob
-##ᵢ
-##ₙ
-crete
-distorted
-superiority
-##dhi
-intercept
-crust
-mig
-claus
-crashes
-positioning
-188
-stallion
-301
-frontal
-armistice
-##estinal
-elton
-aj
-encompassing
-camel
-commemorated
-malaria
-woodward
-calf
-cigar
-penetrate
-##oso
-willard
-##rno
-##uche
-illustrate
-amusing
-convergence
-noteworthy
-##lma
-##rva
-journeys
-realise
-manfred
-##sable
-410
-##vocation
-hearings
-fiance
-##posed
-educators
-provoked
-adjusting
-##cturing
-modular
-stockton
-paterson
-vlad
-rejects
-electors
-selena
-maureen
-##tres
-uber
-##rce
-swirled
-##num
-proportions
-nanny
-pawn
-naturalist
-parma
-apostles
-awoke
-ethel
-wen
-##bey
-monsoon
-overview
-##inating
-mccain
-rendition
-risky
-adorned
-##ih
-equestrian
-germain
-nj
-conspicuous
-confirming
-##yoshi
-shivering
-##imeter
-milestone
-rumours
-flinched
-bounds
-smacked
-token
-##bei
-lectured
-automobiles
-##shore
-impacted
-##iable
-nouns
-nero
-##leaf
-ismail
-prostitute
-trams
-##lace
-bridget
-sud
-stimulus
-impressions
-reins
-revolves
-##oud
-##gned
-giro
-honeymoon
-##swell
-criterion
-##sms
-##uil
-libyan
-prefers
-##osition
-211
-preview
-sucks
-accusation
-bursts
-metaphor
-diffusion
-tolerate
-faye
-betting
-cinematographer
-liturgical
-specials
-bitterly
-humboldt
-##ckle
-flux
-rattled
-##itzer
-archaeologists
-odor
-authorised
-marshes
-discretion
-##ов
-alarmed
-archaic
-inverse
-##leton
-explorers
-##pine
-drummond
-tsunami
-woodlands
-##minate
-##tland
-booklet
-insanity
-owning
-insert
-crafted
-calculus
-##tore
-receivers
-##bt
-stung
-##eca
-##nched
-prevailing
-travellers
-eyeing
-lila
-graphs
-##borne
-178
-julien
-##won
-morale
-adaptive
-therapist
-erica
-cw
-libertarian
-bowman
-pitches
-vita
-##ional
-crook
-##ads
-##entation
-caledonia
-mutiny
-##sible
-1840s
-automation
-##ß
-flock
-##pia
-ironic
-pathology
-##imus
-remarried
-##22
-joker
-withstand
-energies
-##att
-shropshire
-hostages
-madeleine
-tentatively
-conflicting
-mateo
-recipes
-euros
-ol
-mercenaries
-nico
-##ndon
-albuquerque
-augmented
-mythical
-bel
-freud
-##child
-cough
-##lica
-365
-freddy
-lillian
-genetically
-nuremberg
-calder
-209
-bonn
-outdoors
-paste
-suns
-urgency
-vin
-restraint
-tyson
-##cera
-##selle
-barrage
-bethlehem
-kahn
-##par
-mounts
-nippon
-barony
-happier
-ryu
-makeshift
-sheldon
-blushed
-castillo
-barking
-listener
-taped
-bethel
-fluent
-headlines
-pornography
-rum
-disclosure
-sighing
-mace
-doubling
-gunther
-manly
-##plex
-rt
-interventions
-physiological
-forwards
-emerges
-##tooth
-##gny
-compliment
-rib
-recession
-visibly
-barge
-faults
-connector
-exquisite
-prefect
-##rlin
-patio
-##cured
-elevators
-brandt
-italics
-pena
-173
-wasp
-satin
-ea
-botswana
-graceful
-respectable
-##jima
-##rter
-##oic
-franciscan
-generates
-##dl
-alfredo
-disgusting
-##olate
-##iously
-sherwood
-warns
-cod
-promo
-cheryl
-sino
-##ة
-##escu
-twitch
-##zhi
-brownish
-thom
-ortiz
-##dron
-densely
-##beat
-carmel
-reinforce
-##bana
-187
-anastasia
-downhill
-vertex
-contaminated
-remembrance
-harmonic
-homework
-##sol
-fiancee
-gears
-olds
-angelica
-loft
-ramsay
-quiz
-colliery
-sevens
-##cape
-autism
-##hil
-walkway
-##boats
-ruben
-abnormal
-ounce
-khmer
-##bbe
-zachary
-bedside
-morphology
-punching
-##olar
-sparrow
-convinces
-##35
-hewitt
-queer
-remastered
-rods
-mabel
-solemn
-notified
-lyricist
-symmetric
-##xide
-174
-encore
-passports
-wildcats
-##uni
-baja
-##pac
-mildly
-##ease
-bleed
-commodity
-mounds
-glossy
-orchestras
-##omo
-damian
-prelude
-ambitions
-##vet
-awhile
-remotely
-##aud
-asserts
-imply
-##iques
-distinctly
-modelling
-remedy
-##dded
-windshield
-dani
-xiao
-##endra
-audible
-powerplant
-1300
-invalid
-elemental
-acquisitions
-##hala
-immaculate
-libby
-plata
-smuggling
-ventilation
-denoted
-minh
-##morphism
-430
-differed
-dion
-kelley
-lore
-mocking
-sabbath
-spikes
-hygiene
-drown
-runoff
-stylized
-tally
-liberated
-aux
-interpreter
-righteous
-aba
-siren
-reaper
-pearce
-millie
-##cier
-##yra
-gaius
-##iso
-captures
-##ttering
-dorm
-claudio
-##sic
-benches
-knighted
-blackness
-##ored
-discount
-fumble
-oxidation
-routed
-##ς
-novak
-perpendicular
-spoiled
-fracture
-splits
-##urt
-pads
-topology
-##cats
-axes
-fortunate
-offenders
-protestants
-esteem
-221
-broadband
-convened
-frankly
-hound
-prototypes
-isil
-facilitated
-keel
-##sher
-sahara
-awaited
-bubba
-orb
-prosecutors
-186
-hem
-520
-##xing
-relaxing
-remnant
-romney
-sorted
-slalom
-stefano
-ulrich
-##active
-exemption
-folder
-pauses
-foliage
-hitchcock
-epithet
-204
-criticisms
-##aca
-ballistic
-brody
-hinduism
-chaotic
-youths
-equals
-##pala
-pts
-thicker
-analogous
-capitalist
-improvised
-overseeing
-sinatra
-ascended
-beverage
-##tl
-straightforward
-##kon
-curran
-##west
-bois
-325
-induce
-surveying
-emperors
-sax
-unpopular
-##kk
-cartoonist
-fused
-##mble
-unto
-##yuki
-localities
-##cko
-##ln
-darlington
-slain
-academie
-lobbying
-sediment
-puzzles
-##grass
-defiance
-dickens
-manifest
-tongues
-alumnus
-arbor
-coincide
-184
-appalachian
-mustafa
-examiner
-cabaret
-traumatic
-yves
-bracelet
-draining
-heroin
-magnum
-baths
-odessa
-consonants
-mitsubishi
-##gua
-kellan
-vaudeville
-##fr
-joked
-null
-straps
-probation
-##ław
-ceded
-interfaces
-##pas
-##zawa
-blinding
-viet
-224
-rothschild
-museo
-640
-huddersfield
-##vr
-tactic
-##storm
-brackets
-dazed
-incorrectly
-##vu
-reg
-glazed
-fearful
-manifold
-benefited
-irony
-##sun
-stumbling
-##rte
-willingness
-balkans
-mei
-wraps
-##aba
-injected
-##lea
-gu
-syed
-harmless
-##hammer
-bray
-takeoff
-poppy
-timor
-cardboard
-astronaut
-purdue
-weeping
-southbound
-cursing
-stalls
-diagonal
-##neer
-lamar
-bryce
-comte
-weekdays
-harrington
-##uba
-negatively
-##see
-lays
-grouping
-##cken
-##henko
-affirmed
-halle
-modernist
-##lai
-hodges
-smelling
-aristocratic
-baptized
-dismiss
-justification
-oilers
-##now
-coupling
-qin
-snack
-healer
-##qing
-gardener
-layla
-battled
-formulated
-stephenson
-gravitational
-##gill
-##jun
-1768
-granny
-coordinating
-suites
-##cd
-##ioned
-monarchs
-##cote
-##hips
-sep
-blended
-apr
-barrister
-deposition
-fia
-mina
-policemen
-paranoid
-##pressed
-churchyard
-covert
-crumpled
-creep
-abandoning
-tr
-transmit
-conceal
-barr
-understands
-readiness
-spire
-##cology
-##enia
-##erry
-610
-startling
-unlock
-vida
-bowled
-slots
-##nat
-##islav
-spaced
-trusting
-admire
-rig
-##ink
-slack
-##70
-mv
-207
-casualty
-##wei
-classmates
-##odes
-##rar
-##rked
-amherst
-furnished
-evolve
-foundry
-menace
-mead
-##lein
-flu
-wesleyan
-##kled
-monterey
-webber
-##vos
-wil
-##mith
-##на
-bartholomew
-justices
-restrained
-##cke
-amenities
-191
-mediated
-sewage
-trenches
-ml
-mainz
-##thus
-1800s
-##cula
-##inski
-caine
-bonding
-213
-converts
-spheres
-superseded
-marianne
-crypt
-sweaty
-ensign
-historia
-##br
-spruce
-##post
-##ask
-forks
-thoughtfully
-yukon
-pamphlet
-ames
-##uter
-karma
-##yya
-bryn
-negotiation
-sighs
-incapable
-##mbre
-##ntial
-actresses
-taft
-##mill
-luce
-prevailed
-##amine
-1773
-motionless
-envoy
-testify
-investing
-sculpted
-instructors
-provence
-kali
-cullen
-horseback
-##while
-goodwin
-##jos
-gaa
-norte
-##ldon
-modify
-wavelength
-abd
-214
-skinned
-sprinter
-forecast
-scheduling
-marries
-squared
-tentative
-##chman
-boer
-##isch
-bolts
-swap
-fisherman
-assyrian
-impatiently
-guthrie
-martins
-murdoch
-194
-tanya
-nicely
-dolly
-lacy
-med
-##45
-syn
-decks
-fashionable
-millionaire
-##ust
-surfing
-##ml
-##ision
-heaved
-tammy
-consulate
-attendees
-routinely
-197
-fuse
-saxophonist
-backseat
-malaya
-##lord
-scowl
-tau
-##ishly
-193
-sighted
-steaming
-##rks
-303
-911
-##holes
-##hong
-ching
-##wife
-bless
-conserved
-jurassic
-stacey
-unix
-zion
-chunk
-rigorous
-blaine
-198
-peabody
-slayer
-dismay
-brewers
-nz
-##jer
-det
-##glia
-glover
-postwar
-int
-penetration
-sylvester
-imitation
-vertically
-airlift
-heiress
-knoxville
-viva
-##uin
-390
-macon
-##rim
-##fighter
-##gonal
-janice
-##orescence
-##wari
-marius
-belongings
-leicestershire
-196
-blanco
-inverted
-preseason
-sanity
-sobbing
-##due
-##elt
-##dled
-collingwood
-regeneration
-flickering
-shortest
-##mount
-##osi
-feminism
-##lat
-sherlock
-cabinets
-fumbled
-northbound
-precedent
-snaps
-##mme
-researching
-##akes
-guillaume
-insights
-manipulated
-vapor
-neighbour
-sap
-gangster
-frey
-f1
-stalking
-scarcely
-callie
-barnett
-tendencies
-audi
-doomed
-assessing
-slung
-panchayat
-ambiguous
-bartlett
-##etto
-distributing
-violating
-wolverhampton
-##hetic
-swami
-histoire
-##urus
-liable
-pounder
-groin
-hussain
-larsen
-popping
-surprises
-##atter
-vie
-curt
-##station
-mute
-relocate
-musicals
-authorization
-richter
-##sef
-immortality
-tna
-bombings
-##press
-deteriorated
-yiddish
-##acious
-robbed
-colchester
-cs
-pmid
-ao
-verified
-balancing
-apostle
-swayed
-recognizable
-oxfordshire
-retention
-nottinghamshire
-contender
-judd
-invitational
-shrimp
-uhf
-##icient
-cleaner
-longitudinal
-tanker
-##mur
-acronym
-broker
-koppen
-sundance
-suppliers
-##gil
-4000
-clipped
-fuels
-petite
-##anne
-landslide
-helene
-diversion
-populous
-landowners
-auspices
-melville
-quantitative
-##xes
-ferries
-nicky
-##llus
-doo
-haunting
-roche
-carver
-downed
-unavailable
-##pathy
-approximation
-hiroshima
-##hue
-garfield
-valle
-comparatively
-keyboardist
-traveler
-##eit
-congestion
-calculating
-subsidiaries
-##bate
-serb
-modernization
-fairies
-deepened
-ville
-averages
-##lore
-inflammatory
-tonga
-##itch
-co₂
-squads
-##hea
-gigantic
-serum
-enjoyment
-retailer
-verona
-35th
-cis
-##phobic
-magna
-technicians
-##vati
-arithmetic
-##sport
-levin
-##dation
-amtrak
-chow
-sienna
-##eyer
-backstage
-entrepreneurship
-##otic
-learnt
-tao
-##udy
-worcestershire
-formulation
-baggage
-hesitant
-bali
-sabotage
-##kari
-barren
-enhancing
-murmur
-pl
-freshly
-putnam
-syntax
-aces
-medicines
-resentment
-bandwidth
-##sier
-grins
-chili
-guido
-##sei
-framing
-implying
-gareth
-lissa
-genevieve
-pertaining
-admissions
-geo
-thorpe
-proliferation
-sato
-bela
-analyzing
-parting
-##gor
-awakened
-##isman
-huddled
-secrecy
-##kling
-hush
-gentry
-540
-dungeons
-##ego
-coasts
-##utz
-sacrificed
-##chule
-landowner
-mutually
-prevalence
-programmer
-adolescent
-disrupted
-seaside
-gee
-trusts
-vamp
-georgie
-##nesian
-##iol
-schedules
-sindh
-##market
-etched
-hm
-sparse
-bey
-beaux
-scratching
-gliding
-unidentified
-216
-collaborating
-gems
-jesuits
-oro
-accumulation
-shaping
-mbe
-anal
-##xin
-231
-enthusiasts
-newscast
-##egan
-janata
-dewey
-parkinson
-179
-ankara
-biennial
-towering
-dd
-inconsistent
-950
-##chet
-thriving
-terminate
-cabins
-furiously
-eats
-advocating
-donkey
-marley
-muster
-phyllis
-leiden
-##user
-grassland
-glittering
-iucn
-loneliness
-217
-memorandum
-armenians
-##ddle
-popularized
-rhodesia
-60s
-lame
-##illon
-sans
-bikini
-header
-orbits
-##xx
-##finger
-##ulator
-sharif
-spines
-biotechnology
-strolled
-naughty
-yates
-##wire
-fremantle
-milo
-##mour
-abducted
-removes
-##atin
-humming
-wonderland
-##chrome
-##ester
-hume
-pivotal
-##rates
-armand
-grams
-believers
-elector
-rte
-apron
-bis
-scraped
-##yria
-endorsement
-initials
-##llation
-eps
-dotted
-hints
-buzzing
-emigration
-nearer
-##tom
-indicators
-##ulu
-coarse
-neutron
-protectorate
-##uze
-directional
-exploits
-pains
-loire
-1830s
-proponents
-guggenheim
-rabbits
-ritchie
-305
-hectare
-inputs
-hutton
-##raz
-verify
-##ako
-boilers
-longitude
-##lev
-skeletal
-yer
-emilia
-citrus
-compromised
-##gau
-pokemon
-prescription
-paragraph
-eduard
-cadillac
-attire
-categorized
-kenyan
-weddings
-charley
-##bourg
-entertain
-monmouth
-##lles
-nutrients
-davey
-mesh
-incentive
-practised
-ecosystems
-kemp
-subdued
-overheard
-##rya
-bodily
-maxim
-##nius
-apprenticeship
-ursula
-##fight
-lodged
-rug
-silesian
-unconstitutional
-patel
-inspected
-coyote
-unbeaten
-##hak
-34th
-disruption
-convict
-parcel
-##cl
-##nham
-collier
-implicated
-mallory
-##iac
-##lab
-susannah
-winkler
-##rber
-shia
-phelps
-sediments
-graphical
-robotic
-##sner
-adulthood
-mart
-smoked
-##isto
-kathryn
-clarified
-##aran
-divides
-convictions
-oppression
-pausing
-burying
-##mt
-federico
-mathias
-eileen
-##tana
-kite
-hunched
-##acies
-189
-##atz
-disadvantage
-liza
-kinetic
-greedy
-paradox
-yokohama
-dowager
-trunks
-ventured
-##gement
-gupta
-vilnius
-olaf
-##thest
-crimean
-hopper
-##ej
-progressively
-arturo
-mouthed
-arrondissement
-##fusion
-rubin
-simulcast
-oceania
-##orum
-##stra
-##rred
-busiest
-intensely
-navigator
-cary
-##vine
-##hini
-##bies
-fife
-rowe
-rowland
-posing
-insurgents
-shafts
-lawsuits
-activate
-conor
-inward
-culturally
-garlic
-265
-##eering
-eclectic
-##hui
-##kee
-##nl
-furrowed
-vargas
-meteorological
-rendezvous
-##aus
-culinary
-commencement
-##dition
-quota
-##notes
-mommy
-salaries
-overlapping
-mule
-##iology
-##mology
-sums
-wentworth
-##isk
-##zione
-mainline
-subgroup
-##illy
-hack
-plaintiff
-verdi
-bulb
-differentiation
-engagements
-multinational
-supplemented
-bertrand
-caller
-regis
-##naire
-##sler
-##arts
-##imated
-blossom
-propagation
-kilometer
-viaduct
-vineyards
-##uate
-beckett
-optimization
-golfer
-songwriters
-seminal
-semitic
-thud
-volatile
-evolving
-ridley
-##wley
-trivial
-distributions
-scandinavia
-jiang
-##ject
-wrestled
-insistence
-##dio
-emphasizes
-napkin
-##ods
-adjunct
-rhyme
-##ricted
-##eti
-hopeless
-surrounds
-tremble
-32nd
-smoky
-##ntly
-oils
-medicinal
-padded
-steer
-wilkes
-219
-255
-concessions
-hue
-uniquely
-blinded
-landon
-yahoo
-##lane
-hendrix
-commemorating
-dex
-specify
-chicks
-##ggio
-intercity
-1400
-morley
-##torm
-highlighting
-##oting
-pang
-oblique
-stalled
-##liner
-flirting
-newborn
-1769
-bishopric
-shaved
-232
-currie
-##ush
-dharma
-spartan
-##ooped
-favorites
-smug
-novella
-sirens
-abusive
-creations
-espana
-##lage
-paradigm
-semiconductor
-sheen
-##rdo
-##yen
-##zak
-nrl
-renew
-##pose
-##tur
-adjutant
-marches
-norma
-##enity
-ineffective
-weimar
-grunt
-##gat
-lordship
-plotting
-expenditure
-infringement
-lbs
-refrain
-av
-mimi
-mistakenly
-postmaster
-1771
-##bara
-ras
-motorsports
-tito
-199
-subjective
-##zza
-bully
-stew
-##kaya
-prescott
-1a
-##raphic
-##zam
-bids
-styling
-paranormal
-reeve
-sneaking
-exploding
-katz
-akbar
-migrant
-syllables
-indefinitely
-##ogical
-destroys
-replaces
-applause
-##phine
-pest
-##fide
-218
-articulated
-bertie
-##thing
-##cars
-##ptic
-courtroom
-crowley
-aesthetics
-cummings
-tehsil
-hormones
-titanic
-dangerously
-##ibe
-stadion
-jaenelle
-auguste
-ciudad
-##chu
-mysore
-partisans
-##sio
-lucan
-philipp
-##aly
-debating
-henley
-interiors
-##rano
-##tious
-homecoming
-beyonce
-usher
-henrietta
-prepares
-weeds
-##oman
-ely
-plucked
-##pire
-##dable
-luxurious
-##aq
-artifact
-password
-pasture
-juno
-maddy
-minsk
-##dder
-##ologies
-##rone
-assessments
-martian
-royalist
-1765
-examines
-##mani
-##rge
-nino
-223
-parry
-scooped
-relativity
-##eli
-##uting
-##cao
-congregational
-noisy
-traverse
-##agawa
-strikeouts
-nickelodeon
-obituary
-transylvania
-binds
-depictions
-polk
-trolley
-##yed
-##lard
-breeders
-##under
-dryly
-hokkaido
-1762
-strengths
-stacks
-bonaparte
-connectivity
-neared
-prostitutes
-stamped
-anaheim
-gutierrez
-sinai
-##zzling
-bram
-fresno
-madhya
-##86
-proton
-##lena
-##llum
-##phon
-reelected
-wanda
-##anus
-##lb
-ample
-distinguishing
-##yler
-grasping
-sermons
-tomato
-bland
-stimulation
-avenues
-##eux
-spreads
-scarlett
-fern
-pentagon
-assert
-baird
-chesapeake
-ir
-calmed
-distortion
-fatalities
-##olis
-correctional
-pricing
-##astic
-##gina
-prom
-dammit
-ying
-collaborate
-##chia
-welterweight
-33rd
-pointer
-substitution
-bonded
-umpire
-communicating
-multitude
-paddle
-##obe
-federally
-intimacy
-##insky
-betray
-ssr
-##lett
-##lean
-##lves
-##therapy
-airbus
-##tery
-functioned
-ud
-bearer
-biomedical
-netflix
-##hire
-##nca
-condom
-brink
-ik
-##nical
-macy
-##bet
-flap
-gma
-experimented
-jelly
-lavender
-##icles
-##ulia
-munro
-##mian
-##tial
-rye
-##rle
-60th
-gigs
-hottest
-rotated
-predictions
-fuji
-bu
-##erence
-##omi
-barangay
-##fulness
-##sas
-clocks
-##rwood
-##liness
-cereal
-roe
-wight
-decker
-uttered
-babu
-onion
-xml
-forcibly
-##df
-petra
-sarcasm
-hartley
-peeled
-storytelling
-##42
-##xley
-##ysis
-##ffa
-fibre
-kiel
-auditor
-fig
-harald
-greenville
-##berries
-geographically
-nell
-quartz
-##athic
-cemeteries
-##lr
-crossings
-nah
-holloway
-reptiles
-chun
-sichuan
-snowy
-660
-corrections
-##ivo
-zheng
-ambassadors
-blacksmith
-fielded
-fluids
-hardcover
-turnover
-medications
-melvin
-academies
-##erton
-ro
-roach
-absorbing
-spaniards
-colton
-##founded
-outsider
-espionage
-kelsey
-245
-edible
-##ulf
-dora
-establishes
-##sham
-##tries
-contracting
-##tania
-cinematic
-costello
-nesting
-##uron
-connolly
-duff
-##nology
-mma
-##mata
-fergus
-sexes
-gi
-optics
-spectator
-woodstock
-banning
-##hee
-##fle
-differentiate
-outfielder
-refinery
-226
-312
-gerhard
-horde
-lair
-drastically
-##udi
-landfall
-##cheng
-motorsport
-odi
-##achi
-predominant
-quay
-skins
-##ental
-edna
-harshly
-complementary
-murdering
-##aves
-wreckage
-##90
-ono
-outstretched
-lennox
-munitions
-galen
-reconcile
-470
-scalp
-bicycles
-gillespie
-questionable
-rosenberg
-guillermo
-hostel
-jarvis
-kabul
-volvo
-opium
-yd
-##twined
-abuses
-decca
-outpost
-##cino
-sensible
-neutrality
-##64
-ponce
-anchorage
-atkins
-turrets
-inadvertently
-disagree
-libre
-vodka
-reassuring
-weighs
-##yal
-glide
-jumper
-ceilings
-repertory
-outs
-stain
-##bial
-envy
-##ucible
-smashing
-heightened
-policing
-hyun
-mixes
-lai
-prima
-##ples
-celeste
-##bina
-lucrative
-intervened
-kc
-manually
-##rned
-stature
-staffed
-bun
-bastards
-nairobi
-priced
-##auer
-thatcher
-##kia
-tripped
-comune
-##ogan
-##pled
-brasil
-incentives
-emanuel
-hereford
-musica
-##kim
-benedictine
-biennale
-##lani
-eureka
-gardiner
-rb
-knocks
-sha
-##ael
-##elled
-##onate
-efficacy
-ventura
-masonic
-sanford
-maize
-leverage
-##feit
-capacities
-santana
-##aur
-novelty
-vanilla
-##cter
-##tour
-benin
-##oir
-##rain
-neptune
-drafting
-tallinn
-##cable
-humiliation
-##boarding
-schleswig
-fabian
-bernardo
-liturgy
-spectacle
-sweeney
-pont
-routledge
-##tment
-cosmos
-ut
-hilt
-sleek
-universally
-##eville
-##gawa
-typed
-##dry
-favors
-allegheny
-glaciers
-##rly
-recalling
-aziz
-##log
-parasite
-requiem
-auf
-##berto
-##llin
-illumination
-##breaker
-##issa
-festivities
-bows
-govern
-vibe
-vp
-333
-sprawled
-larson
-pilgrim
-bwf
-leaping
-##rts
-##ssel
-alexei
-greyhound
-hoarse
-##dler
-##oration
-seneca
-##cule
-gaping
-##ulously
-##pura
-cinnamon
-##gens
-##rricular
-craven
-fantasies
-houghton
-engined
-reigned
-dictator
-supervising
-##oris
-bogota
-commentaries
-unnatural
-fingernails
-spirituality
-tighten
-##tm
-canadiens
-protesting
-intentional
-cheers
-sparta
-##ytic
-##iere
-##zine
-widen
-belgarath
-controllers
-dodd
-iaaf
-navarre
-##ication
-defect
-squire
-steiner
-whisky
-##mins
-560
-inevitably
-tome
-##gold
-chew
-##uid
-##lid
-elastic
-##aby
-streaked
-alliances
-jailed
-regal
-##ined
-##phy
-czechoslovak
-narration
-absently
-##uld
-bluegrass
-guangdong
-quran
-criticizing
-hose
-hari
-##liest
-##owa
-skier
-streaks
-deploy
-##lom
-raft
-bose
-dialed
-huff
-##eira
-haifa
-simplest
-bursting
-endings
-ib
-sultanate
-##titled
-franks
-whitman
-ensures
-sven
-##ggs
-collaborators
-forster
-organising
-ui
-banished
-napier
-injustice
-teller
-layered
-thump
-##otti
-roc
-battleships
-evidenced
-fugitive
-sadie
-robotics
-##roud
-equatorial
-geologist
-##iza
-yielding
-##bron
-##sr
-internationale
-mecca
-##diment
-sbs
-skyline
-toad
-uploaded
-reflective
-undrafted
-lal
-leafs
-bayern
-##dai
-lakshmi
-shortlisted
-##stick
-##wicz
-camouflage
-donate
-af
-christi
-lau
-##acio
-disclosed
-nemesis
-1761
-assemble
-straining
-northamptonshire
-tal
-##asi
-bernardino
-premature
-heidi
-42nd
-coefficients
-galactic
-reproduce
-buzzed
-sensations
-zionist
-monsieur
-myrtle
-##eme
-archery
-strangled
-musically
-viewpoint
-antiquities
-bei
-trailers
-seahawks
-cured
-pee
-preferring
-tasmanian
-lange
-sul
-##mail
-##working
-colder
-overland
-lucivar
-massey
-gatherings
-haitian
-##smith
-disapproval
-flaws
-##cco
-##enbach
-1766
-npr
-##icular
-boroughs
-creole
-forums
-techno
-1755
-dent
-abdominal
-streetcar
-##eson
-##stream
-procurement
-gemini
-predictable
-##tya
-acheron
-christoph
-feeder
-fronts
-vendor
-bernhard
-jammu
-tumors
-slang
-##uber
-goaltender
-twists
-curving
-manson
-vuelta
-mer
-peanut
-confessions
-pouch
-unpredictable
-allowance
-theodor
-vascular
-##factory
-bala
-authenticity
-metabolic
-coughing
-nanjing
-##cea
-pembroke
-##bard
-splendid
-36th
-ff
-hourly
-##ahu
-elmer
-handel
-##ivate
-awarding
-thrusting
-dl
-experimentation
-##hesion
-##46
-caressed
-entertained
-steak
-##rangle
-biologist
-orphans
-baroness
-oyster
-stepfather
-##dridge
-mirage
-reefs
-speeding
-##31
-barons
-1764
-227
-inhabit
-preached
-repealed
-##tral
-honoring
-boogie
-captives
-administer
-johanna
-##imate
-gel
-suspiciously
-1767
-sobs
-##dington
-backbone
-hayward
-garry
-##folding
-##nesia
-maxi
-##oof
-##ppe
-ellison
-galileo
-##stand
-crimea
-frenzy
-amour
-bumper
-matrices
-natalia
-baking
-garth
-palestinians
-##grove
-smack
-conveyed
-ensembles
-gardening
-##manship
-##rup
-##stituting
-1640
-harvesting
-topography
-jing
-shifters
-dormitory
-##carriage
-##lston
-ist
-skulls
-##stadt
-dolores
-jewellery
-sarawak
-##wai
-##zier
-fences
-christy
-confinement
-tumbling
-credibility
-fir
-stench
-##bria
-##plication
-##nged
-##sam
-virtues
-##belt
-marjorie
-pba
-##eem
-##made
-celebrates
-schooner
-agitated
-barley
-fulfilling
-anthropologist
-##pro
-restrict
-novi
-regulating
-##nent
-padres
-##rani
-##hesive
-loyola
-tabitha
-milky
-olson
-proprietor
-crambidae
-guarantees
-intercollegiate
-ljubljana
-hilda
-##sko
-ignorant
-hooded
-##lts
-sardinia
-##lidae
-##vation
-frontman
-privileged
-witchcraft
-##gp
-jammed
-laude
-poking
-##than
-bracket
-amazement
-yunnan
-##erus
-maharaja
-linnaeus
-264
-commissioning
-milano
-peacefully
-##logies
-akira
-rani
-regulator
-##36
-grasses
-##rance
-luzon
-crows
-compiler
-gretchen
-seaman
-edouard
-tab
-buccaneers
-ellington
-hamlets
-whig
-socialists
-##anto
-directorial
-easton
-mythological
-##kr
-##vary
-rhineland
-semantic
-taut
-dune
-inventions
-succeeds
-##iter
-replication
-branched
-##pired
-jul
-prosecuted
-kangaroo
-penetrated
-##avian
-middlesbrough
-doses
-bleak
-madam
-predatory
-relentless
-##vili
-reluctance
-##vir
-hailey
-crore
-silvery
-1759
-monstrous
-swimmers
-transmissions
-hawthorn
-informing
-##eral
-toilets
-caracas
-crouch
-kb
-##sett
-295
-cartel
-hadley
-##aling
-alexia
-yvonne
-##biology
-cinderella
-eton
-superb
-blizzard
-stabbing
-industrialist
-maximus
-##gm
-##orus
-groves
-maud
-clade
-oversized
-comedic
-##bella
-rosen
-nomadic
-fulham
-montane
-beverages
-galaxies
-redundant
-swarm
-##rot
-##folia
-##llis
-buckinghamshire
-fen
-bearings
-bahadur
-##rom
-gilles
-phased
-dynamite
-faber
-benoit
-vip
-##ount
-##wd
-booking
-fractured
-tailored
-anya
-spices
-westwood
-cairns
-auditions
-inflammation
-steamed
-##rocity
-##acion
-##urne
-skyla
-thereof
-watford
-torment
-archdeacon
-transforms
-lulu
-demeanor
-fucked
-serge
-##sor
-mckenna
-minas
-entertainer
-##icide
-caress
-originate
-residue
-##sty
-1740
-##ilised
-##org
-beech
-##wana
-subsidies
-##ghton
-emptied
-gladstone
-ru
-firefighters
-voodoo
-##rcle
-het
-nightingale
-tamara
-edmond
-ingredient
-weaknesses
-silhouette
-285
-compatibility
-withdrawing
-hampson
-##mona
-anguish
-giggling
-##mber
-bookstore
-##jiang
-southernmost
-tilting
-##vance
-bai
-economical
-rf
-briefcase
-dreadful
-hinted
-projections
-shattering
-totaling
-##rogate
-analogue
-indicted
-periodical
-fullback
-##dman
-haynes
-##tenberg
-##ffs
-##ishment
-1745
-thirst
-stumble
-penang
-vigorous
-##ddling
-##kor
-##lium
-octave
-##ove
-##enstein
-##inen
-##ones
-siberian
-##uti
-cbn
-repeal
-swaying
-##vington
-khalid
-tanaka
-unicorn
-otago
-plastered
-lobe
-riddle
-##rella
-perch
-##ishing
-croydon
-filtered
-graeme
-tripoli
-##ossa
-crocodile
-##chers
-sufi
-mined
-##tung
-inferno
-lsu
-##phi
-swelled
-utilizes
-£2
-cale
-periodicals
-styx
-hike
-informally
-coop
-lund
-##tidae
-ala
-hen
-qui
-transformations
-disposed
-sheath
-chickens
-##cade
-fitzroy
-sas
-silesia
-unacceptable
-odisha
-1650
-sabrina
-pe
-spokane
-ratios
-athena
-massage
-shen
-dilemma
-##drum
-##riz
-##hul
-corona
-doubtful
-niall
-##pha
-##bino
-fines
-cite
-acknowledging
-bangor
-ballard
-bathurst
-##resh
-huron
-mustered
-alzheimer
-garments
-kinase
-tyre
-warship
-##cp
-flashback
-pulmonary
-braun
-cheat
-kamal
-cyclists
-constructions
-grenades
-ndp
-traveller
-excuses
-stomped
-signalling
-trimmed
-futsal
-mosques
-relevance
-##wine
-wta
-##23
-##vah
-##lter
-hoc
-##riding
-optimistic
-##´s
-deco
-sim
-interacting
-rejecting
-moniker
-waterways
-##ieri
-##oku
-mayors
-gdansk
-outnumbered
-pearls
-##ended
-##hampton
-fairs
-totals
-dominating
-262
-notions
-stairway
-compiling
-pursed
-commodities
-grease
-yeast
-##jong
-carthage
-griffiths
-residual
-amc
-contraction
-laird
-sapphire
-##marine
-##ivated
-amalgamation
-dissolve
-inclination
-lyle
-packaged
-altitudes
-suez
-canons
-graded
-lurched
-narrowing
-boasts
-guise
-wed
-enrico
-##ovsky
-rower
-scarred
-bree
-cub
-iberian
-protagonists
-bargaining
-proposing
-trainers
-voyages
-vans
-fishes
-##aea
-##ivist
-##verance
-encryption
-artworks
-kazan
-sabre
-cleopatra
-hepburn
-rotting
-supremacy
-mecklenburg
-##brate
-burrows
-hazards
-outgoing
-flair
-organizes
-##ctions
-scorpion
-##usions
-boo
-234
-chevalier
-dunedin
-slapping
-##34
-ineligible
-pensions
-##38
-##omic
-manufactures
-emails
-bismarck
-238
-weakening
-blackish
-ding
-mcgee
-quo
-##rling
-northernmost
-xx
-manpower
-greed
-sampson
-clicking
-##ange
-##horpe
-##inations
-##roving
-torre
-##eptive
-##moral
-symbolism
-38th
-asshole
-meritorious
-outfits
-splashed
-biographies
-sprung
-astros
-##tale
-302
-737
-filly
-raoul
-nw
-tokugawa
-linden
-clubhouse
-##apa
-tracts
-romano
-##pio
-putin
-tags
-##note
-chained
-dickson
-gunshot
-moe
-gunn
-rashid
-##tails
-zipper
-##bas
-##nea
-contrasted
-##ply
-##udes
-plum
-pharaoh
-##pile
-aw
-comedies
-ingrid
-sandwiches
-subdivisions
-1100
-mariana
-nokia
-kamen
-hz
-delaney
-veto
-herring
-##words
-possessive
-outlines
-##roup
-siemens
-stairwell
-rc
-gallantry
-messiah
-palais
-yells
-233
-zeppelin
-##dm
-bolivar
-##cede
-smackdown
-mckinley
-##mora
-##yt
-muted
-geologic
-finely
-unitary
-avatar
-hamas
-maynard
-rees
-bog
-contrasting
-##rut
-liv
-chico
-disposition
-pixel
-##erate
-becca
-dmitry
-yeshiva
-narratives
-##lva
-##ulton
-mercenary
-sharpe
-tempered
-navigate
-stealth
-amassed
-keynes
-##lini
-untouched
-##rrie
-havoc
-lithium
-##fighting
-abyss
-graf
-southward
-wolverine
-balloons
-implements
-ngos
-transitions
-##icum
-ambushed
-concacaf
-dormant
-economists
-##dim
-costing
-csi
-rana
-universite
-boulders
-verity
-##llon
-collin
-mellon
-misses
-cypress
-fluorescent
-lifeless
-spence
-##ulla
-crewe
-shepard
-pak
-revelations
-##م
-jolly
-gibbons
-paw
-##dro
-##quel
-freeing
-##test
-shack
-fries
-palatine
-##51
-##hiko
-accompaniment
-cruising
-recycled
-##aver
-erwin
-sorting
-synthesizers
-dyke
-realities
-sg
-strides
-enslaved
-wetland
-##ghan
-competence
-gunpowder
-grassy
-maroon
-reactors
-objection
-##oms
-carlson
-gearbox
-macintosh
-radios
-shelton
-##sho
-clergyman
-prakash
-254
-mongols
-trophies
-oricon
-228
-stimuli
-twenty20
-cantonese
-cortes
-mirrored
-##saurus
-bhp
-cristina
-melancholy
-##lating
-enjoyable
-nuevo
-##wny
-downfall
-schumacher
-##ind
-banging
-lausanne
-rumbled
-paramilitary
-reflex
-ax
-amplitude
-migratory
-##gall
-##ups
-midi
-barnard
-lastly
-sherry
-##hp
-##nall
-keystone
-##kra
-carleton
-slippery
-##53
-coloring
-foe
-socket
-otter
-##rgos
-mats
-##tose
-consultants
-bafta
-bison
-topping
-##km
-490
-primal
-abandonment
-transplant
-atoll
-hideous
-mort
-pained
-reproduced
-tae
-howling
-##turn
-unlawful
-billionaire
-hotter
-poised
-lansing
-##chang
-dinamo
-retro
-messing
-nfc
-domesday
-##mina
-blitz
-timed
-##athing
-##kley
-ascending
-gesturing
-##izations
-signaled
-tis
-chinatown
-mermaid
-savanna
-jameson
-##aint
-catalina
-##pet
-##hers
-cochrane
-cy
-chatting
-##kus
-alerted
-computation
-mused
-noelle
-majestic
-mohawk
-campo
-octagonal
-##sant
-##hend
-241
-aspiring
-##mart
-comprehend
-iona
-paralyzed
-shimmering
-swindon
-rhone
-##eley
-reputed
-configurations
-pitchfork
-agitation
-francais
-gillian
-lipstick
-##ilo
-outsiders
-pontifical
-resisting
-bitterness
-sewer
-rockies
-##edd
-##ucher
-misleading
-1756
-exiting
-galloway
-##nging
-risked
-##heart
-246
-commemoration
-schultz
-##rka
-integrating
-##rsa
-poses
-shrieked
-##weiler
-guineas
-gladys
-jerking
-owls
-goldsmith
-nightly
-penetrating
-##unced
-lia
-##33
-ignited
-betsy
-##aring
-##thorpe
-follower
-vigorously
-##rave
-coded
-kiran
-knit
-zoology
-tbilisi
-##28
-##bered
-repository
-govt
-deciduous
-dino
-growling
-##bba
-enhancement
-unleashed
-chanting
-pussy
-biochemistry
-##eric
-kettle
-repression
-toxicity
-nrhp
-##arth
-##kko
-##bush
-ernesto
-commended
-outspoken
-242
-mca
-parchment
-sms
-kristen
-##aton
-bisexual
-raked
-glamour
-navajo
-a2
-conditioned
-showcased
-##hma
-spacious
-youthful
-##esa
-usl
-appliances
-junta
-brest
-layne
-conglomerate
-enchanted
-chao
-loosened
-picasso
-circulating
-inspect
-montevideo
-##centric
-##kti
-piazza
-spurred
-##aith
-bari
-freedoms
-poultry
-stamford
-lieu
-##ect
-indigo
-sarcastic
-bahia
-stump
-attach
-dvds
-frankenstein
-lille
-approx
-scriptures
-pollen
-##script
-nmi
-overseen
-##ivism
-tides
-proponent
-newmarket
-inherit
-milling
-##erland
-centralized
-##rou
-distributors
-credentials
-drawers
-abbreviation
-##lco
-##xon
-downing
-uncomfortably
-ripe
-##oes
-erase
-franchises
-##ever
-populace
-##bery
-##khar
-decomposition
-pleas
-##tet
-daryl
-sabah
-##stle
-##wide
-fearless
-genie
-lesions
-annette
-##ogist
-oboe
-appendix
-nair
-dripped
-petitioned
-maclean
-mosquito
-parrot
-rpg
-hampered
-1648
-operatic
-reservoirs
-##tham
-irrelevant
-jolt
-summarized
-##fp
-medallion
-##taff
-##−
-clawed
-harlow
-narrower
-goddard
-marcia
-bodied
-fremont
-suarez
-altering
-tempest
-mussolini
-porn
-##isms
-sweetly
-oversees
-walkers
-solitude
-grimly
-shrines
-hk
-ich
-supervisors
-hostess
-dietrich
-legitimacy
-brushes
-expressive
-##yp
-dissipated
-##rse
-localized
-systemic
-##nikov
-gettysburg
-##js
-##uaries
-dialogues
-muttering
-251
-housekeeper
-sicilian
-discouraged
-##frey
-beamed
-kaladin
-halftime
-kidnap
-##amo
-##llet
-1754
-synonymous
-depleted
-instituto
-insulin
-reprised
-##opsis
-clashed
-##ctric
-interrupting
-radcliffe
-insisting
-medici
-1715
-ejected
-playfully
-turbulent
-##47
-starvation
-##rini
-shipment
-rebellious
-petersen
-verification
-merits
-##rified
-cakes
-##charged
-1757
-milford
-shortages
-spying
-fidelity
-##aker
-emitted
-storylines
-harvested
-seismic
-##iform
-cheung
-kilda
-theoretically
-barbie
-lynx
-##rgy
-##tius
-goblin
-mata
-poisonous
-##nburg
-reactive
-residues
-obedience
-##евич
-conjecture
-##rac
-401
-hating
-sixties
-kicker
-moaning
-motown
-##bha
-emancipation
-neoclassical
-##hering
-consoles
-ebert
-professorship
-##tures
-sustaining
-assaults
-obeyed
-affluent
-incurred
-tornadoes
-##eber
-##zow
-emphasizing
-highlanders
-cheated
-helmets
-##ctus
-internship
-terence
-bony
-executions
-legislators
-berries
-peninsular
-tinged
-##aco
-1689
-amplifier
-corvette
-ribbons
-lavish
-pennant
-##lander
-worthless
-##chfield
-##forms
-mariano
-pyrenees
-expenditures
-##icides
-chesterfield
-mandir
-tailor
-39th
-sergey
-nestled
-willed
-aristocracy
-devotees
-goodnight
-raaf
-rumored
-weaponry
-remy
-appropriations
-harcourt
-burr
-riaa
-##lence
-limitation
-unnoticed
-guo
-soaking
-swamps
-##tica
-collapsing
-tatiana
-descriptive
-brigham
-psalm
-##chment
-maddox
-##lization
-patti
-caliph
-##aja
-akron
-injuring
-serra
-##ganj
-basins
-##sari
-astonished
-launcher
-##church
-hilary
-wilkins
-sewing
-##sf
-stinging
-##fia
-##ncia
-underwood
-startup
-##ition
-compilations
-vibrations
-embankment
-jurist
-##nity
-bard
-juventus
-groundwater
-kern
-palaces
-helium
-boca
-cramped
-marissa
-soto
-##worm
-jae
-princely
-##ggy
-faso
-bazaar
-warmly
-##voking
-229
-pairing
-##lite
-##grate
-##nets
-wien
-freaked
-ulysses
-rebirth
-##alia
-##rent
-mummy
-guzman
-jimenez
-stilled
-##nitz
-trajectory
-tha
-woken
-archival
-professions
-##pts
-##pta
-hilly
-shadowy
-shrink
-##bolt
-norwood
-glued
-migrate
-stereotypes
-devoid
-##pheus
-625
-evacuate
-horrors
-infancy
-gotham
-knowles
-optic
-downloaded
-sachs
-kingsley
-parramatta
-darryl
-mor
-##onale
-shady
-commence
-confesses
-kan
-##meter
-##placed
-marlborough
-roundabout
-regents
-frigates
-io
-##imating
-gothenburg
-revoked
-carvings
-clockwise
-convertible
-intruder
-##sche
-banged
-##ogo
-vicky
-bourgeois
-##mony
-dupont
-footing
-##gum
-pd
-##real
-buckle
-yun
-penthouse
-sane
-720
-serviced
-stakeholders
-neumann
-bb
-##eers
-comb
-##gam
-catchment
-pinning
-rallies
-typing
-##elles
-forefront
-freiburg
-sweetie
-giacomo
-widowed
-goodwill
-worshipped
-aspirations
-midday
-##vat
-fishery
-##trick
-bournemouth
-turk
-243
-hearth
-ethanol
-guadalajara
-murmurs
-sl
-##uge
-afforded
-scripted
-##hta
-wah
-##jn
-coroner
-translucent
-252
-memorials
-puck
-progresses
-clumsy
-##race
-315
-candace
-recounted
-##27
-##slin
-##uve
-filtering
-##mac
-howl
-strata
-heron
-leveled
-##ays
-dubious
-##oja
-##т
-##wheel
-citations
-exhibiting
-##laya
-##mics
-##pods
-turkic
-##lberg
-injunction
-##ennial
-##mit
-antibodies
-##44
-organise
-##rigues
-cardiovascular
-cushion
-inverness
-##zquez
-dia
-cocoa
-sibling
-##tman
-##roid
-expanse
-feasible
-tunisian
-algiers
-##relli
-rus
-bloomberg
-dso
-westphalia
-bro
-tacoma
-281
-downloads
-##ours
-konrad
-duran
-##hdi
-continuum
-jett
-compares
-legislator
-secession
-##nable
-##gues
-##zuka
-translating
-reacher
-##gley
-##ła
-aleppo
-##agi
-tc
-orchards
-trapping
-linguist
-versatile
-drumming
-postage
-calhoun
-superiors
-##mx
-barefoot
-leary
-##cis
-ignacio
-alfa
-kaplan
-##rogen
-bratislava
-mori
-##vot
-disturb
-haas
-313
-cartridges
-gilmore
-radiated
-salford
-tunic
-hades
-##ulsive
-archeological
-delilah
-magistrates
-auditioned
-brewster
-charters
-empowerment
-blogs
-cappella
-dynasties
-iroquois
-whipping
-##krishna
-raceway
-truths
-myra
-weaken
-judah
-mcgregor
-##horse
-mic
-refueling
-37th
-burnley
-bosses
-markus
-premio
-query
-##gga
-dunbar
-##economic
-darkest
-lyndon
-sealing
-commendation
-reappeared
-##mun
-addicted
-ezio
-slaughtered
-satisfactory
-shuffle
-##eves
-##thic
-##uj
-fortification
-warrington
-##otto
-resurrected
-fargo
-mane
-##utable
-##lei
-##space
-foreword
-ox
-##aris
-##vern
-abrams
-hua
-##mento
-sakura
-##alo
-uv
-sentimental
-##skaya
-midfield
-##eses
-sturdy
-scrolls
-macleod
-##kyu
-entropy
-##lance
-mitochondrial
-cicero
-excelled
-thinner
-convoys
-perceive
-##oslav
-##urable
-systematically
-grind
-burkina
-287
-##tagram
-ops
-##aman
-guantanamo
-##cloth
-##tite
-forcefully
-wavy
-##jou
-pointless
-##linger
-##tze
-layton
-portico
-superficial
-clerical
-outlaws
-##hism
-burials
-muir
-##inn
-creditors
-hauling
-rattle
-##leg
-calais
-monde
-archers
-reclaimed
-dwell
-wexford
-hellenic
-falsely
-remorse
-##tek
-dough
-furnishings
-##uttered
-gabon
-neurological
-novice
-##igraphy
-contemplated
-pulpit
-nightstand
-saratoga
-##istan
-documenting
-pulsing
-taluk
-##firmed
-busted
-marital
-##rien
-disagreements
-wasps
-##yes
-hodge
-mcdonnell
-mimic
-fran
-pendant
-dhabi
-musa
-##nington
-congratulations
-argent
-darrell
-concussion
-losers
-regrets
-thessaloniki
-reversal
-donaldson
-hardwood
-thence
-achilles
-ritter
-##eran
-demonic
-jurgen
-prophets
-goethe
-eki
-classmate
-buff
-##cking
-yank
-irrational
-##inging
-perished
-seductive
-qur
-sourced
-##crat
-##typic
-mustard
-ravine
-barre
-horizontally
-characterization
-phylogenetic
-boise
-##dit
-##runner
-##tower
-brutally
-intercourse
-seduce
-##bbing
-fay
-ferris
-ogden
-amar
-nik
-unarmed
-##inator
-evaluating
-kyrgyzstan
-sweetness
-##lford
-##oki
-mccormick
-meiji
-notoriety
-stimulate
-disrupt
-figuring
-instructional
-mcgrath
-##zoo
-groundbreaking
-##lto
-flinch
-khorasan
-agrarian
-bengals
-mixer
-radiating
-##sov
-ingram
-pitchers
-nad
-tariff
-##cript
-tata
-##codes
-##emi
-##ungen
-appellate
-lehigh
-##bled
-##giri
-brawl
-duct
-texans
-##ciation
-##ropolis
-skipper
-speculative
-vomit
-doctrines
-stresses
-253
-davy
-graders
-whitehead
-jozef
-timely
-cumulative
-haryana
-paints
-appropriately
-boon
-cactus
-##ales
-##pid
-dow
-legions
-##pit
-perceptions
-1730
-picturesque
-##yse
-periphery
-rune
-wr
-##aha
-celtics
-sentencing
-whoa
-##erin
-confirms
-variance
-425
-moines
-mathews
-spade
-rave
-m1
-fronted
-fx
-blending
-alleging
-reared
-##gl
-237
-##paper
-grassroots
-eroded
-##free
-##physical
-directs
-ordeal
-##sław
-accelerate
-hacker
-rooftop
-##inia
-lev
-buys
-cebu
-devote
-##lce
-specialising
-##ulsion
-choreographed
-repetition
-warehouses
-##ryl
-paisley
-tuscany
-analogy
-sorcerer
-hash
-huts
-shards
-descends
-exclude
-nix
-chaplin
-gaga
-ito
-vane
-##drich
-causeway
-misconduct
-limo
-orchestrated
-glands
-jana
-##kot
-u2
-##mple
-##sons
-branching
-contrasts
-scoop
-longed
-##virus
-chattanooga
-##75
-syrup
-cornerstone
-##tized
-##mind
-##iaceae
-careless
-precedence
-frescoes
-##uet
-chilled
-consult
-modelled
-snatch
-peat
-##thermal
-caucasian
-humane
-relaxation
-spins
-temperance
-##lbert
-occupations
-lambda
-hybrids
-moons
-mp3
-##oese
-247
-rolf
-societal
-yerevan
-ness
-##ssler
-befriended
-mechanized
-nominate
-trough
-boasted
-cues
-seater
-##hom
-bends
-##tangle
-conductors
-emptiness
-##lmer
-eurasian
-adriatic
-tian
-##cie
-anxiously
-lark
-propellers
-chichester
-jock
-ev
-2a
-##holding
-credible
-recounts
-tori
-loyalist
-abduction
-##hoot
-##redo
-nepali
-##mite
-ventral
-tempting
-##ango
-##crats
-steered
-##wice
-javelin
-dipping
-laborers
-prentice
-looming
-titanium
-##ː
-badges
-emir
-tensor
-##ntation
-egyptians
-rash
-denies
-hawthorne
-lombard
-showers
-wehrmacht
-dietary
-trojan
-##reus
-welles
-executing
-horseshoe
-lifeboat
-##lak
-elsa
-infirmary
-nearing
-roberta
-boyer
-mutter
-trillion
-joanne
-##fine
-##oked
-sinks
-vortex
-uruguayan
-clasp
-sirius
-##block
-accelerator
-prohibit
-sunken
-byu
-chronological
-diplomats
-ochreous
-510
-symmetrical
-1644
-maia
-##tology
-salts
-reigns
-atrocities
-##ия
-hess
-bared
-issn
-##vyn
-cater
-saturated
-##cycle
-##isse
-sable
-voyager
-dyer
-yusuf
-##inge
-fountains
-wolff
-##39
-##nni
-engraving
-rollins
-atheist
-ominous
-##ault
-herr
-chariot
-martina
-strung
-##fell
-##farlane
-horrific
-sahib
-gazes
-saetan
-erased
-ptolemy
-##olic
-flushing
-lauderdale
-analytic
-##ices
-530
-navarro
-beak
-gorilla
-herrera
-broom
-guadalupe
-raiding
-sykes
-311
-bsc
-deliveries
-1720
-invasions
-carmichael
-tajikistan
-thematic
-ecumenical
-sentiments
-onstage
-##rians
-##brand
-##sume
-catastrophic
-flanks
-molten
-##arns
-waller
-aimee
-terminating
-##icing
-alternately
-##oche
-nehru
-printers
-outraged
-##eving
-empires
-template
-banners
-repetitive
-za
-##oise
-vegetarian
-##tell
-guiana
-opt
-cavendish
-lucknow
-synthesized
-##hani
-##mada
-finalized
-##ctable
-fictitious
-mayoral
-unreliable
-##enham
-embracing
-peppers
-rbis
-##chio
-##neo
-inhibition
-slashed
-togo
-orderly
-embroidered
-safari
-salty
-236
-barron
-benito
-totaled
-##dak
-pubs
-simulated
-caden
-devin
-tolkien
-momma
-welding
-sesame
-##ept
-gottingen
-hardness
-630
-shaman
-temeraire
-620
-adequately
-pediatric
-##kit
-ck
-assertion
-radicals
-composure
-cadence
-seafood
-beaufort
-lazarus
-mani
-warily
-cunning
-kurdistan
-249
-cantata
-##kir
-ares
-##41
-##clusive
-nape
-townland
-geared
-insulted
-flutter
-boating
-violate
-draper
-dumping
-malmo
-##hh
-##romatic
-firearm
-alta
-bono
-obscured
-##clave
-exceeds
-panorama
-unbelievable
-##train
-preschool
-##essed
-disconnected
-installing
-rescuing
-secretaries
-accessibility
-##castle
-##drive
-##ifice
-##film
-bouts
-slug
-waterway
-mindanao
-##buro
-##ratic
-halves
-##ل
-calming
-liter
-maternity
-adorable
-bragg
-electrification
-mcc
-##dote
-roxy
-schizophrenia
-##body
-munoz
-kaye
-whaling
-239
-mil
-tingling
-tolerant
-##ago
-unconventional
-volcanoes
-##finder
-deportivo
-##llie
-robson
-kaufman
-neuroscience
-wai
-deportation
-masovian
-scraping
-converse
-##bh
-hacking
-bulge
-##oun
-administratively
-yao
-580
-amp
-mammoth
-booster
-claremont
-hooper
-nomenclature
-pursuits
-mclaughlin
-melinda
-##sul
-catfish
-barclay
-substrates
-taxa
-zee
-originals
-kimberly
-packets
-padma
-##ality
-borrowing
-ostensibly
-solvent
-##bri
-##genesis
-##mist
-lukas
-shreveport
-veracruz
-##ь
-##lou
-##wives
-cheney
-tt
-anatolia
-hobbs
-##zyn
-cyclic
-radiant
-alistair
-greenish
-siena
-dat
-independents
-##bation
-conform
-pieter
-hyper
-applicant
-bradshaw
-spores
-telangana
-vinci
-inexpensive
-nuclei
-322
-jang
-nme
-soho
-spd
-##ign
-cradled
-receptionist
-pow
-##43
-##rika
-fascism
-##ifer
-experimenting
-##ading
-##iec
-##region
-345
-jocelyn
-maris
-stair
-nocturnal
-toro
-constabulary
-elgin
-##kker
-msc
-##giving
-##schen
-##rase
-doherty
-doping
-sarcastically
-batter
-maneuvers
-##cano
-##apple
-##gai
-##git
-intrinsic
-##nst
-##stor
-1753
-showtime
-cafes
-gasps
-lviv
-ushered
-##thed
-fours
-restart
-astonishment
-transmitting
-flyer
-shrugs
-##sau
-intriguing
-cones
-dictated
-mushrooms
-medial
-##kovsky
-##elman
-escorting
-gaped
-##26
-godfather
-##door
-##sell
-djs
-recaptured
-timetable
-vila
-1710
-3a
-aerodrome
-mortals
-scientology
-##orne
-angelina
-mag
-convection
-unpaid
-insertion
-intermittent
-lego
-##nated
-endeavor
-kota
-pereira
-##lz
-304
-bwv
-glamorgan
-insults
-agatha
-fey
-##cend
-fleetwood
-mahogany
-protruding
-steamship
-zeta
-##arty
-mcguire
-suspense
-##sphere
-advising
-urges
-##wala
-hurriedly
-meteor
-gilded
-inline
-arroyo
-stalker
-##oge
-excitedly
-revered
-##cure
-earle
-introductory
-##break
-##ilde
-mutants
-puff
-pulses
-reinforcement
-##haling
-curses
-lizards
-stalk
-correlated
-##fixed
-fallout
-macquarie
-##unas
-bearded
-denton
-heaving
-802
-##ocation
-winery
-assign
-dortmund
-##lkirk
-everest
-invariant
-charismatic
-susie
-##elling
-bled
-lesley
-telegram
-sumner
-bk
-##ogen
-##к
-wilcox
-needy
-colbert
-duval
-##iferous
-##mbled
-allotted
-attends
-imperative
-##hita
-replacements
-hawker
-##inda
-insurgency
-##zee
-##eke
-casts
-##yla
-680
-ives
-transitioned
-##pack
-##powering
-authoritative
-baylor
-flex
-cringed
-plaintiffs
-woodrow
-##skie
-drastic
-ape
-aroma
-unfolded
-commotion
-nt
-preoccupied
-theta
-routines
-lasers
-privatization
-wand
-domino
-ek
-clenching
-nsa
-strategically
-showered
-bile
-handkerchief
-pere
-storing
-christophe
-insulting
-316
-nakamura
-romani
-asiatic
-magdalena
-palma
-cruises
-stripping
-405
-konstantin
-soaring
-##berman
-colloquially
-forerunner
-havilland
-incarcerated
-parasites
-sincerity
-##utus
-disks
-plank
-saigon
-##ining
-corbin
-homo
-ornaments
-powerhouse
-##tlement
-chong
-fastened
-feasibility
-idf
-morphological
-usable
-##nish
-##zuki
-aqueduct
-jaguars
-keepers
-##flies
-aleksandr
-faust
-assigns
-ewing
-bacterium
-hurled
-tricky
-hungarians
-integers
-wallis
-321
-yamaha
-##isha
-hushed
-oblivion
-aviator
-evangelist
-friars
-##eller
-monograph
-ode
-##nary
-airplanes
-labourers
-charms
-##nee
-1661
-hagen
-tnt
-rudder
-fiesta
-transcript
-dorothea
-ska
-inhibitor
-maccabi
-retorted
-raining
-encompassed
-clauses
-menacing
-1642
-lineman
-##gist
-vamps
-##ape
-##dick
-gloom
-##rera
-dealings
-easing
-seekers
-##nut
-##pment
-helens
-unmanned
-##anu
-##isson
-basics
-##amy
-##ckman
-adjustments
-1688
-brutality
-horne
-##zell
-sui
-##55
-##mable
-aggregator
-##thal
-rhino
-##drick
-##vira
-counters
-zoom
-##01
-##rting
-mn
-montenegrin
-packard
-##unciation
-##♭
-##kki
-reclaim
-scholastic
-thugs
-pulsed
-##icia
-syriac
-quan
-saddam
-banda
-kobe
-blaming
-buddies
-dissent
-##lusion
-##usia
-corbett
-jaya
-delle
-erratic
-lexie
-##hesis
-435
-amiga
-hermes
-##pressing
-##leen
-chapels
-gospels
-jamal
-##uating
-compute
-revolving
-warp
-##sso
-##thes
-armory
-##eras
-##gol
-antrim
-loki
-##kow
-##asian
-##good
-##zano
-braid
-handwriting
-subdistrict
-funky
-pantheon
-##iculate
-concurrency
-estimation
-improper
-juliana
-##his
-newcomers
-johnstone
-staten
-communicated
-##oco
-##alle
-sausage
-stormy
-##stered
-##tters
-superfamily
-##grade
-acidic
-collateral
-tabloid
-##oped
-##rza
-bladder
-austen
-##ellant
-mcgraw
-##hay
-hannibal
-mein
-aquino
-lucifer
-wo
-badger
-boar
-cher
-christensen
-greenberg
-interruption
-##kken
-jem
-244
-mocked
-bottoms
-cambridgeshire
-##lide
-sprawling
-##bbly
-eastwood
-ghent
-synth
-##buck
-advisers
-##bah
-nominally
-hapoel
-qu
-daggers
-estranged
-fabricated
-towels
-vinnie
-wcw
-misunderstanding
-anglia
-nothin
-unmistakable
-##dust
-##lova
-chilly
-marquette
-truss
-##edge
-##erine
-reece
-##lty
-##chemist
-##connected
-272
-308
-41st
-bash
-raion
-waterfalls
-##ump
-##main
-labyrinth
-queue
-theorist
-##istle
-bharatiya
-flexed
-soundtracks
-rooney
-leftist
-patrolling
-wharton
-plainly
-alleviate
-eastman
-schuster
-topographic
-engages
-immensely
-unbearable
-fairchild
-1620
-dona
-lurking
-parisian
-oliveira
-ia
-indictment
-hahn
-bangladeshi
-##aster
-vivo
-##uming
-##ential
-antonia
-expects
-indoors
-kildare
-harlan
-##logue
-##ogenic
-##sities
-forgiven
-##wat
-childish
-tavi
-##mide
-##orra
-plausible
-grimm
-successively
-scooted
-##bola
-##dget
-##rith
-spartans
-emery
-flatly
-azure
-epilogue
-##wark
-flourish
-##iny
-##tracted
-##overs
-##oshi
-bestseller
-distressed
-receipt
-spitting
-hermit
-topological
-##cot
-drilled
-subunit
-francs
-##layer
-eel
-##fk
-##itas
-octopus
-footprint
-petitions
-ufo
-##say
-##foil
-interfering
-leaking
-palo
-##metry
-thistle
-valiant
-##pic
-narayan
-mcpherson
-##fast
-gonzales
-##ym
-##enne
-dustin
-novgorod
-solos
-##zman
-doin
-##raph
-##patient
-##meyer
-soluble
-ashland
-cuffs
-carole
-pendleton
-whistling
-vassal
-##river
-deviation
-revisited
-constituents
-rallied
-rotate
-loomed
-##eil
-##nting
-amateurs
-augsburg
-auschwitz
-crowns
-skeletons
-##cona
-bonnet
-257
-dummy
-globalization
-simeon
-sleeper
-mandal
-differentiated
-##crow
-##mare
-milne
-bundled
-exasperated
-talmud
-owes
-segregated
-##feng
-##uary
-dentist
-piracy
-props
-##rang
-devlin
-##torium
-malicious
-paws
-##laid
-dependency
-##ergy
-##fers
-##enna
-258
-pistons
-rourke
-jed
-grammatical
-tres
-maha
-wig
-512
-ghostly
-jayne
-##achal
-##creen
-##ilis
-##lins
-##rence
-designate
-##with
-arrogance
-cambodian
-clones
-showdown
-throttle
-twain
-##ception
-lobes
-metz
-nagoya
-335
-braking
-##furt
-385
-roaming
-##minster
-amin
-crippled
-##37
-##llary
-indifferent
-hoffmann
-idols
-intimidating
-1751
-261
-influenza
-memo
-onions
-1748
-bandage
-consciously
-##landa
-##rage
-clandestine
-observes
-swiped
-tangle
-##ener
-##jected
-##trum
-##bill
-##lta
-hugs
-congresses
-josiah
-spirited
-##dek
-humanist
-managerial
-filmmaking
-inmate
-rhymes
-debuting
-grimsby
-ur
-##laze
-duplicate
-vigor
-##tf
-republished
-bolshevik
-refurbishment
-antibiotics
-martini
-methane
-newscasts
-royale
-horizons
-levant
-iain
-visas
-##ischen
-paler
-##around
-manifestation
-snuck
-alf
-chop
-futile
-pedestal
-rehab
-##kat
-bmg
-kerman
-res
-fairbanks
-jarrett
-abstraction
-saharan
-##zek
-1746
-procedural
-clearer
-kincaid
-sash
-luciano
-##ffey
-crunch
-helmut
-##vara
-revolutionaries
-##tute
-creamy
-leach
-##mmon
-1747
-permitting
-nes
-plight
-wendell
-##lese
-contra
-ts
-clancy
-ipa
-mach
-staples
-autopsy
-disturbances
-nueva
-karin
-pontiac
-##uding
-proxy
-venerable
-haunt
-leto
-bergman
-expands
-##helm
-wal
-##pipe
-canning
-celine
-cords
-obesity
-##enary
-intrusion
-planner
-##phate
-reasoned
-sequencing
-307
-harrow
-##chon
-##dora
-marred
-mcintyre
-repay
-tarzan
-darting
-248
-harrisburg
-margarita
-repulsed
-##hur
-##lding
-belinda
-hamburger
-novo
-compliant
-runways
-bingham
-registrar
-skyscraper
-ic
-cuthbert
-improvisation
-livelihood
-##corp
-##elial
-admiring
-##dened
-sporadic
-believer
-casablanca
-popcorn
-##29
-asha
-shovel
-##bek
-##dice
-coiled
-tangible
-##dez
-casper
-elsie
-resin
-tenderness
-rectory
-##ivision
-avail
-sonar
-##mori
-boutique
-##dier
-guerre
-bathed
-upbringing
-vaulted
-sandals
-blessings
-##naut
-##utnant
-1680
-306
-foxes
-pia
-corrosion
-hesitantly
-confederates
-crystalline
-footprints
-shapiro
-tirana
-valentin
-drones
-45th
-microscope
-shipments
-texted
-inquisition
-wry
-guernsey
-unauthorized
-resigning
-760
-ripple
-schubert
-stu
-reassure
-felony
-##ardo
-brittle
-koreans
-##havan
-##ives
-dun
-implicit
-tyres
-##aldi
-##lth
-magnolia
-##ehan
-##puri
-##poulos
-aggressively
-fei
-gr
-familiarity
-##poo
-indicative
-##trust
-fundamentally
-jimmie
-overrun
-395
-anchors
-moans
-##opus
-britannia
-armagh
-##ggle
-purposely
-seizing
-##vao
-bewildered
-mundane
-avoidance
-cosmopolitan
-geometridae
-quartermaster
-caf
-415
-chatter
-engulfed
-gleam
-purge
-##icate
-juliette
-jurisprudence
-guerra
-revisions
-##bn
-casimir
-brew
-##jm
-1749
-clapton
-cloudy
-conde
-hermitage
-278
-simulations
-torches
-vincenzo
-matteo
-##rill
-hidalgo
-booming
-westbound
-accomplishment
-tentacles
-unaffected
-##sius
-annabelle
-flopped
-sloping
-##litz
-dreamer
-interceptor
-vu
-##loh
-consecration
-copying
-messaging
-breaker
-climates
-hospitalized
-1752
-torino
-afternoons
-winfield
-witnessing
-##teacher
-breakers
-choirs
-sawmill
-coldly
-##ege
-sipping
-haste
-uninhabited
-conical
-bibliography
-pamphlets
-severn
-edict
-##oca
-deux
-illnesses
-grips
-##pl
-rehearsals
-sis
-thinkers
-tame
-##keepers
-1690
-acacia
-reformer
-##osed
-##rys
-shuffling
-##iring
-##shima
-eastbound
-ionic
-rhea
-flees
-littered
-##oum
-rocker
-vomiting
-groaning
-champ
-overwhelmingly
-civilizations
-paces
-sloop
-adoptive
-##tish
-skaters
-##vres
-aiding
-mango
-##joy
-nikola
-shriek
-##ignon
-pharmaceuticals
-##mg
-tuna
-calvert
-gustavo
-stocked
-yearbook
-##urai
-##mana
-computed
-subsp
-riff
-hanoi
-kelvin
-hamid
-moors
-pastures
-summons
-jihad
-nectar
-##ctors
-bayou
-untitled
-pleasing
-vastly
-republics
-intellect
-##η
-##ulio
-##tou
-crumbling
-stylistic
-sb
-##ی
-consolation
-frequented
-h₂o
-walden
-widows
-##iens
-404
-##ignment
-chunks
-improves
-288
-grit
-recited
-##dev
-snarl
-sociological
-##arte
-##gul
-inquired
-##held
-bruise
-clube
-consultancy
-homogeneous
-hornets
-multiplication
-pasta
-prick
-savior
-##grin
-##kou
-##phile
-yoon
-##gara
-grimes
-vanishing
-cheering
-reacting
-bn
-distillery
-##quisite
-##vity
-coe
-dockyard
-massif
-##jord
-escorts
-voss
-##valent
-byte
-chopped
-hawke
-illusions
-workings
-floats
-##koto
-##vac
-kv
-annapolis
-madden
-##onus
-alvaro
-noctuidae
-##cum
-##scopic
-avenge
-steamboat
-forte
-illustrates
-erika
-##trip
-570
-dew
-nationalities
-bran
-manifested
-thirsty
-diversified
-muscled
-reborn
-##standing
-arson
-##lessness
-##dran
-##logram
-##boys
-##kushima
-##vious
-willoughby
-##phobia
-286
-alsace
-dashboard
-yuki
-##chai
-granville
-myspace
-publicized
-tricked
-##gang
-adjective
-##ater
-relic
-reorganisation
-enthusiastically
-indications
-saxe
-##lassified
-consolidate
-iec
-padua
-helplessly
-ramps
-renaming
-regulars
-pedestrians
-accents
-convicts
-inaccurate
-lowers
-mana
-##pati
-barrie
-bjp
-outta
-someplace
-berwick
-flanking
-invoked
-marrow
-sparsely
-excerpts
-clothed
-rei
-##ginal
-wept
-##straße
-##vish
-alexa
-excel
-##ptive
-membranes
-aquitaine
-creeks
-cutler
-sheppard
-implementations
-ns
-##dur
-fragrance
-budge
-concordia
-magnesium
-marcelo
-##antes
-gladly
-vibrating
-##rral
-##ggles
-montrose
-##omba
-lew
-seamus
-1630
-cocky
-##ament
-##uen
-bjorn
-##rrick
-fielder
-fluttering
-##lase
-methyl
-kimberley
-mcdowell
-reductions
-barbed
-##jic
-##tonic
-aeronautical
-condensed
-distracting
-##promising
-huffed
-##cala
-##sle
-claudius
-invincible
-missy
-pious
-balthazar
-ci
-##lang
-butte
-combo
-orson
-##dication
-myriad
-1707
-silenced
-##fed
-##rh
-coco
-netball
-yourselves
-##oza
-clarify
-heller
-peg
-durban
-etudes
-offender
-roast
-blackmail
-curvature
-##woods
-vile
-309
-illicit
-suriname
-##linson
-overture
-1685
-bubbling
-gymnast
-tucking
-##mming
-##ouin
-maldives
-##bala
-gurney
-##dda
-##eased
-##oides
-backside
-pinto
-jars
-racehorse
-tending
-##rdial
-baronetcy
-wiener
-duly
-##rke
-barbarian
-cupping
-flawed
-##thesis
-bertha
-pleistocene
-puddle
-swearing
-##nob
-##tically
-fleeting
-prostate
-amulet
-educating
-##mined
-##iti
-##tler
-75th
-jens
-respondents
-analytics
-cavaliers
-papacy
-raju
-##iente
-##ulum
-##tip
-funnel
-271
-disneyland
-##lley
-sociologist
-##iam
-2500
-faulkner
-louvre
-menon
-##dson
-276
-##ower
-afterlife
-mannheim
-peptide
-referees
-comedians
-meaningless
-##anger
-##laise
-fabrics
-hurley
-renal
-sleeps
-##bour
-##icle
-breakout
-kristin
-roadside
-animator
-clover
-disdain
-unsafe
-redesign
-##urity
-firth
-barnsley
-portage
-reset
-narrows
-268
-commandos
-expansive
-speechless
-tubular
-##lux
-essendon
-eyelashes
-smashwords
-##yad
-##bang
-##claim
-craved
-sprinted
-chet
-somme
-astor
-wrocław
-orton
-266
-bane
-##erving
-##uing
-mischief
-##amps
-##sund
-scaling
-terre
-##xious
-impairment
-offenses
-undermine
-moi
-soy
-contiguous
-arcadia
-inuit
-seam
-##tops
-macbeth
-rebelled
-##icative
-##iot
-590
-elaborated
-frs
-uniformed
-##dberg
-259
-powerless
-priscilla
-stimulated
-980
-qc
-arboretum
-frustrating
-trieste
-bullock
-##nified
-enriched
-glistening
-intern
-##adia
-locus
-nouvelle
-ollie
-ike
-lash
-starboard
-ee
-tapestry
-headlined
-hove
-rigged
-##vite
-pollock
-##yme
-thrive
-clustered
-cas
-roi
-gleamed
-olympiad
-##lino
-pressured
-regimes
-##hosis
-##lick
-ripley
-##ophone
-kickoff
-gallon
-rockwell
-##arable
-crusader
-glue
-revolutions
-scrambling
-1714
-grover
-##jure
-englishman
-aztec
-263
-contemplating
-coven
-ipad
-preach
-triumphant
-tufts
-##esian
-rotational
-##phus
-328
-falkland
-##brates
-strewn
-clarissa
-rejoin
-environmentally
-glint
-banded
-drenched
-moat
-albanians
-johor
-rr
-maestro
-malley
-nouveau
-shaded
-taxonomy
-v6
-adhere
-bunk
-airfields
-##ritan
-1741
-encompass
-remington
-tran
-##erative
-amelie
-mazda
-friar
-morals
-passions
-##zai
-breadth
-vis
-##hae
-argus
-burnham
-caressing
-insider
-rudd
-##imov
-##mini
-##rso
-italianate
-murderous
-textual
-wainwright
-armada
-bam
-weave
-timer
-##taken
-##nh
-fra
-##crest
-ardent
-salazar
-taps
-tunis
-##ntino
-allegro
-gland
-philanthropic
-##chester
-implication
-##optera
-esq
-judas
-noticeably
-wynn
-##dara
-inched
-indexed
-crises
-villiers
-bandit
-royalties
-patterned
-cupboard
-interspersed
-accessory
-isla
-kendrick
-entourage
-stitches
-##esthesia
-headwaters
-##ior
-interlude
-distraught
-draught
-1727
-##basket
-biased
-sy
-transient
-triad
-subgenus
-adapting
-kidd
-shortstop
-##umatic
-dimly
-spiked
-mcleod
-reprint
-nellie
-pretoria
-windmill
-##cek
-singled
-##mps
-273
-reunite
-##orous
-747
-bankers
-outlying
-##omp
-##ports
-##tream
-apologies
-cosmetics
-patsy
-##deh
-##ocks
-##yson
-bender
-nantes
-serene
-##nad
-lucha
-mmm
-323
-##cius
-##gli
-cmll
-coinage
-nestor
-juarez
-##rook
-smeared
-sprayed
-twitching
-sterile
-irina
-embodied
-juveniles
-enveloped
-miscellaneous
-cancers
-dq
-gulped
-luisa
-crested
-swat
-donegal
-ref
-##anov
-##acker
-hearst
-mercantile
-##lika
-doorbell
-ua
-vicki
-##alla
-##som
-bilbao
-psychologists
-stryker
-sw
-horsemen
-turkmenistan
-wits
-##national
-anson
-mathew
-screenings
-##umb
-rihanna
-##agne
-##nessy
-aisles
-##iani
-##osphere
-hines
-kenton
-saskatoon
-tasha
-truncated
-##champ
-##itan
-mildred
-advises
-fredrik
-interpreting
-inhibitors
-##athi
-spectroscopy
-##hab
-##kong
-karim
-panda
-##oia
-##nail
-##vc
-conqueror
-kgb
-leukemia
-##dity
-arrivals
-cheered
-pisa
-phosphorus
-shielded
-##riated
-mammal
-unitarian
-urgently
-chopin
-sanitary
-##mission
-spicy
-drugged
-hinges
-##tort
-tipping
-trier
-impoverished
-westchester
-##caster
-267
-epoch
-nonstop
-##gman
-##khov
-aromatic
-centrally
-cerro
-##tively
-##vio
-billions
-modulation
-sedimentary
-283
-facilitating
-outrageous
-goldstein
-##eak
-##kt
-ld
-maitland
-penultimate
-pollard
-##dance
-fleets
-spaceship
-vertebrae
-##nig
-alcoholism
-als
-recital
-##bham
-##ference
-##omics
-m2
-##bm
-trois
-##tropical
-##в
-commemorates
-##meric
-marge
-##raction
-1643
-670
-cosmetic
-ravaged
-##ige
-catastrophe
-eng
-##shida
-albrecht
-arterial
-bellamy
-decor
-harmon
-##rde
-bulbs
-synchronized
-vito
-easiest
-shetland
-shielding
-wnba
-##glers
-##ssar
-##riam
-brianna
-cumbria
-##aceous
-##rard
-cores
-thayer
-##nsk
-brood
-hilltop
-luminous
-carts
-keynote
-larkin
-logos
-##cta
-##ا
-##mund
-##quay
-lilith
-tinted
-277
-wrestle
-mobilization
-##uses
-sequential
-siam
-bloomfield
-takahashi
-274
-##ieving
-presenters
-ringo
-blazed
-witty
-##oven
-##ignant
-devastation
-haydn
-harmed
-newt
-therese
-##peed
-gershwin
-molina
-rabbis
-sudanese
-001
-innate
-restarted
-##sack
-##fus
-slices
-wb
-##shah
-enroll
-hypothetical
-hysterical
-1743
-fabio
-indefinite
-warped
-##hg
-exchanging
-525
-unsuitable
-##sboro
-gallo
-1603
-bret
-cobalt
-homemade
-##hunter
-mx
-operatives
-##dhar
-terraces
-durable
-latch
-pens
-whorls
-##ctuated
-##eaux
-billing
-ligament
-succumbed
-##gly
-regulators
-spawn
-##brick
-##stead
-filmfare
-rochelle
-##nzo
-1725
-circumstance
-saber
-supplements
-##nsky
-##tson
-crowe
-wellesley
-carrot
-##9th
-##movable
-primate
-drury
-sincerely
-topical
-##mad
-##rao
-callahan
-kyiv
-smarter
-tits
-undo
-##yeh
-announcements
-anthologies
-barrio
-nebula
-##islaus
-##shaft
-##tyn
-bodyguards
-2021
-assassinate
-barns
-emmett
-scully
-##mah
-##yd
-##eland
-##tino
-##itarian
-demoted
-gorman
-lashed
-prized
-adventist
-writ
-##gui
-alla
-invertebrates
-##ausen
-1641
-amman
-1742
-align
-healy
-redistribution
-##gf
-##rize
-insulation
-##drop
-adherents
-hezbollah
-vitro
-ferns
-yanking
-269
-php
-registering
-uppsala
-cheerleading
-confines
-mischievous
-tully
-##ross
-49th
-docked
-roam
-stipulated
-pumpkin
-##bry
-prompt
-##ezer
-blindly
-shuddering
-craftsmen
-frail
-scented
-katharine
-scramble
-shaggy
-sponge
-helix
-zaragoza
-279
-##52
-43rd
-backlash
-fontaine
-seizures
-posse
-cowan
-nonfiction
-telenovela
-wwii
-hammered
-undone
-##gpur
-encircled
-irs
-##ivation
-artefacts
-oneself
-searing
-smallpox
-##belle
-##osaurus
-shandong
-breached
-upland
-blushing
-rankin
-infinitely
-psyche
-tolerated
-docking
-evicted
-##col
-unmarked
-##lving
-gnome
-lettering
-litres
-musique
-##oint
-benevolent
-##jal
-blackened
-##anna
-mccall
-racers
-tingle
-##ocene
-##orestation
-introductions
-radically
-292
-##hiff
-##باد
-1610
-1739
-munchen
-plead
-##nka
-condo
-scissors
-##sight
-##tens
-apprehension
-##cey
-##yin
-hallmark
-watering
-formulas
-sequels
-##llas
-aggravated
-bae
-commencing
-##building
-enfield
-prohibits
-marne
-vedic
-civilized
-euclidean
-jagger
-beforehand
-blasts
-dumont
-##arney
-##nem
-740
-conversions
-hierarchical
-rios
-simulator
-##dya
-##lellan
-hedges
-oleg
-thrusts
-shadowed
-darby
-maximize
-1744
-gregorian
-##nded
-##routed
-sham
-unspecified
-##hog
-emory
-factual
-##smo
-##tp
-fooled
-##rger
-ortega
-wellness
-marlon
-##oton
-##urance
-casket
-keating
-ley
-enclave
-##ayan
-char
-influencing
-jia
-##chenko
-412
-ammonia
-erebidae
-incompatible
-violins
-cornered
-##arat
-grooves
-astronauts
-columbian
-rampant
-fabrication
-kyushu
-mahmud
-vanish
-##dern
-mesopotamia
-##lete
-ict
-##rgen
-caspian
-kenji
-pitted
-##vered
-999
-grimace
-roanoke
-tchaikovsky
-twinned
-##analysis
-##awan
-xinjiang
-arias
-clemson
-kazakh
-sizable
-1662
-##khand
-##vard
-plunge
-tatum
-vittorio
-##nden
-cholera
-##dana
-##oper
-bracing
-indifference
-projectile
-superliga
-##chee
-realises
-upgrading
-299
-porte
-retribution
-##vies
-nk
-stil
-##resses
-ama
-bureaucracy
-blackberry
-bosch
-testosterone
-collapses
-greer
-##pathic
-ioc
-fifties
-malls
-##erved
-bao
-baskets
-adolescents
-siegfried
-##osity
-##tosis
-mantra
-detecting
-existent
-fledgling
-##cchi
-dissatisfied
-gan
-telecommunication
-mingled
-sobbed
-6000
-controversies
-outdated
-taxis
-##raus
-fright
-slams
-##lham
-##fect
-##tten
-detectors
-fetal
-tanned
-##uw
-fray
-goth
-olympian
-skipping
-mandates
-scratches
-sheng
-unspoken
-hyundai
-tracey
-hotspur
-restrictive
-##buch
-americana
-mundo
-##bari
-burroughs
-diva
-vulcan
-##6th
-distinctions
-thumping
-##ngen
-mikey
-sheds
-fide
-rescues
-springsteen
-vested
-valuation
-##ece
-##ely
-pinnacle
-rake
-sylvie
-##edo
-almond
-quivering
-##irus
-alteration
-faltered
-##wad
-51st
-hydra
-ticked
-##kato
-recommends
-##dicated
-antigua
-arjun
-stagecoach
-wilfred
-trickle
-pronouns
-##pon
-aryan
-nighttime
-##anian
-gall
-pea
-stitch
-##hei
-leung
-milos
-##dini
-eritrea
-nexus
-starved
-snowfall
-kant
-parasitic
-cot
-discus
-hana
-strikers
-appleton
-kitchens
-##erina
-##partisan
-##itha
-##vius
-disclose
-metis
-##channel
-1701
-tesla
-##vera
-fitch
-1735
-blooded
-##tila
-decimal
-##tang
-##bai
-cyclones
-eun
-bottled
-peas
-pensacola
-basha
-bolivian
-crabs
-boil
-lanterns
-partridge
-roofed
-1645
-necks
-##phila
-opined
-patting
-##kla
-##lland
-chuckles
-volta
-whereupon
-##nche
-devout
-euroleague
-suicidal
-##dee
-inherently
-involuntary
-knitting
-nasser
-##hide
-puppets
-colourful
-courageous
-southend
-stills
-miraculous
-hodgson
-richer
-rochdale
-ethernet
-greta
-uniting
-prism
-umm
-##haya
-##itical
-##utation
-deterioration
-pointe
-prowess
-##ropriation
-lids
-scranton
-billings
-subcontinent
-##koff
-##scope
-brute
-kellogg
-psalms
-degraded
-##vez
-stanisław
-##ructured
-ferreira
-pun
-astonishing
-gunnar
-##yat
-arya
-prc
-gottfried
-##tight
-excursion
-##ographer
-dina
-##quil
-##nare
-huffington
-illustrious
-wilbur
-gundam
-verandah
-##zard
-naacp
-##odle
-constructive
-fjord
-kade
-##naud
-generosity
-thrilling
-baseline
-cayman
-frankish
-plastics
-accommodations
-zoological
-##fting
-cedric
-qb
-motorized
-##dome
-##otted
-squealed
-tackled
-canucks
-budgets
-situ
-asthma
-dail
-gabled
-grasslands
-whimpered
-writhing
-judgments
-##65
-minnie
-pv
-##carbon
-bananas
-grille
-domes
-monique
-odin
-maguire
-markham
-tierney
-##estra
-##chua
-libel
-poke
-speedy
-atrium
-laval
-notwithstanding
-##edly
-fai
-kala
-##sur
-robb
-##sma
-listings
-luz
-supplementary
-tianjin
-##acing
-enzo
-jd
-ric
-scanner
-croats
-transcribed
-##49
-arden
-cv
-##hair
-##raphy
-##lver
-##uy
-357
-seventies
-staggering
-alam
-horticultural
-hs
-regression
-timbers
-blasting
-##ounded
-montagu
-manipulating
-##cit
-catalytic
-1550
-troopers
-##meo
-condemnation
-fitzpatrick
-##oire
-##roved
-inexperienced
-1670
-castes
-##lative
-outing
-314
-dubois
-flicking
-quarrel
-ste
-learners
-1625
-iq
-whistled
-##class
-282
-classify
-tariffs
-temperament
-355
-folly
-liszt
-##yles
-immersed
-jordanian
-ceasefire
-apparel
-extras
-maru
-fished
-##bio
-harta
-stockport
-assortment
-craftsman
-paralysis
-transmitters
-##cola
-blindness
-##wk
-fatally
-proficiency
-solemnly
-##orno
-repairing
-amore
-groceries
-ultraviolet
-##chase
-schoolhouse
-##tua
-resurgence
-nailed
-##otype
-##×
-ruse
-saliva
-diagrams
-##tructing
-albans
-rann
-thirties
-1b
-antennas
-hilarious
-cougars
-paddington
-stats
-##eger
-breakaway
-ipod
-reza
-authorship
-prohibiting
-scoffed
-##etz
-##ttle
-conscription
-defected
-trondheim
-##fires
-ivanov
-keenan
-##adan
-##ciful
-##fb
-##slow
-locating
-##ials
-##tford
-cadiz
-basalt
-blankly
-interned
-rags
-rattling
-##tick
-carpathian
-reassured
-sync
-bum
-guildford
-iss
-staunch
-##onga
-astronomers
-sera
-sofie
-emergencies
-susquehanna
-##heard
-duc
-mastery
-vh1
-williamsburg
-bayer
-buckled
-craving
-##khan
-##rdes
-bloomington
-##write
-alton
-barbecue
-##bians
-justine
-##hri
-##ndt
-delightful
-smartphone
-newtown
-photon
-retrieval
-peugeot
-hissing
-##monium
-##orough
-flavors
-lighted
-relaunched
-tainted
-##games
-##lysis
-anarchy
-microscopic
-hopping
-adept
-evade
-evie
-##beau
-inhibit
-sinn
-adjustable
-hurst
-intuition
-wilton
-cisco
-44th
-lawful
-lowlands
-stockings
-thierry
-##dalen
-##hila
-##nai
-fates
-prank
-tb
-maison
-lobbied
-provocative
-1724
-4a
-utopia
-##qual
-carbonate
-gujarati
-purcell
-##rford
-curtiss
-##mei
-overgrown
-arenas
-mediation
-swallows
-##rnik
-respectful
-turnbull
-##hedron
-##hope
-alyssa
-ozone
-##ʻi
-ami
-gestapo
-johansson
-snooker
-canteen
-cuff
-declines
-empathy
-stigma
-##ags
-##iner
-##raine
-taxpayers
-gui
-volga
-##wright
-##copic
-lifespan
-overcame
-tattooed
-enactment
-giggles
-##ador
-##camp
-barrington
-bribe
-obligatory
-orbiting
-peng
-##enas
-elusive
-sucker
-##vating
-cong
-hardship
-empowered
-anticipating
-estrada
-cryptic
-greasy
-detainees
-planck
-sudbury
-plaid
-dod
-marriott
-kayla
-##ears
-##vb
-##zd
-mortally
-##hein
-cognition
-radha
-319
-liechtenstein
-meade
-richly
-argyle
-harpsichord
-liberalism
-trumpets
-lauded
-tyrant
-salsa
-tiled
-lear
-promoters
-reused
-slicing
-trident
-##chuk
-##gami
-##lka
-cantor
-checkpoint
-##points
-gaul
-leger
-mammalian
-##tov
-##aar
-##schaft
-doha
-frenchman
-nirvana
-##vino
-delgado
-headlining
-##eron
-##iography
-jug
-tko
-1649
-naga
-intersections
-##jia
-benfica
-nawab
-##suka
-ashford
-gulp
-##deck
-##vill
-##rug
-brentford
-frazier
-pleasures
-dunne
-potsdam
-shenzhen
-dentistry
-##tec
-flanagan
-##dorff
-##hear
-chorale
-dinah
-prem
-quezon
-##rogated
-relinquished
-sutra
-terri
-##pani
-flaps
-##rissa
-poly
-##rnet
-homme
-aback
-##eki
-linger
-womb
-##kson
-##lewood
-doorstep
-orthodoxy
-threaded
-westfield
-##rval
-dioceses
-fridays
-subsided
-##gata
-loyalists
-##biotic
-##ettes
-letterman
-lunatic
-prelate
-tenderly
-invariably
-souza
-thug
-winslow
-##otide
-furlongs
-gogh
-jeopardy
-##runa
-pegasus
-##umble
-humiliated
-standalone
-tagged
-##roller
-freshmen
-klan
-##bright
-attaining
-initiating
-transatlantic
-logged
-viz
-##uance
-1723
-combatants
-intervening
-stephane
-chieftain
-despised
-grazed
-317
-cdc
-galveston
-godzilla
-macro
-simulate
-##planes
-parades
-##esses
-960
-##ductive
-##unes
-equator
-overdose
-##cans
-##hosh
-##lifting
-joshi
-epstein
-sonora
-treacherous
-aquatics
-manchu
-responsive
-##sation
-supervisory
-##christ
-##llins
-##ibar
-##balance
-##uso
-kimball
-karlsruhe
-mab
-##emy
-ignores
-phonetic
-reuters
-spaghetti
-820
-almighty
-danzig
-rumbling
-tombstone
-designations
-lured
-outset
-##felt
-supermarkets
-##wt
-grupo
-kei
-kraft
-susanna
-##blood
-comprehension
-genealogy
-##aghan
-##verted
-redding
-##ythe
-1722
-bowing
-##pore
-##roi
-lest
-sharpened
-fulbright
-valkyrie
-sikhs
-##unds
-swans
-bouquet
-merritt
-##tage
-##venting
-commuted
-redhead
-clerks
-leasing
-cesare
-dea
-hazy
-##vances
-fledged
-greenfield
-servicemen
-##gical
-armando
-blackout
-dt
-sagged
-downloadable
-intra
-potion
-pods
-##4th
-##mism
-xp
-attendants
-gambia
-stale
-##ntine
-plump
-asteroids
-rediscovered
-buds
-flea
-hive
-##neas
-1737
-classifications
-debuts
-##eles
-olympus
-scala
-##eurs
-##gno
-##mute
-hummed
-sigismund
-visuals
-wiggled
-await
-pilasters
-clench
-sulfate
-##ances
-bellevue
-enigma
-trainee
-snort
-##sw
-clouded
-denim
-##rank
-##rder
-churning
-hartman
-lodges
-riches
-sima
-##missible
-accountable
-socrates
-regulates
-mueller
-##cr
-1702
-avoids
-solids
-himalayas
-nutrient
-pup
-##jevic
-squat
-fades
-nec
-##lates
-##pina
-##rona
-##ου
-privateer
-tequila
-##gative
-##mpton
-apt
-hornet
-immortals
-##dou
-asturias
-cleansing
-dario
-##rries
-##anta
-etymology
-servicing
-zhejiang
-##venor
-##nx
-horned
-erasmus
-rayon
-relocating
-£10
-##bags
-escalated
-promenade
-stubble
-2010s
-artisans
-axial
-liquids
-mora
-sho
-yoo
-##tsky
-bundles
-oldies
-##nally
-notification
-bastion
-##ths
-sparkle
-##lved
-1728
-leash
-pathogen
-highs
-##hmi
-immature
-880
-gonzaga
-ignatius
-mansions
-monterrey
-sweets
-bryson
-##loe
-polled
-regatta
-brightest
-pei
-rosy
-squid
-hatfield
-payroll
-addict
-meath
-cornerback
-heaviest
-lodging
-##mage
-capcom
-rippled
-##sily
-barnet
-mayhem
-ymca
-snuggled
-rousseau
-##cute
-blanchard
-284
-fragmented
-leighton
-chromosomes
-risking
-##md
-##strel
-##utter
-corinne
-coyotes
-cynical
-hiroshi
-yeomanry
-##ractive
-ebook
-grading
-mandela
-plume
-agustin
-magdalene
-##rkin
-bea
-femme
-trafford
-##coll
-##lun
-##tance
-52nd
-fourier
-upton
-##mental
-camilla
-gust
-iihf
-islamabad
-longevity
-##kala
-feldman
-netting
-##rization
-endeavour
-foraging
-mfa
-orr
-##open
-greyish
-contradiction
-graz
-##ruff
-handicapped
-marlene
-tweed
-oaxaca
-spp
-campos
-miocene
-pri
-configured
-cooks
-pluto
-cozy
-pornographic
-##entes
-70th
-fairness
-glided
-jonny
-lynne
-rounding
-sired
-##emon
-##nist
-remade
-uncover
-##mack
-complied
-lei
-newsweek
-##jured
-##parts
-##enting
-##pg
-293
-finer
-guerrillas
-athenian
-deng
-disused
-stepmother
-accuse
-gingerly
-seduction
-521
-confronting
-##walker
-##going
-gora
-nostalgia
-sabres
-virginity
-wrenched
-##minated
-syndication
-wielding
-eyre
-##56
-##gnon
-##igny
-behaved
-taxpayer
-sweeps
-##growth
-childless
-gallant
-##ywood
-amplified
-geraldine
-scrape
-##ffi
-babylonian
-fresco
-##rdan
-##kney
-##position
-1718
-restricting
-tack
-fukuoka
-osborn
-selector
-partnering
-##dlow
-318
-gnu
-kia
-tak
-whitley
-gables
-##54
-##mania
-mri
-softness
-immersion
-##bots
-##evsky
-1713
-chilling
-insignificant
-pcs
-##uis
-elites
-lina
-purported
-supplemental
-teaming
-##americana
-##dding
-##inton
-proficient
-rouen
-##nage
-##rret
-niccolo
-selects
-##bread
-fluffy
-1621
-gruff
-knotted
-mukherjee
-polgara
-thrash
-nicholls
-secluded
-smoothing
-thru
-corsica
-loaf
-whitaker
-inquiries
-##rrier
-##kam
-indochina
-289
-marlins
-myles
-peking
-##tea
-extracts
-pastry
-superhuman
-connacht
-vogel
-##ditional
-##het
-##udged
-##lash
-gloss
-quarries
-refit
-teaser
-##alic
-##gaon
-20s
-materialized
-sling
-camped
-pickering
-tung
-tracker
-pursuant
-##cide
-cranes
-soc
-##cini
-##typical
-##viere
-anhalt
-overboard
-workout
-chores
-fares
-orphaned
-stains
-##logie
-fenton
-surpassing
-joyah
-triggers
-##itte
-grandmaster
-##lass
-##lists
-clapping
-fraudulent
-ledger
-nagasaki
-##cor
-##nosis
-##tsa
-eucalyptus
-tun
-##icio
-##rney
-##tara
-dax
-heroism
-ina
-wrexham
-onboard
-unsigned
-##dates
-moshe
-galley
-winnie
-droplets
-exiles
-praises
-watered
-noodles
-##aia
-fein
-adi
-leland
-multicultural
-stink
-bingo
-comets
-erskine
-modernized
-canned
-constraint
-domestically
-chemotherapy
-featherweight
-stifled
-##mum
-darkly
-irresistible
-refreshing
-hasty
-isolate
-##oys
-kitchener
-planners
-##wehr
-cages
-yarn
-implant
-toulon
-elects
-childbirth
-yue
-##lind
-##lone
-cn
-rightful
-sportsman
-junctions
-remodeled
-specifies
-##rgh
-291
-##oons
-complimented
-##urgent
-lister
-ot
-##logic
-bequeathed
-cheekbones
-fontana
-gabby
-##dial
-amadeus
-corrugated
-maverick
-resented
-triangles
-##hered
-##usly
-nazareth
-tyrol
-1675
-assent
-poorer
-sectional
-aegean
-##cous
-296
-nylon
-ghanaian
-##egorical
-##weig
-cushions
-forbid
-fusiliers
-obstruction
-somerville
-##scia
-dime
-earrings
-elliptical
-leyte
-oder
-polymers
-timmy
-atm
-midtown
-piloted
-settles
-continual
-externally
-mayfield
-##uh
-enrichment
-henson
-keane
-persians
-1733
-benji
-braden
-pep
-324
-##efe
-contenders
-pepsi
-valet
-##isches
-298
-##asse
-##earing
-goofy
-stroll
-##amen
-authoritarian
-occurrences
-adversary
-ahmedabad
-tangent
-toppled
-dorchester
-1672
-modernism
-marxism
-islamist
-charlemagne
-exponential
-racks
-unicode
-brunette
-mbc
-pic
-skirmish
-##bund
-##lad
-##powered
-##yst
-hoisted
-messina
-shatter
-##ctum
-jedi
-vantage
-##music
-##neil
-clemens
-mahmoud
-corrupted
-authentication
-lowry
-nils
-##washed
-omnibus
-wounding
-jillian
-##itors
-##opped
-serialized
-narcotics
-handheld
-##arm
-##plicity
-intersecting
-stimulating
-##onis
-crate
-fellowships
-hemingway
-casinos
-climatic
-fordham
-copeland
-drip
-beatty
-leaflets
-robber
-brothel
-madeira
-##hedral
-sphinx
-ultrasound
-##vana
-valor
-forbade
-leonid
-villas
-##aldo
-duane
-marquez
-##cytes
-disadvantaged
-forearms
-kawasaki
-reacts
-consular
-lax
-uncles
-uphold
-##hopper
-concepcion
-dorsey
-lass
-##izan
-arching
-passageway
-1708
-researches
-tia
-internationals
-##graphs
-##opers
-distinguishes
-javanese
-divert
-##uven
-plotted
-##listic
-##rwin
-##erik
-##tify
-affirmative
-signifies
-validation
-##bson
-kari
-felicity
-georgina
-zulu
-##eros
-##rained
-##rath
-overcoming
-##dot
-argyll
-##rbin
-1734
-chiba
-ratification
-windy
-earls
-parapet
-##marks
-hunan
-pristine
-astrid
-punta
-##gart
-brodie
-##kota
-##oder
-malaga
-minerva
-rouse
-##phonic
-bellowed
-pagoda
-portals
-reclamation
-##gur
-##odies
-##⁄₄
-parentheses
-quoting
-allergic
-palette
-showcases
-benefactor
-heartland
-nonlinear
-##tness
-bladed
-cheerfully
-scans
-##ety
-##hone
-1666
-girlfriends
-pedersen
-hiram
-sous
-##liche
-##nator
-1683
-##nery
-##orio
-##umen
-bobo
-primaries
-smiley
-##cb
-unearthed
-uniformly
-fis
-metadata
-1635
-ind
-##oted
-recoil
-##titles
-##tura
-##ια
-406
-hilbert
-jamestown
-mcmillan
-tulane
-seychelles
-##frid
-antics
-coli
-fated
-stucco
-##grants
-1654
-bulky
-accolades
-arrays
-caledonian
-carnage
-optimism
-puebla
-##tative
-##cave
-enforcing
-rotherham
-seo
-dunlop
-aeronautics
-chimed
-incline
-zoning
-archduke
-hellenistic
-##oses
-##sions
-candi
-thong
-##ople
-magnate
-rustic
-##rsk
-projective
-slant
-##offs
-danes
-hollis
-vocalists
-##ammed
-congenital
-contend
-gesellschaft
-##ocating
-##pressive
-douglass
-quieter
-##cm
-##kshi
-howled
-salim
-spontaneously
-townsville
-buena
-southport
-##bold
-kato
-1638
-faerie
-stiffly
-##vus
-##rled
-297
-flawless
-realising
-taboo
-##7th
-bytes
-straightening
-356
-jena
-##hid
-##rmin
-cartwright
-berber
-bertram
-soloists
-411
-noses
-417
-coping
-fission
-hardin
-inca
-##cen
-1717
-mobilized
-vhf
-##raf
-biscuits
-curate
-##85
-##anial
-331
-gaunt
-neighbourhoods
-1540
-##abas
-blanca
-bypassed
-sockets
-behold
-coincidentally
-##bane
-nara
-shave
-splinter
-terrific
-##arion
-##erian
-commonplace
-juris
-redwood
-waistband
-boxed
-caitlin
-fingerprints
-jennie
-naturalized
-##ired
-balfour
-craters
-jody
-bungalow
-hugely
-quilt
-glitter
-pigeons
-undertaker
-bulging
-constrained
-goo
-##sil
-##akh
-assimilation
-reworked
-##person
-persuasion
-##pants
-felicia
-##cliff
-##ulent
-1732
-explodes
-##dun
-##inium
-##zic
-lyman
-vulture
-hog
-overlook
-begs
-northwards
-ow
-spoil
-##urer
-fatima
-favorably
-accumulate
-sargent
-sorority
-corresponded
-dispersal
-kochi
-toned
-##imi
-##lita
-internacional
-newfound
-##agger
-##lynn
-##rigue
-booths
-peanuts
-##eborg
-medicare
-muriel
-nur
-##uram
-crates
-millennia
-pajamas
-worsened
-##breakers
-jimi
-vanuatu
-yawned
-##udeau
-carousel
-##hony
-hurdle
-##ccus
-##mounted
-##pod
-rv
-##eche
-airship
-ambiguity
-compulsion
-recapture
-##claiming
-arthritis
-##osomal
-1667
-asserting
-ngc
-sniffing
-dade
-discontent
-glendale
-ported
-##amina
-defamation
-rammed
-##scent
-fling
-livingstone
-##fleet
-875
-##ppy
-apocalyptic
-comrade
-lcd
-##lowe
-cessna
-eine
-persecuted
-subsistence
-demi
-hoop
-reliefs
-710
-coptic
-progressing
-stemmed
-perpetrators
-1665
-priestess
-##nio
-dobson
-ebony
-rooster
-itf
-tortricidae
-##bbon
-##jian
-cleanup
-##jean
-##øy
-1721
-eighties
-taxonomic
-holiness
-##hearted
-##spar
-antilles
-showcasing
-stabilized
-##nb
-gia
-mascara
-michelangelo
-dawned
-##uria
-##vinsky
-extinguished
-fitz
-grotesque
-£100
-##fera
-##loid
-##mous
-barges
-neue
-throbbed
-cipher
-johnnie
-##a1
-##mpt
-outburst
-##swick
-spearheaded
-administrations
-c1
-heartbreak
-pixels
-pleasantly
-##enay
-lombardy
-plush
-##nsed
-bobbie
-##hly
-reapers
-tremor
-xiang
-minogue
-substantive
-hitch
-barak
-##wyl
-kwan
-##encia
-910
-obscene
-elegance
-indus
-surfer
-bribery
-conserve
-##hyllum
-##masters
-horatio
-##fat
-apes
-rebound
-psychotic
-##pour
-iteration
-##mium
-##vani
-botanic
-horribly
-antiques
-dispose
-paxton
-##hli
-##wg
-timeless
-1704
-disregard
-engraver
-hounds
-##bau
-##version
-looted
-uno
-facilitates
-groans
-masjid
-rutland
-antibody
-disqualification
-decatur
-footballers
-quake
-slacks
-48th
-rein
-scribe
-stabilize
-commits
-exemplary
-tho
-##hort
-##chison
-pantry
-traversed
-##hiti
-disrepair
-identifiable
-vibrated
-baccalaureate
-##nnis
-csa
-interviewing
-##iensis
-##raße
-greaves
-wealthiest
-343
-classed
-jogged
-£5
-##58
-##atal
-illuminating
-knicks
-respecting
-##uno
-scrubbed
-##iji
-##dles
-kruger
-moods
-growls
-raider
-silvia
-chefs
-kam
-vr
-cree
-percival
-##terol
-gunter
-counterattack
-defiant
-henan
-ze
-##rasia
-##riety
-equivalence
-submissions
-##fra
-##thor
-bautista
-mechanically
-##heater
-cornice
-herbal
-templar
-##mering
-outputs
-ruining
-ligand
-renumbered
-extravagant
-mika
-blockbuster
-eta
-insurrection
-##ilia
-darkening
-ferocious
-pianos
-strife
-kinship
-##aer
-melee
-##anor
-##iste
-##may
-##oue
-decidedly
-weep
-##jad
-##missive
-##ppel
-354
-puget
-unease
-##gnant
-1629
-hammering
-kassel
-ob
-wessex
-##lga
-bromwich
-egan
-paranoia
-utilization
-##atable
-##idad
-contradictory
-provoke
-##ols
-##ouring
-##tangled
-knesset
-##very
-##lette
-plumbing
-##sden
-##¹
-greensboro
-occult
-sniff
-338
-zev
-beaming
-gamer
-haggard
-mahal
-##olt
-##pins
-mendes
-utmost
-briefing
-gunnery
-##gut
-##pher
-##zh
-##rok
-1679
-khalifa
-sonya
-##boot
-principals
-urbana
-wiring
-##liffe
-##minating
-##rrado
-dahl
-nyu
-skepticism
-np
-townspeople
-ithaca
-lobster
-somethin
-##fur
-##arina
-##−1
-freighter
-zimmerman
-biceps
-contractual
-##herton
-amend
-hurrying
-subconscious
-##anal
-336
-meng
-clermont
-spawning
-##eia
-##lub
-dignitaries
-impetus
-snacks
-spotting
-twigs
-##bilis
-##cz
-##ouk
-libertadores
-nic
-skylar
-##aina
-##firm
-gustave
-asean
-##anum
-dieter
-legislatures
-flirt
-bromley
-trolls
-umar
-##bbies
-##tyle
-blah
-parc
-bridgeport
-crank
-negligence
-##nction
-46th
-constantin
-molded
-bandages
-seriousness
-00pm
-siegel
-carpets
-compartments
-upbeat
-statehood
-##dner
-##edging
-marko
-730
-platt
-##hane
-paving
-##iy
-1738
-abbess
-impatience
-limousine
-nbl
-##talk
-441
-lucille
-mojo
-nightfall
-robbers
-##nais
-karel
-brisk
-calves
-replicate
-ascribed
-telescopes
-##olf
-intimidated
-##reen
-ballast
-specialization
-##sit
-aerodynamic
-caliphate
-rainer
-visionary
-##arded
-epsilon
-##aday
-##onte
-aggregation
-auditory
-boosted
-reunification
-kathmandu
-loco
-robyn
-402
-acknowledges
-appointing
-humanoid
-newell
-redeveloped
-restraints
-##tained
-barbarians
-chopper
-1609
-italiana
-##lez
-##lho
-investigates
-wrestlemania
-##anies
-##bib
-690
-##falls
-creaked
-dragoons
-gravely
-minions
-stupidity
-volley
-##harat
-##week
-musik
-##eries
-##uously
-fungal
-massimo
-semantics
-malvern
-##ahl
-##pee
-discourage
-embryo
-imperialism
-1910s
-profoundly
-##ddled
-jiangsu
-sparkled
-stat
-##holz
-sweatshirt
-tobin
-##iction
-sneered
-##cheon
-##oit
-brit
-causal
-smyth
-##neuve
-diffuse
-perrin
-silvio
-##ipes
-##recht
-detonated
-iqbal
-selma
-##nism
-##zumi
-roasted
-##riders
-tay
-##ados
-##mament
-##mut
-##rud
-840
-completes
-nipples
-cfa
-flavour
-hirsch
-##laus
-calderon
-sneakers
-moravian
-##ksha
-1622
-rq
-294
-##imeters
-bodo
-##isance
-##pre
-##ronia
-anatomical
-excerpt
-##lke
-dh
-kunst
-##tablished
-##scoe
-biomass
-panted
-unharmed
-gael
-housemates
-montpellier
-##59
-coa
-rodents
-tonic
-hickory
-singleton
-##taro
-451
-1719
-aldo
-breaststroke
-dempsey
-och
-rocco
-##cuit
-merton
-dissemination
-midsummer
-serials
-##idi
-haji
-polynomials
-##rdon
-gs
-enoch
-prematurely
-shutter
-taunton
-£3
-##grating
-##inates
-archangel
-harassed
-##asco
-326
-archway
-dazzling
-##ecin
-1736
-sumo
-wat
-##kovich
-1086
-honneur
-##ently
-##nostic
-##ttal
-##idon
-1605
-403
-1716
-blogger
-rents
-##gnan
-hires
-##ikh
-##dant
-howie
-##rons
-handler
-retracted
-shocks
-1632
-arun
-duluth
-kepler
-trumpeter
-##lary
-peeking
-seasoned
-trooper
-##mara
-laszlo
-##iciencies
-##rti
-heterosexual
-##inatory
-##ssion
-indira
-jogging
-##inga
-##lism
-beit
-dissatisfaction
-malice
-##ately
-nedra
-peeling
-##rgeon
-47th
-stadiums
-475
-vertigo
-##ains
-iced
-restroom
-##plify
-##tub
-illustrating
-pear
-##chner
-##sibility
-inorganic
-rappers
-receipts
-watery
-##kura
-lucinda
-##oulos
-reintroduced
-##8th
-##tched
-gracefully
-saxons
-nutritional
-wastewater
-rained
-favourites
-bedrock
-fisted
-hallways
-likeness
-upscale
-##lateral
-1580
-blinds
-prequel
-##pps
-##tama
-deter
-humiliating
-restraining
-tn
-vents
-1659
-laundering
-recess
-rosary
-tractors
-coulter
-federer
-##ifiers
-##plin
-persistence
-##quitable
-geschichte
-pendulum
-quakers
-##beam
-bassett
-pictorial
-buffet
-koln
-##sitor
-drills
-reciprocal
-shooters
-##57
-##cton
-##tees
-converge
-pip
-dmitri
-donnelly
-yamamoto
-aqua
-azores
-demographics
-hypnotic
-spitfire
-suspend
-wryly
-roderick
-##rran
-sebastien
-##asurable
-mavericks
-##fles
-##200
-himalayan
-prodigy
-##iance
-transvaal
-demonstrators
-handcuffs
-dodged
-mcnamara
-sublime
-1726
-crazed
-##efined
-##till
-ivo
-pondered
-reconciled
-shrill
-sava
-##duk
-bal
-cad
-heresy
-jaipur
-goran
-##nished
-341
-lux
-shelly
-whitehall
-##hre
-israelis
-peacekeeping
-##wled
-1703
-demetrius
-ousted
-##arians
-##zos
-beale
-anwar
-backstroke
-raged
-shrinking
-cremated
-##yck
-benign
-towing
-wadi
-darmstadt
-landfill
-parana
-soothe
-colleen
-sidewalks
-mayfair
-tumble
-hepatitis
-ferrer
-superstructure
-##gingly
-##urse
-##wee
-anthropological
-translators
-##mies
-closeness
-hooves
-##pw
-mondays
-##roll
-##vita
-landscaping
-##urized
-purification
-sock
-thorns
-thwarted
-jalan
-tiberius
-##taka
-saline
-##rito
-confidently
-khyber
-sculptors
-##ij
-brahms
-hammersmith
-inspectors
-battista
-fivb
-fragmentation
-hackney
-##uls
-arresting
-exercising
-antoinette
-bedfordshire
-##zily
-dyed
-##hema
-1656
-racetrack
-variability
-##tique
-1655
-austrians
-deteriorating
-madman
-theorists
-aix
-lehman
-weathered
-1731
-decreed
-eruptions
-1729
-flaw
-quinlan
-sorbonne
-flutes
-nunez
-1711
-adored
-downwards
-fable
-rasped
-1712
-moritz
-mouthful
-renegade
-shivers
-stunts
-dysfunction
-restrain
-translit
-327
-pancakes
-##avio
-##cision
-##tray
-351
-vial
-##lden
-bain
-##maid
-##oxide
-chihuahua
-malacca
-vimes
-##rba
-##rnier
-1664
-donnie
-plaques
-##ually
-337
-bangs
-floppy
-huntsville
-loretta
-nikolay
-##otte
-eater
-handgun
-ubiquitous
-##hett
-eras
-zodiac
-1634
-##omorphic
-1820s
-##zog
-cochran
-##bula
-##lithic
-warring
-##rada
-dalai
-excused
-blazers
-mcconnell
-reeling
-bot
-este
-##abi
-geese
-hoax
-taxon
-##bla
-guitarists
-##icon
-condemning
-hunts
-inversion
-moffat
-taekwondo
-##lvis
-1624
-stammered
-##rest
-##rzy
-sousa
-fundraiser
-marylebone
-navigable
-uptown
-cabbage
-daniela
-salman
-shitty
-whimper
-##kian
-##utive
-programmers
-protections
-rm
-##rmi
-##rued
-forceful
-##enes
-fuss
-##tao
-##wash
-brat
-oppressive
-reykjavik
-spartak
-ticking
-##inkles
-##kiewicz
-adolph
-horst
-maui
-protege
-straighten
-cpc
-landau
-concourse
-clements
-resultant
-##ando
-imaginative
-joo
-reactivated
-##rem
-##ffled
-##uising
-consultative
-##guide
-flop
-kaitlyn
-mergers
-parenting
-somber
-##vron
-supervise
-vidhan
-##imum
-courtship
-exemplified
-harmonies
-medallist
-refining
-##rrow
-##ка
-amara
-##hum
-780
-goalscorer
-sited
-overshadowed
-rohan
-displeasure
-secretive
-multiplied
-osman
-##orth
-engravings
-padre
-##kali
-##veda
-miniatures
-mis
-##yala
-clap
-pali
-rook
-##cana
-1692
-57th
-antennae
-astro
-oskar
-1628
-bulldog
-crotch
-hackett
-yucatan
-##sure
-amplifiers
-brno
-ferrara
-migrating
-##gree
-thanking
-turing
-##eza
-mccann
-ting
-andersson
-onslaught
-gaines
-ganga
-incense
-standardization
-##mation
-sentai
-scuba
-stuffing
-turquoise
-waivers
-alloys
-##vitt
-regaining
-vaults
-##clops
-##gizing
-digger
-furry
-memorabilia
-probing
-##iad
-payton
-rec
-deutschland
-filippo
-opaque
-seamen
-zenith
-afrikaans
-##filtration
-disciplined
-inspirational
-##merie
-banco
-confuse
-grafton
-tod
-##dgets
-championed
-simi
-anomaly
-biplane
-##ceptive
-electrode
-##para
-1697
-cleavage
-crossbow
-swirl
-informant
-##lars
-##osta
-afi
-bonfire
-spec
-##oux
-lakeside
-slump
-##culus
-##lais
-##qvist
-##rrigan
-1016
-facades
-borg
-inwardly
-cervical
-xl
-pointedly
-050
-stabilization
-##odon
-chests
-1699
-hacked
-ctv
-orthogonal
-suzy
-##lastic
-gaulle
-jacobite
-rearview
-##cam
-##erted
-ashby
-##drik
-##igate
-##mise
-##zbek
-affectionately
-canine
-disperse
-latham
-##istles
-##ivar
-spielberg
-##orin
-##idium
-ezekiel
-cid
-##sg
-durga
-middletown
-##cina
-customized
-frontiers
-harden
-##etano
-##zzy
-1604
-bolsheviks
-##66
-coloration
-yoko
-##bedo
-briefs
-slabs
-debra
-liquidation
-plumage
-##oin
-blossoms
-dementia
-subsidy
-1611
-proctor
-relational
-jerseys
-parochial
-ter
-##ici
-esa
-peshawar
-cavalier
-loren
-cpi
-idiots
-shamrock
-1646
-dutton
-malabar
-mustache
-##endez
-##ocytes
-referencing
-terminates
-marche
-yarmouth
-##sop
-acton
-mated
-seton
-subtly
-baptised
-beige
-extremes
-jolted
-kristina
-telecast
-##actic
-safeguard
-waldo
-##baldi
-##bular
-endeavors
-sloppy
-subterranean
-##ensburg
-##itung
-delicately
-pigment
-tq
-##scu
-1626
-##ound
-collisions
-coveted
-herds
-##personal
-##meister
-##nberger
-chopra
-##ricting
-abnormalities
-defective
-galician
-lucie
-##dilly
-alligator
-likened
-##genase
-burundi
-clears
-complexion
-derelict
-deafening
-diablo
-fingered
-champaign
-dogg
-enlist
-isotope
-labeling
-mrna
-##erre
-brilliance
-marvelous
-##ayo
-1652
-crawley
-ether
-footed
-dwellers
-deserts
-hamish
-rubs
-warlock
-skimmed
-##lizer
-870
-buick
-embark
-heraldic
-irregularities
-##ajan
-kiara
-##kulam
-##ieg
-antigen
-kowalski
-##lge
-oakley
-visitation
-##mbit
-vt
-##suit
-1570
-murderers
-##miento
-##rites
-chimneys
-##sling
-condemn
-custer
-exchequer
-havre
-##ghi
-fluctuations
-##rations
-dfb
-hendricks
-vaccines
-##tarian
-nietzsche
-biking
-juicy
-##duced
-brooding
-scrolling
-selangor
-##ragan
-352
-annum
-boomed
-seminole
-sugarcane
-##dna
-departmental
-dismissing
-innsbruck
-arteries
-ashok
-batavia
-daze
-kun
-overtook
-##rga
-##tlan
-beheaded
-gaddafi
-holm
-electronically
-faulty
-galilee
-fractures
-kobayashi
-##lized
-gunmen
-magma
-aramaic
-mala
-eastenders
-inference
-messengers
-bf
-##qu
-407
-bathrooms
-##vere
-1658
-flashbacks
-ideally
-misunderstood
-##jali
-##weather
-mendez
-##grounds
-505
-uncanny
-##iii
-1709
-friendships
-##nbc
-sacrament
-accommodated
-reiterated
-logistical
-pebbles
-thumped
-##escence
-administering
-decrees
-drafts
-##flight
-##cased
-##tula
-futuristic
-picket
-intimidation
-winthrop
-##fahan
-interfered
-339
-afar
-francoise
-morally
-uta
-cochin
-croft
-dwarfs
-##bruck
-##dents
-##nami
-biker
-##hner
-##meral
-nano
-##isen
-##ometric
-##pres
-##ан
-brightened
-meek
-parcels
-securely
-gunners
-##jhl
-##zko
-agile
-hysteria
-##lten
-##rcus
-bukit
-champs
-chevy
-cuckoo
-leith
-sadler
-theologians
-welded
-##section
-1663
-jj
-plurality
-xander
-##rooms
-##formed
-shredded
-temps
-intimately
-pau
-tormented
-##lok
-##stellar
-1618
-charred
-ems
-essen
-##mmel
-alarms
-spraying
-ascot
-blooms
-twinkle
-##abia
-##apes
-internment
-obsidian
-##chaft
-snoop
-##dav
-##ooping
-malibu
-##tension
-quiver
-##itia
-hays
-mcintosh
-travers
-walsall
-##ffie
-1623
-beverley
-schwarz
-plunging
-structurally
-m3
-rosenthal
-vikram
-##tsk
-770
-ghz
-##onda
-##tiv
-chalmers
-groningen
-pew
-reckon
-unicef
-##rvis
-55th
-##gni
-1651
-sulawesi
-avila
-cai
-metaphysical
-screwing
-turbulence
-##mberg
-augusto
-samba
-56th
-baffled
-momentary
-toxin
-##urian
-##wani
-aachen
-condoms
-dali
-steppe
-##3d
-##app
-##oed
-##year
-adolescence
-dauphin
-electrically
-inaccessible
-microscopy
-nikita
-##ega
-atv
-##cel
-##enter
-##oles
-##oteric
-##ы
-accountants
-punishments
-wrongly
-bribes
-adventurous
-clinch
-flinders
-southland
-##hem
-##kata
-gough
-##ciency
-lads
-soared
-##ה
-undergoes
-deformation
-outlawed
-rubbish
-##arus
-##mussen
-##nidae
-##rzburg
-arcs
-##ingdon
-##tituted
-1695
-wheelbase
-wheeling
-bombardier
-campground
-zebra
-##lices
-##oj
-##bain
-lullaby
-##ecure
-donetsk
-wylie
-grenada
-##arding
-##ης
-squinting
-eireann
-opposes
-##andra
-maximal
-runes
-##broken
-##cuting
-##iface
-##ror
-##rosis
-additive
-britney
-adultery
-triggering
-##drome
-detrimental
-aarhus
-containment
-jc
-swapped
-vichy
-##ioms
-madly
-##oric
-##rag
-brant
-##ckey
-##trix
-1560
-1612
-broughton
-rustling
-##stems
-##uder
-asbestos
-mentoring
-##nivorous
-finley
-leaps
-##isan
-apical
-pry
-slits
-substitutes
-##dict
-intuitive
-fantasia
-insistent
-unreasonable
-##igen
-##vna
-domed
-hannover
-margot
-ponder
-##zziness
-impromptu
-jian
-lc
-rampage
-stemming
-##eft
-andrey
-gerais
-whichever
-amnesia
-appropriated
-anzac
-clicks
-modifying
-ultimatum
-cambrian
-maids
-verve
-yellowstone
-##mbs
-conservatoire
-##scribe
-adherence
-dinners
-spectra
-imperfect
-mysteriously
-sidekick
-tatar
-tuba
-##aks
-##ifolia
-distrust
-##athan
-##zle
-c2
-ronin
-zac
-##pse
-celaena
-instrumentalist
-scents
-skopje
-##mbling
-comical
-compensated
-vidal
-condor
-intersect
-jingle
-wavelengths
-##urrent
-mcqueen
-##izzly
-carp
-weasel
-422
-kanye
-militias
-postdoctoral
-eugen
-gunslinger
-##ɛ
-faux
-hospice
-##for
-appalled
-derivation
-dwarves
-##elis
-dilapidated
-##folk
-astoria
-philology
-##lwyn
-##otho
-##saka
-inducing
-philanthropy
-##bf
-##itative
-geek
-markedly
-sql
-##yce
-bessie
-indices
-rn
-##flict
-495
-frowns
-resolving
-weightlifting
-tugs
-cleric
-contentious
-1653
-mania
-rms
-##miya
-##reate
-##ruck
-##tucket
-bien
-eels
-marek
-##ayton
-##cence
-discreet
-unofficially
-##ife
-leaks
-##bber
-1705
-332
-dung
-compressor
-hillsborough
-pandit
-shillings
-distal
-##skin
-381
-##tat
-##you
-nosed
-##nir
-mangrove
-undeveloped
-##idia
-textures
-##inho
-##500
-##rise
-ae
-irritating
-nay
-amazingly
-bancroft
-apologetic
-compassionate
-kata
-symphonies
-##lovic
-airspace
-##lch
-930
-gifford
-precautions
-fulfillment
-sevilla
-vulgar
-martinique
-##urities
-looting
-piccolo
-tidy
-##dermott
-quadrant
-armchair
-incomes
-mathematicians
-stampede
-nilsson
-##inking
-##scan
-foo
-quarterfinal
-##ostal
-shang
-shouldered
-squirrels
-##owe
-344
-vinegar
-##bner
-##rchy
-##systems
-delaying
-##trics
-ars
-dwyer
-rhapsody
-sponsoring
-##gration
-bipolar
-cinder
-starters
-##olio
-##urst
-421
-signage
-##nty
-aground
-figurative
-mons
-acquaintances
-duets
-erroneously
-soyuz
-elliptic
-recreated
-##cultural
-##quette
-##ssed
-##tma
-##zcz
-moderator
-scares
-##itaire
-##stones
-##udence
-juniper
-sighting
-##just
-##nsen
-britten
-calabria
-ry
-bop
-cramer
-forsyth
-stillness
-##л
-airmen
-gathers
-unfit
-##umber
-##upt
-taunting
-##rip
-seeker
-streamlined
-##bution
-holster
-schumann
-tread
-vox
-##gano
-##onzo
-strive
-dil
-reforming
-covent
-newbury
-predicting
-##orro
-decorate
-tre
-##puted
-andover
-ie
-asahi
-dept
-dunkirk
-gills
-##tori
-buren
-huskies
-##stis
-##stov
-abstracts
-bets
-loosen
-##opa
-1682
-yearning
-##glio
-##sir
-berman
-effortlessly
-enamel
-napoli
-persist
-##peration
-##uez
-attache
-elisa
-b1
-invitations
-##kic
-accelerating
-reindeer
-boardwalk
-clutches
-nelly
-polka
-starbucks
-##kei
-adamant
-huey
-lough
-unbroken
-adventurer
-embroidery
-inspecting
-stanza
-##ducted
-naia
-taluka
-##pone
-##roids
-chases
-deprivation
-florian
-##jing
-##ppet
-earthly
-##lib
-##ssee
-colossal
-foreigner
-vet
-freaks
-patrice
-rosewood
-triassic
-upstate
-##pkins
-dominates
-ata
-chants
-ks
-vo
-##400
-##bley
-##raya
-##rmed
-555
-agra
-infiltrate
-##ailing
-##ilation
-##tzer
-##uppe
-##werk
-binoculars
-enthusiast
-fujian
-squeak
-##avs
-abolitionist
-almeida
-boredom
-hampstead
-marsden
-rations
-##ands
-inflated
-334
-bonuses
-rosalie
-patna
-##rco
-329
-detachments
-penitentiary
-54th
-flourishing
-woolf
-##dion
-##etched
-papyrus
-##lster
-##nsor
-##toy
-bobbed
-dismounted
-endelle
-inhuman
-motorola
-tbs
-wince
-wreath
-##ticus
-hideout
-inspections
-sanjay
-disgrace
-infused
-pudding
-stalks
-##urbed
-arsenic
-leases
-##hyl
-##rrard
-collarbone
-##waite
-##wil
-dowry
-##bant
-##edance
-genealogical
-nitrate
-salamanca
-scandals
-thyroid
-necessitated
-##!
-##"
-###
-##$
-##%
-##&
-##'
-##(
-##)
-##*
-##+
-##,
-##-
-##.
-##/
-##:
-##;
-##<
-##=
-##>
-##?
-##@
-##[
-##\
-##]
-##^
-##_
-##`
-##{
-##|
-##}
-##~
-##¡
-##¢
-##£
-##¤
-##¥
-##¦
-##§
-##¨
-##©
-##ª
-##«
-##¬
-##®
-##±
-##´
-##µ
-##¶
-##·
-##º
-##»
-##¼
-##¾
-##¿
-##æ
-##ð
-##÷
-##þ
-##đ
-##ħ
-##ŋ
-##œ
-##ƒ
-##ɐ
-##ɑ
-##ɒ
-##ɔ
-##ɕ
-##ə
-##ɡ
-##ɣ
-##ɨ
-##ɪ
-##ɫ
-##ɬ
-##ɯ
-##ɲ
-##ɴ
-##ɹ
-##ɾ
-##ʀ
-##ʁ
-##ʂ
-##ʃ
-##ʉ
-##ʊ
-##ʋ
-##ʌ
-##ʎ
-##ʐ
-##ʑ
-##ʒ
-##ʔ
-##ʰ
-##ʲ
-##ʳ
-##ʷ
-##ʸ
-##ʻ
-##ʼ
-##ʾ
-##ʿ
-##ˈ
-##ˡ
-##ˢ
-##ˣ
-##ˤ
-##β
-##γ
-##δ
-##ε
-##ζ
-##θ
-##κ
-##λ
-##μ
-##ξ
-##ο
-##π
-##ρ
-##σ
-##τ
-##υ
-##φ
-##χ
-##ψ
-##ω
-##б
-##г
-##д
-##ж
-##з
-##м
-##п
-##с
-##у
-##ф
-##х
-##ц
-##ч
-##ш
-##щ
-##ъ
-##э
-##ю
-##ђ
-##є
-##і
-##ј
-##љ
-##њ
-##ћ
-##ӏ
-##ա
-##բ
-##գ
-##դ
-##ե
-##թ
-##ի
-##լ
-##կ
-##հ
-##մ
-##յ
-##ն
-##ո
-##պ
-##ս
-##վ
-##տ
-##ր
-##ւ
-##ք
-##־
-##א
-##ב
-##ג
-##ד
-##ו
-##ז
-##ח
-##ט
-##י
-##ך
-##כ
-##ל
-##ם
-##מ
-##ן
-##נ
-##ס
-##ע
-##ף
-##פ
-##ץ
-##צ
-##ק
-##ר
-##ש
-##ת
-##،
-##ء
-##ب
-##ت
-##ث
-##ج
-##ح
-##خ
-##ذ
-##ز
-##س
-##ش
-##ص
-##ض
-##ط
-##ظ
-##ع
-##غ
-##ـ
-##ف
-##ق
-##ك
-##و
-##ى
-##ٹ
-##پ
-##چ
-##ک
-##گ
-##ں
-##ھ
-##ہ
-##ے
-##अ
-##आ
-##उ
-##ए
-##क
-##ख
-##ग
-##च
-##ज
-##ट
-##ड
-##ण
-##त
-##थ
-##द
-##ध
-##न
-##प
-##ब
-##भ
-##म
-##य
-##र
-##ल
-##व
-##श
-##ष
-##स
-##ह
-##ा
-##ि
-##ी
-##ो
-##।
-##॥
-##ং
-##অ
-##আ
-##ই
-##উ
-##এ
-##ও
-##ক
-##খ
-##গ
-##চ
-##ছ
-##জ
-##ট
-##ড
-##ণ
-##ত
-##থ
-##দ
-##ধ
-##ন
-##প
-##ব
-##ভ
-##ম
-##য
-##র
-##ল
-##শ
-##ষ
-##স
-##হ
-##া
-##ি
-##ী
-##ে
-##க
-##ச
-##ட
-##த
-##ந
-##ன
-##ப
-##ம
-##ய
-##ர
-##ல
-##ள
-##வ
-##ா
-##ி
-##ு
-##ே
-##ை
-##ನ
-##ರ
-##ಾ
-##ක
-##ය
-##ර
-##ල
-##ව
-##ා
-##ก
-##ง
-##ต
-##ท
-##น
-##พ
-##ม
-##ย
-##ร
-##ล
-##ว
-##ส
-##อ
-##า
-##เ
-##་
-##།
-##ག
-##ང
-##ད
-##ན
-##པ
-##བ
-##མ
-##འ
-##ར
-##ལ
-##ས
-##မ
-##ა
-##ბ
-##გ
-##დ
-##ე
-##ვ
-##თ
-##ი
-##კ
-##ლ
-##მ
-##ნ
-##ო
-##რ
-##ს
-##ტ
-##უ
-##ᄀ
-##ᄂ
-##ᄃ
-##ᄅ
-##ᄆ
-##ᄇ
-##ᄉ
-##ᄊ
-##ᄋ
-##ᄌ
-##ᄎ
-##ᄏ
-##ᄐ
-##ᄑ
-##ᄒ
-##ᅡ
-##ᅢ
-##ᅥ
-##ᅦ
-##ᅧ
-##ᅩ
-##ᅪ
-##ᅭ
-##ᅮ
-##ᅯ
-##ᅲ
-##ᅳ
-##ᅴ
-##ᅵ
-##ᆨ
-##ᆫ
-##ᆯ
-##ᆷ
-##ᆸ
-##ᆼ
-##ᴬ
-##ᴮ
-##ᴰ
-##ᴵ
-##ᴺ
-##ᵀ
-##ᵃ
-##ᵇ
-##ᵈ
-##ᵉ
-##ᵍ
-##ᵏ
-##ᵐ
-##ᵒ
-##ᵖ
-##ᵗ
-##ᵘ
-##ᵣ
-##ᵤ
-##ᵥ
-##ᶜ
-##ᶠ
-##‐
-##‑
-##‒
-##–
-##—
-##―
-##‖
-##‘
-##’
-##‚
-##“
-##”
-##„
-##†
-##‡
-##•
-##…
-##‰
-##′
-##″
-##›
-##‿
-##⁄
-##⁰
-##ⁱ
-##⁴
-##⁵
-##⁶
-##⁷
-##⁸
-##⁹
-##⁻
-##ⁿ
-##₅
-##₆
-##₇
-##₈
-##₉
-##₊
-##₍
-##₎
-##ₐ
-##ₑ
-##ₒ
-##ₓ
-##ₕ
-##ₖ
-##ₗ
-##ₘ
-##ₚ
-##ₛ
-##ₜ
-##₤
-##₩
-##€
-##₱
-##₹
-##ℓ
-##№
-##ℝ
-##™
-##⅓
-##⅔
-##←
-##↑
-##→
-##↓
-##↔
-##↦
-##⇄
-##⇌
-##⇒
-##∂
-##∅
-##∆
-##∇
-##∈
-##∗
-##∘
-##√
-##∞
-##∧
-##∨
-##∩
-##∪
-##≈
-##≡
-##≤
-##≥
-##⊂
-##⊆
-##⊕
-##⊗
-##⋅
-##─
-##│
-##■
-##▪
-##●
-##★
-##☆
-##☉
-##♠
-##♣
-##♥
-##♦
-##♯
-##⟨
-##⟩
-##ⱼ
-##⺩
-##⺼
-##⽥
-##、
-##。
-##〈
-##〉
-##《
-##》
-##「
-##」
-##『
-##』
-##〜
-##あ
-##い
-##う
-##え
-##お
-##か
-##き
-##く
-##け
-##こ
-##さ
-##し
-##す
-##せ
-##そ
-##た
-##ち
-##っ
-##つ
-##て
-##と
-##な
-##に
-##ぬ
-##ね
-##の
-##は
-##ひ
-##ふ
-##へ
-##ほ
-##ま
-##み
-##む
-##め
-##も
-##や
-##ゆ
-##よ
-##ら
-##り
-##る
-##れ
-##ろ
-##を
-##ん
-##ァ
-##ア
-##ィ
-##イ
-##ウ
-##ェ
-##エ
-##オ
-##カ
-##キ
-##ク
-##ケ
-##コ
-##サ
-##シ
-##ス
-##セ
-##タ
-##チ
-##ッ
-##ツ
-##テ
-##ト
-##ナ
-##ニ
-##ノ
-##ハ
-##ヒ
-##フ
-##ヘ
-##ホ
-##マ
-##ミ
-##ム
-##メ
-##モ
-##ャ
-##ュ
-##ョ
-##ラ
-##リ
-##ル
-##レ
-##ロ
-##ワ
-##ン
-##・
-##ー
-##一
-##三
-##上
-##下
-##不
-##世
-##中
-##主
-##久
-##之
-##也
-##事
-##二
-##五
-##井
-##京
-##人
-##亻
-##仁
-##介
-##代
-##仮
-##伊
-##会
-##佐
-##侍
-##保
-##信
-##健
-##元
-##光
-##八
-##公
-##内
-##出
-##分
-##前
-##劉
-##力
-##加
-##勝
-##北
-##区
-##十
-##千
-##南
-##博
-##原
-##口
-##古
-##史
-##司
-##合
-##吉
-##同
-##名
-##和
-##囗
-##四
-##国
-##國
-##土
-##地
-##坂
-##城
-##堂
-##場
-##士
-##夏
-##外
-##大
-##天
-##太
-##夫
-##奈
-##女
-##子
-##学
-##宀
-##宇
-##安
-##宗
-##定
-##宣
-##宮
-##家
-##宿
-##寺
-##將
-##小
-##尚
-##山
-##岡
-##島
-##崎
-##川
-##州
-##巿
-##帝
-##平
-##年
-##幸
-##广
-##弘
-##張
-##彳
-##後
-##御
-##德
-##心
-##忄
-##志
-##忠
-##愛
-##成
-##我
-##戦
-##戸
-##手
-##扌
-##政
-##文
-##新
-##方
-##日
-##明
-##星
-##春
-##昭
-##智
-##曲
-##書
-##月
-##有
-##朝
-##木
-##本
-##李
-##村
-##東
-##松
-##林
-##森
-##楊
-##樹
-##橋
-##歌
-##止
-##正
-##武
-##比
-##氏
-##民
-##水
-##氵
-##氷
-##永
-##江
-##沢
-##河
-##治
-##法
-##海
-##清
-##漢
-##瀬
-##火
-##版
-##犬
-##王
-##生
-##田
-##男
-##疒
-##発
-##白
-##的
-##皇
-##目
-##相
-##省
-##真
-##石
-##示
-##社
-##神
-##福
-##禾
-##秀
-##秋
-##空
-##立
-##章
-##竹
-##糹
-##美
-##義
-##耳
-##良
-##艹
-##花
-##英
-##華
-##葉
-##藤
-##行
-##街
-##西
-##見
-##訁
-##語
-##谷
-##貝
-##貴
-##車
-##軍
-##辶
-##道
-##郎
-##郡
-##部
-##都
-##里
-##野
-##金
-##鈴
-##镇
-##長
-##門
-##間
-##阝
-##阿
-##陳
-##陽
-##雄
-##青
-##面
-##風
-##食
-##香
-##馬
-##高
-##龍
-##龸
-##fi
-##fl
-##!
-##(
-##)
-##,
-##-
-##.
-##/
-##:
-##?
-##~
-
diff --git a/example.env b/example.env
index 1678af9..aa937e3 100644
--- a/example.env
+++ b/example.env
@@ -6,6 +6,8 @@ XDG_CACHE_HOME="/tmp"
OPENSEARCH_HTTPS="http://opensearch:9200"
OPENSEARCH_INDEX="caddy_vector_index"
USERS_TABLE_NAME='caddyUsers'
+ROUTES_TABLE_NAME="caddyRoutes"
+PROMPTS_TABLE_NAME='caddyPrompts'
OFFICES_TABLE_NAME='caddyOffices'
MESSAGES_TABLE_NAME='caddyMessages'
RESPONSES_TABLE_NAME='caddyResponses'
@@ -14,3 +16,9 @@ CADDY_SERVICE_ACCOUNT={service_account_json}
CADDY_GOOGLE_CLOUD_PROJECT="123456789"
CADDY_SUPERVISOR_SERVICE_ACCOUNT={supervisor_service_account_json}
CADDY_SUPERVISOR_GOOGLE_CLOUD_PROJECT="123456789"
+
+AWS_SESSION_TOKEN="" # Leave blank
+TASK_ROLE_ARN="caddy-role-arn"
+
+MicrosoftAppId=""
+MicrosoftAppPassword=""
diff --git a/infra/template.yaml b/infra/template.yaml
index 1d7a6d6..bf6e487 100644
--- a/infra/template.yaml
+++ b/infra/template.yaml
@@ -12,6 +12,12 @@ Parameters:
UserTableName:
Type: String
Description: Name of the DynamoDB table for users
+ RoutesTableName:
+ Type: String
+ Description: Name of the DynamoDB table for routes
+ PromptsTableName:
+ Type: String
+ Description: Name of the DynamoDB table for prompts
MessageTableName:
Type: String
Description: Name of the DynamoDB table for messages
@@ -51,6 +57,12 @@ Parameters:
OpensearchIndex:
Type: String
Description: Index for Opensearch
+ MicrosoftAppIdSecretArn:
+ Type: String
+ Description: Secret Arn for App Id for Teams integration
+ MicrosoftAppPasswordSecretArn:
+ Type: String
+ Description: Secret Arn for App password for Teams integration
Resources:
CaddyVPC:
@@ -228,6 +240,10 @@ Resources:
ValueFrom: !Ref CaddyServiceAccountSecretArn
- Name: CADDY_SUPERVISOR_SERVICE_ACCOUNT
ValueFrom: !Ref CaddySupervisorServiceAccountSecretArn
+ - Name: MicrosoftAppId
+ ValueFrom: !Ref MicrosoftAppIdSecretArn
+ - Name: MicrosoftAppPassword
+ ValueFrom: !Ref MicrosoftAppPasswordSecretArn
Environment:
- Name: MESSAGES_TABLE_NAME
Value: !Ref MessageTableName
@@ -235,6 +251,10 @@ Resources:
Value: !Ref ResponsesTableName
- Name: USERS_TABLE_NAME
Value: !Ref UserTableName
+ - Name: ROUTES_TABLE_NAME
+ Value: !Ref RoutesTableName
+ - Name: PROMPTS_TABLE_NAME
+ Value: !Ref PromptsTableName
- Name: OFFICES_TABLE_NAME
Value: !Ref OfficesTableName
- Name: EVALUATION_TABLE_NAME
@@ -255,6 +275,8 @@ Resources:
Value: !Ref CaddyGoogleCloudProject
- Name: CADDY_SUPERVISOR_GOOGLE_CLOUD_PROJECT
Value: !Ref CaddySupervisorGoogleCloudProject
+ - Name: TASK_ROLE_ARN
+ Value: !GetAtt CaddyRole.Arn
LogConfiguration:
LogDriver: awslogs
Options:
@@ -305,6 +327,10 @@ Resources:
Principal:
Service: ecs-tasks.amazonaws.com
Action: sts:AssumeRole
+ - Effect: Allow
+ Principal:
+ AWS: !Sub arn:aws:iam::${AWS::AccountId}:role/CaddyRole-${StageName}
+ Action: sts:AssumeRole
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy
Policies:
@@ -317,6 +343,7 @@ Resources:
- ecr:GetAuthorizationToken
- ecr:GetDownloadUrlForLayer
- ecr:BatchGetImage
+ - sts:GetSessionToken
Resource: '*'
- PolicyName: !Sub CaddyLoggingPolicy-${StageName}
PolicyDocument:
@@ -369,6 +396,18 @@ Resources:
- dynamodb:UpdateItem
- dynamodb:GetItem
Resource: !GetAtt EvaluationTable.Arn
+ - Effect: Allow
+ Action:
+ - dynamodb:Scan
+ Resource: !GetAtt RoutesTable.Arn
+ - Effect: Allow
+ Action:
+ - dynamodb:PutItem
+ - dynamodb:GetItem
+ - dynamodb:DeleteItem
+ - dynamodb:Scan
+ - dynamodb:UpdateItem
+ Resource: !GetAtt PromptsTable.Arn
- PolicyName: !Sub BedrockInvokerPolicy-${StageName}
PolicyDocument:
Version: '2012-10-17'
@@ -409,6 +448,34 @@ Resources:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
+ RoutesTable:
+ Type: AWS::DynamoDB::Table
+ Properties:
+ TableName: !Ref RoutesTableName
+ AttributeDefinitions:
+ - AttributeName: name
+ AttributeType: S
+ KeySchema:
+ - AttributeName: name
+ KeyType: HASH
+ ProvisionedThroughput:
+ ReadCapacityUnits: 1
+ WriteCapacityUnits: 1
+
+ PromptsTable:
+ Type: AWS::DynamoDB::Table
+ Properties:
+ TableName: !Ref PromptsTableName
+ AttributeDefinitions:
+ - AttributeName: PromptName
+ AttributeType: S
+ KeySchema:
+ - AttributeName: PromptName
+ KeyType: HASH
+ ProvisionedThroughput:
+ ReadCapacityUnits: 1
+ WriteCapacityUnits: 1
+
MessagesTable:
Type: AWS::DynamoDB::Table
Properties:
diff --git a/poetry.lock b/poetry.lock
index 5b06bed..6e5e392 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -140,6 +140,17 @@ doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphin
test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"]
trio = ["trio (>=0.23)"]
+[[package]]
+name = "appnope"
+version = "0.1.4"
+description = "Disable App Nap on macOS >= 10.9"
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"},
+ {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"},
+]
+
[[package]]
name = "arrow"
version = "1.3.0"
@@ -159,6 +170,24 @@ types-python-dateutil = ">=2.8.10"
doc = ["doc8", "sphinx (>=7.0.0)", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx_rtd_theme (>=1.3.0)"]
test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytz (==2021.1)", "simplejson (==3.*)"]
+[[package]]
+name = "asttokens"
+version = "2.4.1"
+description = "Annotate AST trees with source code positions"
+optional = false
+python-versions = "*"
+files = [
+ {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"},
+ {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"},
+]
+
+[package.dependencies]
+six = ">=1.12.0"
+
+[package.extras]
+astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"]
+test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"]
+
[[package]]
name = "attrs"
version = "23.2.0"
@@ -198,21 +227,21 @@ dev = ["black (==24.4.2)", "coverage (==7.5.1)", "flake8 (==3.8.4)", "parameteri
[[package]]
name = "aws-sam-cli"
-version = "1.118.0"
+version = "1.120.0"
description = "AWS SAM CLI is a CLI tool for local development and testing of Serverless applications"
optional = false
python-versions = "!=4.0,<=4.0,>=3.8"
files = [
- {file = "aws_sam_cli-1.118.0-py3-none-any.whl", hash = "sha256:77c3c54424a78558af72f2eeec66621bba9ee30ff4a23be975ff0a119764435c"},
- {file = "aws_sam_cli-1.118.0.tar.gz", hash = "sha256:c33b1dfe0a686cfaf697391ba383fb3e63d4d732d42fbb15c49e28ea0bd258ed"},
+ {file = "aws_sam_cli-1.120.0-py3-none-any.whl", hash = "sha256:489f59a913b3dc4e21d0e06b2c1a64bdee4c7fa1277f00f190e775ac8ff40f9d"},
+ {file = "aws_sam_cli-1.120.0.tar.gz", hash = "sha256:aa8a1ec921b8e5cbe42688fff9d03a97d55c38792b7af3dbe9ff21272f9835f4"},
]
[package.dependencies]
aws-lambda-builders = "1.50.0"
aws-sam-translator = "1.89.0"
boto3 = ">=1.29.2,<2"
-boto3-stubs = {version = "1.34.111", extras = ["apigateway", "cloudformation", "ecr", "iam", "kinesis", "lambda", "s3", "schemas", "secretsmanager", "signer", "sqs", "stepfunctions", "sts", "xray"]}
-cfn-lint = ">=0.87.3,<0.88.0"
+boto3-stubs = {version = "1.34.131", extras = ["apigateway", "cloudformation", "ecr", "iam", "kinesis", "lambda", "s3", "schemas", "secretsmanager", "signer", "sqs", "stepfunctions", "sts", "xray"]}
+cfn-lint = ">=0.87.7,<0.88.0"
chevron = ">=0.12,<1.0"
click = ">=8.1,<9.0"
cookiecutter = ">=2.6.0,<2.7.0"
@@ -224,17 +253,17 @@ jsonschema = "<4.23"
pyopenssl = ">=24.1.0,<24.2.0"
PyYAML = ">=6.0.1,<7.0"
regex = "!=2021.10.8"
-requests = ">=2.32.2,<2.33.0"
+requests = ">=2.32.3,<2.33.0"
rich = ">=13.7.1,<13.8.0"
ruamel-yaml = ">=0.18.6,<0.19.0"
tomlkit = "0.12.5"
typing-extensions = ">=4.4.0,<5"
tzlocal = "5.2"
-watchdog = "4.0.0"
+watchdog = "4.0.1"
[package.extras]
-dev = ["black (==24.4.2)", "coverage (==7.5.1)", "filelock (==3.14.0)", "mypy (==1.10.0)", "parameterized (==0.9.0)", "psutil (==5.9.8)", "pytest (==8.2.1)", "pytest-cov (==5.0.0)", "pytest-forked (==1.6.0)", "pytest-json-report-wip (==1.5.1)", "pytest-metadata (==3.1.1)", "pytest-rerunfailures (==14.0)", "pytest-timeout (==2.3.1)", "pytest-xdist (==3.6.1)", "ruff (==0.4.5)", "types-PyYAML (==6.0.12.20240311)", "types-Pygments (==2.18.0.20240506)", "types-chevron (==0.14.2.20240310)", "types-colorama (==0.4.15.20240311)", "types-dateparser (==1.2.0.20240420)", "types-docutils (==0.21.0.20240423)", "types-jsonschema (==4.22.0.20240501)", "types-psutil (==5.9.5.20240516)", "types-pyOpenSSL (==24.1.0.20240425)", "types-pywin32 (==306.0.0.20240408)", "types-requests (==2.31.0.6)", "types-setuptools (==69.5.0.20240513)", "types-urllib3 (==1.26.25.14)"]
-pre-dev = ["ruff (==0.4.5)"]
+dev = ["black (==24.4.2)", "coverage (==7.5.3)", "filelock (==3.15.4)", "mypy (==1.10.0)", "parameterized (==0.9.0)", "psutil (==6.0.0)", "pytest (==8.2.1)", "pytest-cov (==5.0.0)", "pytest-forked (==1.6.0)", "pytest-json-report-wip (==1.5.1)", "pytest-metadata (==3.1.1)", "pytest-rerunfailures (==14.0)", "pytest-timeout (==2.3.1)", "pytest-xdist (==3.6.1)", "ruff (==0.4.10)", "types-PyYAML (==6.0.12.20240311)", "types-Pygments (==2.18.0.20240506)", "types-chevron (==0.14.2.20240310)", "types-colorama (==0.4.15.20240311)", "types-dateparser (==1.2.0.20240420)", "types-docutils (==0.21.0.20240423)", "types-jsonschema (==4.22.0.20240610)", "types-psutil (==6.0.0.20240621)", "types-pyOpenSSL (==24.1.0.20240425)", "types-pywin32 (==306.0.0.20240408)", "types-requests (==2.31.0.6)", "types-requests (==2.32.0.20240622)", "types-setuptools (==70.0.0.20240524)", "types-urllib3 (==1.26.25.14)"]
+pre-dev = ["ruff (==0.4.10)"]
[[package]]
name = "aws-sam-translator"
@@ -329,17 +358,17 @@ numpy = {version = ">=1.19.0", markers = "python_version >= \"3.9\""}
[[package]]
name = "boto3"
-version = "1.34.123"
+version = "1.34.144"
description = "The AWS SDK for Python"
optional = false
python-versions = ">=3.8"
files = [
- {file = "boto3-1.34.123-py3-none-any.whl", hash = "sha256:56bec52d485d5670ce96d53ae7b2cd4ae4e8a705fb2298a21093cdd77d642331"},
- {file = "boto3-1.34.123.tar.gz", hash = "sha256:42b140fc850cf261ee4b1e8ef527fa071b1f1592a6d6a68d34b29f37cc46b4dd"},
+ {file = "boto3-1.34.144-py3-none-any.whl", hash = "sha256:b8433d481d50b68a0162c0379c0dd4aabfc3d1ad901800beb5b87815997511c1"},
+ {file = "boto3-1.34.144.tar.gz", hash = "sha256:2f3e88b10b8fcc5f6100a9d74cd28230edc9d4fa226d99dd40a3ab38ac213673"},
]
[package.dependencies]
-botocore = ">=1.34.123,<1.35.0"
+botocore = ">=1.34.144,<1.35.0"
jmespath = ">=0.7.1,<2.0.0"
s3transfer = ">=0.10.0,<0.11.0"
@@ -348,13 +377,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"]
[[package]]
name = "boto3-stubs"
-version = "1.34.111"
-description = "Type annotations for boto3 1.34.111 generated with mypy-boto3-builder 7.24.0"
+version = "1.34.131"
+description = "Type annotations for boto3 1.34.131 generated with mypy-boto3-builder 7.24.0"
optional = false
python-versions = ">=3.8"
files = [
- {file = "boto3_stubs-1.34.111-py3-none-any.whl", hash = "sha256:209802a0b44d5953b8b21f7abfba695b1398544e83853111882d11977bad1049"},
- {file = "boto3_stubs-1.34.111.tar.gz", hash = "sha256:eae268a5d70d2b880b807a1539602f2c89d4090de6ddb02e3fec144660bc1fd1"},
+ {file = "boto3_stubs-1.34.131-py3-none-any.whl", hash = "sha256:2ac4c3ca481a68760a6ee4b6e5337de429666cbb7ebd216a870df564b2f4c722"},
+ {file = "boto3_stubs-1.34.131.tar.gz", hash = "sha256:019d82a8a4496c01863d676a8d4f2ad830bf4cb752b1107ea453fee30d503a60"},
]
[package.dependencies]
@@ -380,8 +409,7 @@ accessanalyzer = ["mypy-boto3-accessanalyzer (>=1.34.0,<1.35.0)"]
account = ["mypy-boto3-account (>=1.34.0,<1.35.0)"]
acm = ["mypy-boto3-acm (>=1.34.0,<1.35.0)"]
acm-pca = ["mypy-boto3-acm-pca (>=1.34.0,<1.35.0)"]
-alexaforbusiness = ["mypy-boto3-alexaforbusiness (>=1.34.0,<1.35.0)"]
-all = ["mypy-boto3-accessanalyzer (>=1.34.0,<1.35.0)", "mypy-boto3-account (>=1.34.0,<1.35.0)", "mypy-boto3-acm (>=1.34.0,<1.35.0)", "mypy-boto3-acm-pca (>=1.34.0,<1.35.0)", "mypy-boto3-alexaforbusiness (>=1.34.0,<1.35.0)", "mypy-boto3-amp (>=1.34.0,<1.35.0)", "mypy-boto3-amplify (>=1.34.0,<1.35.0)", "mypy-boto3-amplifybackend (>=1.34.0,<1.35.0)", "mypy-boto3-amplifyuibuilder (>=1.34.0,<1.35.0)", "mypy-boto3-apigateway (>=1.34.0,<1.35.0)", "mypy-boto3-apigatewaymanagementapi (>=1.34.0,<1.35.0)", "mypy-boto3-apigatewayv2 (>=1.34.0,<1.35.0)", "mypy-boto3-appconfig (>=1.34.0,<1.35.0)", "mypy-boto3-appconfigdata (>=1.34.0,<1.35.0)", "mypy-boto3-appfabric (>=1.34.0,<1.35.0)", "mypy-boto3-appflow (>=1.34.0,<1.35.0)", "mypy-boto3-appintegrations (>=1.34.0,<1.35.0)", "mypy-boto3-application-autoscaling (>=1.34.0,<1.35.0)", "mypy-boto3-application-insights (>=1.34.0,<1.35.0)", "mypy-boto3-applicationcostprofiler (>=1.34.0,<1.35.0)", "mypy-boto3-appmesh (>=1.34.0,<1.35.0)", "mypy-boto3-apprunner (>=1.34.0,<1.35.0)", "mypy-boto3-appstream (>=1.34.0,<1.35.0)", "mypy-boto3-appsync (>=1.34.0,<1.35.0)", "mypy-boto3-arc-zonal-shift (>=1.34.0,<1.35.0)", "mypy-boto3-artifact (>=1.34.0,<1.35.0)", "mypy-boto3-athena (>=1.34.0,<1.35.0)", "mypy-boto3-auditmanager (>=1.34.0,<1.35.0)", "mypy-boto3-autoscaling (>=1.34.0,<1.35.0)", "mypy-boto3-autoscaling-plans (>=1.34.0,<1.35.0)", "mypy-boto3-b2bi (>=1.34.0,<1.35.0)", "mypy-boto3-backup (>=1.34.0,<1.35.0)", "mypy-boto3-backup-gateway (>=1.34.0,<1.35.0)", "mypy-boto3-backupstorage (>=1.34.0,<1.35.0)", "mypy-boto3-batch (>=1.34.0,<1.35.0)", "mypy-boto3-bcm-data-exports (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-agent (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-agent-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-billingconductor (>=1.34.0,<1.35.0)", "mypy-boto3-braket (>=1.34.0,<1.35.0)", "mypy-boto3-budgets (>=1.34.0,<1.35.0)", "mypy-boto3-ce (>=1.34.0,<1.35.0)", "mypy-boto3-chatbot (>=1.34.0,<1.35.0)", "mypy-boto3-chime (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-identity (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-media-pipelines (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-meetings (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-messaging (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-voice (>=1.34.0,<1.35.0)", "mypy-boto3-cleanrooms (>=1.34.0,<1.35.0)", "mypy-boto3-cleanroomsml (>=1.34.0,<1.35.0)", "mypy-boto3-cloud9 (>=1.34.0,<1.35.0)", "mypy-boto3-cloudcontrol (>=1.34.0,<1.35.0)", "mypy-boto3-clouddirectory (>=1.34.0,<1.35.0)", "mypy-boto3-cloudformation (>=1.34.0,<1.35.0)", "mypy-boto3-cloudfront (>=1.34.0,<1.35.0)", "mypy-boto3-cloudfront-keyvaluestore (>=1.34.0,<1.35.0)", "mypy-boto3-cloudhsm (>=1.34.0,<1.35.0)", "mypy-boto3-cloudhsmv2 (>=1.34.0,<1.35.0)", "mypy-boto3-cloudsearch (>=1.34.0,<1.35.0)", "mypy-boto3-cloudsearchdomain (>=1.34.0,<1.35.0)", "mypy-boto3-cloudtrail (>=1.34.0,<1.35.0)", "mypy-boto3-cloudtrail-data (>=1.34.0,<1.35.0)", "mypy-boto3-cloudwatch (>=1.34.0,<1.35.0)", "mypy-boto3-codeartifact (>=1.34.0,<1.35.0)", "mypy-boto3-codebuild (>=1.34.0,<1.35.0)", "mypy-boto3-codecatalyst (>=1.34.0,<1.35.0)", "mypy-boto3-codecommit (>=1.34.0,<1.35.0)", "mypy-boto3-codeconnections (>=1.34.0,<1.35.0)", "mypy-boto3-codedeploy (>=1.34.0,<1.35.0)", "mypy-boto3-codeguru-reviewer (>=1.34.0,<1.35.0)", "mypy-boto3-codeguru-security (>=1.34.0,<1.35.0)", "mypy-boto3-codeguruprofiler (>=1.34.0,<1.35.0)", "mypy-boto3-codepipeline (>=1.34.0,<1.35.0)", "mypy-boto3-codestar (>=1.34.0,<1.35.0)", "mypy-boto3-codestar-connections (>=1.34.0,<1.35.0)", "mypy-boto3-codestar-notifications (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-identity (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-idp (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-sync (>=1.34.0,<1.35.0)", "mypy-boto3-comprehend (>=1.34.0,<1.35.0)", "mypy-boto3-comprehendmedical (>=1.34.0,<1.35.0)", "mypy-boto3-compute-optimizer (>=1.34.0,<1.35.0)", "mypy-boto3-config (>=1.34.0,<1.35.0)", "mypy-boto3-connect (>=1.34.0,<1.35.0)", "mypy-boto3-connect-contact-lens (>=1.34.0,<1.35.0)", "mypy-boto3-connectcampaigns (>=1.34.0,<1.35.0)", "mypy-boto3-connectcases (>=1.34.0,<1.35.0)", "mypy-boto3-connectparticipant (>=1.34.0,<1.35.0)", "mypy-boto3-controlcatalog (>=1.34.0,<1.35.0)", "mypy-boto3-controltower (>=1.34.0,<1.35.0)", "mypy-boto3-cost-optimization-hub (>=1.34.0,<1.35.0)", "mypy-boto3-cur (>=1.34.0,<1.35.0)", "mypy-boto3-customer-profiles (>=1.34.0,<1.35.0)", "mypy-boto3-databrew (>=1.34.0,<1.35.0)", "mypy-boto3-dataexchange (>=1.34.0,<1.35.0)", "mypy-boto3-datapipeline (>=1.34.0,<1.35.0)", "mypy-boto3-datasync (>=1.34.0,<1.35.0)", "mypy-boto3-datazone (>=1.34.0,<1.35.0)", "mypy-boto3-dax (>=1.34.0,<1.35.0)", "mypy-boto3-deadline (>=1.34.0,<1.35.0)", "mypy-boto3-detective (>=1.34.0,<1.35.0)", "mypy-boto3-devicefarm (>=1.34.0,<1.35.0)", "mypy-boto3-devops-guru (>=1.34.0,<1.35.0)", "mypy-boto3-directconnect (>=1.34.0,<1.35.0)", "mypy-boto3-discovery (>=1.34.0,<1.35.0)", "mypy-boto3-dlm (>=1.34.0,<1.35.0)", "mypy-boto3-dms (>=1.34.0,<1.35.0)", "mypy-boto3-docdb (>=1.34.0,<1.35.0)", "mypy-boto3-docdb-elastic (>=1.34.0,<1.35.0)", "mypy-boto3-drs (>=1.34.0,<1.35.0)", "mypy-boto3-ds (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodb (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodbstreams (>=1.34.0,<1.35.0)", "mypy-boto3-ebs (>=1.34.0,<1.35.0)", "mypy-boto3-ec2 (>=1.34.0,<1.35.0)", "mypy-boto3-ec2-instance-connect (>=1.34.0,<1.35.0)", "mypy-boto3-ecr (>=1.34.0,<1.35.0)", "mypy-boto3-ecr-public (>=1.34.0,<1.35.0)", "mypy-boto3-ecs (>=1.34.0,<1.35.0)", "mypy-boto3-efs (>=1.34.0,<1.35.0)", "mypy-boto3-eks (>=1.34.0,<1.35.0)", "mypy-boto3-eks-auth (>=1.34.0,<1.35.0)", "mypy-boto3-elastic-inference (>=1.34.0,<1.35.0)", "mypy-boto3-elasticache (>=1.34.0,<1.35.0)", "mypy-boto3-elasticbeanstalk (>=1.34.0,<1.35.0)", "mypy-boto3-elastictranscoder (>=1.34.0,<1.35.0)", "mypy-boto3-elb (>=1.34.0,<1.35.0)", "mypy-boto3-elbv2 (>=1.34.0,<1.35.0)", "mypy-boto3-emr (>=1.34.0,<1.35.0)", "mypy-boto3-emr-containers (>=1.34.0,<1.35.0)", "mypy-boto3-emr-serverless (>=1.34.0,<1.35.0)", "mypy-boto3-entityresolution (>=1.34.0,<1.35.0)", "mypy-boto3-es (>=1.34.0,<1.35.0)", "mypy-boto3-events (>=1.34.0,<1.35.0)", "mypy-boto3-evidently (>=1.34.0,<1.35.0)", "mypy-boto3-finspace (>=1.34.0,<1.35.0)", "mypy-boto3-finspace-data (>=1.34.0,<1.35.0)", "mypy-boto3-firehose (>=1.34.0,<1.35.0)", "mypy-boto3-fis (>=1.34.0,<1.35.0)", "mypy-boto3-fms (>=1.34.0,<1.35.0)", "mypy-boto3-forecast (>=1.34.0,<1.35.0)", "mypy-boto3-forecastquery (>=1.34.0,<1.35.0)", "mypy-boto3-frauddetector (>=1.34.0,<1.35.0)", "mypy-boto3-freetier (>=1.34.0,<1.35.0)", "mypy-boto3-fsx (>=1.34.0,<1.35.0)", "mypy-boto3-gamelift (>=1.34.0,<1.35.0)", "mypy-boto3-glacier (>=1.34.0,<1.35.0)", "mypy-boto3-globalaccelerator (>=1.34.0,<1.35.0)", "mypy-boto3-glue (>=1.34.0,<1.35.0)", "mypy-boto3-grafana (>=1.34.0,<1.35.0)", "mypy-boto3-greengrass (>=1.34.0,<1.35.0)", "mypy-boto3-greengrassv2 (>=1.34.0,<1.35.0)", "mypy-boto3-groundstation (>=1.34.0,<1.35.0)", "mypy-boto3-guardduty (>=1.34.0,<1.35.0)", "mypy-boto3-health (>=1.34.0,<1.35.0)", "mypy-boto3-healthlake (>=1.34.0,<1.35.0)", "mypy-boto3-honeycode (>=1.34.0,<1.35.0)", "mypy-boto3-iam (>=1.34.0,<1.35.0)", "mypy-boto3-identitystore (>=1.34.0,<1.35.0)", "mypy-boto3-imagebuilder (>=1.34.0,<1.35.0)", "mypy-boto3-importexport (>=1.34.0,<1.35.0)", "mypy-boto3-inspector (>=1.34.0,<1.35.0)", "mypy-boto3-inspector-scan (>=1.34.0,<1.35.0)", "mypy-boto3-inspector2 (>=1.34.0,<1.35.0)", "mypy-boto3-internetmonitor (>=1.34.0,<1.35.0)", "mypy-boto3-iot (>=1.34.0,<1.35.0)", "mypy-boto3-iot-data (>=1.34.0,<1.35.0)", "mypy-boto3-iot-jobs-data (>=1.34.0,<1.35.0)", "mypy-boto3-iot1click-devices (>=1.34.0,<1.35.0)", "mypy-boto3-iot1click-projects (>=1.34.0,<1.35.0)", "mypy-boto3-iotanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-iotdeviceadvisor (>=1.34.0,<1.35.0)", "mypy-boto3-iotevents (>=1.34.0,<1.35.0)", "mypy-boto3-iotevents-data (>=1.34.0,<1.35.0)", "mypy-boto3-iotfleethub (>=1.34.0,<1.35.0)", "mypy-boto3-iotfleetwise (>=1.34.0,<1.35.0)", "mypy-boto3-iotsecuretunneling (>=1.34.0,<1.35.0)", "mypy-boto3-iotsitewise (>=1.34.0,<1.35.0)", "mypy-boto3-iotthingsgraph (>=1.34.0,<1.35.0)", "mypy-boto3-iottwinmaker (>=1.34.0,<1.35.0)", "mypy-boto3-iotwireless (>=1.34.0,<1.35.0)", "mypy-boto3-ivs (>=1.34.0,<1.35.0)", "mypy-boto3-ivs-realtime (>=1.34.0,<1.35.0)", "mypy-boto3-ivschat (>=1.34.0,<1.35.0)", "mypy-boto3-kafka (>=1.34.0,<1.35.0)", "mypy-boto3-kafkaconnect (>=1.34.0,<1.35.0)", "mypy-boto3-kendra (>=1.34.0,<1.35.0)", "mypy-boto3-kendra-ranking (>=1.34.0,<1.35.0)", "mypy-boto3-keyspaces (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-archived-media (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-media (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-signaling (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-webrtc-storage (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisanalyticsv2 (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisvideo (>=1.34.0,<1.35.0)", "mypy-boto3-kms (>=1.34.0,<1.35.0)", "mypy-boto3-lakeformation (>=1.34.0,<1.35.0)", "mypy-boto3-lambda (>=1.34.0,<1.35.0)", "mypy-boto3-launch-wizard (>=1.34.0,<1.35.0)", "mypy-boto3-lex-models (>=1.34.0,<1.35.0)", "mypy-boto3-lex-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-lexv2-models (>=1.34.0,<1.35.0)", "mypy-boto3-lexv2-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager-linux-subscriptions (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager-user-subscriptions (>=1.34.0,<1.35.0)", "mypy-boto3-lightsail (>=1.34.0,<1.35.0)", "mypy-boto3-location (>=1.34.0,<1.35.0)", "mypy-boto3-logs (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutequipment (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutmetrics (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutvision (>=1.34.0,<1.35.0)", "mypy-boto3-m2 (>=1.34.0,<1.35.0)", "mypy-boto3-machinelearning (>=1.34.0,<1.35.0)", "mypy-boto3-macie2 (>=1.34.0,<1.35.0)", "mypy-boto3-mailmanager (>=1.34.0,<1.35.0)", "mypy-boto3-managedblockchain (>=1.34.0,<1.35.0)", "mypy-boto3-managedblockchain-query (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-agreement (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-catalog (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-deployment (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-entitlement (>=1.34.0,<1.35.0)", "mypy-boto3-marketplacecommerceanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-mediaconnect (>=1.34.0,<1.35.0)", "mypy-boto3-mediaconvert (>=1.34.0,<1.35.0)", "mypy-boto3-medialive (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackage (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackage-vod (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackagev2 (>=1.34.0,<1.35.0)", "mypy-boto3-mediastore (>=1.34.0,<1.35.0)", "mypy-boto3-mediastore-data (>=1.34.0,<1.35.0)", "mypy-boto3-mediatailor (>=1.34.0,<1.35.0)", "mypy-boto3-medical-imaging (>=1.34.0,<1.35.0)", "mypy-boto3-memorydb (>=1.34.0,<1.35.0)", "mypy-boto3-meteringmarketplace (>=1.34.0,<1.35.0)", "mypy-boto3-mgh (>=1.34.0,<1.35.0)", "mypy-boto3-mgn (>=1.34.0,<1.35.0)", "mypy-boto3-migration-hub-refactor-spaces (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhub-config (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhuborchestrator (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhubstrategy (>=1.34.0,<1.35.0)", "mypy-boto3-mobile (>=1.34.0,<1.35.0)", "mypy-boto3-mq (>=1.34.0,<1.35.0)", "mypy-boto3-mturk (>=1.34.0,<1.35.0)", "mypy-boto3-mwaa (>=1.34.0,<1.35.0)", "mypy-boto3-neptune (>=1.34.0,<1.35.0)", "mypy-boto3-neptune-graph (>=1.34.0,<1.35.0)", "mypy-boto3-neptunedata (>=1.34.0,<1.35.0)", "mypy-boto3-network-firewall (>=1.34.0,<1.35.0)", "mypy-boto3-networkmanager (>=1.34.0,<1.35.0)", "mypy-boto3-networkmonitor (>=1.34.0,<1.35.0)", "mypy-boto3-nimble (>=1.34.0,<1.35.0)", "mypy-boto3-oam (>=1.34.0,<1.35.0)", "mypy-boto3-omics (>=1.34.0,<1.35.0)", "mypy-boto3-opensearch (>=1.34.0,<1.35.0)", "mypy-boto3-opensearchserverless (>=1.34.0,<1.35.0)", "mypy-boto3-opsworks (>=1.34.0,<1.35.0)", "mypy-boto3-opsworkscm (>=1.34.0,<1.35.0)", "mypy-boto3-organizations (>=1.34.0,<1.35.0)", "mypy-boto3-osis (>=1.34.0,<1.35.0)", "mypy-boto3-outposts (>=1.34.0,<1.35.0)", "mypy-boto3-panorama (>=1.34.0,<1.35.0)", "mypy-boto3-payment-cryptography (>=1.34.0,<1.35.0)", "mypy-boto3-payment-cryptography-data (>=1.34.0,<1.35.0)", "mypy-boto3-pca-connector-ad (>=1.34.0,<1.35.0)", "mypy-boto3-personalize (>=1.34.0,<1.35.0)", "mypy-boto3-personalize-events (>=1.34.0,<1.35.0)", "mypy-boto3-personalize-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-pi (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-email (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-sms-voice (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-sms-voice-v2 (>=1.34.0,<1.35.0)", "mypy-boto3-pipes (>=1.34.0,<1.35.0)", "mypy-boto3-polly (>=1.34.0,<1.35.0)", "mypy-boto3-pricing (>=1.34.0,<1.35.0)", "mypy-boto3-privatenetworks (>=1.34.0,<1.35.0)", "mypy-boto3-proton (>=1.34.0,<1.35.0)", "mypy-boto3-qbusiness (>=1.34.0,<1.35.0)", "mypy-boto3-qconnect (>=1.34.0,<1.35.0)", "mypy-boto3-qldb (>=1.34.0,<1.35.0)", "mypy-boto3-qldb-session (>=1.34.0,<1.35.0)", "mypy-boto3-quicksight (>=1.34.0,<1.35.0)", "mypy-boto3-ram (>=1.34.0,<1.35.0)", "mypy-boto3-rbin (>=1.34.0,<1.35.0)", "mypy-boto3-rds (>=1.34.0,<1.35.0)", "mypy-boto3-rds-data (>=1.34.0,<1.35.0)", "mypy-boto3-redshift (>=1.34.0,<1.35.0)", "mypy-boto3-redshift-data (>=1.34.0,<1.35.0)", "mypy-boto3-redshift-serverless (>=1.34.0,<1.35.0)", "mypy-boto3-rekognition (>=1.34.0,<1.35.0)", "mypy-boto3-repostspace (>=1.34.0,<1.35.0)", "mypy-boto3-resiliencehub (>=1.34.0,<1.35.0)", "mypy-boto3-resource-explorer-2 (>=1.34.0,<1.35.0)", "mypy-boto3-resource-groups (>=1.34.0,<1.35.0)", "mypy-boto3-resourcegroupstaggingapi (>=1.34.0,<1.35.0)", "mypy-boto3-robomaker (>=1.34.0,<1.35.0)", "mypy-boto3-rolesanywhere (>=1.34.0,<1.35.0)", "mypy-boto3-route53 (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-cluster (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-control-config (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-readiness (>=1.34.0,<1.35.0)", "mypy-boto3-route53domains (>=1.34.0,<1.35.0)", "mypy-boto3-route53profiles (>=1.34.0,<1.35.0)", "mypy-boto3-route53resolver (>=1.34.0,<1.35.0)", "mypy-boto3-rum (>=1.34.0,<1.35.0)", "mypy-boto3-s3 (>=1.34.0,<1.35.0)", "mypy-boto3-s3control (>=1.34.0,<1.35.0)", "mypy-boto3-s3outposts (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-a2i-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-edge (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-featurestore-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-geospatial (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-metrics (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-savingsplans (>=1.34.0,<1.35.0)", "mypy-boto3-scheduler (>=1.34.0,<1.35.0)", "mypy-boto3-schemas (>=1.34.0,<1.35.0)", "mypy-boto3-sdb (>=1.34.0,<1.35.0)", "mypy-boto3-secretsmanager (>=1.34.0,<1.35.0)", "mypy-boto3-securityhub (>=1.34.0,<1.35.0)", "mypy-boto3-securitylake (>=1.34.0,<1.35.0)", "mypy-boto3-serverlessrepo (>=1.34.0,<1.35.0)", "mypy-boto3-service-quotas (>=1.34.0,<1.35.0)", "mypy-boto3-servicecatalog (>=1.34.0,<1.35.0)", "mypy-boto3-servicecatalog-appregistry (>=1.34.0,<1.35.0)", "mypy-boto3-servicediscovery (>=1.34.0,<1.35.0)", "mypy-boto3-ses (>=1.34.0,<1.35.0)", "mypy-boto3-sesv2 (>=1.34.0,<1.35.0)", "mypy-boto3-shield (>=1.34.0,<1.35.0)", "mypy-boto3-signer (>=1.34.0,<1.35.0)", "mypy-boto3-simspaceweaver (>=1.34.0,<1.35.0)", "mypy-boto3-sms (>=1.34.0,<1.35.0)", "mypy-boto3-sms-voice (>=1.34.0,<1.35.0)", "mypy-boto3-snow-device-management (>=1.34.0,<1.35.0)", "mypy-boto3-snowball (>=1.34.0,<1.35.0)", "mypy-boto3-sns (>=1.34.0,<1.35.0)", "mypy-boto3-sqs (>=1.34.0,<1.35.0)", "mypy-boto3-ssm (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-contacts (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-incidents (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-sap (>=1.34.0,<1.35.0)", "mypy-boto3-sso (>=1.34.0,<1.35.0)", "mypy-boto3-sso-admin (>=1.34.0,<1.35.0)", "mypy-boto3-sso-oidc (>=1.34.0,<1.35.0)", "mypy-boto3-stepfunctions (>=1.34.0,<1.35.0)", "mypy-boto3-storagegateway (>=1.34.0,<1.35.0)", "mypy-boto3-sts (>=1.34.0,<1.35.0)", "mypy-boto3-supplychain (>=1.34.0,<1.35.0)", "mypy-boto3-support (>=1.34.0,<1.35.0)", "mypy-boto3-support-app (>=1.34.0,<1.35.0)", "mypy-boto3-swf (>=1.34.0,<1.35.0)", "mypy-boto3-synthetics (>=1.34.0,<1.35.0)", "mypy-boto3-textract (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-influxdb (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-query (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-write (>=1.34.0,<1.35.0)", "mypy-boto3-tnb (>=1.34.0,<1.35.0)", "mypy-boto3-transcribe (>=1.34.0,<1.35.0)", "mypy-boto3-transfer (>=1.34.0,<1.35.0)", "mypy-boto3-translate (>=1.34.0,<1.35.0)", "mypy-boto3-trustedadvisor (>=1.34.0,<1.35.0)", "mypy-boto3-verifiedpermissions (>=1.34.0,<1.35.0)", "mypy-boto3-voice-id (>=1.34.0,<1.35.0)", "mypy-boto3-vpc-lattice (>=1.34.0,<1.35.0)", "mypy-boto3-waf (>=1.34.0,<1.35.0)", "mypy-boto3-waf-regional (>=1.34.0,<1.35.0)", "mypy-boto3-wafv2 (>=1.34.0,<1.35.0)", "mypy-boto3-wellarchitected (>=1.34.0,<1.35.0)", "mypy-boto3-wisdom (>=1.34.0,<1.35.0)", "mypy-boto3-workdocs (>=1.34.0,<1.35.0)", "mypy-boto3-worklink (>=1.34.0,<1.35.0)", "mypy-boto3-workmail (>=1.34.0,<1.35.0)", "mypy-boto3-workmailmessageflow (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces-thin-client (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces-web (>=1.34.0,<1.35.0)", "mypy-boto3-xray (>=1.34.0,<1.35.0)"]
+all = ["mypy-boto3-accessanalyzer (>=1.34.0,<1.35.0)", "mypy-boto3-account (>=1.34.0,<1.35.0)", "mypy-boto3-acm (>=1.34.0,<1.35.0)", "mypy-boto3-acm-pca (>=1.34.0,<1.35.0)", "mypy-boto3-amp (>=1.34.0,<1.35.0)", "mypy-boto3-amplify (>=1.34.0,<1.35.0)", "mypy-boto3-amplifybackend (>=1.34.0,<1.35.0)", "mypy-boto3-amplifyuibuilder (>=1.34.0,<1.35.0)", "mypy-boto3-apigateway (>=1.34.0,<1.35.0)", "mypy-boto3-apigatewaymanagementapi (>=1.34.0,<1.35.0)", "mypy-boto3-apigatewayv2 (>=1.34.0,<1.35.0)", "mypy-boto3-appconfig (>=1.34.0,<1.35.0)", "mypy-boto3-appconfigdata (>=1.34.0,<1.35.0)", "mypy-boto3-appfabric (>=1.34.0,<1.35.0)", "mypy-boto3-appflow (>=1.34.0,<1.35.0)", "mypy-boto3-appintegrations (>=1.34.0,<1.35.0)", "mypy-boto3-application-autoscaling (>=1.34.0,<1.35.0)", "mypy-boto3-application-insights (>=1.34.0,<1.35.0)", "mypy-boto3-application-signals (>=1.34.0,<1.35.0)", "mypy-boto3-applicationcostprofiler (>=1.34.0,<1.35.0)", "mypy-boto3-appmesh (>=1.34.0,<1.35.0)", "mypy-boto3-apprunner (>=1.34.0,<1.35.0)", "mypy-boto3-appstream (>=1.34.0,<1.35.0)", "mypy-boto3-appsync (>=1.34.0,<1.35.0)", "mypy-boto3-apptest (>=1.34.0,<1.35.0)", "mypy-boto3-arc-zonal-shift (>=1.34.0,<1.35.0)", "mypy-boto3-artifact (>=1.34.0,<1.35.0)", "mypy-boto3-athena (>=1.34.0,<1.35.0)", "mypy-boto3-auditmanager (>=1.34.0,<1.35.0)", "mypy-boto3-autoscaling (>=1.34.0,<1.35.0)", "mypy-boto3-autoscaling-plans (>=1.34.0,<1.35.0)", "mypy-boto3-b2bi (>=1.34.0,<1.35.0)", "mypy-boto3-backup (>=1.34.0,<1.35.0)", "mypy-boto3-backup-gateway (>=1.34.0,<1.35.0)", "mypy-boto3-batch (>=1.34.0,<1.35.0)", "mypy-boto3-bcm-data-exports (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-agent (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-agent-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-bedrock-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-billingconductor (>=1.34.0,<1.35.0)", "mypy-boto3-braket (>=1.34.0,<1.35.0)", "mypy-boto3-budgets (>=1.34.0,<1.35.0)", "mypy-boto3-ce (>=1.34.0,<1.35.0)", "mypy-boto3-chatbot (>=1.34.0,<1.35.0)", "mypy-boto3-chime (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-identity (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-media-pipelines (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-meetings (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-messaging (>=1.34.0,<1.35.0)", "mypy-boto3-chime-sdk-voice (>=1.34.0,<1.35.0)", "mypy-boto3-cleanrooms (>=1.34.0,<1.35.0)", "mypy-boto3-cleanroomsml (>=1.34.0,<1.35.0)", "mypy-boto3-cloud9 (>=1.34.0,<1.35.0)", "mypy-boto3-cloudcontrol (>=1.34.0,<1.35.0)", "mypy-boto3-clouddirectory (>=1.34.0,<1.35.0)", "mypy-boto3-cloudformation (>=1.34.0,<1.35.0)", "mypy-boto3-cloudfront (>=1.34.0,<1.35.0)", "mypy-boto3-cloudfront-keyvaluestore (>=1.34.0,<1.35.0)", "mypy-boto3-cloudhsm (>=1.34.0,<1.35.0)", "mypy-boto3-cloudhsmv2 (>=1.34.0,<1.35.0)", "mypy-boto3-cloudsearch (>=1.34.0,<1.35.0)", "mypy-boto3-cloudsearchdomain (>=1.34.0,<1.35.0)", "mypy-boto3-cloudtrail (>=1.34.0,<1.35.0)", "mypy-boto3-cloudtrail-data (>=1.34.0,<1.35.0)", "mypy-boto3-cloudwatch (>=1.34.0,<1.35.0)", "mypy-boto3-codeartifact (>=1.34.0,<1.35.0)", "mypy-boto3-codebuild (>=1.34.0,<1.35.0)", "mypy-boto3-codecatalyst (>=1.34.0,<1.35.0)", "mypy-boto3-codecommit (>=1.34.0,<1.35.0)", "mypy-boto3-codeconnections (>=1.34.0,<1.35.0)", "mypy-boto3-codedeploy (>=1.34.0,<1.35.0)", "mypy-boto3-codeguru-reviewer (>=1.34.0,<1.35.0)", "mypy-boto3-codeguru-security (>=1.34.0,<1.35.0)", "mypy-boto3-codeguruprofiler (>=1.34.0,<1.35.0)", "mypy-boto3-codepipeline (>=1.34.0,<1.35.0)", "mypy-boto3-codestar (>=1.34.0,<1.35.0)", "mypy-boto3-codestar-connections (>=1.34.0,<1.35.0)", "mypy-boto3-codestar-notifications (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-identity (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-idp (>=1.34.0,<1.35.0)", "mypy-boto3-cognito-sync (>=1.34.0,<1.35.0)", "mypy-boto3-comprehend (>=1.34.0,<1.35.0)", "mypy-boto3-comprehendmedical (>=1.34.0,<1.35.0)", "mypy-boto3-compute-optimizer (>=1.34.0,<1.35.0)", "mypy-boto3-config (>=1.34.0,<1.35.0)", "mypy-boto3-connect (>=1.34.0,<1.35.0)", "mypy-boto3-connect-contact-lens (>=1.34.0,<1.35.0)", "mypy-boto3-connectcampaigns (>=1.34.0,<1.35.0)", "mypy-boto3-connectcases (>=1.34.0,<1.35.0)", "mypy-boto3-connectparticipant (>=1.34.0,<1.35.0)", "mypy-boto3-controlcatalog (>=1.34.0,<1.35.0)", "mypy-boto3-controltower (>=1.34.0,<1.35.0)", "mypy-boto3-cost-optimization-hub (>=1.34.0,<1.35.0)", "mypy-boto3-cur (>=1.34.0,<1.35.0)", "mypy-boto3-customer-profiles (>=1.34.0,<1.35.0)", "mypy-boto3-databrew (>=1.34.0,<1.35.0)", "mypy-boto3-dataexchange (>=1.34.0,<1.35.0)", "mypy-boto3-datapipeline (>=1.34.0,<1.35.0)", "mypy-boto3-datasync (>=1.34.0,<1.35.0)", "mypy-boto3-datazone (>=1.34.0,<1.35.0)", "mypy-boto3-dax (>=1.34.0,<1.35.0)", "mypy-boto3-deadline (>=1.34.0,<1.35.0)", "mypy-boto3-detective (>=1.34.0,<1.35.0)", "mypy-boto3-devicefarm (>=1.34.0,<1.35.0)", "mypy-boto3-devops-guru (>=1.34.0,<1.35.0)", "mypy-boto3-directconnect (>=1.34.0,<1.35.0)", "mypy-boto3-discovery (>=1.34.0,<1.35.0)", "mypy-boto3-dlm (>=1.34.0,<1.35.0)", "mypy-boto3-dms (>=1.34.0,<1.35.0)", "mypy-boto3-docdb (>=1.34.0,<1.35.0)", "mypy-boto3-docdb-elastic (>=1.34.0,<1.35.0)", "mypy-boto3-drs (>=1.34.0,<1.35.0)", "mypy-boto3-ds (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodb (>=1.34.0,<1.35.0)", "mypy-boto3-dynamodbstreams (>=1.34.0,<1.35.0)", "mypy-boto3-ebs (>=1.34.0,<1.35.0)", "mypy-boto3-ec2 (>=1.34.0,<1.35.0)", "mypy-boto3-ec2-instance-connect (>=1.34.0,<1.35.0)", "mypy-boto3-ecr (>=1.34.0,<1.35.0)", "mypy-boto3-ecr-public (>=1.34.0,<1.35.0)", "mypy-boto3-ecs (>=1.34.0,<1.35.0)", "mypy-boto3-efs (>=1.34.0,<1.35.0)", "mypy-boto3-eks (>=1.34.0,<1.35.0)", "mypy-boto3-eks-auth (>=1.34.0,<1.35.0)", "mypy-boto3-elastic-inference (>=1.34.0,<1.35.0)", "mypy-boto3-elasticache (>=1.34.0,<1.35.0)", "mypy-boto3-elasticbeanstalk (>=1.34.0,<1.35.0)", "mypy-boto3-elastictranscoder (>=1.34.0,<1.35.0)", "mypy-boto3-elb (>=1.34.0,<1.35.0)", "mypy-boto3-elbv2 (>=1.34.0,<1.35.0)", "mypy-boto3-emr (>=1.34.0,<1.35.0)", "mypy-boto3-emr-containers (>=1.34.0,<1.35.0)", "mypy-boto3-emr-serverless (>=1.34.0,<1.35.0)", "mypy-boto3-entityresolution (>=1.34.0,<1.35.0)", "mypy-boto3-es (>=1.34.0,<1.35.0)", "mypy-boto3-events (>=1.34.0,<1.35.0)", "mypy-boto3-evidently (>=1.34.0,<1.35.0)", "mypy-boto3-finspace (>=1.34.0,<1.35.0)", "mypy-boto3-finspace-data (>=1.34.0,<1.35.0)", "mypy-boto3-firehose (>=1.34.0,<1.35.0)", "mypy-boto3-fis (>=1.34.0,<1.35.0)", "mypy-boto3-fms (>=1.34.0,<1.35.0)", "mypy-boto3-forecast (>=1.34.0,<1.35.0)", "mypy-boto3-forecastquery (>=1.34.0,<1.35.0)", "mypy-boto3-frauddetector (>=1.34.0,<1.35.0)", "mypy-boto3-freetier (>=1.34.0,<1.35.0)", "mypy-boto3-fsx (>=1.34.0,<1.35.0)", "mypy-boto3-gamelift (>=1.34.0,<1.35.0)", "mypy-boto3-glacier (>=1.34.0,<1.35.0)", "mypy-boto3-globalaccelerator (>=1.34.0,<1.35.0)", "mypy-boto3-glue (>=1.34.0,<1.35.0)", "mypy-boto3-grafana (>=1.34.0,<1.35.0)", "mypy-boto3-greengrass (>=1.34.0,<1.35.0)", "mypy-boto3-greengrassv2 (>=1.34.0,<1.35.0)", "mypy-boto3-groundstation (>=1.34.0,<1.35.0)", "mypy-boto3-guardduty (>=1.34.0,<1.35.0)", "mypy-boto3-health (>=1.34.0,<1.35.0)", "mypy-boto3-healthlake (>=1.34.0,<1.35.0)", "mypy-boto3-iam (>=1.34.0,<1.35.0)", "mypy-boto3-identitystore (>=1.34.0,<1.35.0)", "mypy-boto3-imagebuilder (>=1.34.0,<1.35.0)", "mypy-boto3-importexport (>=1.34.0,<1.35.0)", "mypy-boto3-inspector (>=1.34.0,<1.35.0)", "mypy-boto3-inspector-scan (>=1.34.0,<1.35.0)", "mypy-boto3-inspector2 (>=1.34.0,<1.35.0)", "mypy-boto3-internetmonitor (>=1.34.0,<1.35.0)", "mypy-boto3-iot (>=1.34.0,<1.35.0)", "mypy-boto3-iot-data (>=1.34.0,<1.35.0)", "mypy-boto3-iot-jobs-data (>=1.34.0,<1.35.0)", "mypy-boto3-iot1click-devices (>=1.34.0,<1.35.0)", "mypy-boto3-iot1click-projects (>=1.34.0,<1.35.0)", "mypy-boto3-iotanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-iotdeviceadvisor (>=1.34.0,<1.35.0)", "mypy-boto3-iotevents (>=1.34.0,<1.35.0)", "mypy-boto3-iotevents-data (>=1.34.0,<1.35.0)", "mypy-boto3-iotfleethub (>=1.34.0,<1.35.0)", "mypy-boto3-iotfleetwise (>=1.34.0,<1.35.0)", "mypy-boto3-iotsecuretunneling (>=1.34.0,<1.35.0)", "mypy-boto3-iotsitewise (>=1.34.0,<1.35.0)", "mypy-boto3-iotthingsgraph (>=1.34.0,<1.35.0)", "mypy-boto3-iottwinmaker (>=1.34.0,<1.35.0)", "mypy-boto3-iotwireless (>=1.34.0,<1.35.0)", "mypy-boto3-ivs (>=1.34.0,<1.35.0)", "mypy-boto3-ivs-realtime (>=1.34.0,<1.35.0)", "mypy-boto3-ivschat (>=1.34.0,<1.35.0)", "mypy-boto3-kafka (>=1.34.0,<1.35.0)", "mypy-boto3-kafkaconnect (>=1.34.0,<1.35.0)", "mypy-boto3-kendra (>=1.34.0,<1.35.0)", "mypy-boto3-kendra-ranking (>=1.34.0,<1.35.0)", "mypy-boto3-keyspaces (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-archived-media (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-media (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-signaling (>=1.34.0,<1.35.0)", "mypy-boto3-kinesis-video-webrtc-storage (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisanalyticsv2 (>=1.34.0,<1.35.0)", "mypy-boto3-kinesisvideo (>=1.34.0,<1.35.0)", "mypy-boto3-kms (>=1.34.0,<1.35.0)", "mypy-boto3-lakeformation (>=1.34.0,<1.35.0)", "mypy-boto3-lambda (>=1.34.0,<1.35.0)", "mypy-boto3-launch-wizard (>=1.34.0,<1.35.0)", "mypy-boto3-lex-models (>=1.34.0,<1.35.0)", "mypy-boto3-lex-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-lexv2-models (>=1.34.0,<1.35.0)", "mypy-boto3-lexv2-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager-linux-subscriptions (>=1.34.0,<1.35.0)", "mypy-boto3-license-manager-user-subscriptions (>=1.34.0,<1.35.0)", "mypy-boto3-lightsail (>=1.34.0,<1.35.0)", "mypy-boto3-location (>=1.34.0,<1.35.0)", "mypy-boto3-logs (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutequipment (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutmetrics (>=1.34.0,<1.35.0)", "mypy-boto3-lookoutvision (>=1.34.0,<1.35.0)", "mypy-boto3-m2 (>=1.34.0,<1.35.0)", "mypy-boto3-machinelearning (>=1.34.0,<1.35.0)", "mypy-boto3-macie2 (>=1.34.0,<1.35.0)", "mypy-boto3-mailmanager (>=1.34.0,<1.35.0)", "mypy-boto3-managedblockchain (>=1.34.0,<1.35.0)", "mypy-boto3-managedblockchain-query (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-agreement (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-catalog (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-deployment (>=1.34.0,<1.35.0)", "mypy-boto3-marketplace-entitlement (>=1.34.0,<1.35.0)", "mypy-boto3-marketplacecommerceanalytics (>=1.34.0,<1.35.0)", "mypy-boto3-mediaconnect (>=1.34.0,<1.35.0)", "mypy-boto3-mediaconvert (>=1.34.0,<1.35.0)", "mypy-boto3-medialive (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackage (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackage-vod (>=1.34.0,<1.35.0)", "mypy-boto3-mediapackagev2 (>=1.34.0,<1.35.0)", "mypy-boto3-mediastore (>=1.34.0,<1.35.0)", "mypy-boto3-mediastore-data (>=1.34.0,<1.35.0)", "mypy-boto3-mediatailor (>=1.34.0,<1.35.0)", "mypy-boto3-medical-imaging (>=1.34.0,<1.35.0)", "mypy-boto3-memorydb (>=1.34.0,<1.35.0)", "mypy-boto3-meteringmarketplace (>=1.34.0,<1.35.0)", "mypy-boto3-mgh (>=1.34.0,<1.35.0)", "mypy-boto3-mgn (>=1.34.0,<1.35.0)", "mypy-boto3-migration-hub-refactor-spaces (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhub-config (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhuborchestrator (>=1.34.0,<1.35.0)", "mypy-boto3-migrationhubstrategy (>=1.34.0,<1.35.0)", "mypy-boto3-mobile (>=1.34.0,<1.35.0)", "mypy-boto3-mq (>=1.34.0,<1.35.0)", "mypy-boto3-mturk (>=1.34.0,<1.35.0)", "mypy-boto3-mwaa (>=1.34.0,<1.35.0)", "mypy-boto3-neptune (>=1.34.0,<1.35.0)", "mypy-boto3-neptune-graph (>=1.34.0,<1.35.0)", "mypy-boto3-neptunedata (>=1.34.0,<1.35.0)", "mypy-boto3-network-firewall (>=1.34.0,<1.35.0)", "mypy-boto3-networkmanager (>=1.34.0,<1.35.0)", "mypy-boto3-networkmonitor (>=1.34.0,<1.35.0)", "mypy-boto3-nimble (>=1.34.0,<1.35.0)", "mypy-boto3-oam (>=1.34.0,<1.35.0)", "mypy-boto3-omics (>=1.34.0,<1.35.0)", "mypy-boto3-opensearch (>=1.34.0,<1.35.0)", "mypy-boto3-opensearchserverless (>=1.34.0,<1.35.0)", "mypy-boto3-opsworks (>=1.34.0,<1.35.0)", "mypy-boto3-opsworkscm (>=1.34.0,<1.35.0)", "mypy-boto3-organizations (>=1.34.0,<1.35.0)", "mypy-boto3-osis (>=1.34.0,<1.35.0)", "mypy-boto3-outposts (>=1.34.0,<1.35.0)", "mypy-boto3-panorama (>=1.34.0,<1.35.0)", "mypy-boto3-payment-cryptography (>=1.34.0,<1.35.0)", "mypy-boto3-payment-cryptography-data (>=1.34.0,<1.35.0)", "mypy-boto3-pca-connector-ad (>=1.34.0,<1.35.0)", "mypy-boto3-pca-connector-scep (>=1.34.0,<1.35.0)", "mypy-boto3-personalize (>=1.34.0,<1.35.0)", "mypy-boto3-personalize-events (>=1.34.0,<1.35.0)", "mypy-boto3-personalize-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-pi (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-email (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-sms-voice (>=1.34.0,<1.35.0)", "mypy-boto3-pinpoint-sms-voice-v2 (>=1.34.0,<1.35.0)", "mypy-boto3-pipes (>=1.34.0,<1.35.0)", "mypy-boto3-polly (>=1.34.0,<1.35.0)", "mypy-boto3-pricing (>=1.34.0,<1.35.0)", "mypy-boto3-privatenetworks (>=1.34.0,<1.35.0)", "mypy-boto3-proton (>=1.34.0,<1.35.0)", "mypy-boto3-qbusiness (>=1.34.0,<1.35.0)", "mypy-boto3-qconnect (>=1.34.0,<1.35.0)", "mypy-boto3-qldb (>=1.34.0,<1.35.0)", "mypy-boto3-qldb-session (>=1.34.0,<1.35.0)", "mypy-boto3-quicksight (>=1.34.0,<1.35.0)", "mypy-boto3-ram (>=1.34.0,<1.35.0)", "mypy-boto3-rbin (>=1.34.0,<1.35.0)", "mypy-boto3-rds (>=1.34.0,<1.35.0)", "mypy-boto3-rds-data (>=1.34.0,<1.35.0)", "mypy-boto3-redshift (>=1.34.0,<1.35.0)", "mypy-boto3-redshift-data (>=1.34.0,<1.35.0)", "mypy-boto3-redshift-serverless (>=1.34.0,<1.35.0)", "mypy-boto3-rekognition (>=1.34.0,<1.35.0)", "mypy-boto3-repostspace (>=1.34.0,<1.35.0)", "mypy-boto3-resiliencehub (>=1.34.0,<1.35.0)", "mypy-boto3-resource-explorer-2 (>=1.34.0,<1.35.0)", "mypy-boto3-resource-groups (>=1.34.0,<1.35.0)", "mypy-boto3-resourcegroupstaggingapi (>=1.34.0,<1.35.0)", "mypy-boto3-robomaker (>=1.34.0,<1.35.0)", "mypy-boto3-rolesanywhere (>=1.34.0,<1.35.0)", "mypy-boto3-route53 (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-cluster (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-control-config (>=1.34.0,<1.35.0)", "mypy-boto3-route53-recovery-readiness (>=1.34.0,<1.35.0)", "mypy-boto3-route53domains (>=1.34.0,<1.35.0)", "mypy-boto3-route53profiles (>=1.34.0,<1.35.0)", "mypy-boto3-route53resolver (>=1.34.0,<1.35.0)", "mypy-boto3-rum (>=1.34.0,<1.35.0)", "mypy-boto3-s3 (>=1.34.0,<1.35.0)", "mypy-boto3-s3control (>=1.34.0,<1.35.0)", "mypy-boto3-s3outposts (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-a2i-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-edge (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-featurestore-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-geospatial (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-metrics (>=1.34.0,<1.35.0)", "mypy-boto3-sagemaker-runtime (>=1.34.0,<1.35.0)", "mypy-boto3-savingsplans (>=1.34.0,<1.35.0)", "mypy-boto3-scheduler (>=1.34.0,<1.35.0)", "mypy-boto3-schemas (>=1.34.0,<1.35.0)", "mypy-boto3-sdb (>=1.34.0,<1.35.0)", "mypy-boto3-secretsmanager (>=1.34.0,<1.35.0)", "mypy-boto3-securityhub (>=1.34.0,<1.35.0)", "mypy-boto3-securitylake (>=1.34.0,<1.35.0)", "mypy-boto3-serverlessrepo (>=1.34.0,<1.35.0)", "mypy-boto3-service-quotas (>=1.34.0,<1.35.0)", "mypy-boto3-servicecatalog (>=1.34.0,<1.35.0)", "mypy-boto3-servicecatalog-appregistry (>=1.34.0,<1.35.0)", "mypy-boto3-servicediscovery (>=1.34.0,<1.35.0)", "mypy-boto3-ses (>=1.34.0,<1.35.0)", "mypy-boto3-sesv2 (>=1.34.0,<1.35.0)", "mypy-boto3-shield (>=1.34.0,<1.35.0)", "mypy-boto3-signer (>=1.34.0,<1.35.0)", "mypy-boto3-simspaceweaver (>=1.34.0,<1.35.0)", "mypy-boto3-sms (>=1.34.0,<1.35.0)", "mypy-boto3-sms-voice (>=1.34.0,<1.35.0)", "mypy-boto3-snow-device-management (>=1.34.0,<1.35.0)", "mypy-boto3-snowball (>=1.34.0,<1.35.0)", "mypy-boto3-sns (>=1.34.0,<1.35.0)", "mypy-boto3-sqs (>=1.34.0,<1.35.0)", "mypy-boto3-ssm (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-contacts (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-incidents (>=1.34.0,<1.35.0)", "mypy-boto3-ssm-sap (>=1.34.0,<1.35.0)", "mypy-boto3-sso (>=1.34.0,<1.35.0)", "mypy-boto3-sso-admin (>=1.34.0,<1.35.0)", "mypy-boto3-sso-oidc (>=1.34.0,<1.35.0)", "mypy-boto3-stepfunctions (>=1.34.0,<1.35.0)", "mypy-boto3-storagegateway (>=1.34.0,<1.35.0)", "mypy-boto3-sts (>=1.34.0,<1.35.0)", "mypy-boto3-supplychain (>=1.34.0,<1.35.0)", "mypy-boto3-support (>=1.34.0,<1.35.0)", "mypy-boto3-support-app (>=1.34.0,<1.35.0)", "mypy-boto3-swf (>=1.34.0,<1.35.0)", "mypy-boto3-synthetics (>=1.34.0,<1.35.0)", "mypy-boto3-taxsettings (>=1.34.0,<1.35.0)", "mypy-boto3-textract (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-influxdb (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-query (>=1.34.0,<1.35.0)", "mypy-boto3-timestream-write (>=1.34.0,<1.35.0)", "mypy-boto3-tnb (>=1.34.0,<1.35.0)", "mypy-boto3-transcribe (>=1.34.0,<1.35.0)", "mypy-boto3-transfer (>=1.34.0,<1.35.0)", "mypy-boto3-translate (>=1.34.0,<1.35.0)", "mypy-boto3-trustedadvisor (>=1.34.0,<1.35.0)", "mypy-boto3-verifiedpermissions (>=1.34.0,<1.35.0)", "mypy-boto3-voice-id (>=1.34.0,<1.35.0)", "mypy-boto3-vpc-lattice (>=1.34.0,<1.35.0)", "mypy-boto3-waf (>=1.34.0,<1.35.0)", "mypy-boto3-waf-regional (>=1.34.0,<1.35.0)", "mypy-boto3-wafv2 (>=1.34.0,<1.35.0)", "mypy-boto3-wellarchitected (>=1.34.0,<1.35.0)", "mypy-boto3-wisdom (>=1.34.0,<1.35.0)", "mypy-boto3-workdocs (>=1.34.0,<1.35.0)", "mypy-boto3-worklink (>=1.34.0,<1.35.0)", "mypy-boto3-workmail (>=1.34.0,<1.35.0)", "mypy-boto3-workmailmessageflow (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces-thin-client (>=1.34.0,<1.35.0)", "mypy-boto3-workspaces-web (>=1.34.0,<1.35.0)", "mypy-boto3-xray (>=1.34.0,<1.35.0)"]
amp = ["mypy-boto3-amp (>=1.34.0,<1.35.0)"]
amplify = ["mypy-boto3-amplify (>=1.34.0,<1.35.0)"]
amplifybackend = ["mypy-boto3-amplifybackend (>=1.34.0,<1.35.0)"]
@@ -396,11 +424,13 @@ appflow = ["mypy-boto3-appflow (>=1.34.0,<1.35.0)"]
appintegrations = ["mypy-boto3-appintegrations (>=1.34.0,<1.35.0)"]
application-autoscaling = ["mypy-boto3-application-autoscaling (>=1.34.0,<1.35.0)"]
application-insights = ["mypy-boto3-application-insights (>=1.34.0,<1.35.0)"]
+application-signals = ["mypy-boto3-application-signals (>=1.34.0,<1.35.0)"]
applicationcostprofiler = ["mypy-boto3-applicationcostprofiler (>=1.34.0,<1.35.0)"]
appmesh = ["mypy-boto3-appmesh (>=1.34.0,<1.35.0)"]
apprunner = ["mypy-boto3-apprunner (>=1.34.0,<1.35.0)"]
appstream = ["mypy-boto3-appstream (>=1.34.0,<1.35.0)"]
appsync = ["mypy-boto3-appsync (>=1.34.0,<1.35.0)"]
+apptest = ["mypy-boto3-apptest (>=1.34.0,<1.35.0)"]
arc-zonal-shift = ["mypy-boto3-arc-zonal-shift (>=1.34.0,<1.35.0)"]
artifact = ["mypy-boto3-artifact (>=1.34.0,<1.35.0)"]
athena = ["mypy-boto3-athena (>=1.34.0,<1.35.0)"]
@@ -410,7 +440,6 @@ autoscaling-plans = ["mypy-boto3-autoscaling-plans (>=1.34.0,<1.35.0)"]
b2bi = ["mypy-boto3-b2bi (>=1.34.0,<1.35.0)"]
backup = ["mypy-boto3-backup (>=1.34.0,<1.35.0)"]
backup-gateway = ["mypy-boto3-backup-gateway (>=1.34.0,<1.35.0)"]
-backupstorage = ["mypy-boto3-backupstorage (>=1.34.0,<1.35.0)"]
batch = ["mypy-boto3-batch (>=1.34.0,<1.35.0)"]
bcm-data-exports = ["mypy-boto3-bcm-data-exports (>=1.34.0,<1.35.0)"]
bedrock = ["mypy-boto3-bedrock (>=1.34.0,<1.35.0)"]
@@ -418,7 +447,7 @@ bedrock-agent = ["mypy-boto3-bedrock-agent (>=1.34.0,<1.35.0)"]
bedrock-agent-runtime = ["mypy-boto3-bedrock-agent-runtime (>=1.34.0,<1.35.0)"]
bedrock-runtime = ["mypy-boto3-bedrock-runtime (>=1.34.0,<1.35.0)"]
billingconductor = ["mypy-boto3-billingconductor (>=1.34.0,<1.35.0)"]
-boto3 = ["boto3 (==1.34.111)", "botocore (==1.34.111)"]
+boto3 = ["boto3 (==1.34.131)", "botocore (==1.34.131)"]
braket = ["mypy-boto3-braket (>=1.34.0,<1.35.0)"]
budgets = ["mypy-boto3-budgets (>=1.34.0,<1.35.0)"]
ce = ["mypy-boto3-ce (>=1.34.0,<1.35.0)"]
@@ -538,7 +567,6 @@ groundstation = ["mypy-boto3-groundstation (>=1.34.0,<1.35.0)"]
guardduty = ["mypy-boto3-guardduty (>=1.34.0,<1.35.0)"]
health = ["mypy-boto3-health (>=1.34.0,<1.35.0)"]
healthlake = ["mypy-boto3-healthlake (>=1.34.0,<1.35.0)"]
-honeycode = ["mypy-boto3-honeycode (>=1.34.0,<1.35.0)"]
iam = ["mypy-boto3-iam (>=1.34.0,<1.35.0)"]
identitystore = ["mypy-boto3-identitystore (>=1.34.0,<1.35.0)"]
imagebuilder = ["mypy-boto3-imagebuilder (>=1.34.0,<1.35.0)"]
@@ -649,6 +677,7 @@ panorama = ["mypy-boto3-panorama (>=1.34.0,<1.35.0)"]
payment-cryptography = ["mypy-boto3-payment-cryptography (>=1.34.0,<1.35.0)"]
payment-cryptography-data = ["mypy-boto3-payment-cryptography-data (>=1.34.0,<1.35.0)"]
pca-connector-ad = ["mypy-boto3-pca-connector-ad (>=1.34.0,<1.35.0)"]
+pca-connector-scep = ["mypy-boto3-pca-connector-scep (>=1.34.0,<1.35.0)"]
personalize = ["mypy-boto3-personalize (>=1.34.0,<1.35.0)"]
personalize-events = ["mypy-boto3-personalize-events (>=1.34.0,<1.35.0)"]
personalize-runtime = ["mypy-boto3-personalize-runtime (>=1.34.0,<1.35.0)"]
@@ -738,6 +767,7 @@ support = ["mypy-boto3-support (>=1.34.0,<1.35.0)"]
support-app = ["mypy-boto3-support-app (>=1.34.0,<1.35.0)"]
swf = ["mypy-boto3-swf (>=1.34.0,<1.35.0)"]
synthetics = ["mypy-boto3-synthetics (>=1.34.0,<1.35.0)"]
+taxsettings = ["mypy-boto3-taxsettings (>=1.34.0,<1.35.0)"]
textract = ["mypy-boto3-textract (>=1.34.0,<1.35.0)"]
timestream-influxdb = ["mypy-boto3-timestream-influxdb (>=1.34.0,<1.35.0)"]
timestream-query = ["mypy-boto3-timestream-query (>=1.34.0,<1.35.0)"]
@@ -766,13 +796,13 @@ xray = ["mypy-boto3-xray (>=1.34.0,<1.35.0)"]
[[package]]
name = "botocore"
-version = "1.34.123"
+version = "1.34.144"
description = "Low-level, data-driven core of boto 3."
optional = false
python-versions = ">=3.8"
files = [
- {file = "botocore-1.34.123-py3-none-any.whl", hash = "sha256:8c34ada2a708c82e7174bff700611643db7ce2cb18f1130c35045c24310d299d"},
- {file = "botocore-1.34.123.tar.gz", hash = "sha256:a8577f6574600c4d159b5cd103ee05744a443d77f7778304e17307940b369c4f"},
+ {file = "botocore-1.34.144-py3-none-any.whl", hash = "sha256:a2cf26e1bf10d5917a2285e50257bc44e94a1d16574f282f3274f7a5d8d1f08b"},
+ {file = "botocore-1.34.144.tar.gz", hash = "sha256:4215db28d25309d59c99507f1f77df9089e5bebbad35f6e19c7c44ec5383a3e8"},
]
[package.dependencies]
@@ -785,13 +815,13 @@ crt = ["awscrt (==0.20.11)"]
[[package]]
name = "botocore-stubs"
-version = "1.34.123"
+version = "1.34.144"
description = "Type annotations and code completion for botocore"
optional = false
python-versions = "<4.0,>=3.8"
files = [
- {file = "botocore_stubs-1.34.123-py3-none-any.whl", hash = "sha256:13f3602d90b1e6f4cabf42702ff62aae26ef73f6b10220670a118bdbfa77d29d"},
- {file = "botocore_stubs-1.34.123.tar.gz", hash = "sha256:917c83db9caacd0308688bda2a2f9bde53fbee9d7e8fd250458dbf54556b8194"},
+ {file = "botocore_stubs-1.34.144-py3-none-any.whl", hash = "sha256:eded7afc301a08b5355ab8843c9d9bdea7dc43ece3e9628f186897dae7a56ceb"},
+ {file = "botocore_stubs-1.34.144.tar.gz", hash = "sha256:3eb325b4b186e8d8e49d485cfe383f478ab8c07e0f4690e5ee9bcb6faceec4af"},
]
[package.dependencies]
@@ -824,13 +854,13 @@ files = [
[[package]]
name = "certifi"
-version = "2024.6.2"
+version = "2024.7.4"
description = "Python package for providing Mozilla's CA Bundle."
optional = false
python-versions = ">=3.6"
files = [
- {file = "certifi-2024.6.2-py3-none-any.whl", hash = "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56"},
- {file = "certifi-2024.6.2.tar.gz", hash = "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516"},
+ {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"},
+ {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"},
]
[[package]]
@@ -899,13 +929,13 @@ pycparser = "*"
[[package]]
name = "cfn-lint"
-version = "0.87.5"
+version = "0.87.9"
description = "Checks CloudFormation templates for practices and behaviour that could potentially be improved"
optional = false
python-versions = "!=4.0,<=4.0,>=3.8"
files = [
- {file = "cfn_lint-0.87.5-py3-none-any.whl", hash = "sha256:46edd0ed2c46991a0b88df47ea668a602838bafec8993bb23ff5be8a42388b6e"},
- {file = "cfn_lint-0.87.5.tar.gz", hash = "sha256:41e1195712c84d4de70c2ede1113fef0d62b9f2fb237d77e18da4328463c5660"},
+ {file = "cfn_lint-0.87.9-py3-none-any.whl", hash = "sha256:bc8c902109dad03fe40b3ab679990be6e1789e1290b8798a332ce0a7099af213"},
+ {file = "cfn_lint-0.87.9.tar.gz", hash = "sha256:a4bc67752da00fd9b0aa43f00c4f7eee97c3b26aa263600a41c8641d74117fd2"},
]
[package.dependencies]
@@ -1074,13 +1104,13 @@ s3 = ["boto3"]
[[package]]
name = "cohere"
-version = "5.5.7"
+version = "5.5.8"
description = ""
optional = false
python-versions = "<4.0,>=3.8"
files = [
- {file = "cohere-5.5.7-py3-none-any.whl", hash = "sha256:fb8b6fa478b947fa12783e2bad8e4b748c1b2aa789ff3df7d1425288c98f45d8"},
- {file = "cohere-5.5.7.tar.gz", hash = "sha256:0801cfcfec4999c21cc2dc066436f4efb6c8d75bc94628247d8850064c6b7bcd"},
+ {file = "cohere-5.5.8-py3-none-any.whl", hash = "sha256:e1ed84b90eadd13c6a68ee28e378a0bb955f8945eadc6eb7ee126b3399cafd54"},
+ {file = "cohere-5.5.8.tar.gz", hash = "sha256:84ce7666ff8fbdf4f41fb5f6ca452ab2639a514bc88967a2854a9b1b820d6ea0"},
]
[package.dependencies]
@@ -1091,7 +1121,7 @@ httpx-sse = ">=0.4.0,<0.5.0"
parameterized = ">=0.9.0,<0.10.0"
pydantic = ">=1.9.2"
requests = ">=2.0.0,<3.0.0"
-tokenizers = ">=0.15,<0.16"
+tokenizers = ">=0.15,<1"
types-requests = ">=2.0.0,<3.0.0"
typing_extensions = ">=4.0.0"
@@ -1123,6 +1153,23 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""}
[package.extras]
development = ["black", "flake8", "mypy", "pytest", "types-colorama"]
+[[package]]
+name = "comm"
+version = "0.2.2"
+description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"},
+ {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"},
+]
+
+[package.dependencies]
+traitlets = ">=4"
+
+[package.extras]
+test = ["pytest"]
+
[[package]]
name = "confection"
version = "0.1.5"
@@ -1292,6 +1339,48 @@ calendars = ["convertdate", "hijri-converter"]
fasttext = ["fasttext"]
langdetect = ["langdetect"]
+[[package]]
+name = "debugpy"
+version = "1.8.5"
+description = "An implementation of the Debug Adapter Protocol for Python"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "debugpy-1.8.5-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7e4d594367d6407a120b76bdaa03886e9eb652c05ba7f87e37418426ad2079f7"},
+ {file = "debugpy-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4413b7a3ede757dc33a273a17d685ea2b0c09dbd312cc03f5534a0fd4d40750a"},
+ {file = "debugpy-1.8.5-cp310-cp310-win32.whl", hash = "sha256:dd3811bd63632bb25eda6bd73bea8e0521794cda02be41fa3160eb26fc29e7ed"},
+ {file = "debugpy-1.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:b78c1250441ce893cb5035dd6f5fc12db968cc07f91cc06996b2087f7cefdd8e"},
+ {file = "debugpy-1.8.5-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:606bccba19f7188b6ea9579c8a4f5a5364ecd0bf5a0659c8a5d0e10dcee3032a"},
+ {file = "debugpy-1.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db9fb642938a7a609a6c865c32ecd0d795d56c1aaa7a7a5722d77855d5e77f2b"},
+ {file = "debugpy-1.8.5-cp311-cp311-win32.whl", hash = "sha256:4fbb3b39ae1aa3e5ad578f37a48a7a303dad9a3d018d369bc9ec629c1cfa7408"},
+ {file = "debugpy-1.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:345d6a0206e81eb68b1493ce2fbffd57c3088e2ce4b46592077a943d2b968ca3"},
+ {file = "debugpy-1.8.5-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:5b5c770977c8ec6c40c60d6f58cacc7f7fe5a45960363d6974ddb9b62dbee156"},
+ {file = "debugpy-1.8.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0a65b00b7cdd2ee0c2cf4c7335fef31e15f1b7056c7fdbce9e90193e1a8c8cb"},
+ {file = "debugpy-1.8.5-cp312-cp312-win32.whl", hash = "sha256:c9f7c15ea1da18d2fcc2709e9f3d6de98b69a5b0fff1807fb80bc55f906691f7"},
+ {file = "debugpy-1.8.5-cp312-cp312-win_amd64.whl", hash = "sha256:28ced650c974aaf179231668a293ecd5c63c0a671ae6d56b8795ecc5d2f48d3c"},
+ {file = "debugpy-1.8.5-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:3df6692351172a42af7558daa5019651f898fc67450bf091335aa8a18fbf6f3a"},
+ {file = "debugpy-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd04a73eb2769eb0bfe43f5bfde1215c5923d6924b9b90f94d15f207a402226"},
+ {file = "debugpy-1.8.5-cp38-cp38-win32.whl", hash = "sha256:8f913ee8e9fcf9d38a751f56e6de12a297ae7832749d35de26d960f14280750a"},
+ {file = "debugpy-1.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:a697beca97dad3780b89a7fb525d5e79f33821a8bc0c06faf1f1289e549743cf"},
+ {file = "debugpy-1.8.5-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0a1029a2869d01cb777216af8c53cda0476875ef02a2b6ff8b2f2c9a4b04176c"},
+ {file = "debugpy-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84c276489e141ed0b93b0af648eef891546143d6a48f610945416453a8ad406"},
+ {file = "debugpy-1.8.5-cp39-cp39-win32.whl", hash = "sha256:ad84b7cde7fd96cf6eea34ff6c4a1b7887e0fe2ea46e099e53234856f9d99a34"},
+ {file = "debugpy-1.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:7b0fe36ed9d26cb6836b0a51453653f8f2e347ba7348f2bbfe76bfeb670bfb1c"},
+ {file = "debugpy-1.8.5-py2.py3-none-any.whl", hash = "sha256:55919dce65b471eff25901acf82d328bbd5b833526b6c1364bd5133754777a44"},
+ {file = "debugpy-1.8.5.zip", hash = "sha256:b2112cfeb34b4507399d298fe7023a16656fc553ed5246536060ca7bd0e668d0"},
+]
+
+[[package]]
+name = "decorator"
+version = "5.1.1"
+description = "Decorators for Humans"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"},
+ {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"},
+]
+
[[package]]
name = "distro"
version = "1.9.0"
@@ -1335,6 +1424,20 @@ files = [
{file = "Events-0.5-py3-none-any.whl", hash = "sha256:a7286af378ba3e46640ac9825156c93bdba7502174dd696090fdfcd4d80a1abd"},
]
+[[package]]
+name = "executing"
+version = "2.0.1"
+description = "Get the currently executing AST node of a frame, and other information"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"},
+ {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"},
+]
+
+[package.extras]
+tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"]
+
[[package]]
name = "fastapi"
version = "0.110.3"
@@ -1356,42 +1459,42 @@ all = ["email_validator (>=2.0.0)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)"
[[package]]
name = "fastavro"
-version = "1.9.4"
+version = "1.9.5"
description = "Fast read/write of AVRO files"
optional = false
python-versions = ">=3.8"
files = [
- {file = "fastavro-1.9.4-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:60cb38f07462a7fb4e4440ed0de67d3d400ae6b3d780f81327bebde9aa55faef"},
- {file = "fastavro-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:063d01d197fc929c20adc09ca9f0ca86d33ac25ee0963ce0b438244eee8315ae"},
- {file = "fastavro-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87a9053fcfbc895f2a16a4303af22077e3a8fdcf1cd5d6ed47ff2ef22cbba2f0"},
- {file = "fastavro-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:02bf1276b7326397314adf41b34a4890f6ffa59cf7e0eb20b9e4ab0a143a1598"},
- {file = "fastavro-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56bed9eca435389a8861e6e2d631ec7f8f5dda5b23f93517ac710665bd34ca29"},
- {file = "fastavro-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:0cd2099c8c672b853e0b20c13e9b62a69d3fbf67ee7c59c7271ba5df1680310d"},
- {file = "fastavro-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:af8c6d8c43a02b5569c093fc5467469541ac408c79c36a5b0900d3dd0b3ba838"},
- {file = "fastavro-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4a138710bd61580324d23bc5e3df01f0b82aee0a76404d5dddae73d9e4c723f"},
- {file = "fastavro-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:903d97418120ca6b6a7f38a731166c1ccc2c4344ee5e0470d09eb1dc3687540a"},
- {file = "fastavro-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c443eeb99899d062dbf78c525e4614dd77e041a7688fa2710c224f4033f193ae"},
- {file = "fastavro-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:ac26ab0774d1b2b7af6d8f4300ad20bbc4b5469e658a02931ad13ce23635152f"},
- {file = "fastavro-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:cf7247874c22be856ba7d1f46a0f6e0379a6025f1a48a7da640444cbac6f570b"},
- {file = "fastavro-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:68912f2020e1b3d70557260b27dd85fb49a4fc6bfab18d384926127452c1da4c"},
- {file = "fastavro-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6925ce137cdd78e109abdb0bc33aad55de6c9f2d2d3036b65453128f2f5f5b92"},
- {file = "fastavro-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b928cd294e36e35516d0deb9e104b45be922ba06940794260a4e5dbed6c192a"},
- {file = "fastavro-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:90c9838bc4c991ffff5dd9d88a0cc0030f938b3fdf038cdf6babde144b920246"},
- {file = "fastavro-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:eca6e54da571b06a3c5a72dbb7212073f56c92a6fbfbf847b91c347510f8a426"},
- {file = "fastavro-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a4b02839ac261100cefca2e2ad04cdfedc556cb66b5ec735e0db428e74b399de"},
- {file = "fastavro-1.9.4-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:4451ee9a305a73313a1558d471299f3130e4ecc10a88bf5742aa03fb37e042e6"},
- {file = "fastavro-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8524fccfb379565568c045d29b2ebf71e1f2c0dd484aeda9fe784ef5febe1a8"},
- {file = "fastavro-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33d0a00a6e09baa20f6f038d7a2ddcb7eef0e7a9980e947a018300cb047091b8"},
- {file = "fastavro-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:23d7e5b29c9bf6f26e8be754b2c8b919838e506f78ef724de7d22881696712fc"},
- {file = "fastavro-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2e6ab3ee53944326460edf1125b2ad5be2fadd80f7211b13c45fa0c503b4cf8d"},
- {file = "fastavro-1.9.4-cp38-cp38-win_amd64.whl", hash = "sha256:64d335ec2004204c501f8697c385d0a8f6b521ac82d5b30696f789ff5bc85f3c"},
- {file = "fastavro-1.9.4-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:7e05f44c493e89e73833bd3ff3790538726906d2856f59adc8103539f4a1b232"},
- {file = "fastavro-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:253c63993250bff4ee7b11fb46cf3a4622180a783bedc82a24c6fdcd1b10ca2a"},
- {file = "fastavro-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24d6942eb1db14640c2581e0ecd1bbe0afc8a83731fcd3064ae7f429d7880cb7"},
- {file = "fastavro-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d47bb66be6091cd48cfe026adcad11c8b11d7d815a2949a1e4ccf03df981ca65"},
- {file = "fastavro-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c293897f12f910e58a1024f9c77f565aa8e23b36aafda6ad8e7041accc57a57f"},
- {file = "fastavro-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:f05d2afcb10a92e2a9e580a3891f090589b3e567fdc5641f8a46a0b084f120c3"},
- {file = "fastavro-1.9.4.tar.gz", hash = "sha256:56b8363e360a1256c94562393dc7f8611f3baf2b3159f64fb2b9c6b87b14e876"},
+ {file = "fastavro-1.9.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:61253148e95dd2b6457247b441b7555074a55de17aef85f5165bfd5facf600fc"},
+ {file = "fastavro-1.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b604935d671ad47d888efc92a106f98e9440874108b444ac10e28d643109c937"},
+ {file = "fastavro-1.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0adbf4956fd53bd74c41e7855bb45ccce953e0eb0e44f5836d8d54ad843f9944"},
+ {file = "fastavro-1.9.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:53d838e31457db8bf44460c244543f75ed307935d5fc1d93bc631cc7caef2082"},
+ {file = "fastavro-1.9.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:07b6288e8681eede16ff077632c47395d4925c2f51545cd7a60f194454db2211"},
+ {file = "fastavro-1.9.5-cp310-cp310-win_amd64.whl", hash = "sha256:ef08cf247fdfd61286ac0c41854f7194f2ad05088066a756423d7299b688d975"},
+ {file = "fastavro-1.9.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c52d7bb69f617c90935a3e56feb2c34d4276819a5c477c466c6c08c224a10409"},
+ {file = "fastavro-1.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85e05969956003df8fa4491614bc62fe40cec59e94d06e8aaa8d8256ee3aab82"},
+ {file = "fastavro-1.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06e6df8527493a9f0d9a8778df82bab8b1aa6d80d1b004e5aec0a31dc4dc501c"},
+ {file = "fastavro-1.9.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:27820da3b17bc01cebb6d1687c9d7254b16d149ef458871aaa207ed8950f3ae6"},
+ {file = "fastavro-1.9.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:195a5b8e33eb89a1a9b63fa9dce7a77d41b3b0cd785bac6044df619f120361a2"},
+ {file = "fastavro-1.9.5-cp311-cp311-win_amd64.whl", hash = "sha256:be612c109efb727bfd36d4d7ed28eb8e0506617b7dbe746463ebbf81e85eaa6b"},
+ {file = "fastavro-1.9.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b133456c8975ec7d2a99e16a7e68e896e45c821b852675eac4ee25364b999c14"},
+ {file = "fastavro-1.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf586373c3d1748cac849395aad70c198ee39295f92e7c22c75757b5c0300fbe"},
+ {file = "fastavro-1.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:724ef192bc9c55d5b4c7df007f56a46a21809463499856349d4580a55e2b914c"},
+ {file = "fastavro-1.9.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bfd11fe355a8f9c0416803afac298960eb4c603a23b1c74ff9c1d3e673ea7185"},
+ {file = "fastavro-1.9.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9827d1654d7bcb118ef5efd3e5b2c9ab2a48d44dac5e8c6a2327bc3ac3caa828"},
+ {file = "fastavro-1.9.5-cp312-cp312-win_amd64.whl", hash = "sha256:d84b69dca296667e6137ae7c9a96d060123adbc0c00532cc47012b64d38b47e9"},
+ {file = "fastavro-1.9.5-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:fb744e9de40fb1dc75354098c8db7da7636cba50a40f7bef3b3fb20f8d189d88"},
+ {file = "fastavro-1.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:240df8bacd13ff5487f2465604c007d686a566df5cbc01d0550684eaf8ff014a"},
+ {file = "fastavro-1.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3bb35c25bbc3904e1c02333bc1ae0173e0a44aa37a8e95d07e681601246e1f1"},
+ {file = "fastavro-1.9.5-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:b47a54a9700de3eabefd36dabfb237808acae47bc873cada6be6990ef6b165aa"},
+ {file = "fastavro-1.9.5-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:48c7b5e6d2f3bf7917af301c275b05c5be3dd40bb04e80979c9e7a2ab31a00d1"},
+ {file = "fastavro-1.9.5-cp38-cp38-win_amd64.whl", hash = "sha256:05d13f98d4e325be40387e27da9bd60239968862fe12769258225c62ec906f04"},
+ {file = "fastavro-1.9.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5b47948eb196263f6111bf34e1cd08d55529d4ed46eb50c1bc8c7c30a8d18868"},
+ {file = "fastavro-1.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85b7a66ad521298ad9373dfe1897a6ccfc38feab54a47b97922e213ae5ad8870"},
+ {file = "fastavro-1.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44cb154f863ad80e41aea72a709b12e1533b8728c89b9b1348af91a6154ab2f5"},
+ {file = "fastavro-1.9.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b5f7f2b1fe21231fd01f1a2a90e714ae267fe633cd7ce930c0aea33d1c9f4901"},
+ {file = "fastavro-1.9.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:88fbbe16c61d90a89d78baeb5a34dc1c63a27b115adccdbd6b1fb6f787deacf2"},
+ {file = "fastavro-1.9.5-cp39-cp39-win_amd64.whl", hash = "sha256:753f5eedeb5ca86004e23a9ce9b41c5f25eb64a876f95edcc33558090a7f3e4b"},
+ {file = "fastavro-1.9.5.tar.gz", hash = "sha256:6419ebf45f88132a9945c51fe555d4f10bb97c236288ed01894f957c6f914553"},
]
[package.extras]
@@ -1402,18 +1505,18 @@ zstandard = ["zstandard"]
[[package]]
name = "filelock"
-version = "3.14.0"
+version = "3.15.4"
description = "A platform independent file lock."
optional = false
python-versions = ">=3.8"
files = [
- {file = "filelock-3.14.0-py3-none-any.whl", hash = "sha256:43339835842f110ca7ae60f1e1c160714c5a6afd15a2873419ab185334975c0f"},
- {file = "filelock-3.14.0.tar.gz", hash = "sha256:6ea72da3be9b8c82afd3edcf99f2fffbb5076335a5ae4d03248bb5b6c3eae78a"},
+ {file = "filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7"},
+ {file = "filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb"},
]
[package.extras]
docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
-testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"]
+testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-asyncio (>=0.21)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)", "virtualenv (>=20.26.2)"]
typing = ["typing-extensions (>=4.8)"]
[[package]]
@@ -1526,13 +1629,13 @@ files = [
[[package]]
name = "fsspec"
-version = "2024.6.0"
+version = "2024.6.1"
description = "File-system specification"
optional = false
python-versions = ">=3.8"
files = [
- {file = "fsspec-2024.6.0-py3-none-any.whl", hash = "sha256:58d7122eb8a1a46f7f13453187bfea4972d66bf01618d37366521b1998034cee"},
- {file = "fsspec-2024.6.0.tar.gz", hash = "sha256:f579960a56e6d8038a9efc8f9c77279ec12e6299aa86b0769a7e9c46b94527c2"},
+ {file = "fsspec-2024.6.1-py3-none-any.whl", hash = "sha256:3cb443f8bcd2efb31295a5b9fdb02aee81d8452c80d28f97a6d0959e6cee101e"},
+ {file = "fsspec-2024.6.1.tar.gz", hash = "sha256:fad7d7e209dd4c1208e3bbfda706620e0da5142bebbd9c384afb95b07e798e49"},
]
[package.extras]
@@ -1565,20 +1668,20 @@ tqdm = ["tqdm"]
[[package]]
name = "google-api-core"
-version = "2.19.0"
+version = "2.19.1"
description = "Google API client core library"
optional = false
python-versions = ">=3.7"
files = [
- {file = "google-api-core-2.19.0.tar.gz", hash = "sha256:cf1b7c2694047886d2af1128a03ae99e391108a08804f87cfd35970e49c9cd10"},
- {file = "google_api_core-2.19.0-py3-none-any.whl", hash = "sha256:8661eec4078c35428fd3f69a2c7ee29e342896b70f01d1a1cbcb334372dd6251"},
+ {file = "google-api-core-2.19.1.tar.gz", hash = "sha256:f4695f1e3650b316a795108a76a1c416e6afb036199d1c1f1f110916df479ffd"},
+ {file = "google_api_core-2.19.1-py3-none-any.whl", hash = "sha256:f12a9b8309b5e21d92483bbd47ce2c445861ec7d269ef6784ecc0ea8c1fa6125"},
]
[package.dependencies]
google-auth = ">=2.14.1,<3.0.dev0"
googleapis-common-protos = ">=1.56.2,<2.0.dev0"
proto-plus = ">=1.22.3,<2.0.0dev"
-protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0"
+protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0.dev0"
requests = ">=2.18.0,<3.0.0.dev0"
[package.extras]
@@ -1588,13 +1691,13 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"]
[[package]]
name = "google-api-python-client"
-version = "2.133.0"
+version = "2.137.0"
description = "Google API Client Library for Python"
optional = false
python-versions = ">=3.7"
files = [
- {file = "google-api-python-client-2.133.0.tar.gz", hash = "sha256:293092905b66a046d3187a99ac454e12b00cc2c70444f26eb2f1f9c1a82720b4"},
- {file = "google_api_python_client-2.133.0-py2.py3-none-any.whl", hash = "sha256:396fe676ea0dfed066654dcf9f8dea77a1342f9d9bb23bb88e45b7b81e773926"},
+ {file = "google_api_python_client-2.137.0-py2.py3-none-any.whl", hash = "sha256:a8b5c5724885e5be9f5368739aa0ccf416627da4ebd914b410a090c18f84d692"},
+ {file = "google_api_python_client-2.137.0.tar.gz", hash = "sha256:e739cb74aac8258b1886cb853b0722d47c81fe07ad649d7f2206f06530513c04"},
]
[package.dependencies]
@@ -1606,13 +1709,13 @@ uritemplate = ">=3.0.1,<5"
[[package]]
name = "google-auth"
-version = "2.30.0"
+version = "2.32.0"
description = "Google Authentication Library"
optional = false
python-versions = ">=3.7"
files = [
- {file = "google-auth-2.30.0.tar.gz", hash = "sha256:ab630a1320f6720909ad76a7dbdb6841cdf5c66b328d690027e4867bdfb16688"},
- {file = "google_auth-2.30.0-py2.py3-none-any.whl", hash = "sha256:8df7da660f62757388b8a7f249df13549b3373f24388cb5d2f1dd91cc18180b5"},
+ {file = "google_auth-2.32.0-py2.py3-none-any.whl", hash = "sha256:53326ea2ebec768070a94bee4e1b9194c9646ea0c2bd72422785bd0f9abfad7b"},
+ {file = "google_auth-2.32.0.tar.gz", hash = "sha256:49315be72c55a6a37d62819e3573f6b416aca00721f7e3e31a008d928bf64022"},
]
[package.dependencies]
@@ -1644,17 +1747,17 @@ httplib2 = ">=0.19.0"
[[package]]
name = "googleapis-common-protos"
-version = "1.63.1"
+version = "1.63.2"
description = "Common protobufs used in Google APIs"
optional = false
python-versions = ">=3.7"
files = [
- {file = "googleapis-common-protos-1.63.1.tar.gz", hash = "sha256:c6442f7a0a6b2a80369457d79e6672bb7dcbaab88e0848302497e3ec80780a6a"},
- {file = "googleapis_common_protos-1.63.1-py2.py3-none-any.whl", hash = "sha256:0e1c2cdfcbc354b76e4a211a35ea35d6926a835cba1377073c4861db904a1877"},
+ {file = "googleapis-common-protos-1.63.2.tar.gz", hash = "sha256:27c5abdffc4911f28101e635de1533fb4cfd2c37fbaa9174587c799fac90aa87"},
+ {file = "googleapis_common_protos-1.63.2-py2.py3-none-any.whl", hash = "sha256:27a2499c7e8aff199665b22741997e485eccc8645aa9176c7c988e6fae507945"},
]
[package.dependencies]
-protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0.dev0"
+protobuf = ">=3.20.2,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0.dev0"
[package.extras]
grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"]
@@ -1813,13 +1916,13 @@ files = [
[[package]]
name = "huggingface-hub"
-version = "0.23.3"
+version = "0.23.4"
description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub"
optional = false
python-versions = ">=3.8.0"
files = [
- {file = "huggingface_hub-0.23.3-py3-none-any.whl", hash = "sha256:22222c41223f1b7c209ae5511d2d82907325a0e3cdbce5f66949d43c598ff3bc"},
- {file = "huggingface_hub-0.23.3.tar.gz", hash = "sha256:1a1118a0b3dea3bab6c325d71be16f5ffe441d32f3ac7c348d6875911b694b5b"},
+ {file = "huggingface_hub-0.23.4-py3-none-any.whl", hash = "sha256:3a0b957aa87150addf0cc7bd71b4d954b78e749850e1e7fb29ebbd2db64ca037"},
+ {file = "huggingface_hub-0.23.4.tar.gz", hash = "sha256:35d99016433900e44ae7efe1c209164a5a81dbbcd53a52f99c281dcd7ce22431"},
]
[package.dependencies]
@@ -1856,6 +1959,75 @@ files = [
{file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"},
]
+[[package]]
+name = "ipykernel"
+version = "6.29.5"
+description = "IPython Kernel for Jupyter"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"},
+ {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"},
+]
+
+[package.dependencies]
+appnope = {version = "*", markers = "platform_system == \"Darwin\""}
+comm = ">=0.1.1"
+debugpy = ">=1.6.5"
+ipython = ">=7.23.1"
+jupyter-client = ">=6.1.12"
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+matplotlib-inline = ">=0.1"
+nest-asyncio = "*"
+packaging = "*"
+psutil = "*"
+pyzmq = ">=24"
+tornado = ">=6.1"
+traitlets = ">=5.4.0"
+
+[package.extras]
+cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"]
+pyqt5 = ["pyqt5"]
+pyside6 = ["pyside6"]
+test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"]
+
+[[package]]
+name = "ipython"
+version = "8.26.0"
+description = "IPython: Productive Interactive Computing"
+optional = false
+python-versions = ">=3.10"
+files = [
+ {file = "ipython-8.26.0-py3-none-any.whl", hash = "sha256:e6b347c27bdf9c32ee9d31ae85defc525755a1869f14057e900675b9e8d6e6ff"},
+ {file = "ipython-8.26.0.tar.gz", hash = "sha256:1cec0fbba8404af13facebe83d04436a7434c7400e59f47acf467c64abd0956c"},
+]
+
+[package.dependencies]
+colorama = {version = "*", markers = "sys_platform == \"win32\""}
+decorator = "*"
+jedi = ">=0.16"
+matplotlib-inline = "*"
+pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""}
+prompt-toolkit = ">=3.0.41,<3.1.0"
+pygments = ">=2.4.0"
+stack-data = "*"
+traitlets = ">=5.13.0"
+
+[package.extras]
+all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"]
+black = ["black"]
+doc = ["docrepr", "exceptiongroup", "intersphinx-registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing-extensions"]
+kernel = ["ipykernel"]
+matplotlib = ["matplotlib"]
+nbconvert = ["nbconvert"]
+nbformat = ["nbformat"]
+notebook = ["ipywidgets", "notebook"]
+parallel = ["ipyparallel"]
+qtconsole = ["qtconsole"]
+test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"]
+test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"]
+
[[package]]
name = "itsdangerous"
version = "2.2.0"
@@ -1867,6 +2039,25 @@ files = [
{file = "itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173"},
]
+[[package]]
+name = "jedi"
+version = "0.19.1"
+description = "An autocompletion tool for Python that can be used for text editors."
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"},
+ {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"},
+]
+
+[package.dependencies]
+parso = ">=0.8.3,<0.9.0"
+
+[package.extras]
+docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"]
+qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
+testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"]
+
[[package]]
name = "jinja2"
version = "3.1.4"
@@ -1938,13 +2129,13 @@ jsonpointer = ">=1.9"
[[package]]
name = "jsonpickle"
-version = "3.2.1"
+version = "3.2.2"
description = "Python library for serializing arbitrary object graphs into JSON"
optional = false
python-versions = ">=3.7"
files = [
- {file = "jsonpickle-3.2.1-py3-none-any.whl", hash = "sha256:ec291e4719674dd35d390fbdb521ac6517fbe9f541d361c8bffc8131133b1661"},
- {file = "jsonpickle-3.2.1.tar.gz", hash = "sha256:4b6d7640974199f7acf9035295365b5a1a71a91109effa15ba170fbb48cf871c"},
+ {file = "jsonpickle-3.2.2-py3-none-any.whl", hash = "sha256:87cd82d237fd72c5a34970e7222dddc0accc13fddf49af84111887ed9a9445aa"},
+ {file = "jsonpickle-3.2.2.tar.gz", hash = "sha256:d425fd2b8afe9f5d7d57205153403fbf897782204437882a477e8eed60930f8c"},
]
[package.extras]
@@ -2012,6 +2203,48 @@ files = [
[package.dependencies]
six = "*"
+[[package]]
+name = "jupyter-client"
+version = "8.6.2"
+description = "Jupyter protocol implementation and client libraries"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "jupyter_client-8.6.2-py3-none-any.whl", hash = "sha256:50cbc5c66fd1b8f65ecb66bc490ab73217993632809b6e505687de18e9dea39f"},
+ {file = "jupyter_client-8.6.2.tar.gz", hash = "sha256:2bda14d55ee5ba58552a8c53ae43d215ad9868853489213f37da060ced54d8df"},
+]
+
+[package.dependencies]
+jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
+python-dateutil = ">=2.8.2"
+pyzmq = ">=23.0"
+tornado = ">=6.2"
+traitlets = ">=5.3"
+
+[package.extras]
+docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"]
+test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"]
+
+[[package]]
+name = "jupyter-core"
+version = "5.7.2"
+description = "Jupyter core package. A base package on which Jupyter projects rely."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"},
+ {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"},
+]
+
+[package.dependencies]
+platformdirs = ">=2.5"
+pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""}
+traitlets = ">=5.3"
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"]
+test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"]
+
[[package]]
name = "langchain"
version = "0.1.14"
@@ -2137,18 +2370,18 @@ test = ["pytest", "pytest-cov"]
[[package]]
name = "langsmith"
-version = "0.1.76"
+version = "0.1.85"
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
optional = false
python-versions = "<4.0,>=3.8.1"
files = [
- {file = "langsmith-0.1.76-py3-none-any.whl", hash = "sha256:4b8cb14f2233d9673ce9e6e3d545359946d9690a2c1457ab01e7459ec97b964e"},
- {file = "langsmith-0.1.76.tar.gz", hash = "sha256:5829f997495c0f9a39f91fe0a57e0cb702e8642e6948945f5bb9f46337db7732"},
+ {file = "langsmith-0.1.85-py3-none-any.whl", hash = "sha256:c1f94384f10cea96f7b4d33fd3db7ec180c03c7468877d50846f881d2017ff94"},
+ {file = "langsmith-0.1.85.tar.gz", hash = "sha256:acff31f9e53efa48586cf8e32f65625a335c74d7c4fa306d1655ac18452296f6"},
]
[package.dependencies]
orjson = ">=3.9.14,<4.0.0"
-pydantic = ">=1,<3"
+pydantic = {version = ">=1,<3", markers = "python_full_version < \"3.12.4\""}
requests = ">=2,<3"
[[package]]
@@ -2384,6 +2617,20 @@ dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"]
docs = ["alabaster (==0.7.16)", "autodocsumm (==0.2.12)", "sphinx (==7.3.7)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"]
tests = ["pytest", "pytz", "simplejson"]
+[[package]]
+name = "matplotlib-inline"
+version = "0.1.7"
+description = "Inline Matplotlib backend for Jupyter"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"},
+ {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"},
+]
+
+[package.dependencies]
+traitlets = "*"
+
[[package]]
name = "mdurl"
version = "0.1.2"
@@ -2555,13 +2802,13 @@ files = [
[[package]]
name = "mypy-boto3-apigateway"
-version = "1.34.56"
-description = "Type annotations for boto3.APIGateway 1.34.56 service generated with mypy-boto3-builder 7.23.2"
+version = "1.34.137"
+description = "Type annotations for boto3.APIGateway 1.34.137 service generated with mypy-boto3-builder 7.25.0"
optional = false
python-versions = ">=3.8"
files = [
- {file = "mypy-boto3-apigateway-1.34.56.tar.gz", hash = "sha256:5ab15db30d730198384d6445d50cc1fec98361b85366dd092b10e9b9f4a1a2cb"},
- {file = "mypy_boto3_apigateway-1.34.56-py3-none-any.whl", hash = "sha256:3695503bd9388b3067c1dc1dc4ec1486dcec450dbf1e9889f451120e333b92da"},
+ {file = "mypy_boto3_apigateway-1.34.137-py3-none-any.whl", hash = "sha256:34a683d675d4b89c8d34e4c531e33af93c223d57d7b9f0b8aa087dab5fc05ed7"},
+ {file = "mypy_boto3_apigateway-1.34.137.tar.gz", hash = "sha256:66a88ebfb63767c11403b7d1fed7f908d64e413fdaa54f091d49e8843441f5ba"},
]
[[package]]
@@ -2577,13 +2824,13 @@ files = [
[[package]]
name = "mypy-boto3-ecr"
-version = "1.34.101"
-description = "Type annotations for boto3.ECR 1.34.101 service generated with mypy-boto3-builder 7.24.0"
+version = "1.34.140"
+description = "Type annotations for boto3.ECR 1.34.140 service generated with mypy-boto3-builder 7.25.0"
optional = false
python-versions = ">=3.8"
files = [
- {file = "mypy_boto3_ecr-1.34.101-py3-none-any.whl", hash = "sha256:723a3e6b65ec7451cc7c40232eb94e500fa51a77e360a52e028388e2b9afd161"},
- {file = "mypy_boto3_ecr-1.34.101.tar.gz", hash = "sha256:e9acb57088daa41b3fb378f8bb966ca4a4f1b62edb9a2483de582bcf9486a4fc"},
+ {file = "mypy_boto3_ecr-1.34.140-py3-none-any.whl", hash = "sha256:7a73c68d8c52b932ab2dc3d16493efa7e5c3796e5b191a8249c2fc9555699762"},
+ {file = "mypy_boto3_ecr-1.34.140.tar.gz", hash = "sha256:5c31b1ba2b08115a4363ebe0280a0a68438827f44bb4abaeb77e5e7b757a6f55"},
]
[[package]]
@@ -2621,13 +2868,13 @@ files = [
[[package]]
name = "mypy-boto3-s3"
-version = "1.34.120"
-description = "Type annotations for boto3.S3 1.34.120 service generated with mypy-boto3-builder 7.24.0"
+version = "1.34.138"
+description = "Type annotations for boto3.S3 1.34.138 service generated with mypy-boto3-builder 7.25.0"
optional = false
python-versions = ">=3.8"
files = [
- {file = "mypy_boto3_s3-1.34.120-py3-none-any.whl", hash = "sha256:b123335d41882c5c955d24a09ff452ee836f24fb6dbc2f32654478580990aca1"},
- {file = "mypy_boto3_s3-1.34.120.tar.gz", hash = "sha256:d508a7bca6cc1100b2d4c8fc7dc9a0a71f3b2a275338191a0eac161c904ca7bc"},
+ {file = "mypy_boto3_s3-1.34.138-py3-none-any.whl", hash = "sha256:47ded5f06accc10ff9db9d55c85cca88e4f028ec360d7cfcea90377e525cba56"},
+ {file = "mypy_boto3_s3-1.34.138.tar.gz", hash = "sha256:7f9770d1f0e9f6fc2ced96daf5c0792b2dbbb4a4f874f28200ff3c940d0815c3"},
]
[[package]]
@@ -2643,13 +2890,13 @@ files = [
[[package]]
name = "mypy-boto3-secretsmanager"
-version = "1.34.109"
-description = "Type annotations for boto3.SecretsManager 1.34.109 service generated with mypy-boto3-builder 7.24.0"
+version = "1.34.128"
+description = "Type annotations for boto3.SecretsManager 1.34.128 service generated with mypy-boto3-builder 7.24.0"
optional = false
python-versions = ">=3.8"
files = [
- {file = "mypy_boto3_secretsmanager-1.34.109-py3-none-any.whl", hash = "sha256:18c60597a72ef08bad722f1c2f4507a0cf853c1526b1cffb8c3d2a30f5649d1f"},
- {file = "mypy_boto3_secretsmanager-1.34.109.tar.gz", hash = "sha256:29898fb1046fed5f83d05f08470d5cf07dfd1656b1da23f2bb875c9ff734ee65"},
+ {file = "mypy_boto3_secretsmanager-1.34.128-py3-none-any.whl", hash = "sha256:7ce9815d116fa1749971691355b1e1c8f462d46e7eaa9d84133b8db96dd3515f"},
+ {file = "mypy_boto3_secretsmanager-1.34.128.tar.gz", hash = "sha256:ae2b398efa1a32214c3eddb6901efa67cfc24a893b113f549a06bb70bb43b402"},
]
[[package]]
@@ -2676,13 +2923,13 @@ files = [
[[package]]
name = "mypy-boto3-stepfunctions"
-version = "1.34.92"
-description = "Type annotations for boto3.SFN 1.34.92 service generated with mypy-boto3-builder 7.24.0"
+version = "1.34.137"
+description = "Type annotations for boto3.SFN 1.34.137 service generated with mypy-boto3-builder 7.25.0"
optional = false
python-versions = ">=3.8"
files = [
- {file = "mypy_boto3_stepfunctions-1.34.92-py3-none-any.whl", hash = "sha256:e92da1c245ef29b8ed784e5a70fcaef63ac754fa73de614324c30e4562bec8fd"},
- {file = "mypy_boto3_stepfunctions-1.34.92.tar.gz", hash = "sha256:499a5de2f854e5ecf45fee00a5ec20478b4130af1d9d61721e176a787970394c"},
+ {file = "mypy_boto3_stepfunctions-1.34.137-py3-none-any.whl", hash = "sha256:c78a6abaaf6b3c9eaee183b4cc59cb0d6aa838e2f20698be3d6ad46788a64945"},
+ {file = "mypy_boto3_stepfunctions-1.34.137.tar.gz", hash = "sha256:c568275ab1b2d9600352ec26e9915335526d39fc6e7192a664428118f6c7799f"},
]
[[package]]
@@ -2718,6 +2965,17 @@ files = [
{file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
]
+[[package]]
+name = "nest-asyncio"
+version = "1.6.0"
+description = "Patch asyncio to allow nested event loops"
+optional = false
+python-versions = ">=3.5"
+files = [
+ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"},
+ {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"},
+]
+
[[package]]
name = "networkx"
version = "3.3"
@@ -2801,13 +3059,13 @@ six = ">=1.6.1"
[[package]]
name = "openai"
-version = "1.33.0"
+version = "1.35.13"
description = "The official Python library for the openai API"
optional = false
python-versions = ">=3.7.1"
files = [
- {file = "openai-1.33.0-py3-none-any.whl", hash = "sha256:621163b56570897ab8389d187f686a53d4771fd6ce95d481c0a9611fe8bc4229"},
- {file = "openai-1.33.0.tar.gz", hash = "sha256:1169211a7b326ecbc821cafb427c29bfd0871f9a3e0947dd9e51acb3b0f1df78"},
+ {file = "openai-1.35.13-py3-none-any.whl", hash = "sha256:36ec3e93e0d1f243f69be85c89b9221a471c3e450dfd9df16c9829e3cdf63e60"},
+ {file = "openai-1.35.13.tar.gz", hash = "sha256:c684f3945608baf7d2dcc0ef3ee6f3e27e4c66f21076df0b47be45d57e6ae6e4"},
]
[package.dependencies]
@@ -2849,57 +3107,64 @@ kerberos = ["requests-kerberos"]
[[package]]
name = "orjson"
-version = "3.10.4"
+version = "3.10.6"
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
optional = false
python-versions = ">=3.8"
files = [
- {file = "orjson-3.10.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:afca963f19ca60c7aedadea9979f769139127288dd58ccf3f7c5e8e6dc62cabf"},
- {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b112eff36ba7ccc7a9d6b87e17b9d6bde4312d05e3ddf66bf5662481dee846"},
- {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02b192eaba048b1039eca9a0cef67863bd5623042f5c441889a9957121d97e14"},
- {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:827c3d0e4fc44242c82bfdb1a773235b8c0575afee99a9fa9a8ce920c14e440f"},
- {file = "orjson-3.10.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca8ec09724f10ec209244caeb1f9f428b6bb03f2eda9ed5e2c4dd7f2b7fabd44"},
- {file = "orjson-3.10.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8eaa5d531a8fde11993cbcb27e9acf7d9c457ba301adccb7fa3a021bfecab46c"},
- {file = "orjson-3.10.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e112aa7fc4ea67367ec5e86c39a6bb6c5719eddc8f999087b1759e765ddaf2d4"},
- {file = "orjson-3.10.4-cp310-none-win32.whl", hash = "sha256:1538844fb88446c42da3889f8c4ecce95a630b5a5ba18ecdfe5aea596f4dff21"},
- {file = "orjson-3.10.4-cp310-none-win_amd64.whl", hash = "sha256:de02811903a2e434127fba5389c3cc90f689542339a6e52e691ab7f693407b5a"},
- {file = "orjson-3.10.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:358afaec75de7237dfea08e6b1b25d226e33a1e3b6dc154fc99eb697f24a1ffa"},
- {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb4e292c3198ab3d93e5f877301d2746be4ca0ba2d9c513da5e10eb90e19ff52"},
- {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c39e57cf6323a39238490092985d5d198a7da4a3be013cc891a33fef13a536e"},
- {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f86df433fc01361ff9270ad27455ce1ad43cd05e46de7152ca6adb405a16b2f6"},
- {file = "orjson-3.10.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c9966276a2c97e93e6cbe8286537f88b2a071827514f0d9d47a0aefa77db458"},
- {file = "orjson-3.10.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c499a14155a1f5a1e16e0cd31f6cf6f93965ac60a0822bc8340e7e2d3dac1108"},
- {file = "orjson-3.10.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3087023ce904a327c29487eb7e1f2c060070e8dbb9a3991b8e7952a9c6e62f38"},
- {file = "orjson-3.10.4-cp311-none-win32.whl", hash = "sha256:f965893244fe348b59e5ce560693e6dd03368d577ce26849b5d261ce31c70101"},
- {file = "orjson-3.10.4-cp311-none-win_amd64.whl", hash = "sha256:c212f06fad6aa6ce85d5665e91a83b866579f29441a47d3865c57329c0857357"},
- {file = "orjson-3.10.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d0965a8b0131959833ca8a65af60285995d57ced0de2fd8f16fc03235975d238"},
- {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27b64695d9f2aef3ae15a0522e370ec95c946aaea7f2c97a1582a62b3bdd9169"},
- {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:867d882ddee6a20be4c8b03ae3d2b0333894d53ad632d32bd9b8123649577171"},
- {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a0667458f8a8ceb6dee5c08fec0b46195f92c474cbbec71dca2a6b7fd5b67b8d"},
- {file = "orjson-3.10.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3eac9befc4eaec1d1ff3bba6210576be4945332dde194525601c5ddb5c060d3"},
- {file = "orjson-3.10.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4343245443552eae240a33047a6d1bcac7a754ad4b1c57318173c54d7efb9aea"},
- {file = "orjson-3.10.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30153e269eea43e98918d4d462a36a7065031d9246407dfff2579a4e457515c1"},
- {file = "orjson-3.10.4-cp312-none-win32.whl", hash = "sha256:1a7d092ee043abf3db19c2183115e80676495c9911843fdb3ebd48ca7b73079e"},
- {file = "orjson-3.10.4-cp312-none-win_amd64.whl", hash = "sha256:07a2adbeb8b9efe6d68fc557685954a1f19d9e33f5cc018ae1a89e96647c1b65"},
- {file = "orjson-3.10.4-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f5a746f3d908bce1a1e347b9ca89864047533bdfab5a450066a0315f6566527b"},
- {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:465b4a8a3e459f8d304c19071b4badaa9b267c59207a005a7dd9dfe13d3a423f"},
- {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:35858d260728c434a3d91b60685ab32418318567e8902039837e1c2af2719e0b"},
- {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8a5ba090d40c4460312dd69c232b38c2ff67a823185cfe667e841c9dd5c06841"},
- {file = "orjson-3.10.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dde86755d064664e62e3612a166c28298aa8dfd35a991553faa58855ae739cc"},
- {file = "orjson-3.10.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:020a9e9001cfec85c156ef3b185ff758b62ef986cefdb8384c4579facd5ce126"},
- {file = "orjson-3.10.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3bf8e6e3388a2e83a86466c912387e0f0a765494c65caa7e865f99969b76ba0d"},
- {file = "orjson-3.10.4-cp38-none-win32.whl", hash = "sha256:c5a1cca6a4a3129db3da68a25dc0a459a62ae58e284e363b35ab304202d9ba9e"},
- {file = "orjson-3.10.4-cp38-none-win_amd64.whl", hash = "sha256:ecd97d98d7bee3e3d51d0b51c92c457f05db4993329eea7c69764f9820e27eb3"},
- {file = "orjson-3.10.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:71362daa330a2fc85553a1469185ac448547392a8f83d34e67779f8df3a52743"},
- {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d24b59d1fecb0fd080c177306118a143f7322335309640c55ed9580d2044e363"},
- {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e906670aea5a605b083ebb58d575c35e88cf880fa372f7cedaac3d51e98ff164"},
- {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ce32ed4bc4d632268e4978e595fe5ea07e026b751482b4a0feec48f66a90abc"},
- {file = "orjson-3.10.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1dcd34286246e0c5edd0e230d1da2daab2c1b465fcb6bac85b8d44057229d40a"},
- {file = "orjson-3.10.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c45d4b8c403e50beedb1d006a8916d9910ed56bceaf2035dc253618b44d0a161"},
- {file = "orjson-3.10.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:aaed3253041b5002a4f5bfdf6f7b5cce657d974472b0699a469d439beba40381"},
- {file = "orjson-3.10.4-cp39-none-win32.whl", hash = "sha256:9a4f41b7dbf7896f8dbf559b9b43dcd99e31e0d49ac1b59d74f52ce51ab10eb9"},
- {file = "orjson-3.10.4-cp39-none-win_amd64.whl", hash = "sha256:6c4eb7d867ed91cb61e6514cb4f457aa01d7b0fd663089df60a69f3d38b69d4c"},
- {file = "orjson-3.10.4.tar.gz", hash = "sha256:c912ed25b787c73fe994a5decd81c3f3b256599b8a87d410d799d5d52013af2a"},
+ {file = "orjson-3.10.6-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:fb0ee33124db6eaa517d00890fc1a55c3bfe1cf78ba4a8899d71a06f2d6ff5c7"},
+ {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c1c4b53b24a4c06547ce43e5fee6ec4e0d8fe2d597f4647fc033fd205707365"},
+ {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eadc8fd310edb4bdbd333374f2c8fec6794bbbae99b592f448d8214a5e4050c0"},
+ {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61272a5aec2b2661f4fa2b37c907ce9701e821b2c1285d5c3ab0207ebd358d38"},
+ {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57985ee7e91d6214c837936dc1608f40f330a6b88bb13f5a57ce5257807da143"},
+ {file = "orjson-3.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:633a3b31d9d7c9f02d49c4ab4d0a86065c4a6f6adc297d63d272e043472acab5"},
+ {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1c680b269d33ec444afe2bdc647c9eb73166fa47a16d9a75ee56a374f4a45f43"},
+ {file = "orjson-3.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f759503a97a6ace19e55461395ab0d618b5a117e8d0fbb20e70cfd68a47327f2"},
+ {file = "orjson-3.10.6-cp310-none-win32.whl", hash = "sha256:95a0cce17f969fb5391762e5719575217bd10ac5a189d1979442ee54456393f3"},
+ {file = "orjson-3.10.6-cp310-none-win_amd64.whl", hash = "sha256:df25d9271270ba2133cc88ee83c318372bdc0f2cd6f32e7a450809a111efc45c"},
+ {file = "orjson-3.10.6-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b1ec490e10d2a77c345def52599311849fc063ae0e67cf4f84528073152bb2ba"},
+ {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55d43d3feb8f19d07e9f01e5b9be4f28801cf7c60d0fa0d279951b18fae1932b"},
+ {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac3045267e98fe749408eee1593a142e02357c5c99be0802185ef2170086a863"},
+ {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c27bc6a28ae95923350ab382c57113abd38f3928af3c80be6f2ba7eb8d8db0b0"},
+ {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d27456491ca79532d11e507cadca37fb8c9324a3976294f68fb1eff2dc6ced5a"},
+ {file = "orjson-3.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05ac3d3916023745aa3b3b388e91b9166be1ca02b7c7e41045da6d12985685f0"},
+ {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1335d4ef59ab85cab66fe73fd7a4e881c298ee7f63ede918b7faa1b27cbe5212"},
+ {file = "orjson-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4bbc6d0af24c1575edc79994c20e1b29e6fb3c6a570371306db0993ecf144dc5"},
+ {file = "orjson-3.10.6-cp311-none-win32.whl", hash = "sha256:450e39ab1f7694465060a0550b3f6d328d20297bf2e06aa947b97c21e5241fbd"},
+ {file = "orjson-3.10.6-cp311-none-win_amd64.whl", hash = "sha256:227df19441372610b20e05bdb906e1742ec2ad7a66ac8350dcfd29a63014a83b"},
+ {file = "orjson-3.10.6-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ea2977b21f8d5d9b758bb3f344a75e55ca78e3ff85595d248eee813ae23ecdfb"},
+ {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b6f3d167d13a16ed263b52dbfedff52c962bfd3d270b46b7518365bcc2121eed"},
+ {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f710f346e4c44a4e8bdf23daa974faede58f83334289df80bc9cd12fe82573c7"},
+ {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7275664f84e027dcb1ad5200b8b18373e9c669b2a9ec33d410c40f5ccf4b257e"},
+ {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0943e4c701196b23c240b3d10ed8ecd674f03089198cf503105b474a4f77f21f"},
+ {file = "orjson-3.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:446dee5a491b5bc7d8f825d80d9637e7af43f86a331207b9c9610e2f93fee22a"},
+ {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:64c81456d2a050d380786413786b057983892db105516639cb5d3ee3c7fd5148"},
+ {file = "orjson-3.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:960db0e31c4e52fa0fc3ecbaea5b2d3b58f379e32a95ae6b0ebeaa25b93dfd34"},
+ {file = "orjson-3.10.6-cp312-none-win32.whl", hash = "sha256:a6ea7afb5b30b2317e0bee03c8d34c8181bc5a36f2afd4d0952f378972c4efd5"},
+ {file = "orjson-3.10.6-cp312-none-win_amd64.whl", hash = "sha256:874ce88264b7e655dde4aeaacdc8fd772a7962faadfb41abe63e2a4861abc3dc"},
+ {file = "orjson-3.10.6-cp313-none-win32.whl", hash = "sha256:efdf2c5cde290ae6b83095f03119bdc00303d7a03b42b16c54517baa3c4ca3d0"},
+ {file = "orjson-3.10.6-cp313-none-win_amd64.whl", hash = "sha256:8e190fe7888e2e4392f52cafb9626113ba135ef53aacc65cd13109eb9746c43e"},
+ {file = "orjson-3.10.6-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:66680eae4c4e7fc193d91cfc1353ad6d01b4801ae9b5314f17e11ba55e934183"},
+ {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:caff75b425db5ef8e8f23af93c80f072f97b4fb3afd4af44482905c9f588da28"},
+ {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3722fddb821b6036fd2a3c814f6bd9b57a89dc6337b9924ecd614ebce3271394"},
+ {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2c116072a8533f2fec435fde4d134610f806bdac20188c7bd2081f3e9e0133f"},
+ {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6eeb13218c8cf34c61912e9df2de2853f1d009de0e46ea09ccdf3d757896af0a"},
+ {file = "orjson-3.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:965a916373382674e323c957d560b953d81d7a8603fbeee26f7b8248638bd48b"},
+ {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03c95484d53ed8e479cade8628c9cea00fd9d67f5554764a1110e0d5aa2de96e"},
+ {file = "orjson-3.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e060748a04cccf1e0a6f2358dffea9c080b849a4a68c28b1b907f272b5127e9b"},
+ {file = "orjson-3.10.6-cp38-none-win32.whl", hash = "sha256:738dbe3ef909c4b019d69afc19caf6b5ed0e2f1c786b5d6215fbb7539246e4c6"},
+ {file = "orjson-3.10.6-cp38-none-win_amd64.whl", hash = "sha256:d40f839dddf6a7d77114fe6b8a70218556408c71d4d6e29413bb5f150a692ff7"},
+ {file = "orjson-3.10.6-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:697a35a083c4f834807a6232b3e62c8b280f7a44ad0b759fd4dce748951e70db"},
+ {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd502f96bf5ea9a61cbc0b2b5900d0dd68aa0da197179042bdd2be67e51a1e4b"},
+ {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f215789fb1667cdc874c1b8af6a84dc939fd802bf293a8334fce185c79cd359b"},
+ {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2debd8ddce948a8c0938c8c93ade191d2f4ba4649a54302a7da905a81f00b56"},
+ {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5410111d7b6681d4b0d65e0f58a13be588d01b473822483f77f513c7f93bd3b2"},
+ {file = "orjson-3.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb1f28a137337fdc18384079fa5726810681055b32b92253fa15ae5656e1dddb"},
+ {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bf2fbbce5fe7cd1aa177ea3eab2b8e6a6bc6e8592e4279ed3db2d62e57c0e1b2"},
+ {file = "orjson-3.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:79b9b9e33bd4c517445a62b90ca0cc279b0f1f3970655c3df9e608bc3f91741a"},
+ {file = "orjson-3.10.6-cp39-none-win32.whl", hash = "sha256:30b0a09a2014e621b1adf66a4f705f0809358350a757508ee80209b2d8dae219"},
+ {file = "orjson-3.10.6-cp39-none-win_amd64.whl", hash = "sha256:49e3bc615652617d463069f91b867a4458114c5b104e13b7ae6872e5f79d0844"},
+ {file = "orjson-3.10.6.tar.gz", hash = "sha256:e54b63d0a7c6c54a5f5f726bc93a2078111ef060fec4ecbf34c5db800ca3b3a7"},
]
[[package]]
@@ -2927,6 +3192,21 @@ files = [
[package.extras]
dev = ["jinja2"]
+[[package]]
+name = "parso"
+version = "0.8.4"
+description = "A Python Parser"
+optional = false
+python-versions = ">=3.6"
+files = [
+ {file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"},
+ {file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"},
+]
+
+[package.extras]
+qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
+testing = ["docopt", "pytest"]
+
[[package]]
name = "pbr"
version = "6.0.0"
@@ -2938,103 +3218,144 @@ files = [
{file = "pbr-6.0.0.tar.gz", hash = "sha256:d1377122a5a00e2f940ee482999518efe16d745d423a670c27773dfbc3c9a7d9"},
]
+[[package]]
+name = "pexpect"
+version = "4.9.0"
+description = "Pexpect allows easy control of interactive console applications."
+optional = false
+python-versions = "*"
+files = [
+ {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"},
+ {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"},
+]
+
+[package.dependencies]
+ptyprocess = ">=0.5"
+
[[package]]
name = "phonenumbers"
-version = "8.13.38"
+version = "8.13.40"
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers."
optional = false
python-versions = "*"
files = [
- {file = "phonenumbers-8.13.38-py2.py3-none-any.whl", hash = "sha256:d22aa747fb591ef2a18afec13cab5a0e294ab20fce5a1560e4949e459e70eeef"},
- {file = "phonenumbers-8.13.38.tar.gz", hash = "sha256:2822c74ee9334e9d8ad792fc352cc8d21004307349b6b1bb61da12937fa2eaba"},
+ {file = "phonenumbers-8.13.40-py2.py3-none-any.whl", hash = "sha256:9582752c20a1da5ec4449f7f97542bf8a793c8e2fec0ab57f767177bb8fc0b1d"},
+ {file = "phonenumbers-8.13.40.tar.gz", hash = "sha256:f137c2848b8e83dd064b71881b65680584417efa202177fd330e2f7ff6c68113"},
]
[[package]]
name = "pillow"
-version = "10.3.0"
+version = "10.4.0"
description = "Python Imaging Library (Fork)"
optional = false
python-versions = ">=3.8"
files = [
- {file = "pillow-10.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45"},
- {file = "pillow-10.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c"},
- {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf"},
- {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599"},
- {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475"},
- {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf"},
- {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3"},
- {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5"},
- {file = "pillow-10.3.0-cp310-cp310-win32.whl", hash = "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2"},
- {file = "pillow-10.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f"},
- {file = "pillow-10.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b"},
- {file = "pillow-10.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795"},
- {file = "pillow-10.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57"},
- {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27"},
- {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994"},
- {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451"},
- {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd"},
- {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad"},
- {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c"},
- {file = "pillow-10.3.0-cp311-cp311-win32.whl", hash = "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09"},
- {file = "pillow-10.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d"},
- {file = "pillow-10.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f"},
- {file = "pillow-10.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84"},
- {file = "pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19"},
- {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338"},
- {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1"},
- {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462"},
- {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a"},
- {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef"},
- {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3"},
- {file = "pillow-10.3.0-cp312-cp312-win32.whl", hash = "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d"},
- {file = "pillow-10.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b"},
- {file = "pillow-10.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a"},
- {file = "pillow-10.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b"},
- {file = "pillow-10.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2"},
- {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa"},
- {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383"},
- {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d"},
- {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd"},
- {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d"},
- {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3"},
- {file = "pillow-10.3.0-cp38-cp38-win32.whl", hash = "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b"},
- {file = "pillow-10.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999"},
- {file = "pillow-10.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936"},
- {file = "pillow-10.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002"},
- {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60"},
- {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375"},
- {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57"},
- {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8"},
- {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9"},
- {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb"},
- {file = "pillow-10.3.0-cp39-cp39-win32.whl", hash = "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572"},
- {file = "pillow-10.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb"},
- {file = "pillow-10.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3"},
- {file = "pillow-10.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a"},
- {file = "pillow-10.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591"},
- {file = "pillow-10.3.0.tar.gz", hash = "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d"},
+ {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"},
+ {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"},
+ {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"},
+ {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"},
+ {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"},
+ {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"},
+ {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"},
+ {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"},
+ {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"},
+ {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"},
+ {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"},
+ {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"},
+ {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"},
+ {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"},
+ {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"},
+ {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"},
+ {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"},
+ {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"},
+ {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"},
+ {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"},
+ {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"},
+ {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"},
+ {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"},
+ {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"},
+ {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"},
+ {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"},
+ {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"},
+ {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"},
+ {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"},
+ {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"},
+ {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"},
+ {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"},
+ {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"},
+ {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"},
+ {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"},
+ {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"},
+ {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"},
+ {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"},
+ {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"},
+ {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"},
+ {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"},
+ {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"},
+ {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"},
+ {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"},
+ {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"},
+ {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"},
+ {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"},
+ {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"},
+ {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"},
+ {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"},
+ {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"},
+ {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"},
+ {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"},
+ {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"},
+ {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"},
+ {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"},
+ {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"},
+ {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"},
+ {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"},
+ {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"},
+ {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"},
+ {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"},
+ {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"},
+ {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"},
+ {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"},
+ {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"},
+ {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"},
+ {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"},
]
[package.extras]
-docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"]
+docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"]
fpx = ["olefile"]
mic = ["olefile"]
tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"]
typing = ["typing-extensions"]
xmp = ["defusedxml"]
+[[package]]
+name = "platformdirs"
+version = "4.2.2"
+description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"},
+ {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"},
+]
+
+[package.extras]
+docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
+test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"]
+type = ["mypy (>=1.8)"]
+
[[package]]
name = "preshed"
version = "3.0.9"
@@ -3116,43 +3437,111 @@ files = [
[package.dependencies]
pycryptodome = ">=3.10.1"
+[[package]]
+name = "prompt-toolkit"
+version = "3.0.47"
+description = "Library for building powerful interactive command lines in Python"
+optional = false
+python-versions = ">=3.7.0"
+files = [
+ {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"},
+ {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"},
+]
+
+[package.dependencies]
+wcwidth = "*"
+
[[package]]
name = "proto-plus"
-version = "1.23.0"
+version = "1.24.0"
description = "Beautiful, Pythonic protocol buffers."
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.7"
files = [
- {file = "proto-plus-1.23.0.tar.gz", hash = "sha256:89075171ef11988b3fa157f5dbd8b9cf09d65fffee97e29ce403cd8defba19d2"},
- {file = "proto_plus-1.23.0-py3-none-any.whl", hash = "sha256:a829c79e619e1cf632de091013a4173deed13a55f326ef84f05af6f50ff4c82c"},
+ {file = "proto-plus-1.24.0.tar.gz", hash = "sha256:30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445"},
+ {file = "proto_plus-1.24.0-py3-none-any.whl", hash = "sha256:402576830425e5f6ce4c2a6702400ac79897dab0b4343821aa5188b0fab81a12"},
]
[package.dependencies]
-protobuf = ">=3.19.0,<5.0.0dev"
+protobuf = ">=3.19.0,<6.0.0dev"
[package.extras]
-testing = ["google-api-core[grpc] (>=1.31.5)"]
+testing = ["google-api-core (>=1.31.5)"]
[[package]]
name = "protobuf"
-version = "4.25.3"
+version = "5.27.2"
description = ""
optional = false
python-versions = ">=3.8"
files = [
- {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"},
- {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"},
- {file = "protobuf-4.25.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:f1279ab38ecbfae7e456a108c5c0681e4956d5b1090027c1de0f934dfdb4b35c"},
- {file = "protobuf-4.25.3-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:e7cb0ae90dd83727f0c0718634ed56837bfeeee29a5f82a7514c03ee1364c019"},
- {file = "protobuf-4.25.3-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:7c8daa26095f82482307bc717364e7c13f4f1c99659be82890dcfc215194554d"},
- {file = "protobuf-4.25.3-cp38-cp38-win32.whl", hash = "sha256:f4f118245c4a087776e0a8408be33cf09f6c547442c00395fbfb116fac2f8ac2"},
- {file = "protobuf-4.25.3-cp38-cp38-win_amd64.whl", hash = "sha256:c053062984e61144385022e53678fbded7aea14ebb3e0305ae3592fb219ccfa4"},
- {file = "protobuf-4.25.3-cp39-cp39-win32.whl", hash = "sha256:19b270aeaa0099f16d3ca02628546b8baefe2955bbe23224aaf856134eccf1e4"},
- {file = "protobuf-4.25.3-cp39-cp39-win_amd64.whl", hash = "sha256:e3c97a1555fd6388f857770ff8b9703083de6bf1f9274a002a332d65fbb56c8c"},
- {file = "protobuf-4.25.3-py3-none-any.whl", hash = "sha256:f0700d54bcf45424477e46a9f0944155b46fb0639d69728739c0e47bab83f2b9"},
- {file = "protobuf-4.25.3.tar.gz", hash = "sha256:25b5d0b42fd000320bd7830b349e3b696435f3b329810427a6bcce6a5492cc5c"},
+ {file = "protobuf-5.27.2-cp310-abi3-win32.whl", hash = "sha256:354d84fac2b0d76062e9b3221f4abbbacdfd2a4d8af36bab0474f3a0bb30ab38"},
+ {file = "protobuf-5.27.2-cp310-abi3-win_amd64.whl", hash = "sha256:0e341109c609749d501986b835f667c6e1e24531096cff9d34ae411595e26505"},
+ {file = "protobuf-5.27.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:a109916aaac42bff84702fb5187f3edadbc7c97fc2c99c5ff81dd15dcce0d1e5"},
+ {file = "protobuf-5.27.2-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:176c12b1f1c880bf7a76d9f7c75822b6a2bc3db2d28baa4d300e8ce4cde7409b"},
+ {file = "protobuf-5.27.2-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:b848dbe1d57ed7c191dfc4ea64b8b004a3f9ece4bf4d0d80a367b76df20bf36e"},
+ {file = "protobuf-5.27.2-cp38-cp38-win32.whl", hash = "sha256:4fadd8d83e1992eed0248bc50a4a6361dc31bcccc84388c54c86e530b7f58863"},
+ {file = "protobuf-5.27.2-cp38-cp38-win_amd64.whl", hash = "sha256:610e700f02469c4a997e58e328cac6f305f649826853813177e6290416e846c6"},
+ {file = "protobuf-5.27.2-cp39-cp39-win32.whl", hash = "sha256:9e8f199bf7f97bd7ecebffcae45ebf9527603549b2b562df0fbc6d4d688f14ca"},
+ {file = "protobuf-5.27.2-cp39-cp39-win_amd64.whl", hash = "sha256:7fc3add9e6003e026da5fc9e59b131b8f22b428b991ccd53e2af8071687b4fce"},
+ {file = "protobuf-5.27.2-py3-none-any.whl", hash = "sha256:54330f07e4949d09614707c48b06d1a22f8ffb5763c159efd5c0928326a91470"},
+ {file = "protobuf-5.27.2.tar.gz", hash = "sha256:f3ecdef226b9af856075f28227ff2c90ce3a594d092c39bee5513573f25e2714"},
]
+[[package]]
+name = "psutil"
+version = "6.0.0"
+description = "Cross-platform lib for process and system monitoring in Python."
+optional = false
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
+files = [
+ {file = "psutil-6.0.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a021da3e881cd935e64a3d0a20983bda0bb4cf80e4f74fa9bfcb1bc5785360c6"},
+ {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:1287c2b95f1c0a364d23bc6f2ea2365a8d4d9b726a3be7294296ff7ba97c17f0"},
+ {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a9a3dbfb4de4f18174528d87cc352d1f788b7496991cca33c6996f40c9e3c92c"},
+ {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6ec7588fb3ddaec7344a825afe298db83fe01bfaaab39155fa84cf1c0d6b13c3"},
+ {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:1e7c870afcb7d91fdea2b37c24aeb08f98b6d67257a5cb0a8bc3ac68d0f1a68c"},
+ {file = "psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35"},
+ {file = "psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1"},
+ {file = "psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0"},
+ {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0"},
+ {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd"},
+ {file = "psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132"},
+ {file = "psutil-6.0.0-cp36-cp36m-win32.whl", hash = "sha256:fc8c9510cde0146432bbdb433322861ee8c3efbf8589865c8bf8d21cb30c4d14"},
+ {file = "psutil-6.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:34859b8d8f423b86e4385ff3665d3f4d94be3cdf48221fbe476e883514fdb71c"},
+ {file = "psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d"},
+ {file = "psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3"},
+ {file = "psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0"},
+ {file = "psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2"},
+]
+
+[package.extras]
+test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"]
+
+[[package]]
+name = "ptyprocess"
+version = "0.7.0"
+description = "Run a subprocess in a pseudo terminal"
+optional = false
+python-versions = "*"
+files = [
+ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
+ {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
+]
+
+[[package]]
+name = "pure-eval"
+version = "0.2.3"
+description = "Safely evaluate AST nodes without side effects"
+optional = false
+python-versions = "*"
+files = [
+ {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"},
+ {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"},
+]
+
+[package.extras]
+tests = ["pytest"]
+
[[package]]
name = "pyasn1"
version = "0.6.0"
@@ -3232,109 +3621,119 @@ files = [
[[package]]
name = "pydantic"
-version = "2.7.3"
+version = "2.8.2"
description = "Data validation using Python type hints"
optional = false
python-versions = ">=3.8"
files = [
- {file = "pydantic-2.7.3-py3-none-any.whl", hash = "sha256:ea91b002777bf643bb20dd717c028ec43216b24a6001a280f83877fd2655d0b4"},
- {file = "pydantic-2.7.3.tar.gz", hash = "sha256:c46c76a40bb1296728d7a8b99aa73dd70a48c3510111ff290034f860c99c419e"},
+ {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"},
+ {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"},
]
[package.dependencies]
annotated-types = ">=0.4.0"
-pydantic-core = "2.18.4"
-typing-extensions = ">=4.6.1"
+pydantic-core = "2.20.1"
+typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""}
[package.extras]
email = ["email-validator (>=2.0.0)"]
[[package]]
name = "pydantic-core"
-version = "2.18.4"
+version = "2.20.1"
description = "Core functionality for Pydantic validation and serialization"
optional = false
python-versions = ">=3.8"
files = [
- {file = "pydantic_core-2.18.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:f76d0ad001edd426b92233d45c746fd08f467d56100fd8f30e9ace4b005266e4"},
- {file = "pydantic_core-2.18.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:59ff3e89f4eaf14050c8022011862df275b552caef8082e37b542b066ce1ff26"},
- {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a55b5b16c839df1070bc113c1f7f94a0af4433fcfa1b41799ce7606e5c79ce0a"},
- {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4d0dcc59664fcb8974b356fe0a18a672d6d7cf9f54746c05f43275fc48636851"},
- {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8951eee36c57cd128f779e641e21eb40bc5073eb28b2d23f33eb0ef14ffb3f5d"},
- {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4701b19f7e3a06ea655513f7938de6f108123bf7c86bbebb1196eb9bd35cf724"},
- {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e00a3f196329e08e43d99b79b286d60ce46bed10f2280d25a1718399457e06be"},
- {file = "pydantic_core-2.18.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:97736815b9cc893b2b7f663628e63f436018b75f44854c8027040e05230eeddb"},
- {file = "pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6891a2ae0e8692679c07728819b6e2b822fb30ca7445f67bbf6509b25a96332c"},
- {file = "pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bc4ff9805858bd54d1a20efff925ccd89c9d2e7cf4986144b30802bf78091c3e"},
- {file = "pydantic_core-2.18.4-cp310-none-win32.whl", hash = "sha256:1b4de2e51bbcb61fdebd0ab86ef28062704f62c82bbf4addc4e37fa4b00b7cbc"},
- {file = "pydantic_core-2.18.4-cp310-none-win_amd64.whl", hash = "sha256:6a750aec7bf431517a9fd78cb93c97b9b0c496090fee84a47a0d23668976b4b0"},
- {file = "pydantic_core-2.18.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:942ba11e7dfb66dc70f9ae66b33452f51ac7bb90676da39a7345e99ffb55402d"},
- {file = "pydantic_core-2.18.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2ebef0e0b4454320274f5e83a41844c63438fdc874ea40a8b5b4ecb7693f1c4"},
- {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a642295cd0c8df1b86fc3dced1d067874c353a188dc8e0f744626d49e9aa51c4"},
- {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f09baa656c904807e832cf9cce799c6460c450c4ad80803517032da0cd062e2"},
- {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98906207f29bc2c459ff64fa007afd10a8c8ac080f7e4d5beff4c97086a3dabd"},
- {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19894b95aacfa98e7cb093cd7881a0c76f55731efad31073db4521e2b6ff5b7d"},
- {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fbbdc827fe5e42e4d196c746b890b3d72876bdbf160b0eafe9f0334525119c8"},
- {file = "pydantic_core-2.18.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f85d05aa0918283cf29a30b547b4df2fbb56b45b135f9e35b6807cb28bc47951"},
- {file = "pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e85637bc8fe81ddb73fda9e56bab24560bdddfa98aa64f87aaa4e4b6730c23d2"},
- {file = "pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2f5966897e5461f818e136b8451d0551a2e77259eb0f73a837027b47dc95dab9"},
- {file = "pydantic_core-2.18.4-cp311-none-win32.whl", hash = "sha256:44c7486a4228413c317952e9d89598bcdfb06399735e49e0f8df643e1ccd0558"},
- {file = "pydantic_core-2.18.4-cp311-none-win_amd64.whl", hash = "sha256:8a7164fe2005d03c64fd3b85649891cd4953a8de53107940bf272500ba8a788b"},
- {file = "pydantic_core-2.18.4-cp311-none-win_arm64.whl", hash = "sha256:4e99bc050fe65c450344421017f98298a97cefc18c53bb2f7b3531eb39bc7805"},
- {file = "pydantic_core-2.18.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6f5c4d41b2771c730ea1c34e458e781b18cc668d194958e0112455fff4e402b2"},
- {file = "pydantic_core-2.18.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2fdf2156aa3d017fddf8aea5adfba9f777db1d6022d392b682d2a8329e087cef"},
- {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4748321b5078216070b151d5271ef3e7cc905ab170bbfd27d5c83ee3ec436695"},
- {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:847a35c4d58721c5dc3dba599878ebbdfd96784f3fb8bb2c356e123bdcd73f34"},
- {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c40d4eaad41f78e3bbda31b89edc46a3f3dc6e171bf0ecf097ff7a0ffff7cb1"},
- {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:21a5e440dbe315ab9825fcd459b8814bb92b27c974cbc23c3e8baa2b76890077"},
- {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01dd777215e2aa86dfd664daed5957704b769e726626393438f9c87690ce78c3"},
- {file = "pydantic_core-2.18.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4b06beb3b3f1479d32befd1f3079cc47b34fa2da62457cdf6c963393340b56e9"},
- {file = "pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:564d7922e4b13a16b98772441879fcdcbe82ff50daa622d681dd682175ea918c"},
- {file = "pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0eb2a4f660fcd8e2b1c90ad566db2b98d7f3f4717c64fe0a83e0adb39766d5b8"},
- {file = "pydantic_core-2.18.4-cp312-none-win32.whl", hash = "sha256:8b8bab4c97248095ae0c4455b5a1cd1cdd96e4e4769306ab19dda135ea4cdb07"},
- {file = "pydantic_core-2.18.4-cp312-none-win_amd64.whl", hash = "sha256:14601cdb733d741b8958224030e2bfe21a4a881fb3dd6fbb21f071cabd48fa0a"},
- {file = "pydantic_core-2.18.4-cp312-none-win_arm64.whl", hash = "sha256:c1322d7dd74713dcc157a2b7898a564ab091ca6c58302d5c7b4c07296e3fd00f"},
- {file = "pydantic_core-2.18.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:823be1deb01793da05ecb0484d6c9e20baebb39bd42b5d72636ae9cf8350dbd2"},
- {file = "pydantic_core-2.18.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ebef0dd9bf9b812bf75bda96743f2a6c5734a02092ae7f721c048d156d5fabae"},
- {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae1d6df168efb88d7d522664693607b80b4080be6750c913eefb77e34c12c71a"},
- {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f9899c94762343f2cc2fc64c13e7cae4c3cc65cdfc87dd810a31654c9b7358cc"},
- {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99457f184ad90235cfe8461c4d70ab7dd2680e28821c29eca00252ba90308c78"},
- {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18f469a3d2a2fdafe99296a87e8a4c37748b5080a26b806a707f25a902c040a8"},
- {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7cdf28938ac6b8b49ae5e92f2735056a7ba99c9b110a474473fd71185c1af5d"},
- {file = "pydantic_core-2.18.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:938cb21650855054dc54dfd9120a851c974f95450f00683399006aa6e8abb057"},
- {file = "pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:44cd83ab6a51da80fb5adbd9560e26018e2ac7826f9626bc06ca3dc074cd198b"},
- {file = "pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:972658f4a72d02b8abfa2581d92d59f59897d2e9f7e708fdabe922f9087773af"},
- {file = "pydantic_core-2.18.4-cp38-none-win32.whl", hash = "sha256:1d886dc848e60cb7666f771e406acae54ab279b9f1e4143babc9c2258213daa2"},
- {file = "pydantic_core-2.18.4-cp38-none-win_amd64.whl", hash = "sha256:bb4462bd43c2460774914b8525f79b00f8f407c945d50881568f294c1d9b4443"},
- {file = "pydantic_core-2.18.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:44a688331d4a4e2129140a8118479443bd6f1905231138971372fcde37e43528"},
- {file = "pydantic_core-2.18.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a2fdd81edd64342c85ac7cf2753ccae0b79bf2dfa063785503cb85a7d3593223"},
- {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:86110d7e1907ab36691f80b33eb2da87d780f4739ae773e5fc83fb272f88825f"},
- {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:46387e38bd641b3ee5ce247563b60c5ca098da9c56c75c157a05eaa0933ed154"},
- {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:123c3cec203e3f5ac7b000bd82235f1a3eced8665b63d18be751f115588fea30"},
- {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dc1803ac5c32ec324c5261c7209e8f8ce88e83254c4e1aebdc8b0a39f9ddb443"},
- {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:53db086f9f6ab2b4061958d9c276d1dbe3690e8dd727d6abf2321d6cce37fa94"},
- {file = "pydantic_core-2.18.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:abc267fa9837245cc28ea6929f19fa335f3dc330a35d2e45509b6566dc18be23"},
- {file = "pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a0d829524aaefdebccb869eed855e2d04c21d2d7479b6cada7ace5448416597b"},
- {file = "pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:509daade3b8649f80d4e5ff21aa5673e4ebe58590b25fe42fac5f0f52c6f034a"},
- {file = "pydantic_core-2.18.4-cp39-none-win32.whl", hash = "sha256:ca26a1e73c48cfc54c4a76ff78df3727b9d9f4ccc8dbee4ae3f73306a591676d"},
- {file = "pydantic_core-2.18.4-cp39-none-win_amd64.whl", hash = "sha256:c67598100338d5d985db1b3d21f3619ef392e185e71b8d52bceacc4a7771ea7e"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:574d92eac874f7f4db0ca653514d823a0d22e2354359d0759e3f6a406db5d55d"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1f4d26ceb5eb9eed4af91bebeae4b06c3fb28966ca3a8fb765208cf6b51102ab"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77450e6d20016ec41f43ca4a6c63e9fdde03f0ae3fe90e7c27bdbeaece8b1ed4"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d323a01da91851a4f17bf592faf46149c9169d68430b3146dcba2bb5e5719abc"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:43d447dd2ae072a0065389092a231283f62d960030ecd27565672bd40746c507"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:578e24f761f3b425834f297b9935e1ce2e30f51400964ce4801002435a1b41ef"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:81b5efb2f126454586d0f40c4d834010979cb80785173d1586df845a632e4e6d"},
- {file = "pydantic_core-2.18.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ab86ce7c8f9bea87b9d12c7f0af71102acbf5ecbc66c17796cff45dae54ef9a5"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:90afc12421df2b1b4dcc975f814e21bc1754640d502a2fbcc6d41e77af5ec312"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:51991a89639a912c17bef4b45c87bd83593aee0437d8102556af4885811d59f5"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:293afe532740370aba8c060882f7d26cfd00c94cae32fd2e212a3a6e3b7bc15e"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b48ece5bde2e768197a2d0f6e925f9d7e3e826f0ad2271120f8144a9db18d5c8"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:eae237477a873ab46e8dd748e515c72c0c804fb380fbe6c85533c7de51f23a8f"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:834b5230b5dfc0c1ec37b2fda433b271cbbc0e507560b5d1588e2cc1148cf1ce"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e858ac0a25074ba4bce653f9b5d0a85b7456eaddadc0ce82d3878c22489fa4ee"},
- {file = "pydantic_core-2.18.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2fd41f6eff4c20778d717af1cc50eca52f5afe7805ee530a4fbd0bae284f16e9"},
- {file = "pydantic_core-2.18.4.tar.gz", hash = "sha256:ec3beeada09ff865c344ff3bc2f427f5e6c26401cc6113d77e372c3fdac73864"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"},
+ {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"},
+ {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"},
+ {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"},
+ {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"},
+ {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"},
+ {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"},
+ {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"},
+ {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"},
+ {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"},
+ {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"},
+ {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"},
+ {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"},
+ {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"},
+ {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"},
+ {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"},
+ {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"},
+ {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"},
+ {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"},
+ {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"},
+ {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"},
+ {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"},
]
[package.dependencies]
@@ -3342,13 +3741,13 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0"
[[package]]
name = "pydantic-settings"
-version = "2.3.2"
+version = "2.3.4"
description = "Settings management using Pydantic"
optional = false
python-versions = ">=3.8"
files = [
- {file = "pydantic_settings-2.3.2-py3-none-any.whl", hash = "sha256:ae06e44349e4c7bff8d57aff415dfd397ae75c217a098d54e9e6990ad7594ac7"},
- {file = "pydantic_settings-2.3.2.tar.gz", hash = "sha256:05d33003c74c2cd585de97b59eb17b6ed67181bc8a3ce594d74b5d24e4df7323"},
+ {file = "pydantic_settings-2.3.4-py3-none-any.whl", hash = "sha256:11ad8bacb68a045f00e4f862c7a718c8a9ec766aa8fd4c32e39a0594b207b53a"},
+ {file = "pydantic_settings-2.3.4.tar.gz", hash = "sha256:c5802e3d62b78e82522319bbc9b8f8ffb28ad1c988a99311d04f2a6051fca0a7"},
]
[package.dependencies]
@@ -3544,6 +3943,127 @@ files = [
{file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"},
]
+[[package]]
+name = "pyzmq"
+version = "26.1.0"
+description = "Python bindings for 0MQ"
+optional = false
+python-versions = ">=3.7"
+files = [
+ {file = "pyzmq-26.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:263cf1e36862310bf5becfbc488e18d5d698941858860c5a8c079d1511b3b18e"},
+ {file = "pyzmq-26.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d5c8b17f6e8f29138678834cf8518049e740385eb2dbf736e8f07fc6587ec682"},
+ {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:75a95c2358fcfdef3374cb8baf57f1064d73246d55e41683aaffb6cfe6862917"},
+ {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f99de52b8fbdb2a8f5301ae5fc0f9e6b3ba30d1d5fc0421956967edcc6914242"},
+ {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bcbfbab4e1895d58ab7da1b5ce9a327764f0366911ba5b95406c9104bceacb0"},
+ {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:77ce6a332c7e362cb59b63f5edf730e83590d0ab4e59c2aa5bd79419a42e3449"},
+ {file = "pyzmq-26.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ba0a31d00e8616149a5ab440d058ec2da621e05d744914774c4dde6837e1f545"},
+ {file = "pyzmq-26.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8b88641384e84a258b740801cd4dbc45c75f148ee674bec3149999adda4a8598"},
+ {file = "pyzmq-26.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2fa76ebcebe555cce90f16246edc3ad83ab65bb7b3d4ce408cf6bc67740c4f88"},
+ {file = "pyzmq-26.1.0-cp310-cp310-win32.whl", hash = "sha256:fbf558551cf415586e91160d69ca6416f3fce0b86175b64e4293644a7416b81b"},
+ {file = "pyzmq-26.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:a7b8aab50e5a288c9724d260feae25eda69582be84e97c012c80e1a5e7e03fb2"},
+ {file = "pyzmq-26.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:08f74904cb066e1178c1ec706dfdb5c6c680cd7a8ed9efebeac923d84c1f13b1"},
+ {file = "pyzmq-26.1.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:46d6800b45015f96b9d92ece229d92f2aef137d82906577d55fadeb9cf5fcb71"},
+ {file = "pyzmq-26.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5bc2431167adc50ba42ea3e5e5f5cd70d93e18ab7b2f95e724dd8e1bd2c38120"},
+ {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3bb34bebaa1b78e562931a1687ff663d298013f78f972a534f36c523311a84d"},
+ {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3f6329340cef1c7ba9611bd038f2d523cea79f09f9c8f6b0553caba59ec562"},
+ {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:471880c4c14e5a056a96cd224f5e71211997d40b4bf5e9fdded55dafab1f98f2"},
+ {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ce6f2b66799971cbae5d6547acefa7231458289e0ad481d0be0740535da38d8b"},
+ {file = "pyzmq-26.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0a1f6ea5b1d6cdbb8cfa0536f0d470f12b4b41ad83625012e575f0e3ecfe97f0"},
+ {file = "pyzmq-26.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b45e6445ac95ecb7d728604bae6538f40ccf4449b132b5428c09918523abc96d"},
+ {file = "pyzmq-26.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:94c4262626424683feea0f3c34951d39d49d354722db2745c42aa6bb50ecd93b"},
+ {file = "pyzmq-26.1.0-cp311-cp311-win32.whl", hash = "sha256:a0f0ab9df66eb34d58205913f4540e2ad17a175b05d81b0b7197bc57d000e829"},
+ {file = "pyzmq-26.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:8efb782f5a6c450589dbab4cb0f66f3a9026286333fe8f3a084399149af52f29"},
+ {file = "pyzmq-26.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f133d05aaf623519f45e16ab77526e1e70d4e1308e084c2fb4cedb1a0c764bbb"},
+ {file = "pyzmq-26.1.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:3d3146b1c3dcc8a1539e7cc094700b2be1e605a76f7c8f0979b6d3bde5ad4072"},
+ {file = "pyzmq-26.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d9270fbf038bf34ffca4855bcda6e082e2c7f906b9eb8d9a8ce82691166060f7"},
+ {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:995301f6740a421afc863a713fe62c0aaf564708d4aa057dfdf0f0f56525294b"},
+ {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7eca8b89e56fb8c6c26dd3e09bd41b24789022acf1cf13358e96f1cafd8cae3"},
+ {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d4feb2e83dfe9ace6374a847e98ee9d1246ebadcc0cb765482e272c34e5820"},
+ {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d4fafc2eb5d83f4647331267808c7e0c5722c25a729a614dc2b90479cafa78bd"},
+ {file = "pyzmq-26.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:58c33dc0e185dd97a9ac0288b3188d1be12b756eda67490e6ed6a75cf9491d79"},
+ {file = "pyzmq-26.1.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:68a0a1d83d33d8367ddddb3e6bb4afbb0f92bd1dac2c72cd5e5ddc86bdafd3eb"},
+ {file = "pyzmq-26.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ae7c57e22ad881af78075e0cea10a4c778e67234adc65c404391b417a4dda83"},
+ {file = "pyzmq-26.1.0-cp312-cp312-win32.whl", hash = "sha256:347e84fc88cc4cb646597f6d3a7ea0998f887ee8dc31c08587e9c3fd7b5ccef3"},
+ {file = "pyzmq-26.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:9f136a6e964830230912f75b5a116a21fe8e34128dcfd82285aa0ef07cb2c7bd"},
+ {file = "pyzmq-26.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:a4b7a989c8f5a72ab1b2bbfa58105578753ae77b71ba33e7383a31ff75a504c4"},
+ {file = "pyzmq-26.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d416f2088ac8f12daacffbc2e8918ef4d6be8568e9d7155c83b7cebed49d2322"},
+ {file = "pyzmq-26.1.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:ecb6c88d7946166d783a635efc89f9a1ff11c33d680a20df9657b6902a1d133b"},
+ {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:471312a7375571857a089342beccc1a63584315188560c7c0da7e0a23afd8a5c"},
+ {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6cea102ffa16b737d11932c426f1dc14b5938cf7bc12e17269559c458ac334"},
+ {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec7248673ffc7104b54e4957cee38b2f3075a13442348c8d651777bf41aa45ee"},
+ {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:0614aed6f87d550b5cecb03d795f4ddbb1544b78d02a4bd5eecf644ec98a39f6"},
+ {file = "pyzmq-26.1.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:e8746ce968be22a8a1801bf4a23e565f9687088580c3ed07af5846580dd97f76"},
+ {file = "pyzmq-26.1.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:7688653574392d2eaeef75ddcd0b2de5b232d8730af29af56c5adf1df9ef8d6f"},
+ {file = "pyzmq-26.1.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:8d4dac7d97f15c653a5fedcafa82626bd6cee1450ccdaf84ffed7ea14f2b07a4"},
+ {file = "pyzmq-26.1.0-cp313-cp313-win32.whl", hash = "sha256:ccb42ca0a4a46232d716779421bbebbcad23c08d37c980f02cc3a6bd115ad277"},
+ {file = "pyzmq-26.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:e1e5d0a25aea8b691a00d6b54b28ac514c8cc0d8646d05f7ca6cb64b97358250"},
+ {file = "pyzmq-26.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:fc82269d24860cfa859b676d18850cbb8e312dcd7eada09e7d5b007e2f3d9eb1"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:416ac51cabd54f587995c2b05421324700b22e98d3d0aa2cfaec985524d16f1d"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:ff832cce719edd11266ca32bc74a626b814fff236824aa1aeaad399b69fe6eae"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:393daac1bcf81b2a23e696b7b638eedc965e9e3d2112961a072b6cd8179ad2eb"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9869fa984c8670c8ab899a719eb7b516860a29bc26300a84d24d8c1b71eae3ec"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b3b8e36fd4c32c0825b4461372949ecd1585d326802b1321f8b6dc1d7e9318c"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:3ee647d84b83509b7271457bb428cc347037f437ead4b0b6e43b5eba35fec0aa"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:45cb1a70eb00405ce3893041099655265fabcd9c4e1e50c330026e82257892c1"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:5cca7b4adb86d7470e0fc96037771981d740f0b4cb99776d5cb59cd0e6684a73"},
+ {file = "pyzmq-26.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:91d1a20bdaf3b25f3173ff44e54b1cfbc05f94c9e8133314eb2962a89e05d6e3"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c0665d85535192098420428c779361b8823d3d7ec4848c6af3abb93bc5c915bf"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:96d7c1d35ee4a495df56c50c83df7af1c9688cce2e9e0edffdbf50889c167595"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b281b5ff5fcc9dcbfe941ac5c7fcd4b6c065adad12d850f95c9d6f23c2652384"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5384c527a9a004445c5074f1e20db83086c8ff1682a626676229aafd9cf9f7d1"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:754c99a9840839375ee251b38ac5964c0f369306eddb56804a073b6efdc0cd88"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9bdfcb74b469b592972ed881bad57d22e2c0acc89f5e8c146782d0d90fb9f4bf"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bd13f0231f4788db619347b971ca5f319c5b7ebee151afc7c14632068c6261d3"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-win32.whl", hash = "sha256:c5668dac86a869349828db5fc928ee3f58d450dce2c85607067d581f745e4fb1"},
+ {file = "pyzmq-26.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ad875277844cfaeca7fe299ddf8c8d8bfe271c3dc1caf14d454faa5cdbf2fa7a"},
+ {file = "pyzmq-26.1.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:65c6e03cc0222eaf6aad57ff4ecc0a070451e23232bb48db4322cc45602cede0"},
+ {file = "pyzmq-26.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:038ae4ffb63e3991f386e7fda85a9baab7d6617fe85b74a8f9cab190d73adb2b"},
+ {file = "pyzmq-26.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:bdeb2c61611293f64ac1073f4bf6723b67d291905308a7de9bb2ca87464e3273"},
+ {file = "pyzmq-26.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:61dfa5ee9d7df297c859ac82b1226d8fefaf9c5113dc25c2c00ecad6feeeb04f"},
+ {file = "pyzmq-26.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3292d384537b9918010769b82ab3e79fca8b23d74f56fc69a679106a3e2c2cf"},
+ {file = "pyzmq-26.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f9499c70c19ff0fbe1007043acb5ad15c1dec7d8e84ab429bca8c87138e8f85c"},
+ {file = "pyzmq-26.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d3dd5523ed258ad58fed7e364c92a9360d1af8a9371e0822bd0146bdf017ef4c"},
+ {file = "pyzmq-26.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:baba2fd199b098c5544ef2536b2499d2e2155392973ad32687024bd8572a7d1c"},
+ {file = "pyzmq-26.1.0-cp38-cp38-win32.whl", hash = "sha256:ddbb2b386128d8eca92bd9ca74e80f73fe263bcca7aa419f5b4cbc1661e19741"},
+ {file = "pyzmq-26.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:79e45a4096ec8388cdeb04a9fa5e9371583bcb826964d55b8b66cbffe7b33c86"},
+ {file = "pyzmq-26.1.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:add52c78a12196bc0fda2de087ba6c876ea677cbda2e3eba63546b26e8bf177b"},
+ {file = "pyzmq-26.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:98c03bd7f3339ff47de7ea9ac94a2b34580a8d4df69b50128bb6669e1191a895"},
+ {file = "pyzmq-26.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dcc37d9d708784726fafc9c5e1232de655a009dbf97946f117aefa38d5985a0f"},
+ {file = "pyzmq-26.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5a6ed52f0b9bf8dcc64cc82cce0607a3dfed1dbb7e8c6f282adfccc7be9781de"},
+ {file = "pyzmq-26.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:451e16ae8bea3d95649317b463c9f95cd9022641ec884e3d63fc67841ae86dfe"},
+ {file = "pyzmq-26.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:906e532c814e1d579138177a00ae835cd6becbf104d45ed9093a3aaf658f6a6a"},
+ {file = "pyzmq-26.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:05bacc4f94af468cc82808ae3293390278d5f3375bb20fef21e2034bb9a505b6"},
+ {file = "pyzmq-26.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:57bb2acba798dc3740e913ffadd56b1fcef96f111e66f09e2a8db3050f1f12c8"},
+ {file = "pyzmq-26.1.0-cp39-cp39-win32.whl", hash = "sha256:f774841bb0e8588505002962c02da420bcfb4c5056e87a139c6e45e745c0e2e2"},
+ {file = "pyzmq-26.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:359c533bedc62c56415a1f5fcfd8279bc93453afdb0803307375ecf81c962402"},
+ {file = "pyzmq-26.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:7907419d150b19962138ecec81a17d4892ea440c184949dc29b358bc730caf69"},
+ {file = "pyzmq-26.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b24079a14c9596846bf7516fe75d1e2188d4a528364494859106a33d8b48be38"},
+ {file = "pyzmq-26.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59d0acd2976e1064f1b398a00e2c3e77ed0a157529779e23087d4c2fb8aaa416"},
+ {file = "pyzmq-26.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:911c43a4117915203c4cc8755e0f888e16c4676a82f61caee2f21b0c00e5b894"},
+ {file = "pyzmq-26.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b10163e586cc609f5f85c9b233195554d77b1e9a0801388907441aaeb22841c5"},
+ {file = "pyzmq-26.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:28a8b2abb76042f5fd7bd720f7fea48c0fd3e82e9de0a1bf2c0de3812ce44a42"},
+ {file = "pyzmq-26.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bef24d3e4ae2c985034439f449e3f9e06bf579974ce0e53d8a507a1577d5b2ab"},
+ {file = "pyzmq-26.1.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2cd0f4d314f4a2518e8970b6f299ae18cff7c44d4a1fc06fc713f791c3a9e3ea"},
+ {file = "pyzmq-26.1.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fa25a620eed2a419acc2cf10135b995f8f0ce78ad00534d729aa761e4adcef8a"},
+ {file = "pyzmq-26.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef3b048822dca6d231d8a8ba21069844ae38f5d83889b9b690bf17d2acc7d099"},
+ {file = "pyzmq-26.1.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:9a6847c92d9851b59b9f33f968c68e9e441f9a0f8fc972c5580c5cd7cbc6ee24"},
+ {file = "pyzmq-26.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c9b9305004d7e4e6a824f4f19b6d8f32b3578aad6f19fc1122aaf320cbe3dc83"},
+ {file = "pyzmq-26.1.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:63c1d3a65acb2f9c92dce03c4e1758cc552f1ae5c78d79a44e3bb88d2fa71f3a"},
+ {file = "pyzmq-26.1.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d36b8fffe8b248a1b961c86fbdfa0129dfce878731d169ede7fa2631447331be"},
+ {file = "pyzmq-26.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67976d12ebfd61a3bc7d77b71a9589b4d61d0422282596cf58c62c3866916544"},
+ {file = "pyzmq-26.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:998444debc8816b5d8d15f966e42751032d0f4c55300c48cc337f2b3e4f17d03"},
+ {file = "pyzmq-26.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e5c88b2f13bcf55fee78ea83567b9fe079ba1a4bef8b35c376043440040f7edb"},
+ {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d906d43e1592be4b25a587b7d96527cb67277542a5611e8ea9e996182fae410"},
+ {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b0c9942430d731c786545da6be96d824a41a51742e3e374fedd9018ea43106"},
+ {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:314d11564c00b77f6224d12eb3ddebe926c301e86b648a1835c5b28176c83eab"},
+ {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:093a1a3cae2496233f14b57f4b485da01b4ff764582c854c0f42c6dd2be37f3d"},
+ {file = "pyzmq-26.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3c397b1b450f749a7e974d74c06d69bd22dd362142f370ef2bd32a684d6b480c"},
+ {file = "pyzmq-26.1.0.tar.gz", hash = "sha256:6c5aeea71f018ebd3b9115c7cb13863dd850e98ca6b9258509de1246461a7e7f"},
+]
+
+[package.dependencies]
+cffi = {version = "*", markers = "implementation_name == \"pypy\""}
+
[[package]]
name = "referencing"
version = "0.35.1"
@@ -3737,110 +4257,110 @@ jupyter = ["ipywidgets (>=7.5.1,<9)"]
[[package]]
name = "rpds-py"
-version = "0.18.1"
+version = "0.19.0"
description = "Python bindings to Rust's persistent data structures (rpds)"
optional = false
python-versions = ">=3.8"
files = [
- {file = "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"},
- {file = "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"},
- {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"},
- {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"},
- {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"},
- {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"},
- {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"},
- {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"},
- {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"},
- {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"},
- {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"},
- {file = "rpds_py-0.18.1-cp310-none-win32.whl", hash = "sha256:c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"},
- {file = "rpds_py-0.18.1-cp310-none-win_amd64.whl", hash = "sha256:8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"},
- {file = "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"},
- {file = "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"},
- {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"},
- {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"},
- {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"},
- {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"},
- {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"},
- {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"},
- {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"},
- {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"},
- {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"},
- {file = "rpds_py-0.18.1-cp311-none-win32.whl", hash = "sha256:c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"},
- {file = "rpds_py-0.18.1-cp311-none-win_amd64.whl", hash = "sha256:70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"},
- {file = "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"},
- {file = "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"},
- {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"},
- {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"},
- {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"},
- {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"},
- {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"},
- {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"},
- {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"},
- {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"},
- {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"},
- {file = "rpds_py-0.18.1-cp312-none-win32.whl", hash = "sha256:1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"},
- {file = "rpds_py-0.18.1-cp312-none-win_amd64.whl", hash = "sha256:720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"},
- {file = "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"},
- {file = "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"},
- {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"},
- {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"},
- {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"},
- {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"},
- {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"},
- {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"},
- {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"},
- {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"},
- {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"},
- {file = "rpds_py-0.18.1-cp38-none-win32.whl", hash = "sha256:312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"},
- {file = "rpds_py-0.18.1-cp38-none-win_amd64.whl", hash = "sha256:9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"},
- {file = "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"},
- {file = "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"},
- {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"},
- {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"},
- {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"},
- {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"},
- {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"},
- {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"},
- {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"},
- {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"},
- {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"},
- {file = "rpds_py-0.18.1-cp39-none-win32.whl", hash = "sha256:2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"},
- {file = "rpds_py-0.18.1-cp39-none-win_amd64.whl", hash = "sha256:bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"},
- {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"},
- {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"},
- {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"},
- {file = "rpds_py-0.18.1.tar.gz", hash = "sha256:dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"},
+ {file = "rpds_py-0.19.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:fb37bd599f031f1a6fb9e58ec62864ccf3ad549cf14bac527dbfa97123edcca4"},
+ {file = "rpds_py-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3384d278df99ec2c6acf701d067147320b864ef6727405d6470838476e44d9e8"},
+ {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54548e0be3ac117595408fd4ca0ac9278fde89829b0b518be92863b17ff67a2"},
+ {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8eb488ef928cdbc05a27245e52de73c0d7c72a34240ef4d9893fdf65a8c1a955"},
+ {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5da93debdfe27b2bfc69eefb592e1831d957b9535e0943a0ee8b97996de21b5"},
+ {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79e205c70afddd41f6ee79a8656aec738492a550247a7af697d5bd1aee14f766"},
+ {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:959179efb3e4a27610e8d54d667c02a9feaa86bbabaf63efa7faa4dfa780d4f1"},
+ {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6e605bb9edcf010f54f8b6a590dd23a4b40a8cb141255eec2a03db249bc915b"},
+ {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9133d75dc119a61d1a0ded38fb9ba40a00ef41697cc07adb6ae098c875195a3f"},
+ {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd36b712d35e757e28bf2f40a71e8f8a2d43c8b026d881aa0c617b450d6865c9"},
+ {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354f3a91718489912f2e0fc331c24eaaf6a4565c080e00fbedb6015857c00582"},
+ {file = "rpds_py-0.19.0-cp310-none-win32.whl", hash = "sha256:ebcbf356bf5c51afc3290e491d3722b26aaf5b6af3c1c7f6a1b757828a46e336"},
+ {file = "rpds_py-0.19.0-cp310-none-win_amd64.whl", hash = "sha256:75a6076289b2df6c8ecb9d13ff79ae0cad1d5fb40af377a5021016d58cd691ec"},
+ {file = "rpds_py-0.19.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6d45080095e585f8c5097897313def60caa2046da202cdb17a01f147fb263b81"},
+ {file = "rpds_py-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5c9581019c96f865483d031691a5ff1cc455feb4d84fc6920a5ffc48a794d8a"},
+ {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1540d807364c84516417115c38f0119dfec5ea5c0dd9a25332dea60b1d26fc4d"},
+ {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e65489222b410f79711dc3d2d5003d2757e30874096b2008d50329ea4d0f88c"},
+ {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da6f400eeb8c36f72ef6646ea530d6d175a4f77ff2ed8dfd6352842274c1d8b"},
+ {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f46bb11858717e0efa7893c0f7055c43b44c103e40e69442db5061cb26ed34"},
+ {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:071d4adc734de562bd11d43bd134330fb6249769b2f66b9310dab7460f4bf714"},
+ {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9625367c8955e4319049113ea4f8fee0c6c1145192d57946c6ffcd8fe8bf48dd"},
+ {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e19509145275d46bc4d1e16af0b57a12d227c8253655a46bbd5ec317e941279d"},
+ {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d438e4c020d8c39961deaf58f6913b1bf8832d9b6f62ec35bd93e97807e9cbc"},
+ {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90bf55d9d139e5d127193170f38c584ed3c79e16638890d2e36f23aa1630b952"},
+ {file = "rpds_py-0.19.0-cp311-none-win32.whl", hash = "sha256:8d6ad132b1bc13d05ffe5b85e7a01a3998bf3a6302ba594b28d61b8c2cf13aaf"},
+ {file = "rpds_py-0.19.0-cp311-none-win_amd64.whl", hash = "sha256:7ec72df7354e6b7f6eb2a17fa6901350018c3a9ad78e48d7b2b54d0412539a67"},
+ {file = "rpds_py-0.19.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5095a7c838a8647c32aa37c3a460d2c48debff7fc26e1136aee60100a8cd8f68"},
+ {file = "rpds_py-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f2f78ef14077e08856e788fa482107aa602636c16c25bdf59c22ea525a785e9"},
+ {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7cc6cb44f8636fbf4a934ca72f3e786ba3c9f9ba4f4d74611e7da80684e48d2"},
+ {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf902878b4af334a09de7a45badbff0389e7cf8dc2e4dcf5f07125d0b7c2656d"},
+ {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:688aa6b8aa724db1596514751ffb767766e02e5c4a87486ab36b8e1ebc1aedac"},
+ {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57dbc9167d48e355e2569346b5aa4077f29bf86389c924df25c0a8b9124461fb"},
+ {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4cf5a9497874822341c2ebe0d5850fed392034caadc0bad134ab6822c0925b"},
+ {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a790d235b9d39c70a466200d506bb33a98e2ee374a9b4eec7a8ac64c2c261fa"},
+ {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d16089dfa58719c98a1c06f2daceba6d8e3fb9b5d7931af4a990a3c486241cb"},
+ {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bc9128e74fe94650367fe23f37074f121b9f796cabbd2f928f13e9661837296d"},
+ {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8f77e661ffd96ff104bebf7d0f3255b02aa5d5b28326f5408d6284c4a8b3248"},
+ {file = "rpds_py-0.19.0-cp312-none-win32.whl", hash = "sha256:5f83689a38e76969327e9b682be5521d87a0c9e5a2e187d2bc6be4765f0d4600"},
+ {file = "rpds_py-0.19.0-cp312-none-win_amd64.whl", hash = "sha256:06925c50f86da0596b9c3c64c3837b2481337b83ef3519e5db2701df695453a4"},
+ {file = "rpds_py-0.19.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:52e466bea6f8f3a44b1234570244b1cff45150f59a4acae3fcc5fd700c2993ca"},
+ {file = "rpds_py-0.19.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e21cc693045fda7f745c790cb687958161ce172ffe3c5719ca1764e752237d16"},
+ {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b31f059878eb1f5da8b2fd82480cc18bed8dcd7fb8fe68370e2e6285fa86da6"},
+ {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dd46f309e953927dd018567d6a9e2fb84783963650171f6c5fe7e5c41fd5666"},
+ {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a01a4490e170376cd79258b7f755fa13b1a6c3667e872c8e35051ae857a92b"},
+ {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcf426a8c38eb57f7bf28932e68425ba86def6e756a5b8cb4731d8e62e4e0223"},
+ {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68eea5df6347d3f1378ce992d86b2af16ad7ff4dcb4a19ccdc23dea901b87fb"},
+ {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dab8d921b55a28287733263c0e4c7db11b3ee22aee158a4de09f13c93283c62d"},
+ {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6fe87efd7f47266dfc42fe76dae89060038f1d9cb911f89ae7e5084148d1cc08"},
+ {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:535d4b52524a961d220875688159277f0e9eeeda0ac45e766092bfb54437543f"},
+ {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8b1a94b8afc154fbe36978a511a1f155f9bd97664e4f1f7a374d72e180ceb0ae"},
+ {file = "rpds_py-0.19.0-cp38-none-win32.whl", hash = "sha256:7c98298a15d6b90c8f6e3caa6457f4f022423caa5fa1a1ca7a5e9e512bdb77a4"},
+ {file = "rpds_py-0.19.0-cp38-none-win_amd64.whl", hash = "sha256:b0da31853ab6e58a11db3205729133ce0df26e6804e93079dee095be3d681dc1"},
+ {file = "rpds_py-0.19.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5039e3cef7b3e7a060de468a4a60a60a1f31786da94c6cb054e7a3c75906111c"},
+ {file = "rpds_py-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab1932ca6cb8c7499a4d87cb21ccc0d3326f172cfb6a64021a889b591bb3045c"},
+ {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2afd2164a1e85226fcb6a1da77a5c8896c18bfe08e82e8ceced5181c42d2179"},
+ {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b1c30841f5040de47a0046c243fc1b44ddc87d1b12435a43b8edff7e7cb1e0d0"},
+ {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f757f359f30ec7dcebca662a6bd46d1098f8b9fb1fcd661a9e13f2e8ce343ba1"},
+ {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15e65395a59d2e0e96caf8ee5389ffb4604e980479c32742936ddd7ade914b22"},
+ {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb0f6eb3a320f24b94d177e62f4074ff438f2ad9d27e75a46221904ef21a7b05"},
+ {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b228e693a2559888790936e20f5f88b6e9f8162c681830eda303bad7517b4d5a"},
+ {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2575efaa5d949c9f4e2cdbe7d805d02122c16065bfb8d95c129372d65a291a0b"},
+ {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5c872814b77a4e84afa293a1bee08c14daed1068b2bb1cc312edbf020bbbca2b"},
+ {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:850720e1b383df199b8433a20e02b25b72f0fded28bc03c5bd79e2ce7ef050be"},
+ {file = "rpds_py-0.19.0-cp39-none-win32.whl", hash = "sha256:ce84a7efa5af9f54c0aa7692c45861c1667080814286cacb9958c07fc50294fb"},
+ {file = "rpds_py-0.19.0-cp39-none-win_amd64.whl", hash = "sha256:1c26da90b8d06227d7769f34915913911222d24ce08c0ab2d60b354e2d9c7aff"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:75969cf900d7be665ccb1622a9aba225cf386bbc9c3bcfeeab9f62b5048f4a07"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8445f23f13339da640d1be8e44e5baf4af97e396882ebbf1692aecd67f67c479"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5a7c1062ef8aea3eda149f08120f10795835fc1c8bc6ad948fb9652a113ca55"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:462b0c18fbb48fdbf980914a02ee38c423a25fcc4cf40f66bacc95a2d2d73bc8"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3208f9aea18991ac7f2b39721e947bbd752a1abbe79ad90d9b6a84a74d44409b"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3444fe52b82f122d8a99bf66777aed6b858d392b12f4c317da19f8234db4533"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb4bac7185a9f0168d38c01d7a00addece9822a52870eee26b8d5b61409213"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b130bd4163c93798a6b9bb96be64a7c43e1cec81126ffa7ffaa106e1fc5cef5"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a707b158b4410aefb6b054715545bbb21aaa5d5d0080217290131c49c2124a6e"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dc9ac4659456bde7c567107556ab065801622396b435a3ff213daef27b495388"},
+ {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:81ea573aa46d3b6b3d890cd3c0ad82105985e6058a4baed03cf92518081eec8c"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3f148c3f47f7f29a79c38cc5d020edcb5ca780020fab94dbc21f9af95c463581"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0906357f90784a66e89ae3eadc2654f36c580a7d65cf63e6a616e4aec3a81be"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f629ecc2db6a4736b5ba95a8347b0089240d69ad14ac364f557d52ad68cf94b0"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6feacd1d178c30e5bc37184526e56740342fd2aa6371a28367bad7908d454fc"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b6068ee374fdfab63689be0963333aa83b0815ead5d8648389a8ded593378"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d57546bad81e0da13263e4c9ce30e96dcbe720dbff5ada08d2600a3502e526"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6683a37338818646af718c9ca2a07f89787551057fae57c4ec0446dc6224b"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e8481b946792415adc07410420d6fc65a352b45d347b78fec45d8f8f0d7496f0"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bec35eb20792ea64c3c57891bc3ca0bedb2884fbac2c8249d9b731447ecde4fa"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:aa5476c3e3a402c37779e95f7b4048db2cb5b0ed0b9d006983965e93f40fe05a"},
+ {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:19d02c45f2507b489fd4df7b827940f1420480b3e2e471e952af4d44a1ea8e34"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3e2fd14c5d49ee1da322672375963f19f32b3d5953f0615b175ff7b9d38daed"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:93a91c2640645303e874eada51f4f33351b84b351a689d470f8108d0e0694210"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b9fc03bf76a94065299d4a2ecd8dfbae4ae8e2e8098bbfa6ab6413ca267709"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5a4b07cdf3f84310c08c1de2c12ddadbb7a77568bcb16e95489f9c81074322ed"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba0ed0dc6763d8bd6e5de5cf0d746d28e706a10b615ea382ac0ab17bb7388633"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:474bc83233abdcf2124ed3f66230a1c8435896046caa4b0b5ab6013c640803cc"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329c719d31362355a96b435f4653e3b4b061fcc9eba9f91dd40804ca637d914e"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef9101f3f7b59043a34f1dccbb385ca760467590951952d6701df0da9893ca0c"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0121803b0f424ee2109d6e1f27db45b166ebaa4b32ff47d6aa225642636cd834"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8344127403dea42f5970adccf6c5957a71a47f522171fafaf4c6ddb41b61703a"},
+ {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:443cec402ddd650bb2b885113e1dcedb22b1175c6be223b14246a714b61cd521"},
+ {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"},
]
[[package]]
@@ -3936,13 +4456,13 @@ files = [
[[package]]
name = "s3transfer"
-version = "0.10.1"
+version = "0.10.2"
description = "An Amazon S3 Transfer Manager"
optional = false
-python-versions = ">= 3.8"
+python-versions = ">=3.8"
files = [
- {file = "s3transfer-0.10.1-py3-none-any.whl", hash = "sha256:ceb252b11bcf87080fb7850a224fb6e05c8a776bab8f2b64b7f25b969464839d"},
- {file = "s3transfer-0.10.1.tar.gz", hash = "sha256:5683916b4c724f799e600f41dd9e10a9ff19871bf87623cc8f491cb4f5fa0a19"},
+ {file = "s3transfer-0.10.2-py3-none-any.whl", hash = "sha256:eca1c20de70a39daee580aef4986996620f365c4e0fda6a86100231d62f1bf69"},
+ {file = "s3transfer-0.10.2.tar.gz", hash = "sha256:0711534e9356d3cc692fdde846b4a1e4b0cb6519971860796e6bc4c7aea00ef6"},
]
[package.dependencies]
@@ -4090,32 +4610,32 @@ pbr = "*"
[[package]]
name = "scikit-learn"
-version = "1.5.0"
+version = "1.5.1"
description = "A set of python modules for machine learning and data mining"
optional = false
python-versions = ">=3.9"
files = [
- {file = "scikit_learn-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:12e40ac48555e6b551f0a0a5743cc94cc5a765c9513fe708e01f0aa001da2801"},
- {file = "scikit_learn-1.5.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f405c4dae288f5f6553b10c4ac9ea7754d5180ec11e296464adb5d6ac68b6ef5"},
- {file = "scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df8ccabbf583315f13160a4bb06037bde99ea7d8211a69787a6b7c5d4ebb6fc3"},
- {file = "scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c75ea812cd83b1385bbfa94ae971f0d80adb338a9523f6bbcb5e0b0381151d4"},
- {file = "scikit_learn-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:a90c5da84829a0b9b4bf00daf62754b2be741e66b5946911f5bdfaa869fcedd6"},
- {file = "scikit_learn-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a65af2d8a6cce4e163a7951a4cfbfa7fceb2d5c013a4b593686c7f16445cf9d"},
- {file = "scikit_learn-1.5.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:4c0c56c3005f2ec1db3787aeaabefa96256580678cec783986836fc64f8ff622"},
- {file = "scikit_learn-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f77547165c00625551e5c250cefa3f03f2fc92c5e18668abd90bfc4be2e0bff"},
- {file = "scikit_learn-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:118a8d229a41158c9f90093e46b3737120a165181a1b58c03461447aa4657415"},
- {file = "scikit_learn-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:a03b09f9f7f09ffe8c5efffe2e9de1196c696d811be6798ad5eddf323c6f4d40"},
- {file = "scikit_learn-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:460806030c666addee1f074788b3978329a5bfdc9b7d63e7aad3f6d45c67a210"},
- {file = "scikit_learn-1.5.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:1b94d6440603752b27842eda97f6395f570941857456c606eb1d638efdb38184"},
- {file = "scikit_learn-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d82c2e573f0f2f2f0be897e7a31fcf4e73869247738ab8c3ce7245549af58ab8"},
- {file = "scikit_learn-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3a10e1d9e834e84d05e468ec501a356226338778769317ee0b84043c0d8fb06"},
- {file = "scikit_learn-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:855fc5fa8ed9e4f08291203af3d3e5fbdc4737bd617a371559aaa2088166046e"},
- {file = "scikit_learn-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:40fb7d4a9a2db07e6e0cae4dc7bdbb8fada17043bac24104d8165e10e4cff1a2"},
- {file = "scikit_learn-1.5.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:47132440050b1c5beb95f8ba0b2402bbd9057ce96ec0ba86f2f445dd4f34df67"},
- {file = "scikit_learn-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:174beb56e3e881c90424e21f576fa69c4ffcf5174632a79ab4461c4c960315ac"},
- {file = "scikit_learn-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261fe334ca48f09ed64b8fae13f9b46cc43ac5f580c4a605cbb0a517456c8f71"},
- {file = "scikit_learn-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:057b991ac64b3e75c9c04b5f9395eaf19a6179244c089afdebaad98264bff37c"},
- {file = "scikit_learn-1.5.0.tar.gz", hash = "sha256:789e3db01c750ed6d496fa2db7d50637857b451e57bcae863bff707c1247bef7"},
+ {file = "scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745"},
+ {file = "scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7"},
+ {file = "scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac"},
+ {file = "scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21"},
+ {file = "scikit_learn-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1"},
+ {file = "scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2"},
+ {file = "scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe"},
+ {file = "scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4"},
+ {file = "scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf"},
+ {file = "scikit_learn-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b"},
+ {file = "scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395"},
+ {file = "scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1"},
+ {file = "scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915"},
+ {file = "scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b"},
+ {file = "scikit_learn-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74"},
+ {file = "scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956"},
+ {file = "scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855"},
+ {file = "scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1"},
+ {file = "scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d"},
+ {file = "scikit_learn-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d"},
+ {file = "scikit_learn-1.5.1.tar.gz", hash = "sha256:0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414"},
]
[package.dependencies]
@@ -4126,8 +4646,8 @@ threadpoolctl = ">=3.1.0"
[package.extras]
benchmark = ["matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "pandas (>=1.1.5)"]
-build = ["cython (>=3.0.10)", "meson-python (>=0.15.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"]
-docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.23)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=6.0.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-gallery (>=0.15.0)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"]
+build = ["cython (>=3.0.10)", "meson-python (>=0.16.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"]
+docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.23)", "pooch (>=1.6.0)", "pydata-sphinx-theme (>=0.15.3)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=7.3.7)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-gallery (>=0.16.0)", "sphinx-prompt (>=1.4.0)", "sphinx-remove-toctrees (>=1.0.0.post1)", "sphinxcontrib-sass (>=0.3.4)", "sphinxext-opengraph (>=0.9.1)"]
examples = ["matplotlib (>=3.3.4)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)"]
install = ["joblib (>=1.2.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)", "threadpoolctl (>=3.1.0)"]
maintenance = ["conda-lock (==2.5.6)"]
@@ -4135,45 +4655,45 @@ tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (
[[package]]
name = "scipy"
-version = "1.13.1"
+version = "1.14.0"
description = "Fundamental algorithms for scientific computing in Python"
optional = false
-python-versions = ">=3.9"
+python-versions = ">=3.10"
files = [
- {file = "scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca"},
- {file = "scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f"},
- {file = "scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989"},
- {file = "scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f"},
- {file = "scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94"},
- {file = "scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54"},
- {file = "scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9"},
- {file = "scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326"},
- {file = "scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299"},
- {file = "scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa"},
- {file = "scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59"},
- {file = "scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b"},
- {file = "scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1"},
- {file = "scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d"},
- {file = "scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627"},
- {file = "scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884"},
- {file = "scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16"},
- {file = "scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949"},
- {file = "scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5"},
- {file = "scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24"},
- {file = "scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004"},
- {file = "scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d"},
- {file = "scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c"},
- {file = "scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2"},
- {file = "scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c"},
+ {file = "scipy-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7e911933d54ead4d557c02402710c2396529540b81dd554fc1ba270eb7308484"},
+ {file = "scipy-1.14.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:687af0a35462402dd851726295c1a5ae5f987bd6e9026f52e9505994e2f84ef6"},
+ {file = "scipy-1.14.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:07e179dc0205a50721022344fb85074f772eadbda1e1b3eecdc483f8033709b7"},
+ {file = "scipy-1.14.0-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a9c9a9b226d9a21e0a208bdb024c3982932e43811b62d202aaf1bb59af264b1"},
+ {file = "scipy-1.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:076c27284c768b84a45dcf2e914d4000aac537da74236a0d45d82c6fa4b7b3c0"},
+ {file = "scipy-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42470ea0195336df319741e230626b6225a740fd9dce9642ca13e98f667047c0"},
+ {file = "scipy-1.14.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:176c6f0d0470a32f1b2efaf40c3d37a24876cebf447498a4cefb947a79c21e9d"},
+ {file = "scipy-1.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:ad36af9626d27a4326c8e884917b7ec321d8a1841cd6dacc67d2a9e90c2f0359"},
+ {file = "scipy-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6d056a8709ccda6cf36cdd2eac597d13bc03dba38360f418560a93050c76a16e"},
+ {file = "scipy-1.14.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:f0a50da861a7ec4573b7c716b2ebdcdf142b66b756a0d392c236ae568b3a93fb"},
+ {file = "scipy-1.14.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:94c164a9e2498e68308e6e148646e486d979f7fcdb8b4cf34b5441894bdb9caf"},
+ {file = "scipy-1.14.0-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a7d46c3e0aea5c064e734c3eac5cf9eb1f8c4ceee756262f2c7327c4c2691c86"},
+ {file = "scipy-1.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9eee2989868e274aae26125345584254d97c56194c072ed96cb433f32f692ed8"},
+ {file = "scipy-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e3154691b9f7ed73778d746da2df67a19d046a6c8087c8b385bc4cdb2cfca74"},
+ {file = "scipy-1.14.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c40003d880f39c11c1edbae8144e3813904b10514cd3d3d00c277ae996488cdb"},
+ {file = "scipy-1.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:5b083c8940028bb7e0b4172acafda6df762da1927b9091f9611b0bcd8676f2bc"},
+ {file = "scipy-1.14.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bff2438ea1330e06e53c424893ec0072640dac00f29c6a43a575cbae4c99b2b9"},
+ {file = "scipy-1.14.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:bbc0471b5f22c11c389075d091d3885693fd3f5e9a54ce051b46308bc787e5d4"},
+ {file = "scipy-1.14.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:64b2ff514a98cf2bb734a9f90d32dc89dc6ad4a4a36a312cd0d6327170339eb0"},
+ {file = "scipy-1.14.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:7d3da42fbbbb860211a811782504f38ae7aaec9de8764a9bef6b262de7a2b50f"},
+ {file = "scipy-1.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d91db2c41dd6c20646af280355d41dfa1ec7eead235642178bd57635a3f82209"},
+ {file = "scipy-1.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a01cc03bcdc777c9da3cfdcc74b5a75caffb48a6c39c8450a9a05f82c4250a14"},
+ {file = "scipy-1.14.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:65df4da3c12a2bb9ad52b86b4dcf46813e869afb006e58be0f516bc370165159"},
+ {file = "scipy-1.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:4c4161597c75043f7154238ef419c29a64ac4a7c889d588ea77690ac4d0d9b20"},
+ {file = "scipy-1.14.0.tar.gz", hash = "sha256:b5923f48cb840380f9854339176ef21763118a7300a88203ccd0bdd26e58527b"},
]
[package.dependencies]
-numpy = ">=1.22.4,<2.3"
+numpy = ">=1.23.5,<2.3"
[package.extras]
-dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"]
-doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.12.0)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0)", "sphinx-design (>=0.4.0)"]
-test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"]
+dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"]
+doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.13.1)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0)", "sphinx-design (>=0.4.0)"]
+test = ["Cython", "array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"]
[[package]]
name = "semantic-router"
@@ -4237,18 +4757,18 @@ dev = ["pre-commit", "pytest", "ruff (>=0.3.0)"]
[[package]]
name = "setuptools"
-version = "70.0.0"
+version = "70.3.0"
description = "Easily download, build, install, upgrade, and uninstall Python packages"
optional = false
python-versions = ">=3.8"
files = [
- {file = "setuptools-70.0.0-py3-none-any.whl", hash = "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4"},
- {file = "setuptools-70.0.0.tar.gz", hash = "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0"},
+ {file = "setuptools-70.3.0-py3-none-any.whl", hash = "sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc"},
+ {file = "setuptools-70.3.0.tar.gz", hash = "sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5"},
]
[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
-testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
+doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
+test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
[[package]]
name = "shellingham"
@@ -4419,64 +4939,64 @@ files = [
[[package]]
name = "sqlalchemy"
-version = "2.0.30"
+version = "2.0.31"
description = "Database Abstraction Library"
optional = false
python-versions = ">=3.7"
files = [
- {file = "SQLAlchemy-2.0.30-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3b48154678e76445c7ded1896715ce05319f74b1e73cf82d4f8b59b46e9c0ddc"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2753743c2afd061bb95a61a51bbb6a1a11ac1c44292fad898f10c9839a7f75b2"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7bfc726d167f425d4c16269a9a10fe8630ff6d14b683d588044dcef2d0f6be7"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4f61ada6979223013d9ab83a3ed003ded6959eae37d0d685db2c147e9143797"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3a365eda439b7a00732638f11072907c1bc8e351c7665e7e5da91b169af794af"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bba002a9447b291548e8d66fd8c96a6a7ed4f2def0bb155f4f0a1309fd2735d5"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-win32.whl", hash = "sha256:0138c5c16be3600923fa2169532205d18891b28afa817cb49b50e08f62198bb8"},
- {file = "SQLAlchemy-2.0.30-cp310-cp310-win_amd64.whl", hash = "sha256:99650e9f4cf3ad0d409fed3eec4f071fadd032e9a5edc7270cd646a26446feeb"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:955991a09f0992c68a499791a753523f50f71a6885531568404fa0f231832aa0"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f69e4c756ee2686767eb80f94c0125c8b0a0b87ede03eacc5c8ae3b54b99dc46"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69c9db1ce00e59e8dd09d7bae852a9add716efdc070a3e2068377e6ff0d6fdaa"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1429a4b0f709f19ff3b0cf13675b2b9bfa8a7e79990003207a011c0db880a13"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:efedba7e13aa9a6c8407c48facfdfa108a5a4128e35f4c68f20c3407e4376aa9"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:16863e2b132b761891d6c49f0a0f70030e0bcac4fd208117f6b7e053e68668d0"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-win32.whl", hash = "sha256:2ecabd9ccaa6e914e3dbb2aa46b76dede7eadc8cbf1b8083c94d936bcd5ffb49"},
- {file = "SQLAlchemy-2.0.30-cp311-cp311-win_amd64.whl", hash = "sha256:0b3f4c438e37d22b83e640f825ef0f37b95db9aa2d68203f2c9549375d0b2260"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5a79d65395ac5e6b0c2890935bad892eabb911c4aa8e8015067ddb37eea3d56c"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9a5baf9267b752390252889f0c802ea13b52dfee5e369527da229189b8bd592e"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cb5a646930c5123f8461f6468901573f334c2c63c795b9af350063a736d0134"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:296230899df0b77dec4eb799bcea6fbe39a43707ce7bb166519c97b583cfcab3"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c62d401223f468eb4da32627bffc0c78ed516b03bb8a34a58be54d618b74d472"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3b69e934f0f2b677ec111b4d83f92dc1a3210a779f69bf905273192cf4ed433e"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-win32.whl", hash = "sha256:77d2edb1f54aff37e3318f611637171e8ec71472f1fdc7348b41dcb226f93d90"},
- {file = "SQLAlchemy-2.0.30-cp312-cp312-win_amd64.whl", hash = "sha256:b6c7ec2b1f4969fc19b65b7059ed00497e25f54069407a8701091beb69e591a5"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5a8e3b0a7e09e94be7510d1661339d6b52daf202ed2f5b1f9f48ea34ee6f2d57"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b60203c63e8f984df92035610c5fb76d941254cf5d19751faab7d33b21e5ddc0"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1dc3eabd8c0232ee8387fbe03e0a62220a6f089e278b1f0aaf5e2d6210741ad"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:40ad017c672c00b9b663fcfcd5f0864a0a97828e2ee7ab0c140dc84058d194cf"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e42203d8d20dc704604862977b1470a122e4892791fe3ed165f041e4bf447a1b"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-win32.whl", hash = "sha256:2a4f4da89c74435f2bc61878cd08f3646b699e7d2eba97144030d1be44e27584"},
- {file = "SQLAlchemy-2.0.30-cp37-cp37m-win_amd64.whl", hash = "sha256:b6bf767d14b77f6a18b6982cbbf29d71bede087edae495d11ab358280f304d8e"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bc0c53579650a891f9b83fa3cecd4e00218e071d0ba00c4890f5be0c34887ed3"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:311710f9a2ee235f1403537b10c7687214bb1f2b9ebb52702c5aa4a77f0b3af7"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:408f8b0e2c04677e9c93f40eef3ab22f550fecb3011b187f66a096395ff3d9fd"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37a4b4fb0dd4d2669070fb05b8b8824afd0af57587393015baee1cf9890242d9"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a943d297126c9230719c27fcbbeab57ecd5d15b0bd6bfd26e91bfcfe64220621"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0a089e218654e740a41388893e090d2e2c22c29028c9d1353feb38638820bbeb"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-win32.whl", hash = "sha256:fa561138a64f949f3e889eb9ab8c58e1504ab351d6cf55259dc4c248eaa19da6"},
- {file = "SQLAlchemy-2.0.30-cp38-cp38-win_amd64.whl", hash = "sha256:7d74336c65705b986d12a7e337ba27ab2b9d819993851b140efdf029248e818e"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ae8c62fe2480dd61c532ccafdbce9b29dacc126fe8be0d9a927ca3e699b9491a"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2383146973a15435e4717f94c7509982770e3e54974c71f76500a0136f22810b"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8409de825f2c3b62ab15788635ccaec0c881c3f12a8af2b12ae4910a0a9aeef6"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0094c5dc698a5f78d3d1539853e8ecec02516b62b8223c970c86d44e7a80f6c7"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:edc16a50f5e1b7a06a2dcc1f2205b0b961074c123ed17ebda726f376a5ab0953"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f7703c2010355dd28f53deb644a05fc30f796bd8598b43f0ba678878780b6e4c"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-win32.whl", hash = "sha256:1f9a727312ff6ad5248a4367358e2cf7e625e98b1028b1d7ab7b806b7d757513"},
- {file = "SQLAlchemy-2.0.30-cp39-cp39-win_amd64.whl", hash = "sha256:a0ef36b28534f2a5771191be6edb44cc2673c7b2edf6deac6562400288664221"},
- {file = "SQLAlchemy-2.0.30-py3-none-any.whl", hash = "sha256:7108d569d3990c71e26a42f60474b4c02c8586c4681af5fd67e51a044fdea86a"},
- {file = "SQLAlchemy-2.0.30.tar.gz", hash = "sha256:2b1708916730f4830bc69d6f49d37f7698b5bd7530aca7f04f785f8849e95255"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f2a213c1b699d3f5768a7272de720387ae0122f1becf0901ed6eaa1abd1baf6c"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9fea3d0884e82d1e33226935dac990b967bef21315cbcc894605db3441347443"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3ad7f221d8a69d32d197e5968d798217a4feebe30144986af71ada8c548e9fa"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f2bee229715b6366f86a95d497c347c22ddffa2c7c96143b59a2aa5cc9eebbc"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cd5b94d4819c0c89280b7c6109c7b788a576084bf0a480ae17c227b0bc41e109"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:750900a471d39a7eeba57580b11983030517a1f512c2cb287d5ad0fcf3aebd58"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-win32.whl", hash = "sha256:7bd112be780928c7f493c1a192cd8c5fc2a2a7b52b790bc5a84203fb4381c6be"},
+ {file = "SQLAlchemy-2.0.31-cp310-cp310-win_amd64.whl", hash = "sha256:5a48ac4d359f058474fadc2115f78a5cdac9988d4f99eae44917f36aa1476327"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f68470edd70c3ac3b6cd5c2a22a8daf18415203ca1b036aaeb9b0fb6f54e8298"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e2c38c2a4c5c634fe6c3c58a789712719fa1bf9b9d6ff5ebfce9a9e5b89c1ca"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd15026f77420eb2b324dcb93551ad9c5f22fab2c150c286ef1dc1160f110203"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2196208432deebdfe3b22185d46b08f00ac9d7b01284e168c212919891289396"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:352b2770097f41bff6029b280c0e03b217c2dcaddc40726f8f53ed58d8a85da4"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:56d51ae825d20d604583f82c9527d285e9e6d14f9a5516463d9705dab20c3740"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-win32.whl", hash = "sha256:6e2622844551945db81c26a02f27d94145b561f9d4b0c39ce7bfd2fda5776dac"},
+ {file = "SQLAlchemy-2.0.31-cp311-cp311-win_amd64.whl", hash = "sha256:ccaf1b0c90435b6e430f5dd30a5aede4764942a695552eb3a4ab74ed63c5b8d3"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3b74570d99126992d4b0f91fb87c586a574a5872651185de8297c6f90055ae42"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f77c4f042ad493cb8595e2f503c7a4fe44cd7bd59c7582fd6d78d7e7b8ec52c"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd1591329333daf94467e699e11015d9c944f44c94d2091f4ac493ced0119449"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74afabeeff415e35525bf7a4ecdab015f00e06456166a2eba7590e49f8db940e"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b9c01990d9015df2c6f818aa8f4297d42ee71c9502026bb074e713d496e26b67"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:66f63278db425838b3c2b1c596654b31939427016ba030e951b292e32b99553e"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-win32.whl", hash = "sha256:0b0f658414ee4e4b8cbcd4a9bb0fd743c5eeb81fc858ca517217a8013d282c96"},
+ {file = "SQLAlchemy-2.0.31-cp312-cp312-win_amd64.whl", hash = "sha256:fa4b1af3e619b5b0b435e333f3967612db06351217c58bfb50cee5f003db2a5a"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f43e93057cf52a227eda401251c72b6fbe4756f35fa6bfebb5d73b86881e59b0"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d337bf94052856d1b330d5fcad44582a30c532a2463776e1651bd3294ee7e58b"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c06fb43a51ccdff3b4006aafee9fcf15f63f23c580675f7734245ceb6b6a9e05"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:b6e22630e89f0e8c12332b2b4c282cb01cf4da0d26795b7eae16702a608e7ca1"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:79a40771363c5e9f3a77f0e28b3302801db08040928146e6808b5b7a40749c88"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-win32.whl", hash = "sha256:501ff052229cb79dd4c49c402f6cb03b5a40ae4771efc8bb2bfac9f6c3d3508f"},
+ {file = "SQLAlchemy-2.0.31-cp37-cp37m-win_amd64.whl", hash = "sha256:597fec37c382a5442ffd471f66ce12d07d91b281fd474289356b1a0041bdf31d"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:dc6d69f8829712a4fd799d2ac8d79bdeff651c2301b081fd5d3fe697bd5b4ab9"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:23b9fbb2f5dd9e630db70fbe47d963c7779e9c81830869bd7d137c2dc1ad05fb"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a21c97efcbb9f255d5c12a96ae14da873233597dfd00a3a0c4ce5b3e5e79704"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26a6a9837589c42b16693cf7bf836f5d42218f44d198f9343dd71d3164ceeeac"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc251477eae03c20fae8db9c1c23ea2ebc47331bcd73927cdcaecd02af98d3c3"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:2fd17e3bb8058359fa61248c52c7b09a97cf3c820e54207a50af529876451808"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-win32.whl", hash = "sha256:c76c81c52e1e08f12f4b6a07af2b96b9b15ea67ccdd40ae17019f1c373faa227"},
+ {file = "SQLAlchemy-2.0.31-cp38-cp38-win_amd64.whl", hash = "sha256:4b600e9a212ed59355813becbcf282cfda5c93678e15c25a0ef896b354423238"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b6cf796d9fcc9b37011d3f9936189b3c8074a02a4ed0c0fbbc126772c31a6d4"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:78fe11dbe37d92667c2c6e74379f75746dc947ee505555a0197cfba9a6d4f1a4"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fc47dc6185a83c8100b37acda27658fe4dbd33b7d5e7324111f6521008ab4fe"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a41514c1a779e2aa9a19f67aaadeb5cbddf0b2b508843fcd7bafdf4c6864005"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:afb6dde6c11ea4525318e279cd93c8734b795ac8bb5dda0eedd9ebaca7fa23f1"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3f9faef422cfbb8fd53716cd14ba95e2ef655400235c3dfad1b5f467ba179c8c"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-win32.whl", hash = "sha256:fc6b14e8602f59c6ba893980bea96571dd0ed83d8ebb9c4479d9ed5425d562e9"},
+ {file = "SQLAlchemy-2.0.31-cp39-cp39-win_amd64.whl", hash = "sha256:3cb8a66b167b033ec72c3812ffc8441d4e9f5f78f5e31e54dcd4c90a4ca5bebc"},
+ {file = "SQLAlchemy-2.0.31-py3-none-any.whl", hash = "sha256:69f3e3c08867a8e4856e92d7afb618b95cdee18e0bc1647b77599722c9a28911"},
+ {file = "SQLAlchemy-2.0.31.tar.gz", hash = "sha256:b607489dd4a54de56984a0c7656247504bd5523d9d0ba799aef59d4add009484"},
]
[package.dependencies]
-greenlet = {version = "!=0.4.17", markers = "platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\""}
+greenlet = {version = "!=0.4.17", markers = "python_version < \"3.13\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"}
typing-extensions = ">=4.6.0"
[package.extras]
@@ -4550,6 +5070,25 @@ files = [
[package.dependencies]
catalogue = ">=2.0.3,<2.1.0"
+[[package]]
+name = "stack-data"
+version = "0.6.3"
+description = "Extract data from python stack frames and tracebacks for informative displays"
+optional = false
+python-versions = "*"
+files = [
+ {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"},
+ {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"},
+]
+
+[package.dependencies]
+asttokens = ">=2.1.0"
+executing = ">=1.2.0"
+pure-eval = "*"
+
+[package.extras]
+tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"]
+
[[package]]
name = "starlette"
version = "0.37.2"
@@ -4569,27 +5108,30 @@ full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart (>=0.0.7
[[package]]
name = "sympy"
-version = "1.12.1"
+version = "1.13.0"
description = "Computer algebra system (CAS) in Python"
optional = false
python-versions = ">=3.8"
files = [
- {file = "sympy-1.12.1-py3-none-any.whl", hash = "sha256:9b2cbc7f1a640289430e13d2a56f02f867a1da0190f2f99d8968c2f74da0e515"},
- {file = "sympy-1.12.1.tar.gz", hash = "sha256:2877b03f998cd8c08f07cd0de5b767119cd3ef40d09f41c30d722f6686b0fb88"},
+ {file = "sympy-1.13.0-py3-none-any.whl", hash = "sha256:6b0b32a4673fb91bd3cac3b55406c8e01d53ae22780be467301cc452f6680c92"},
+ {file = "sympy-1.13.0.tar.gz", hash = "sha256:3b6af8f4d008b9a1a6a4268b335b984b23835f26d1d60b0526ebc71d48a25f57"},
]
[package.dependencies]
-mpmath = ">=1.1.0,<1.4.0"
+mpmath = ">=1.1.0,<1.4"
+
+[package.extras]
+dev = ["hypothesis (>=6.70.0)", "pytest (>=7.1.0)"]
[[package]]
name = "tenacity"
-version = "8.3.0"
+version = "8.5.0"
description = "Retry code until it succeeds"
optional = false
python-versions = ">=3.8"
files = [
- {file = "tenacity-8.3.0-py3-none-any.whl", hash = "sha256:3649f6443dbc0d9b01b9d8020a9c4ec7a1ff5f6f3c6c8a036ef371f573fe9185"},
- {file = "tenacity-8.3.0.tar.gz", hash = "sha256:953d4e6ad24357bceffbc9707bc74349aca9d245f68eb65419cf0c249a1949a2"},
+ {file = "tenacity-8.5.0-py3-none-any.whl", hash = "sha256:b594c2a5945830c267ce6b79a166228323ed52718f30302c1359836112346687"},
+ {file = "tenacity-8.5.0.tar.gz", hash = "sha256:8bc6c0c8a09b31e6cad13c47afbed1a567518250a9a171418582ed8d9c20ca78"},
]
[package.extras]
@@ -4609,45 +5151,32 @@ files = [
[[package]]
name = "thinc"
-version = "8.2.4"
+version = "8.2.5"
description = "A refreshing functional take on deep learning, compatible with your favorite libraries"
optional = false
python-versions = ">=3.6"
files = [
- {file = "thinc-8.2.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aaae34c28ebc7a0ba980e6c774f148e272375ff7d4ef6ae2977698edae052e52"},
- {file = "thinc-8.2.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a6c807cb75a22a17e5333377aff203dabf10daa457ce9e78b19f499a44dd816"},
- {file = "thinc-8.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b53c092ab30abb9a3b46ef72a8a6af76db42822b550eff778b0decf95af572c4"},
- {file = "thinc-8.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5724ea71dbdbb0d0168471884b9b6909bedaccfda01524c5e775a6fbc39d1bc7"},
- {file = "thinc-8.2.4-cp310-cp310-win_amd64.whl", hash = "sha256:bb14e49ddb15770201682eda8381db6393f76580c1eb72d45e77e1202598116e"},
- {file = "thinc-8.2.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ccc58e47bc285e9afbf92ed6104f555abfa285a4b92198d955d344c4c1942607"},
- {file = "thinc-8.2.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:baa4af044bfcaf9df6a02d6c6d6e96c960da540478a522daabfbde8923df3554"},
- {file = "thinc-8.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b0e34bf322516a039e45c1da72eb82bcc97eb1f7c232b66b88f0c86f15a1202"},
- {file = "thinc-8.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebc8ab48d19cd69ad9a0de2bbe49b7c20a91150faeb119638bea4c502c52b77f"},
- {file = "thinc-8.2.4-cp311-cp311-win_amd64.whl", hash = "sha256:9f8c6c006b7cbe3ebb543c224159b004b52a8ff8922615577656e1458ee4bbf0"},
- {file = "thinc-8.2.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:997a1a399af074b34e25695f37ad48f8437e7c150705891f4db89aeb430df35a"},
- {file = "thinc-8.2.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8e28ba753cdf925ac25b52ea6c4baf5104c6ed6874d9e3dfe768ff98d5118db1"},
- {file = "thinc-8.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5c3874361a1d3c469dd7c9054d4d16b7afcf791e9c47705766d690685fe702d"},
- {file = "thinc-8.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4a22e76e4651fb6b209cfba2e1c167e8537286ae35fb87769a17af491f995b5"},
- {file = "thinc-8.2.4-cp312-cp312-win_amd64.whl", hash = "sha256:ebfd9d79d2bdadec551cb9ca8c7fdeacb56db642158c56cdb039de47e9aad995"},
- {file = "thinc-8.2.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f46f0f58f3bc02beeee5977a991335b845cb15bf1836ee8d8d15b613805c0016"},
- {file = "thinc-8.2.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d879df0997959f9d7087b0e392e72e120bde5613eb8a7c1c453370c48284e7f"},
- {file = "thinc-8.2.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:795a7a1a03767a40d1e2a19fcf25c552a8d8765c78c1837514cabf5fe98817b9"},
- {file = "thinc-8.2.4-cp36-cp36m-win_amd64.whl", hash = "sha256:a276287e55b0ec50c7e8f1acef28f5353c59234af1efc54a19516328f50a6f68"},
- {file = "thinc-8.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:21a5cb6633b4af8b49a18a3088cdcbc59756ce6a4202574f4151dd4df18bab49"},
- {file = "thinc-8.2.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ca9fcddc3852b733e4754f37bb4d20693192171f1e3e9714b00abe5d74fffeb"},
- {file = "thinc-8.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd67e210a4a67781c9864ef45e27ec009c1f4234c737c4a2d0964aeebd3d39a1"},
- {file = "thinc-8.2.4-cp37-cp37m-win_amd64.whl", hash = "sha256:37ea70230bc4a149905e21ba620ad78ec5362b3cf8f9d1233523d6ec03a3b8e5"},
- {file = "thinc-8.2.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5586115b2f3c1c9ecc8f9dbed4a26a46d44c40e8f6be0e58e63fb673271cd0d9"},
- {file = "thinc-8.2.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:334097a26742ff6552a2b1ff347207b8ce4048a70756e33849bab07122f13403"},
- {file = "thinc-8.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a124684987554170c043ae9c497c5ebbd619a9cf2053462ff6b7e359541fbafd"},
- {file = "thinc-8.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8f9e147b41a1e02c232d5cc4b2a333b47a245d9e87dbcd1b3f11636332a1ae5"},
- {file = "thinc-8.2.4-cp38-cp38-win_amd64.whl", hash = "sha256:58b172d3546ecd14d257e2f37e7b9784941caa919544604137810a5477f87c99"},
- {file = "thinc-8.2.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:03ab79a1734db519bd355d1c7eb41a2425d4d5c1ad4f416ea4e09cd42b8854a8"},
- {file = "thinc-8.2.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c466289b6fb40f477e32f99647e03256d0b1d775707778dac07973fd352c5220"},
- {file = "thinc-8.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cbffb3d284c9a54cf8bfee606e47028a27a2d11b0b1e2b83137cc03169e8a8f1"},
- {file = "thinc-8.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abeb742352a106359ac76f048c0f4af745c59c75e02b68cc4d62cde20fcca0c5"},
- {file = "thinc-8.2.4-cp39-cp39-win_amd64.whl", hash = "sha256:ed514b3edb185c5531fcfd77a7b0a43c196a269f1e157a025d8138076ba6328d"},
- {file = "thinc-8.2.4.tar.gz", hash = "sha256:9383b39f286291519ebbb6454bab76404992599b0cbdfaec56b2f985023186a7"},
+ {file = "thinc-8.2.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dc267f6aad80a681a85f50383afe91da9e2bec56fefdda86bfa2e4f529bef191"},
+ {file = "thinc-8.2.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d80f1e497971c9fa0938f5cc8fe607bbe87356b405fb7bbc3ff9f32fb4eed3bb"},
+ {file = "thinc-8.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0933adbd3e65e30d3bef903e77a368bc8a41bed34b0d18df6d4fc0536908e21f"},
+ {file = "thinc-8.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54bac2ba23b208fdaf267cd6113d26a5ecbb3b0e0c6015dff784ae6a9c5e78ca"},
+ {file = "thinc-8.2.5-cp310-cp310-win_amd64.whl", hash = "sha256:399260197ef3f8d9600315fc5b5a1d5940400fceb0361de642e9fe3506d82385"},
+ {file = "thinc-8.2.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a75c0de3340afed594beda293661de145f3842873df56d9989bc338148f13fab"},
+ {file = "thinc-8.2.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6b166d1a22003ee03bc236370fff2884744c1fb758a6209a2512d305773d07d7"},
+ {file = "thinc-8.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34db8a023b9f70645fdf06c510584ba6d8b97ec53c1e094f42d95652bf8c875f"},
+ {file = "thinc-8.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8901b30db1071ea8d5e4437429c8632535bf5ed87938ce3bb5057bed9f15aed8"},
+ {file = "thinc-8.2.5-cp311-cp311-win_amd64.whl", hash = "sha256:8ef5d46d62e31f2450224ab22391a606cf427b13e20cfc570f70422e2f333872"},
+ {file = "thinc-8.2.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9fc26697e2358c71a5fe243d52e98ae67ee1a3b314eead5031845b6d1c0d121c"},
+ {file = "thinc-8.2.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8e299d4dc41107385d6d14d8604a060825798a031cabe2b894b22f9d75d9eaad"},
+ {file = "thinc-8.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8a8f2f249f2be9a5ce2a81a6efe7503b68be7b57e47ad54ab28204e1f0c723b"},
+ {file = "thinc-8.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87e729f33c76ec6df9b375989743252ab880d79f3a2b4175169b21dece90f102"},
+ {file = "thinc-8.2.5-cp312-cp312-win_amd64.whl", hash = "sha256:c5f750ea2dd32ca6d46947025dacfc0f6037340c4e5f7adb9af84c75f65aa7d8"},
+ {file = "thinc-8.2.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bb97e2f699a3df16112ef5460cbfb0c9189a5fbc0e76bcf170ed7d995bdce367"},
+ {file = "thinc-8.2.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5c78fb218273894168d1ca2dd3a20f28dba5a7fa698c4f2a2fc425eda2086cfc"},
+ {file = "thinc-8.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdc27da534807a2addd1c3d2a3d19f99e3eb67fdbce81c21f4e4c8bfa94ac15b"},
+ {file = "thinc-8.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b884e56eaeb9e5c7bfeb1c8810a3cbad19a599b33b9f3152b90b67f468471ac"},
+ {file = "thinc-8.2.5-cp39-cp39-win_amd64.whl", hash = "sha256:df2138cf379061017ecb8bf609a8857e7904709ef0a9a2252783c16f67a2b749"},
+ {file = "thinc-8.2.5.tar.gz", hash = "sha256:c2963791c934cc7fbd8f9b942d571cac79892ad11630bfca690a868c32752b75"},
]
[package.dependencies]
@@ -4656,7 +5185,7 @@ catalogue = ">=2.0.4,<2.1.0"
confection = ">=0.0.1,<1.0.0"
cymem = ">=2.0.2,<2.1.0"
murmurhash = ">=1.0.2,<1.1.0"
-numpy = {version = ">=1.19.0", markers = "python_version >= \"3.9\""}
+numpy = {version = ">=1.19.0,<2.0.0", markers = "python_version >= \"3.9\""}
packaging = ">=20.0"
preshed = ">=3.0.2,<3.1.0"
pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<3.0.0"
@@ -4775,130 +5304,120 @@ testing = ["black", "mypy", "pytest", "pytest-gitignore", "pytest-mock", "respon
[[package]]
name = "tokenizers"
-version = "0.15.2"
+version = "0.19.1"
description = ""
optional = false
python-versions = ">=3.7"
files = [
- {file = "tokenizers-0.15.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:52f6130c9cbf70544287575a985bf44ae1bda2da7e8c24e97716080593638012"},
- {file = "tokenizers-0.15.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:054c1cc9c6d68f7ffa4e810b3d5131e0ba511b6e4be34157aa08ee54c2f8d9ee"},
- {file = "tokenizers-0.15.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a9b9b070fdad06e347563b88c278995735292ded1132f8657084989a4c84a6d5"},
- {file = "tokenizers-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea621a7eef4b70e1f7a4e84dd989ae3f0eeb50fc8690254eacc08acb623e82f1"},
- {file = "tokenizers-0.15.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf7fd9a5141634fa3aa8d6b7be362e6ae1b4cda60da81388fa533e0b552c98fd"},
- {file = "tokenizers-0.15.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44f2a832cd0825295f7179eaf173381dc45230f9227ec4b44378322d900447c9"},
- {file = "tokenizers-0.15.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8b9ec69247a23747669ec4b0ca10f8e3dfb3545d550258129bd62291aabe8605"},
- {file = "tokenizers-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b6a4c78da863ff26dbd5ad9a8ecc33d8a8d97b535172601cf00aee9d7ce9ce"},
- {file = "tokenizers-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5ab2a4d21dcf76af60e05af8063138849eb1d6553a0d059f6534357bce8ba364"},
- {file = "tokenizers-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a47acfac7e511f6bbfcf2d3fb8c26979c780a91e06fb5b9a43831b2c0153d024"},
- {file = "tokenizers-0.15.2-cp310-none-win32.whl", hash = "sha256:064ff87bb6acdbd693666de9a4b692add41308a2c0ec0770d6385737117215f2"},
- {file = "tokenizers-0.15.2-cp310-none-win_amd64.whl", hash = "sha256:3b919afe4df7eb6ac7cafd2bd14fb507d3f408db7a68c43117f579c984a73843"},
- {file = "tokenizers-0.15.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:89cd1cb93e4b12ff39bb2d626ad77e35209de9309a71e4d3d4672667b4b256e7"},
- {file = "tokenizers-0.15.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cfed5c64e5be23d7ee0f0e98081a25c2a46b0b77ce99a4f0605b1ec43dd481fa"},
- {file = "tokenizers-0.15.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a907d76dcfda37023ba203ab4ceeb21bc5683436ebefbd895a0841fd52f6f6f2"},
- {file = "tokenizers-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20ea60479de6fc7b8ae756b4b097572372d7e4032e2521c1bbf3d90c90a99ff0"},
- {file = "tokenizers-0.15.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:48e2b9335be2bc0171df9281385c2ed06a15f5cf121c44094338306ab7b33f2c"},
- {file = "tokenizers-0.15.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:112a1dd436d2cc06e6ffdc0b06d55ac019a35a63afd26475205cb4b1bf0bfbff"},
- {file = "tokenizers-0.15.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4620cca5c2817177ee8706f860364cc3a8845bc1e291aaf661fb899e5d1c45b0"},
- {file = "tokenizers-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ccd73a82751c523b3fc31ff8194702e4af4db21dc20e55b30ecc2079c5d43cb7"},
- {file = "tokenizers-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:107089f135b4ae7817affe6264f8c7a5c5b4fd9a90f9439ed495f54fcea56fb4"},
- {file = "tokenizers-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0ff110ecc57b7aa4a594396525a3451ad70988e517237fe91c540997c4e50e29"},
- {file = "tokenizers-0.15.2-cp311-none-win32.whl", hash = "sha256:6d76f00f5c32da36c61f41c58346a4fa7f0a61be02f4301fd30ad59834977cc3"},
- {file = "tokenizers-0.15.2-cp311-none-win_amd64.whl", hash = "sha256:cc90102ed17271cf0a1262babe5939e0134b3890345d11a19c3145184b706055"},
- {file = "tokenizers-0.15.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f86593c18d2e6248e72fb91c77d413a815153b8ea4e31f7cd443bdf28e467670"},
- {file = "tokenizers-0.15.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0774bccc6608eca23eb9d620196687c8b2360624619623cf4ba9dc9bd53e8b51"},
- {file = "tokenizers-0.15.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d0222c5b7c9b26c0b4822a82f6a7011de0a9d3060e1da176f66274b70f846b98"},
- {file = "tokenizers-0.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3835738be1de66624fff2f4f6f6684775da4e9c00bde053be7564cbf3545cc66"},
- {file = "tokenizers-0.15.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0143e7d9dcd811855c1ce1ab9bf5d96d29bf5e528fd6c7824d0465741e8c10fd"},
- {file = "tokenizers-0.15.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db35825f6d54215f6b6009a7ff3eedee0848c99a6271c870d2826fbbedf31a38"},
- {file = "tokenizers-0.15.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f5e64b0389a2be47091d8cc53c87859783b837ea1a06edd9d8e04004df55a5c"},
- {file = "tokenizers-0.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e0480c452217edd35eca56fafe2029fb4d368b7c0475f8dfa3c5c9c400a7456"},
- {file = "tokenizers-0.15.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a33ab881c8fe70474980577e033d0bc9a27b7ab8272896e500708b212995d834"},
- {file = "tokenizers-0.15.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a308a607ca9de2c64c1b9ba79ec9a403969715a1b8ba5f998a676826f1a7039d"},
- {file = "tokenizers-0.15.2-cp312-none-win32.whl", hash = "sha256:b8fcfa81bcb9447df582c5bc96a031e6df4da2a774b8080d4f02c0c16b42be0b"},
- {file = "tokenizers-0.15.2-cp312-none-win_amd64.whl", hash = "sha256:38d7ab43c6825abfc0b661d95f39c7f8af2449364f01d331f3b51c94dcff7221"},
- {file = "tokenizers-0.15.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:38bfb0204ff3246ca4d5e726e8cc8403bfc931090151e6eede54d0e0cf162ef0"},
- {file = "tokenizers-0.15.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c861d35e8286a53e06e9e28d030b5a05bcbf5ac9d7229e561e53c352a85b1fc"},
- {file = "tokenizers-0.15.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:936bf3842db5b2048eaa53dade907b1160f318e7c90c74bfab86f1e47720bdd6"},
- {file = "tokenizers-0.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:620beacc3373277700d0e27718aa8b25f7b383eb8001fba94ee00aeea1459d89"},
- {file = "tokenizers-0.15.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2735ecbbf37e52db4ea970e539fd2d450d213517b77745114f92867f3fc246eb"},
- {file = "tokenizers-0.15.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:473c83c5e2359bb81b0b6fde870b41b2764fcdd36d997485e07e72cc3a62264a"},
- {file = "tokenizers-0.15.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:968fa1fb3c27398b28a4eca1cbd1e19355c4d3a6007f7398d48826bbe3a0f728"},
- {file = "tokenizers-0.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:865c60ae6eaebdde7da66191ee9b7db52e542ed8ee9d2c653b6d190a9351b980"},
- {file = "tokenizers-0.15.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7c0d8b52664ab2d4a8d6686eb5effc68b78608a9008f086a122a7b2996befbab"},
- {file = "tokenizers-0.15.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:f33dfbdec3784093a9aebb3680d1f91336c56d86cc70ddf88708251da1fe9064"},
- {file = "tokenizers-0.15.2-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:d44ba80988ff9424e33e0a49445072ac7029d8c0e1601ad25a0ca5f41ed0c1d6"},
- {file = "tokenizers-0.15.2-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:dce74266919b892f82b1b86025a613956ea0ea62a4843d4c4237be2c5498ed3a"},
- {file = "tokenizers-0.15.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0ef06b9707baeb98b316577acb04f4852239d856b93e9ec3a299622f6084e4be"},
- {file = "tokenizers-0.15.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c73e2e74bbb07910da0d37c326869f34113137b23eadad3fc00856e6b3d9930c"},
- {file = "tokenizers-0.15.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4eeb12daf02a59e29f578a865f55d87cd103ce62bd8a3a5874f8fdeaa82e336b"},
- {file = "tokenizers-0.15.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ba9f6895af58487ca4f54e8a664a322f16c26bbb442effd01087eba391a719e"},
- {file = "tokenizers-0.15.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ccec77aa7150e38eec6878a493bf8c263ff1fa8a62404e16c6203c64c1f16a26"},
- {file = "tokenizers-0.15.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3f40604f5042ff210ba82743dda2b6aa3e55aa12df4e9f2378ee01a17e2855e"},
- {file = "tokenizers-0.15.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:5645938a42d78c4885086767c70923abad047163d809c16da75d6b290cb30bbe"},
- {file = "tokenizers-0.15.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:05a77cbfebe28a61ab5c3891f9939cc24798b63fa236d84e5f29f3a85a200c00"},
- {file = "tokenizers-0.15.2-cp37-none-win32.whl", hash = "sha256:361abdc068e8afe9c5b818769a48624687fb6aaed49636ee39bec4e95e1a215b"},
- {file = "tokenizers-0.15.2-cp37-none-win_amd64.whl", hash = "sha256:7ef789f83eb0f9baeb4d09a86cd639c0a5518528f9992f38b28e819df397eb06"},
- {file = "tokenizers-0.15.2-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4fe1f74a902bee74a3b25aff180fbfbf4f8b444ab37c4d496af7afd13a784ed2"},
- {file = "tokenizers-0.15.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c4b89038a684f40a6b15d6b09f49650ac64d951ad0f2a3ea9169687bbf2a8ba"},
- {file = "tokenizers-0.15.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d05a1b06f986d41aed5f2de464c003004b2df8aaf66f2b7628254bcbfb72a438"},
- {file = "tokenizers-0.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508711a108684111ec8af89d3a9e9e08755247eda27d0ba5e3c50e9da1600f6d"},
- {file = "tokenizers-0.15.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:daa348f02d15160cb35439098ac96e3a53bacf35885072611cd9e5be7d333daa"},
- {file = "tokenizers-0.15.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:494fdbe5932d3416de2a85fc2470b797e6f3226c12845cadf054dd906afd0442"},
- {file = "tokenizers-0.15.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2d60f5246f4da9373f75ff18d64c69cbf60c3bca597290cea01059c336d2470"},
- {file = "tokenizers-0.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93268e788825f52de4c7bdcb6ebc1fcd4a5442c02e730faa9b6b08f23ead0e24"},
- {file = "tokenizers-0.15.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6fc7083ab404019fc9acafe78662c192673c1e696bd598d16dc005bd663a5cf9"},
- {file = "tokenizers-0.15.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:41e39b41e5531d6b2122a77532dbea60e171ef87a3820b5a3888daa847df4153"},
- {file = "tokenizers-0.15.2-cp38-none-win32.whl", hash = "sha256:06cd0487b1cbfabefb2cc52fbd6b1f8d4c37799bd6c6e1641281adaa6b2504a7"},
- {file = "tokenizers-0.15.2-cp38-none-win_amd64.whl", hash = "sha256:5179c271aa5de9c71712e31cb5a79e436ecd0d7532a408fa42a8dbfa4bc23fd9"},
- {file = "tokenizers-0.15.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82f8652a74cc107052328b87ea8b34291c0f55b96d8fb261b3880216a9f9e48e"},
- {file = "tokenizers-0.15.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:02458bee6f5f3139f1ebbb6d042b283af712c0981f5bc50edf771d6b762d5e4f"},
- {file = "tokenizers-0.15.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c9a09cd26cca2e1c349f91aa665309ddb48d71636370749414fbf67bc83c5343"},
- {file = "tokenizers-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:158be8ea8554e5ed69acc1ce3fbb23a06060bd4bbb09029431ad6b9a466a7121"},
- {file = "tokenizers-0.15.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ddba9a2b0c8c81633eca0bb2e1aa5b3a15362b1277f1ae64176d0f6eba78ab1"},
- {file = "tokenizers-0.15.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ef5dd1d39797044642dbe53eb2bc56435308432e9c7907728da74c69ee2adca"},
- {file = "tokenizers-0.15.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:454c203164e07a860dbeb3b1f4a733be52b0edbb4dd2e5bd75023ffa8b49403a"},
- {file = "tokenizers-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cf6b7f1d4dc59af960e6ffdc4faffe6460bbfa8dce27a58bf75755ffdb2526d"},
- {file = "tokenizers-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2ef09bbc16519f6c25d0c7fc0c6a33a6f62923e263c9d7cca4e58b8c61572afb"},
- {file = "tokenizers-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c9a2ebdd2ad4ec7a68e7615086e633857c85e2f18025bd05d2a4399e6c5f7169"},
- {file = "tokenizers-0.15.2-cp39-none-win32.whl", hash = "sha256:918fbb0eab96fe08e72a8c2b5461e9cce95585d82a58688e7f01c2bd546c79d0"},
- {file = "tokenizers-0.15.2-cp39-none-win_amd64.whl", hash = "sha256:524e60da0135e106b254bd71f0659be9f89d83f006ea9093ce4d1fab498c6d0d"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6a9b648a58281c4672212fab04e60648fde574877d0139cd4b4f93fe28ca8944"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7c7d18b733be6bbca8a55084027f7be428c947ddf871c500ee603e375013ffba"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:13ca3611de8d9ddfbc4dc39ef54ab1d2d4aaa114ac8727dfdc6a6ec4be017378"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:237d1bf3361cf2e6463e6c140628e6406766e8b27274f5fcc62c747ae3c6f094"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67a0fe1e49e60c664915e9fb6b0cb19bac082ab1f309188230e4b2920230edb3"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4e022fe65e99230b8fd89ebdfea138c24421f91c1a4f4781a8f5016fd5cdfb4d"},
- {file = "tokenizers-0.15.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d857be2df69763362ac699f8b251a8cd3fac9d21893de129bc788f8baaef2693"},
- {file = "tokenizers-0.15.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:708bb3e4283177236309e698da5fcd0879ce8fd37457d7c266d16b550bcbbd18"},
- {file = "tokenizers-0.15.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:64c35e09e9899b72a76e762f9854e8750213f67567787d45f37ce06daf57ca78"},
- {file = "tokenizers-0.15.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1257f4394be0d3b00de8c9e840ca5601d0a4a8438361ce9c2b05c7d25f6057b"},
- {file = "tokenizers-0.15.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02272fe48280e0293a04245ca5d919b2c94a48b408b55e858feae9618138aeda"},
- {file = "tokenizers-0.15.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:dc3ad9ebc76eabe8b1d7c04d38be884b8f9d60c0cdc09b0aa4e3bcf746de0388"},
- {file = "tokenizers-0.15.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:32e16bdeffa7c4f46bf2152172ca511808b952701d13e7c18833c0b73cb5c23f"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fb16ba563d59003028b678d2361a27f7e4ae0ab29c7a80690efa20d829c81fdb"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:2277c36d2d6cdb7876c274547921a42425b6810d38354327dd65a8009acf870c"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1cf75d32e8d250781940d07f7eece253f2fe9ecdb1dc7ba6e3833fa17b82fcbc"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1b3b31884dc8e9b21508bb76da80ebf7308fdb947a17affce815665d5c4d028"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b10122d8d8e30afb43bb1fe21a3619f62c3e2574bff2699cf8af8b0b6c5dc4a3"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d88b96ff0fe8e91f6ef01ba50b0d71db5017fa4e3b1d99681cec89a85faf7bf7"},
- {file = "tokenizers-0.15.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:37aaec5a52e959892870a7c47cef80c53797c0db9149d458460f4f31e2fb250e"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e2ea752f2b0fe96eb6e2f3adbbf4d72aaa1272079b0dfa1145507bd6a5d537e6"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b19a808d8799fda23504a5cd31d2f58e6f52f140380082b352f877017d6342b"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:64c86e5e068ac8b19204419ed8ca90f9d25db20578f5881e337d203b314f4104"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de19c4dc503c612847edf833c82e9f73cd79926a384af9d801dcf93f110cea4e"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea09acd2fe3324174063d61ad620dec3bcf042b495515f27f638270a7d466e8b"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:cf27fd43472e07b57cf420eee1e814549203d56de00b5af8659cb99885472f1f"},
- {file = "tokenizers-0.15.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:7ca22bd897537a0080521445d91a58886c8c04084a6a19e6c78c586e0cfa92a5"},
- {file = "tokenizers-0.15.2.tar.gz", hash = "sha256:e6e9c6e019dd5484be5beafc775ae6c925f4c69a3487040ed09b45e13df2cb91"},
+ {file = "tokenizers-0.19.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:952078130b3d101e05ecfc7fc3640282d74ed26bcf691400f872563fca15ac97"},
+ {file = "tokenizers-0.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:82c8b8063de6c0468f08e82c4e198763e7b97aabfe573fd4cf7b33930ca4df77"},
+ {file = "tokenizers-0.19.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f03727225feaf340ceeb7e00604825addef622d551cbd46b7b775ac834c1e1c4"},
+ {file = "tokenizers-0.19.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:453e4422efdfc9c6b6bf2eae00d5e323f263fff62b29a8c9cd526c5003f3f642"},
+ {file = "tokenizers-0.19.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:02e81bf089ebf0e7f4df34fa0207519f07e66d8491d963618252f2e0729e0b46"},
+ {file = "tokenizers-0.19.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b07c538ba956843833fee1190cf769c60dc62e1cf934ed50d77d5502194d63b1"},
+ {file = "tokenizers-0.19.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28cab1582e0eec38b1f38c1c1fb2e56bce5dc180acb1724574fc5f47da2a4fe"},
+ {file = "tokenizers-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b01afb7193d47439f091cd8f070a1ced347ad0f9144952a30a41836902fe09e"},
+ {file = "tokenizers-0.19.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7fb297edec6c6841ab2e4e8f357209519188e4a59b557ea4fafcf4691d1b4c98"},
+ {file = "tokenizers-0.19.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2e8a3dd055e515df7054378dc9d6fa8c8c34e1f32777fb9a01fea81496b3f9d3"},
+ {file = "tokenizers-0.19.1-cp310-none-win32.whl", hash = "sha256:7ff898780a155ea053f5d934925f3902be2ed1f4d916461e1a93019cc7250837"},
+ {file = "tokenizers-0.19.1-cp310-none-win_amd64.whl", hash = "sha256:bea6f9947e9419c2fda21ae6c32871e3d398cba549b93f4a65a2d369662d9403"},
+ {file = "tokenizers-0.19.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5c88d1481f1882c2e53e6bb06491e474e420d9ac7bdff172610c4f9ad3898059"},
+ {file = "tokenizers-0.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ddf672ed719b4ed82b51499100f5417d7d9f6fb05a65e232249268f35de5ed14"},
+ {file = "tokenizers-0.19.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dadc509cc8a9fe460bd274c0e16ac4184d0958117cf026e0ea8b32b438171594"},
+ {file = "tokenizers-0.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfedf31824ca4915b511b03441784ff640378191918264268e6923da48104acc"},
+ {file = "tokenizers-0.19.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac11016d0a04aa6487b1513a3a36e7bee7eec0e5d30057c9c0408067345c48d2"},
+ {file = "tokenizers-0.19.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76951121890fea8330d3a0df9a954b3f2a37e3ec20e5b0530e9a0044ca2e11fe"},
+ {file = "tokenizers-0.19.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b342d2ce8fc8d00f376af068e3274e2e8649562e3bc6ae4a67784ded6b99428d"},
+ {file = "tokenizers-0.19.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d16ff18907f4909dca9b076b9c2d899114dd6abceeb074eca0c93e2353f943aa"},
+ {file = "tokenizers-0.19.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:706a37cc5332f85f26efbe2bdc9ef8a9b372b77e4645331a405073e4b3a8c1c6"},
+ {file = "tokenizers-0.19.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:16baac68651701364b0289979ecec728546133e8e8fe38f66fe48ad07996b88b"},
+ {file = "tokenizers-0.19.1-cp311-none-win32.whl", hash = "sha256:9ed240c56b4403e22b9584ee37d87b8bfa14865134e3e1c3fb4b2c42fafd3256"},
+ {file = "tokenizers-0.19.1-cp311-none-win_amd64.whl", hash = "sha256:ad57d59341710b94a7d9dbea13f5c1e7d76fd8d9bcd944a7a6ab0b0da6e0cc66"},
+ {file = "tokenizers-0.19.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:621d670e1b1c281a1c9698ed89451395d318802ff88d1fc1accff0867a06f153"},
+ {file = "tokenizers-0.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d924204a3dbe50b75630bd16f821ebda6a5f729928df30f582fb5aade90c818a"},
+ {file = "tokenizers-0.19.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4f3fefdc0446b1a1e6d81cd4c07088ac015665d2e812f6dbba4a06267d1a2c95"},
+ {file = "tokenizers-0.19.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9620b78e0b2d52ef07b0d428323fb34e8ea1219c5eac98c2596311f20f1f9266"},
+ {file = "tokenizers-0.19.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04ce49e82d100594715ac1b2ce87d1a36e61891a91de774755f743babcd0dd52"},
+ {file = "tokenizers-0.19.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5c2ff13d157afe413bf7e25789879dd463e5a4abfb529a2d8f8473d8042e28f"},
+ {file = "tokenizers-0.19.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3174c76efd9d08f836bfccaca7cfec3f4d1c0a4cf3acbc7236ad577cc423c840"},
+ {file = "tokenizers-0.19.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c9d5b6c0e7a1e979bec10ff960fae925e947aab95619a6fdb4c1d8ff3708ce3"},
+ {file = "tokenizers-0.19.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a179856d1caee06577220ebcfa332af046d576fb73454b8f4d4b0ba8324423ea"},
+ {file = "tokenizers-0.19.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:952b80dac1a6492170f8c2429bd11fcaa14377e097d12a1dbe0ef2fb2241e16c"},
+ {file = "tokenizers-0.19.1-cp312-none-win32.whl", hash = "sha256:01d62812454c188306755c94755465505836fd616f75067abcae529c35edeb57"},
+ {file = "tokenizers-0.19.1-cp312-none-win_amd64.whl", hash = "sha256:b70bfbe3a82d3e3fb2a5e9b22a39f8d1740c96c68b6ace0086b39074f08ab89a"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:bb9dfe7dae85bc6119d705a76dc068c062b8b575abe3595e3c6276480e67e3f1"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:1f0360cbea28ea99944ac089c00de7b2e3e1c58f479fb8613b6d8d511ce98267"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:71e3ec71f0e78780851fef28c2a9babe20270404c921b756d7c532d280349214"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b82931fa619dbad979c0ee8e54dd5278acc418209cc897e42fac041f5366d626"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e8ff5b90eabdcdaa19af697885f70fe0b714ce16709cf43d4952f1f85299e73a"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e742d76ad84acbdb1a8e4694f915fe59ff6edc381c97d6dfdd054954e3478ad4"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d8c5d59d7b59885eab559d5bc082b2985555a54cda04dda4c65528d90ad252ad"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b2da5c32ed869bebd990c9420df49813709e953674c0722ff471a116d97b22d"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:638e43936cc8b2cbb9f9d8dde0fe5e7e30766a3318d2342999ae27f68fdc9bd6"},
+ {file = "tokenizers-0.19.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:78e769eb3b2c79687d9cb0f89ef77223e8e279b75c0a968e637ca7043a84463f"},
+ {file = "tokenizers-0.19.1-cp37-none-win32.whl", hash = "sha256:72791f9bb1ca78e3ae525d4782e85272c63faaef9940d92142aa3eb79f3407a3"},
+ {file = "tokenizers-0.19.1-cp37-none-win_amd64.whl", hash = "sha256:f3bbb7a0c5fcb692950b041ae11067ac54826204318922da754f908d95619fbc"},
+ {file = "tokenizers-0.19.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:07f9295349bbbcedae8cefdbcfa7f686aa420be8aca5d4f7d1ae6016c128c0c5"},
+ {file = "tokenizers-0.19.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:10a707cc6c4b6b183ec5dbfc5c34f3064e18cf62b4a938cb41699e33a99e03c1"},
+ {file = "tokenizers-0.19.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6309271f57b397aa0aff0cbbe632ca9d70430839ca3178bf0f06f825924eca22"},
+ {file = "tokenizers-0.19.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ad23d37d68cf00d54af184586d79b84075ada495e7c5c0f601f051b162112dc"},
+ {file = "tokenizers-0.19.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:427c4f0f3df9109314d4f75b8d1f65d9477033e67ffaec4bca53293d3aca286d"},
+ {file = "tokenizers-0.19.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e83a31c9cf181a0a3ef0abad2b5f6b43399faf5da7e696196ddd110d332519ee"},
+ {file = "tokenizers-0.19.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c27b99889bd58b7e301468c0838c5ed75e60c66df0d4db80c08f43462f82e0d3"},
+ {file = "tokenizers-0.19.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bac0b0eb952412b0b196ca7a40e7dce4ed6f6926489313414010f2e6b9ec2adf"},
+ {file = "tokenizers-0.19.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8a6298bde623725ca31c9035a04bf2ef63208d266acd2bed8c2cb7d2b7d53ce6"},
+ {file = "tokenizers-0.19.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:08a44864e42fa6d7d76d7be4bec62c9982f6f6248b4aa42f7302aa01e0abfd26"},
+ {file = "tokenizers-0.19.1-cp38-none-win32.whl", hash = "sha256:1de5bc8652252d9357a666e609cb1453d4f8e160eb1fb2830ee369dd658e8975"},
+ {file = "tokenizers-0.19.1-cp38-none-win_amd64.whl", hash = "sha256:0bcce02bf1ad9882345b34d5bd25ed4949a480cf0e656bbd468f4d8986f7a3f1"},
+ {file = "tokenizers-0.19.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:0b9394bd204842a2a1fd37fe29935353742be4a3460b6ccbaefa93f58a8df43d"},
+ {file = "tokenizers-0.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4692ab92f91b87769d950ca14dbb61f8a9ef36a62f94bad6c82cc84a51f76f6a"},
+ {file = "tokenizers-0.19.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6258c2ef6f06259f70a682491c78561d492e885adeaf9f64f5389f78aa49a051"},
+ {file = "tokenizers-0.19.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c85cf76561fbd01e0d9ea2d1cbe711a65400092bc52b5242b16cfd22e51f0c58"},
+ {file = "tokenizers-0.19.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:670b802d4d82bbbb832ddb0d41df7015b3e549714c0e77f9bed3e74d42400fbe"},
+ {file = "tokenizers-0.19.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:85aa3ab4b03d5e99fdd31660872249df5e855334b6c333e0bc13032ff4469c4a"},
+ {file = "tokenizers-0.19.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cbf001afbbed111a79ca47d75941e9e5361297a87d186cbfc11ed45e30b5daba"},
+ {file = "tokenizers-0.19.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c89aa46c269e4e70c4d4f9d6bc644fcc39bb409cb2a81227923404dd6f5227"},
+ {file = "tokenizers-0.19.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:39c1ec76ea1027438fafe16ecb0fb84795e62e9d643444c1090179e63808c69d"},
+ {file = "tokenizers-0.19.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c2a0d47a89b48d7daa241e004e71fb5a50533718897a4cd6235cb846d511a478"},
+ {file = "tokenizers-0.19.1-cp39-none-win32.whl", hash = "sha256:61b7fe8886f2e104d4caf9218b157b106207e0f2a4905c9c7ac98890688aabeb"},
+ {file = "tokenizers-0.19.1-cp39-none-win_amd64.whl", hash = "sha256:f97660f6c43efd3e0bfd3f2e3e5615bf215680bad6ee3d469df6454b8c6e8256"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3b11853f17b54c2fe47742c56d8a33bf49ce31caf531e87ac0d7d13d327c9334"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d26194ef6c13302f446d39972aaa36a1dda6450bc8949f5eb4c27f51191375bd"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e8d1ed93beda54bbd6131a2cb363a576eac746d5c26ba5b7556bc6f964425594"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca407133536f19bdec44b3da117ef0d12e43f6d4b56ac4c765f37eca501c7bda"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce05fde79d2bc2e46ac08aacbc142bead21614d937aac950be88dc79f9db9022"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:35583cd46d16f07c054efd18b5d46af4a2f070a2dd0a47914e66f3ff5efb2b1e"},
+ {file = "tokenizers-0.19.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:43350270bfc16b06ad3f6f07eab21f089adb835544417afda0f83256a8bf8b75"},
+ {file = "tokenizers-0.19.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b4399b59d1af5645bcee2072a463318114c39b8547437a7c2d6a186a1b5a0e2d"},
+ {file = "tokenizers-0.19.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6852c5b2a853b8b0ddc5993cd4f33bfffdca4fcc5d52f89dd4b8eada99379285"},
+ {file = "tokenizers-0.19.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bcd266ae85c3d39df2f7e7d0e07f6c41a55e9a3123bb11f854412952deacd828"},
+ {file = "tokenizers-0.19.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecb2651956eea2aa0a2d099434134b1b68f1c31f9a5084d6d53f08ed43d45ff2"},
+ {file = "tokenizers-0.19.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:b279ab506ec4445166ac476fb4d3cc383accde1ea152998509a94d82547c8e2a"},
+ {file = "tokenizers-0.19.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:89183e55fb86e61d848ff83753f64cded119f5d6e1f553d14ffee3700d0a4a49"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:b2edbc75744235eea94d595a8b70fe279dd42f3296f76d5a86dde1d46e35f574"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:0e64bfde9a723274e9a71630c3e9494ed7b4c0f76a1faacf7fe294cd26f7ae7c"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0b5ca92bfa717759c052e345770792d02d1f43b06f9e790ca0a1db62838816f3"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f8a20266e695ec9d7a946a019c1d5ca4eddb6613d4f466888eee04f16eedb85"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63c38f45d8f2a2ec0f3a20073cccb335b9f99f73b3c69483cd52ebc75369d8a1"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:dd26e3afe8a7b61422df3176e06664503d3f5973b94f45d5c45987e1cb711876"},
+ {file = "tokenizers-0.19.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:eddd5783a4a6309ce23432353cdb36220e25cbb779bfa9122320666508b44b88"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:56ae39d4036b753994476a1b935584071093b55c7a72e3b8288e68c313ca26e7"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f9939ca7e58c2758c01b40324a59c034ce0cebad18e0d4563a9b1beab3018243"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6c330c0eb815d212893c67a032e9dc1b38a803eccb32f3e8172c19cc69fbb439"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec11802450a2487cdf0e634b750a04cbdc1c4d066b97d94ce7dd2cb51ebb325b"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2b718f316b596f36e1dae097a7d5b91fc5b85e90bf08b01ff139bd8953b25af"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:ed69af290c2b65169f0ba9034d1dc39a5db9459b32f1dd8b5f3f32a3fcf06eab"},
+ {file = "tokenizers-0.19.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f8a9c828277133af13f3859d1b6bf1c3cb6e9e1637df0e45312e6b7c2e622b1f"},
+ {file = "tokenizers-0.19.1.tar.gz", hash = "sha256:ee59e6680ed0fdbe6b724cf38bd70400a0c1dd623b07ac729087270caeac88e3"},
]
[package.dependencies]
-huggingface_hub = ">=0.16.4,<1.0"
+huggingface-hub = ">=0.16.4,<1.0"
[package.extras]
dev = ["tokenizers[testing]"]
-docs = ["setuptools_rust", "sphinx", "sphinx_rtd_theme"]
-testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests"]
+docs = ["setuptools-rust", "sphinx", "sphinx-rtd-theme"]
+testing = ["black (==22.3)", "datasets", "numpy", "pytest", "requests", "ruff"]
[[package]]
name = "tomlkit"
@@ -4989,6 +5508,26 @@ optree = ["optree (>=0.9.1)"]
type = "url"
url = "https://download.pytorch.org/whl/cpu/torch-2.2.1%2Bcpu-cp312-cp312-linux_x86_64.whl"
+[[package]]
+name = "tornado"
+version = "6.4.1"
+description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"},
+ {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"},
+ {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"},
+ {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"},
+ {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"},
+ {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"},
+ {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"},
+ {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"},
+ {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"},
+ {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"},
+ {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"},
+]
+
[[package]]
name = "tqdm"
version = "4.66.4"
@@ -5009,43 +5548,57 @@ notebook = ["ipywidgets (>=6)"]
slack = ["slack-sdk"]
telegram = ["requests"]
+[[package]]
+name = "traitlets"
+version = "5.14.3"
+description = "Traitlets Python configuration system"
+optional = false
+python-versions = ">=3.8"
+files = [
+ {file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"},
+ {file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"},
+]
+
+[package.extras]
+docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"]
+test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.2)", "pytest-mock", "pytest-mypy-testing"]
+
[[package]]
name = "transformers"
-version = "4.39.3"
+version = "4.42.4"
description = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow"
optional = false
python-versions = ">=3.8.0"
files = [
- {file = "transformers-4.39.3-py3-none-any.whl", hash = "sha256:7838034a12cca3168247f9d2d1dba6724c9de3ae0f73a108258c6b8fc5912601"},
- {file = "transformers-4.39.3.tar.gz", hash = "sha256:2586e5ff4150f122716fc40f5530e92871befc051848fbe82600969c535b762d"},
+ {file = "transformers-4.42.4-py3-none-any.whl", hash = "sha256:6d59061392d0f1da312af29c962df9017ff3c0108c681a56d1bc981004d16d24"},
+ {file = "transformers-4.42.4.tar.gz", hash = "sha256:f956e25e24df851f650cb2c158b6f4352dfae9d702f04c113ed24fc36ce7ae2d"},
]
[package.dependencies]
filelock = "*"
-huggingface-hub = ">=0.19.3,<1.0"
-numpy = ">=1.17"
+huggingface-hub = ">=0.23.2,<1.0"
+numpy = ">=1.17,<2.0"
packaging = ">=20.0"
pyyaml = ">=5.1"
regex = "!=2019.12.17"
requests = "*"
safetensors = ">=0.4.1"
-tokenizers = ">=0.14,<0.19"
+tokenizers = ">=0.19,<0.20"
tqdm = ">=4.27"
[package.extras]
accelerate = ["accelerate (>=0.21.0)"]
agents = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "datasets (!=2.5.0)", "diffusers", "opencv-python", "sentencepiece (>=0.1.91,!=0.1.92)", "torch"]
-all = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune] (>=2.7.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>=2.6,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timm", "tokenizers (>=0.14,<0.19)", "torch", "torchaudio", "torchvision"]
+all = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune] (>=2.7.0)", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timm (<=0.9.16)", "tokenizers (>=0.19,<0.20)", "torch", "torchaudio", "torchvision"]
audio = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
+benchmark = ["optimum-benchmark (>=0.2.0)"]
codecarbon = ["codecarbon (==1.2.0)"]
deepspeed = ["accelerate (>=0.21.0)", "deepspeed (>=0.9.3)"]
-deepspeed-testing = ["GitPython (<3.1.19)", "accelerate (>=0.21.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "deepspeed (>=0.9.3)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder (>=0.3.0)", "nltk", "optuna", "parameterized", "protobuf", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.1.5)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "timeout-decorator"]
-dev = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "av (==9.2.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "decord (==0.6.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.1.5)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "tensorflow (>=2.6,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "timm", "tokenizers (>=0.14,<0.19)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
-dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.1.5)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "tensorflow (>=2.6,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.14,<0.19)", "urllib3 (<2.0.0)"]
-dev-torch = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "hf-doc-builder", "hf-doc-builder (>=0.3.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "librosa", "nltk", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.1.5)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "timeout-decorator", "timm", "tokenizers (>=0.14,<0.19)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
-docs = ["Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "av (==9.2.0)", "codecarbon (==1.2.0)", "decord (==0.6.0)", "flax (>=0.4.1,<=0.7.0)", "hf-doc-builder", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "phonemizer", "protobuf", "pyctcdecode (>=0.4.0)", "ray[tune] (>=2.7.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "tensorflow (>=2.6,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timm", "tokenizers (>=0.14,<0.19)", "torch", "torchaudio", "torchvision"]
-docs-specific = ["hf-doc-builder"]
-flax = ["flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "optax (>=0.0.8,<=0.1.4)"]
+deepspeed-testing = ["GitPython (<3.1.19)", "accelerate (>=0.21.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "deepspeed (>=0.9.3)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "nltk", "optuna", "parameterized", "protobuf", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.4.4)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "timeout-decorator"]
+dev = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "av (==9.2.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "decord (==0.6.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "flax (>=0.4.1,<=0.7.0)", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "optax (>=0.0.8,<=0.1.4)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.4.4)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "scipy (<1.13.0)", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "timm (<=0.9.16)", "tokenizers (>=0.19,<0.20)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
+dev-tensorflow = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "isort (>=5.5.4)", "kenlm", "keras-nlp (>=0.3.1)", "librosa", "nltk", "onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.4.4)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx", "timeout-decorator", "tokenizers (>=0.19,<0.20)", "urllib3 (<2.0.0)"]
+dev-torch = ["GitPython (<3.1.19)", "Pillow (>=10.0.1,<=15.0)", "accelerate (>=0.21.0)", "beautifulsoup4", "codecarbon (==1.2.0)", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "fugashi (>=1.0)", "ipadic (>=1.0.0,<2.0)", "isort (>=5.5.4)", "kenlm", "librosa", "nltk", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "optuna", "parameterized", "phonemizer", "protobuf", "psutil", "pyctcdecode (>=0.4.0)", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "ray[tune] (>=2.7.0)", "rhoknp (>=1.1.0,<1.3.1)", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.4.4)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "scikit-learn", "sentencepiece (>=0.1.91,!=0.1.92)", "sigopt", "sudachidict-core (>=20220729)", "sudachipy (>=0.6.6)", "tensorboard", "timeout-decorator", "timm (<=0.9.16)", "tokenizers (>=0.19,<0.20)", "torch", "torchaudio", "torchvision", "unidic (>=1.0.2)", "unidic-lite (>=1.0.7)", "urllib3 (<2.0.0)"]
+flax = ["flax (>=0.4.1,<=0.7.0)", "jax (>=0.4.1,<=0.4.13)", "jaxlib (>=0.4.1,<=0.4.13)", "optax (>=0.0.8,<=0.1.4)", "scipy (<1.13.0)"]
flax-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
ftfy = ["ftfy"]
integrations = ["optuna", "ray[tune] (>=2.7.0)", "sigopt"]
@@ -5055,25 +5608,26 @@ natten = ["natten (>=0.14.6,<0.15.0)"]
onnx = ["onnxconverter-common", "onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)", "tf2onnx"]
onnxruntime = ["onnxruntime (>=1.4.0)", "onnxruntime-tools (>=1.4.2)"]
optuna = ["optuna"]
-quality = ["GitPython (<3.1.19)", "datasets (!=2.5.0)", "hf-doc-builder (>=0.3.0)", "isort (>=5.5.4)", "ruff (==0.1.5)", "urllib3 (<2.0.0)"]
+quality = ["GitPython (<3.1.19)", "datasets (!=2.5.0)", "isort (>=5.5.4)", "ruff (==0.4.4)", "urllib3 (<2.0.0)"]
ray = ["ray[tune] (>=2.7.0)"]
retrieval = ["datasets (!=2.5.0)", "faiss-cpu"]
+ruff = ["ruff (==0.4.4)"]
sagemaker = ["sagemaker (>=2.31.0)"]
sentencepiece = ["protobuf", "sentencepiece (>=0.1.91,!=0.1.92)"]
serving = ["fastapi", "pydantic", "starlette", "uvicorn"]
sigopt = ["sigopt"]
sklearn = ["scikit-learn"]
speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
-testing = ["GitPython (<3.1.19)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "hf-doc-builder (>=0.3.0)", "nltk", "parameterized", "protobuf", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.1.5)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "tensorboard", "timeout-decorator"]
-tf = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow (>=2.6,<2.16)", "tensorflow-text (<2.16)", "tf2onnx"]
-tf-cpu = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow-cpu (>=2.6,<2.16)", "tensorflow-text (<2.16)", "tf2onnx"]
+testing = ["GitPython (<3.1.19)", "beautifulsoup4", "cookiecutter (==1.7.3)", "datasets (!=2.5.0)", "dill (<0.3.5)", "evaluate (>=0.2.0)", "faiss-cpu", "nltk", "parameterized", "psutil", "pydantic", "pytest (>=7.2.0,<8.0.0)", "pytest-rich", "pytest-timeout", "pytest-xdist", "rjieba", "rouge-score (!=0.0.7,!=0.0.8,!=0.1,!=0.1.1)", "ruff (==0.4.4)", "sacrebleu (>=1.4.12,<2.0.0)", "sacremoses", "sentencepiece (>=0.1.91,!=0.1.92)", "tensorboard", "timeout-decorator"]
+tf = ["keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow (>2.9,<2.16)", "tensorflow-text (<2.16)", "tf2onnx"]
+tf-cpu = ["keras (>2.9,<2.16)", "keras-nlp (>=0.3.1)", "onnxconverter-common", "tensorflow-cpu (>2.9,<2.16)", "tensorflow-probability (<0.24)", "tensorflow-text (<2.16)", "tf2onnx"]
tf-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)"]
-timm = ["timm"]
-tokenizers = ["tokenizers (>=0.14,<0.19)"]
+timm = ["timm (<=0.9.16)"]
+tokenizers = ["tokenizers (>=0.19,<0.20)"]
torch = ["accelerate (>=0.21.0)", "torch"]
torch-speech = ["kenlm", "librosa", "phonemizer", "pyctcdecode (>=0.4.0)", "torchaudio"]
torch-vision = ["Pillow (>=10.0.1,<=15.0)", "torchvision"]
-torchhub = ["filelock", "huggingface-hub (>=0.19.3,<1.0)", "importlib-metadata", "numpy (>=1.17)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.14,<0.19)", "torch", "tqdm (>=4.27)"]
+torchhub = ["filelock", "huggingface-hub (>=0.23.2,<1.0)", "importlib-metadata", "numpy (>=1.17,<2.0)", "packaging (>=20.0)", "protobuf", "regex (!=2019.12.17)", "requests", "sentencepiece (>=0.1.91,!=0.1.92)", "tokenizers (>=0.19,<0.20)", "torch", "tqdm (>=4.27)"]
video = ["av (==9.2.0)", "decord (==0.6.0)"]
vision = ["Pillow (>=10.0.1,<=15.0)"]
@@ -5096,13 +5650,13 @@ typing-extensions = ">=3.7.4.3"
[[package]]
name = "types-awscrt"
-version = "0.20.11"
+version = "0.21.1"
description = "Type annotations and code completion for awscrt"
optional = false
python-versions = "<4.0,>=3.7"
files = [
- {file = "types_awscrt-0.20.11-py3-none-any.whl", hash = "sha256:3236ba5097176080189135345acfcfeae18bac88869043daf55883649ce6e2ff"},
- {file = "types_awscrt-0.20.11.tar.gz", hash = "sha256:ad5ce9fb511414430326f19a513e23d3bc7143c10cdbe1cdaeb2222ad567698f"},
+ {file = "types_awscrt-0.21.1-py3-none-any.whl", hash = "sha256:8b9a3fc729a13d14ce77b686721a222837f6e0c1f49f907c657b3b94a5585e67"},
+ {file = "types_awscrt-0.21.1.tar.gz", hash = "sha256:9948d735459c4d3ecab502cbe619e00aea0c72e74979babd622fb6379b1e5247"},
]
[[package]]
@@ -5118,13 +5672,13 @@ files = [
[[package]]
name = "types-requests"
-version = "2.32.0.20240602"
+version = "2.32.0.20240712"
description = "Typing stubs for requests"
optional = false
python-versions = ">=3.8"
files = [
- {file = "types-requests-2.32.0.20240602.tar.gz", hash = "sha256:3f98d7bbd0dd94ebd10ff43a7fbe20c3b8528acace6d8efafef0b6a184793f06"},
- {file = "types_requests-2.32.0.20240602-py3-none-any.whl", hash = "sha256:ed3946063ea9fbc6b5fc0c44fa279188bae42d582cb63760be6cb4b9d06c3de8"},
+ {file = "types-requests-2.32.0.20240712.tar.gz", hash = "sha256:90c079ff05e549f6bf50e02e910210b98b8ff1ebdd18e19c873cd237737c1358"},
+ {file = "types_requests-2.32.0.20240712-py3-none-any.whl", hash = "sha256:f754283e152c752e46e70942fa2a146b5bc70393522257bb85bd1ef7e019dcc3"},
]
[package.dependencies]
@@ -5208,13 +5762,13 @@ files = [
[[package]]
name = "urllib3"
-version = "2.2.1"
+version = "2.2.2"
description = "HTTP library with thread-safe connection pooling, file post, and more."
optional = false
python-versions = ">=3.8"
files = [
- {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"},
- {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"},
+ {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"},
+ {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"},
]
[package.extras]
@@ -5257,45 +5811,59 @@ colorama = {version = ">=0.4.6", markers = "sys_platform == \"win32\" and python
[[package]]
name = "watchdog"
-version = "4.0.0"
+version = "4.0.1"
description = "Filesystem events monitoring"
optional = false
python-versions = ">=3.8"
files = [
- {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b"},
- {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b"},
- {file = "watchdog-4.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c"},
- {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b"},
- {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935"},
- {file = "watchdog-4.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b"},
- {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257"},
- {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19"},
- {file = "watchdog-4.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b"},
- {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85"},
- {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4"},
- {file = "watchdog-4.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605"},
- {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101"},
- {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca"},
- {file = "watchdog-4.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8"},
- {file = "watchdog-4.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b"},
- {file = "watchdog-4.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92"},
- {file = "watchdog-4.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87"},
- {file = "watchdog-4.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269"},
- {file = "watchdog-4.0.0-py3-none-win32.whl", hash = "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c"},
- {file = "watchdog-4.0.0-py3-none-win_amd64.whl", hash = "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245"},
- {file = "watchdog-4.0.0-py3-none-win_ia64.whl", hash = "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7"},
- {file = "watchdog-4.0.0.tar.gz", hash = "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec"},
+ {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"},
+ {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"},
+ {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"},
+ {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"},
+ {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"},
+ {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"},
+ {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"},
+ {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"},
+ {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"},
+ {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"},
+ {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"},
+ {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"},
+ {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"},
+ {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"},
+ {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"},
+ {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"},
+ {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"},
+ {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"},
+ {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"},
+ {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"},
+ {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"},
+ {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"},
+ {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"},
+ {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"},
+ {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"},
+ {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"},
]
[package.extras]
watchmedo = ["PyYAML (>=3.10)"]
+[[package]]
+name = "wcwidth"
+version = "0.2.13"
+description = "Measures the displayed width of unicode strings in a terminal"
+optional = false
+python-versions = "*"
+files = [
+ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"},
+ {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"},
+]
+
[[package]]
name = "weasel"
version = "0.4.1"
@@ -5534,4 +6102,4 @@ multidict = ">=4.0"
[metadata]
lock-version = "2.0"
python-versions = "3.12.3"
-content-hash = "3c5c0e418f84587443028f2c311e12a619fcf53b29c5a3245d791bead3dab1fb"
+content-hash = "8f356ae509cdcf112bb5efee6096ea159af947f9a62b82cebe0a09a96255af4e"
diff --git a/pyproject.toml b/pyproject.toml
index eb29532..7edebce 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -34,6 +34,7 @@ semantic-router = {version = "^0.0.46", extras = ["bedrock"]}
[tool.poetry.group.dev.dependencies]
aws-sam-cli = "^1.114.0"
+ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
diff --git a/tests/notebooks/copypaste.ipynb b/tests/notebooks/copypaste.ipynb
new file mode 100644
index 0000000..c746293
--- /dev/null
+++ b/tests/notebooks/copypaste.ipynb
@@ -0,0 +1,93 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Defaulting to user installation because normal site-packages is not writeable\n",
+ "Collecting pyperclip\n",
+ " Downloading pyperclip-1.8.2.tar.gz (20 kB)\n",
+ "Building wheels for collected packages: pyperclip\n",
+ " Building wheel for pyperclip (setup.py) ... \u001b[?25ldone\n",
+ "\u001b[?25h Created wheel for pyperclip: filename=pyperclip-1.8.2-py3-none-any.whl size=11136 sha256=8d39e47f855db2394786542c7d43c2c7d3f0536b0e6277120df73dd450432731\n",
+ " Stored in directory: /Users/max.hollingdale/Library/Caches/pip/wheels/0c/09/9e/49e21a6840ef7955b06d47394afef0058f0378c0914e48b8b8\n",
+ "Successfully built pyperclip\n",
+ "Installing collected packages: pyperclip\n",
+ "Successfully installed pyperclip-1.8.2\n",
+ "\u001b[33mWARNING: You are using pip version 21.2.4; however, version 24.0 is available.\n",
+ "You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command.\u001b[0m\n",
+ "Note: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "pip install pyperclip\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pyperclip\n",
+ "\n",
+ "text ='hello world'\n",
+ "\n",
+ "\n",
+ "pyperclip.copy(text)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "SyntaxError",
+ "evalue": "invalid syntax (2434926114.py, line 1)",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;36m Cell \u001b[0;32mIn[4], line 1\u001b[0;36m\u001b[0m\n\u001b[0;31m pyperclip version\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n"
+ ]
+ }
+ ],
+ "source": [
+ "pyperclip version"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/tests/notebooks/topic_evaluation.ipynb b/tests/notebooks/topic_evaluation.ipynb
new file mode 100644
index 0000000..77119b0
--- /dev/null
+++ b/tests/notebooks/topic_evaluation.ipynb
@@ -0,0 +1,644 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Topic modelling & Caddy performance evaluation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "A note book to evaluate the messages recieved previously, categorise into topics and judge approval rate of those messages\n",
+ "\n",
+ "Looking for an output that shows performance across various topics as well as demand to support with corpus scraping and maintenance"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Steps:\n",
+ "1) Locate data of historical messages / responses in download from s3\n",
+ "2) Use topic modelling to categorise the message / responses\n",
+ "3) Look at the approval rate of the messages "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Import all libraries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 41,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/Users/max.hollingdale/Library/Caches/pypoetry/virtualenvs/caddy-chatbot-B-atQbAG-py3.12/lib/python3.12/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
+ " from .autonotebook import tqdm as notebook_tqdm\n"
+ ]
+ }
+ ],
+ "source": [
+ "import boto3\n",
+ "import os\n",
+ "import pandas as pd\n",
+ "import re\n",
+ "from bs4 import BeautifulSoup\n",
+ "from bertopic import BERTopic\n",
+ "from sentence_transformers import SentenceTransformer\n",
+ "import seaborn as sns\n",
+ "import matplotlib.pyplot as plt\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Step 1: Ingest data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "session = boto3.Session()\n",
+ "credentials = session.get_credentials()\n",
+ "\n",
+ "# === Database Connections ===\n",
+ "dynamodb = boto3.resource(\"dynamodb\", region_name=\"eu-west-2\")\n",
+ "\n",
+ "# === Tables ===\n",
+ "responses_table = dynamodb.Table(\"caddyResponses-prod\")\n",
+ "\n",
+ "responses_data = responses_table.scan()['Items']\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Step 1a: Clean data"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_responses = pd.DataFrame(responses_data)\n",
+ "df_responses['Office'] = df_responses.apply(lambda x: str(x['approverEmail']).split('@')[-1], axis=1)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 37,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def clean_and_extract_urls(llm_response):\n",
+ "\n",
+ " # Step 1: Remove the tag and its attributes\n",
+ " cleaned_text = re.sub(r']*>', '', llm_response)\n",
+ " cleaned_text = re.sub(r'', '', cleaned_text)\n",
+ "\n",
+ " # Step 2: Extract and remove URLs\n",
+ " urls = re.findall(r'[(.*?)]', cleaned_text)\n",
+ " cleaned_text = re.sub(r'[(.*?)]', '', cleaned_text)\n",
+ "\n",
+ " # Step 3: Further cleaning (remove remaining HTML tags, line breaks, etc.)\n",
+ " cleaned_text = re.sub(r'<[^>]+>', '', cleaned_text) # Remove any other HTML tags\n",
+ " cleaned_text = cleaned_text.replace('\\\\n', ' ').strip() # Replace \\n with space and strip leading/trailing spaces\n",
+ "\n",
+ " return cleaned_text, urls\n",
+ "\n",
+ "df_responses[['cleaned_text', 'urls']] = df_responses['llmAnswer'].apply(lambda x: pd.Series(clean_and_extract_urls(x)))\n",
+ "\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Now we have:\n",
+ "- cleaned text which is the response from each llm\n",
+ "- urls which is the rag documents returned\n",
+ "- office which is the office of the individual messaging from\n",
+ "- llmprompt which is the user query"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Step 2: Topic modelling"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Use bertopic as that is what consult ahve used and can ask them questions"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Pros:\n",
+ "Works well with short texts.\n",
+ "No need to specify the number of topics in advance.\n",
+ "Can use pre-trained language models for embeddings.\n",
+ "\n",
+ "Cons:\n",
+ "Requires more computational resources.\n",
+ "More complex to set up compared to traditional methods."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Seeding approach"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 52,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Batches: 100%|██████████| 5/5 [00:00<00:00, 8.59it/s]\n"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ " Topic Count Name \\\n",
+ "0 -1 37 -1_the_to_if_your \n",
+ "1 0 34 0_the_universal_your_for \n",
+ "2 1 33 1_the_to_landlord_if \n",
+ "3 2 18 2_the_pip_to_your \n",
+ "4 3 14 3_to_the_uk_your \n",
+ "5 4 14 4_the_to_client_if \n",
+ "\n",
+ " Representation \\\n",
+ "0 [the, to, if, your, you, for, client, and, or,... \n",
+ "1 [the, universal, your, for, to, you, credit, i... \n",
+ "2 [the, to, landlord, if, your, notice, client, ... \n",
+ "3 [the, pip, to, your, if, for, they, and, clien... \n",
+ "4 [to, the, uk, your, if, they, for, in, child, ... \n",
+ "5 [the, to, client, if, your, and, complaint, se... \n",
+ "\n",
+ " Representative_Docs \n",
+ "0 [TL;DR Your client may be able to get help fro... \n",
+ "1 [Brief Summary: Your client's Universal Credit... \n",
+ "2 [Brief Summary: To determine if the section 21... \n",
+ "3 [TL;DR: Your client may be able to get their E... \n",
+ "4 [Based on the information provided, it seems y... \n",
+ "5 [Based on the information provided, here is my... \n"
+ ]
+ }
+ ],
+ "source": [
+ "\n",
+ "seed_topic_list = [\n",
+ " [\"finance\", \"debt\", \"support\", \"benefits\", \"universal\", \"charity\"],\n",
+ " [\"tax\", \"threshold\", \"guidance\", \"council\"],\n",
+ " [\"immigration\", \"visa\", \"asylum\", \"UK\"],\n",
+ " [\"housing\", \"rent\", \"landlord\"],\n",
+ " [\"health\", \"nhs\", \"care\"],\n",
+ " [\"violence\", \"abuse\", \"controlling\", \"family\",\"children\", \"partner\"],\n",
+ " # ... add more seed topics\n",
+ "]\n",
+ "\n",
+ "# Initialize the sentence transformer model\n",
+ "sentence_model = SentenceTransformer('all-MiniLM-L6-v2')\n",
+ "\n",
+ "# Create embeddings\n",
+ "embeddings = sentence_model.encode(df_responses['cleaned_text'].tolist(), show_progress_bar=True)\n",
+ "\n",
+ "model = BERTopic(language=\"english\", seed_topic_list=seed_topic_list)\n",
+ "topics, probabilities = model.fit_transform(df_responses['cleaned_text'], embeddings=embeddings)\n",
+ "\n",
+ "# Display topics\n",
+ "print(model.get_topic_info())"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Scatterplot of embeddings, want to show spread"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 69,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA6YAAAK9CAYAAAA35HEHAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjkuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8hTgPZAAAACXBIWXMAAA9hAAAPYQGoP6dpAADgpUlEQVR4nOzdd3wUZf4H8M/MbEvb9F4g9N47gqAIKmIvpyjq2RVPT72f51nQa+p55+nZ8PTsIhasdxaQKoKIIJ3QUwjpPbvZNvP8/ggJxGQ3hc1ONvm8Xy9ekJlnZz6EkOx3niYJIQSIiIiIiIiIdCLrHYCIiIiIiIh6NhamREREREREpCsWpkRERERERKQrFqZERERERESkKxamREREREREpCsWpkRERERERKQrFqZERERERESkKxamREREREREpCsWpkRERERERKQrFqZERER+8uijj0KSJL1jEBERBR0WpkREQeaNN96AJEmNvywWC1JSUjBnzhz861//Qk1Njd4Ru7QXX3wRb7zxRrte43A48M9//hMTJ05EZGQkLBYLBgwYgIULF2L//v2dE7QFS5YswTPPPBOw+xEREQWKQe8ARETUMX/84x+RmZkJt9uNwsJCrFmzBnfffTeefvppfP755xgxYoTeEbukF198EXFxcbjuuuva1L60tBRnn302tmzZgvPOOw9XXXUVwsPDsW/fPixduhT//ve/4XK5Ojf0cUuWLMGuXbtw9913B+R+REREgcLClIgoSJ1zzjkYN25c48cPPPAAVq1ahfPOOw/nn38+9u7di5CQEB0Tdg/XXXcdfv75Z3z00Ue45JJLmpz705/+hAcffFCnZP6haRpcLhcsFoveUYiIqAfjUF4iom7kjDPOwMMPP4ycnBy88847Tc6tWrUK06ZNQ1hYGKKionDBBRdg7969za6Rn5+PG264ASkpKTCbzcjMzMRtt93W2CvobR5lwxDj7OzsxmO9e/fGeeedhzVr1mDcuHEICQnB8OHDsWbNGgDAxx9/jOHDh8NisWDs2LH4+eefm103KysLl156KWJiYmCxWDBu3Dh8/vnnLd77+++/xz333IP4+HiEhYXhoosuQklJSZM8u3fvxtq1axuHQs+YMcPr53PTpk343//+hxtuuKFZUQoAZrMZf//7372+Pjs7G5IktTh0WJIkPProo40f19TU4O6770bv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hsbtYiIjI5vspfnXv/4Vy5cvx+mnn9647UhBQQE+/PBDrF+/HlFRUZg9ezYyMjJwww034He/+x0URcFrr72G+Ph45Obm+vXv+MILL+C0007D8OHDcdNNN6FPnz4oKirCxo0bcfToUWzfvr3d1xw7dixeeukl/PnPf0a/fv2QkJDQuEhQS9566y3Mnj0bF198MebNm4czzzwTYWFhOHDgAJYuXYqCggKfe5neeOONeOKJJ3DjjTdi3LhxWLduHfbv39+kTU1NDdLS0nDppZdi5MiRCA8Px7fffovNmzfjH//4R5Ps77//Pu655x6MHz8e4eHhmDdvHq655hp88MEHuPXWW7F69WpMnToVqqoiKysLH3zwAb755psWF7T6Zc7y8nKcccYZSEtLQ05ODp577jmMGjUKgwcPbuNnl4iIqIP0XRSYiIjaq2FrlIZfJpNJJCUlibPOOks8++yzorq6usXXffvtt2Lq1KkiJCREWK1WMW/ePLFnz55m7XJycsSCBQtEfHy8MJvNok+fPuKOO+4QTqezsc2WLVvExIkThclkEhkZGeLpp5/2ul3M3Llzm90DQLOtURq2VnnqqaeaHD906JBYsGCBSEpKEkajUaSmporzzjtPfPTRR80+J7/c5mb16tXNtqApLCwUc+fOFREREQJAm7aOsdvt4u9//7sYP368CA8PFyaTSfTv31/ceeed4uDBg43tWtpKx263ixtuuEFERkaKiIgIcfnll4vi4uIm28U4nU7xu9/9TowcOVJERESIsLAwMXLkSPHiiy82uVZtba246qqrRFRUlADQZOsYl8slnnzySTF06FBhNptFdHS0GDt2rHjsscdEVVWVz8+9EEJ89NFHYvbs2SIhIaHx3/WWW24RBQUFrX5+iIiITpUkRAdXhCAiIiIiIiLyA84xJSIiIiIiIl2xMCUiIiIiIiJdsTAlIiIiIiIiXbEwJSIiIiIiohY98cQTkCQJd999d6feh4UpERERERERNbN582a8/PLLjftadyYWpkRERERERNREbW0t5s+fj1deeQXR0dGdfj9Dp98hyGmahmPHjiEiIgKSJOkdh4iIiIioRxNCoKamBikpKZDl4OpnczgccLlcutxbCNGsnjGbzTCbzS22v+OOOzB37lzMmjULf/7znzs9HwvTVhw7dgzp6el6xyAiIiIiopPk5eUhLS1N7xht5nA4kJTRC1UlxbrcPzw8HLW1tU2OLVq0CI8++miztkuXLsXWrVuxefPmAKVjYdqqiIgIAPVf+FarVec0REREREQ9W3V1NdLT0xvfpwcLl8uFqpJi/H3dZoSEBzZ7XW0N7ps+vllN01JvaV5eHu666y6sWLECFoslYBlZmLaiobvbarWyMCUiIiIi6iKCdZpdSHhEwAvTBm2pabZs2YLi4mKMGTOm8Ziqqli3bh2ef/55OJ1OKIri92wsTImIiIiIiAgAcOaZZ2Lnzp1Njl1//fUYNGgQ7r///k4pSgEWpkRERERERHRcREQEhg0b1uRYWFgYYmNjmx33p+BaxoqIiIiIiIi6HfaYEhERERERkVdr1qzp9Huwx5SIiIiIiIh0xcKUiIiIiIiIdMXClIiIiIiIiHTFwpSIiIiIiIh0xcKUiIiIiIiIdMXClIiIiIiIiHTFwpSIiIiIiIh0xcKUiIiIiIiIdMXClIiIiIiIiHTFwpSIiIiIiIh0xcKUiIiIiIiIdMXClIiIiIiIiHTFwpSIiIiIiIh0xcKUiIiIiIiIdMXClIiIiIiIiHRl0DsAERERUXcghIBW44LQAMVqgiRLekciIgoaLEyJiIiIToEQAvafilCz9ig8pXUAADnChPCpKYiYlgpJ4QA1IqLWsDAlIiIiOgVVX2Wjdt3RJse0Gheqv86GK6casdcMYe8pEVEr+AiPiIiIqINceTXNitKTOfaWw769JICJiIiCEwtTIiIiog6q3VTg+92UBNg2HgtYHiKiYMXClIiIiKiDPEV2QPPRQADuYnvA8hARBSvOMSUiom5DCAHN5gYkCXKoAZLEeX3UuSSzAkgAhI82JiVgeYiIghULUyIiCnpCE7BtKkDNd/lQyx0AAENCCCKmpyF0bCILVOo0oSPi4TxY6b2BBISOjA9YHiKiYMWhvEREFNSEEKj4aD8qPzvUWJQCgKe4DhUfHUDV/47omI66u5BR8VCizC2/o5Lqe0vDp6QEPBcRUbBhjykREQU1x95y2LcWez1fuz4fIUNjYc6MDGAq6ilkk4L4m0eg9I3d8BTbgYZtYTQBOcyIuGuHwhBt0TckEXUpj+aXQA6rC+g9NVttQO/XESxMiYgoqNVuPOZ7jp8sofaHAham1GkMMRYk3j0GzoOVcBysAFQBUy8rQobEQjJwcBoRUVuwMCUioqDmLrT7XHgGmoC70BawPNQzSbIEy4BoWAZE6x2FiCgo8TEeEREFNcnU+o8ymauiEhERdWksTImIKKiFjoivH8rrQ8iIuMCEISIiog5hYUpEREEtfFLyib0kf0kC5HAjwsYmBjwXERERtR0LUyIiCmpKpBnxNw6HHGasPyBLjSujKpFmxN80HHKoUceERERE1BoufkREREHPlBaB5N9PQN2uUjizqwEJsPSNgmVwLCSllXG+REREpDsWpkRE1C1IBhmhoxIQOipB7yhERETUThzKS0RERERERLpiYUpERERERES6YmFKREREREREumJhSkRERERERLpiYUpERERERES6YmFKREREREREumJhSkRERERERLpiYUpERERERES6YmFKREREREREumJhSkRERERERLpiYUpERERERES6YmFKREREREREumJhSkRERERERLpiYUpERERERES6YmFKREREREREumJhSkRERERERLpiYUpERERERES6YmFKREREREREumJhSkRERERERLpiYUpERERERES6YmFKREREREREujLoHYCIiIiIiKin+CZ1HSIiLAG9Z02NA2MCesf2Y48pERERERER6YqFKREREREREemKhSkRERERERHpioUpERERERER6YqLHxGRV+5iO5wHKyGEgLmXFaa0iE65j1AFHFllqNtZCs2pwhAfirDxiTDGh3bK/YiIiIioa2FhSkTNqDY3ypdmwXmgEpCOHxSAMTUcsfMHwxDjv5Xk1BoXSv6zC55CW/29BIB95ahddxTW2b1gPSPDb/ciIiIioq6JQ3mJqAnh0VDyyk44D1UeP3D8FwB3QS2KF2+HanP7515CoOytPfAU207cCwC0+t+ql+fAvq3YL/ciIiIioq6LhSkRNVG3s7S+91Jr4aQGaDUu2H4s9Mu9XDnVcOXVtHyv46pX5UEI4b0BEREREQU9FqZE1ITt5+ITw3dbIgD7liK/3MuRVQHIvm4GeIrt0KpdfrkfEREREXVNLEyJqAmt1nViSK23Nv4ayqtqvovghnYeH12qRERERBT0WJgSUROGmJBWvzMoflr8yJQaDqi+q2ApxAAl0uyX+xERERFR18TClIiaCJuQ5HPOZ2MbPwgZFgc51OC911QCwiclQzLwWxURERFRd8Z3e0TUhLl/FCxDY1suFiXAlB6BsDGJfrmXZJARM38w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6NfkOlONpIGb1g33xN+jQmRELSeEQH55DS6VVMNgsvxBCxEREXG7GCKyQ06yE/538/+w6KdF2HlpJ2TIkCQJJmFCqEcoXh3zKoLcgtQOk8iir49lY+m2c0jJLQcA+Lhqce/1vfH7sVFw1lov7EVERNQdMTElIrvkpffC28lvI60kDbsu7YJBMaC/X38MCxoGSZLUDo/Iov/7MQ0vbjyNK2/Ty1UG/Hf7Oew+X4RPH06C3onJKRER0ZWYmBKRXYv0jkSkd6TaYRC1yIWiSry08TQAQIjG5xQBHMi4jE/3ZOKhG/uoEB0REdmDp78+DFnvatM+ldoqm/bXFlxjSkRE1EFW7suCLFsf0f94d4ZtgiEiInIgTEyJiIg6SFpBBUyKsHheALhQVAXFShsiIqLuiIkpERFRB3HTaaBpZsRU7yQ3O6pKRETU3TAxJSIi6iATB/S0OmKqkSXcOrCnDSMiIiJyDExMiYiIOsi42ADEBnk0OWoqSYBGkjBvFIt5ERERXY2JKRERUQdx0sj4+KFh6B/sWf9YluD0S5Lq6azFhw8MRUyQh5ohEhER2SVuF0NERNSBAjycsf7RG7A/4zK2ns5DnVFB/2AvTB7YE85a7l9KRETUFCamREREHUySJAzr44thfXzVDoWIiMghcCovERERERERqYqJKREREREREamKiSkRERERERGpiokpERERERERqYqJKREREREREamKiSkRERERERGpiokpERERERERqYqJKREREREREamKiSkRERERERGpiokpERERERERqYqJKREREREREamKiSkRERERERGpiokpERERERERqYqJKREREREREamKiSkRERERERGpiokpERERERERqYqJKREREREREamKiSkRERERERGpiokpERERERERtcnzzz+PESNGwNXVFd7e3m2+DhNTIiIiIiIiapO6ujrcfvvt+N3vfteu6zh1UDxERERERETUzfztb38DACxbtqxd12Fi2gwhBACgrKxM5UiIiIiIiKjhfXnD+3RHo9RWqdbn1TmNXq+HXq+3eTxNYWLajPLycgBAWFiYypEQEREREVGD8vJyeHl5qR1Gi+l0OgQFBeHS23NU6d/d3f2anGbx4sVYsmSJKvFcjYlpM4KDg5GVlQUPDw9IktRh1y0rK0NYWBiysrLg6enZYdclx8T7gRrwXqAGvBfo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",
+ "text/plain": [
+ "