From 2c0de05b73ca0f48e14bd7880bbdfab327b782d6 Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Thu, 18 Jan 2024 19:27:02 -0500 Subject: optimize a bit --- generators/datageneration.ipynb | 39394 +++++++++++++++++++------------------- 1 file changed, 19720 insertions(+), 19674 deletions(-) (limited to 'generators') diff --git a/generators/datageneration.ipynb b/generators/datageneration.ipynb index 9d3067f..13695b6 100644 --- a/generators/datageneration.ipynb +++ b/generators/datageneration.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 82, + "execution_count": 20, "id": "e1b17564-0abb-41c5-8cf4-7200b014550f", "metadata": {}, "outputs": [ @@ -32,7 +32,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 21, "id": "27488c82-1e9b-4873-9e6b-e0b5937fc51d", "metadata": {}, "outputs": [], @@ -75,7 +75,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 22, "id": "445789e7-3808-4a28-9df5-9a69313cb4c2", "metadata": {}, "outputs": [], @@ -88,7 +88,7 @@ }, { "cell_type": "code", - "execution_count": 89, + "execution_count": 23, "id": "64ccaf3d-9743-49ed-b10b-d7b3e70e0235", "metadata": {}, "outputs": [], @@ -120,7 +120,7 @@ }, { "cell_type": "code", - "execution_count": 90, + "execution_count": 24, "id": "def43999-d789-4e5c-bb27-4fd29074c875", "metadata": {}, "outputs": [], @@ -152,7 +152,7 @@ }, { "cell_type": "code", - "execution_count": 91, + "execution_count": 25, "id": "1c8175f2-817e-45ab-af0b-5ea7ee7a5dc9", "metadata": {}, "outputs": [], @@ -180,19 +180,42 @@ }, { "cell_type": "code", - "execution_count": 96, - "id": "1f2cca38-5d1a-421e-9bcc-09d68880c6f1", + "execution_count": 42, + "id": "8e90da63-67cf-4738-b9c8-2bc49e9fb582", + "metadata": {}, + "outputs": [], + "source": [ + "word_corpus = json.loads(json.dumps(corpus))\n", + "for i, groups in enumerate(corpus):\n", + " for j, group in enumerate(groups['groups']):\n", + " for k, clue in enumerate(group['clues']):\n", + " full_word = clue[0]\n", + " if groups['name'] == 'suffixes':\n", + " full_word = clue[0] + group['answer']\n", + " elif groups['name'] == 'prefixes':\n", + " full_word = group['answer'] + clue[0]\n", + " word_corpus[i]['groups'][j]['clues'][k] = [clue[0], [i,j,k]]\n", + " corpus[i]['groups'][j]['clues'][k] = corpus[i]['groups'][j]['clues'][k][:2] + (full_word,)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "fd0f294a-4264-4208-82b4-7a4157366e81", "metadata": {}, "outputs": [], "source": [ "with open('../static/corpus.js', 'w') as f:\n", " f.write('var corpus = ')\n", + " json.dump(word_corpus, f)\n", + "with open('../static/full_corpus.js', 'w') as f:\n", + " f.write('var fullCorpus = ')\n", " json.dump(corpus, f)" ] }, { "cell_type": "code", - "execution_count": 93, + "execution_count": 28, "id": "589f6645-3a52-40ad-9899-717ea7614d00", "metadata": {}, "outputs": [ @@ -202,7 +225,7 @@ "'an infective disease caused by sporozoan parasites that are transmitted through the bite of an infected Anopheles mosquito; marked by paroxysms of chills and fever'" ] }, - "execution_count": 93, + "execution_count": 28, "metadata": {}, "output_type": "execute_result" } @@ -213,17 +236,17 @@ }, { "cell_type": "code", - "execution_count": 94, + "execution_count": 29, "id": "8faeb5ee-e1ff-4571-91bf-178cdc7d29f7", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[194, 214, 6853, 437, 6424, 3569]" + "[194, 214, 6853, 437, 6421, 3569]" ] }, - "execution_count": 94, + "execution_count": 29, "metadata": {}, "output_type": "execute_result" } @@ -234,7 +257,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 30, "id": "b8d12e1a-757f-4d87-9374-e7eb656f30d4", "metadata": {}, "outputs": [ @@ -6496,497 +6519,505 @@ " {'name': 'verbs',\n", " 'groups': [{'answer': 'abandoned',\n", " 'hint': 'synonyms for abandoned',\n", - " 'clues': [('desolate',\n", + " 'clues': [('abandon', 'forsake, leave behind'),\n", + " ('empty', 'leave behind empty; move out of'),\n", + " ('desert',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", " ('give up', 'stop maintaining or insisting on; of ideas or claims'),\n", " ('vacate', 'leave behind empty; move out of'),\n", - " ('empty', 'leave behind empty; move out of'),\n", - " ('abandon', 'forsake, leave behind'),\n", " ('forsake',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", - " ('desert',\n", + " ('desolate',\n", " 'leave someone who needs or counts on you; leave in the lurch')]},\n", " {'answer': 'abbreviated',\n", " 'hint': 'synonyms for abbreviated',\n", - " 'clues': [('cut', 'reduce in scope while retaining essential elements'),\n", - " ('shorten', 'reduce in scope while retaining essential elements'),\n", + " 'clues': [('abridge',\n", + " 'reduce in scope while retaining essential elements'),\n", " ('reduce', 'reduce in scope while retaining essential elements'),\n", - " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", - " ('contract', 'reduce in scope while retaining essential elements'),\n", " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", - " ('abridge', 'reduce in scope while retaining essential elements')]},\n", + " ('shorten', 'reduce in scope while retaining essential elements'),\n", + " ('contract', 'reduce in scope while retaining essential elements'),\n", + " ('cut', 'reduce in scope while retaining essential elements'),\n", + " ('foreshorten', 'reduce in scope while retaining essential elements')]},\n", " {'answer': 'abducting',\n", " 'hint': 'synonyms for abducting',\n", - " 'clues': [('kidnap',\n", - " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n", - " ('abduct',\n", + " 'clues': [('abduct',\n", " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n", " ('snatch',\n", " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n", " ('nobble',\n", + " 'take away to an undisclosed location against their will and usually in order to extract a ransom'),\n", + " ('kidnap',\n", " 'take away to an undisclosed location against their will and usually in order to extract a ransom')]},\n", " {'answer': 'abiding',\n", " 'hint': 'synonyms for abiding',\n", - " 'clues': [('stand', 'put up with something or somebody unpleasant'),\n", - " ('abide', 'dwell'),\n", - " ('bear', 'put up with something or somebody unpleasant'),\n", - " ('stick out', 'put up with something or somebody unpleasant'),\n", - " ('suffer', 'put up with something or somebody unpleasant'),\n", - " ('put up', 'put up with something or somebody unpleasant'),\n", - " ('tolerate', 'put up with something or somebody unpleasant'),\n", + " 'clues': [('tolerate', 'put up with something or somebody unpleasant'),\n", " ('endure', 'put up with something or somebody unpleasant'),\n", - " ('digest', 'put up with something or somebody unpleasant'),\n", + " ('bide', 'dwell'),\n", + " ('stand', 'put up with something or somebody unpleasant'),\n", " ('stay', 'dwell'),\n", + " ('put up', 'put up with something or somebody unpleasant'),\n", " ('support', 'put up with something or somebody unpleasant'),\n", + " ('digest', 'put up with something or somebody unpleasant'),\n", + " ('stick out', 'put up with something or somebody unpleasant'),\n", + " ('brook', 'put up with something or somebody unpleasant'),\n", + " ('bear', 'put up with something or somebody unpleasant'),\n", " ('stomach', 'put up with something or somebody unpleasant'),\n", - " ('brook', 'put up with something or somebody unpleasant')]},\n", + " ('suffer', 'put up with something or somebody unpleasant')]},\n", " {'answer': 'abridged',\n", " 'hint': 'synonyms for abridged',\n", - " 'clues': [('cut', 'reduce in scope while retaining essential elements'),\n", - " ('abridge', 'lessen, diminish, or curtail'),\n", - " ('shorten', 'reduce in scope while retaining essential elements'),\n", + " 'clues': [('abridge',\n", + " 'reduce in scope while retaining essential elements'),\n", " ('reduce', 'reduce in scope while retaining essential elements'),\n", - " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", + " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", + " ('shorten', 'reduce in scope while retaining essential elements'),\n", " ('contract', 'reduce in scope while retaining essential elements'),\n", - " ('abbreviate', 'reduce in scope while retaining essential elements')]},\n", + " ('cut', 'reduce in scope while retaining essential elements'),\n", + " ('foreshorten', 'reduce in scope while retaining essential elements')]},\n", " {'answer': 'absolved',\n", " 'hint': 'synonyms for absolved',\n", " 'clues': [('absolve', 'grant remission of a sin to'),\n", - " ('shrive', 'grant remission of a sin to'),\n", + " ('justify', 'let off the hook'),\n", " ('free', 'let off the hook'),\n", - " ('justify', 'let off the hook')]},\n", + " ('shrive', 'grant remission of a sin to')]},\n", " {'answer': 'absorbed',\n", " 'hint': 'synonyms for absorbed',\n", - " 'clues': [('absorb', \"consume all of one's attention or time\"),\n", + " 'clues': [('absorb', 'become imbued'),\n", + " ('steep', 'devote (oneself) fully to'),\n", + " ('immerse', 'devote (oneself) fully to'),\n", " ('soak up', 'take in, also metaphorically'),\n", - " ('engulf', 'devote (oneself) fully to'),\n", + " ('plunge', 'devote (oneself) fully to'),\n", + " ('engage', \"consume all of one's attention or time\"),\n", + " ('draw', 'take in, also metaphorically'),\n", + " ('engross', \"consume all of one's attention or time\"),\n", + " ('take in', 'suck or take up or in'),\n", " ('take up', 'take in, also metaphorically'),\n", - " ('imbibe', 'take in, also metaphorically'),\n", + " ('assimilate', 'take up mentally'),\n", + " ('sop up', 'take in, also metaphorically'),\n", " ('suck', 'take in, also metaphorically'),\n", - " ('engross', \"consume all of one's attention or time\"),\n", - " ('immerse', 'devote (oneself) fully to'),\n", " ('take over', 'take up, as of debts or payments'),\n", + " ('engulf', 'devote (oneself) fully to'),\n", + " ('imbibe', 'take in, also metaphorically'),\n", " ('ingest', 'take up mentally'),\n", - " ('steep', 'devote (oneself) fully to'),\n", - " ('take in', 'suck or take up or in'),\n", - " ('engage', \"consume all of one's attention or time\"),\n", - " ('plunge', 'devote (oneself) fully to'),\n", - " ('sop up', 'take in, also metaphorically'),\n", - " ('assimilate', 'take up mentally'),\n", - " ('occupy', \"consume all of one's attention or time\"),\n", - " ('draw', 'take in, also metaphorically'),\n", - " ('suck up', 'take in, also metaphorically')]},\n", + " ('suck up', 'take in, also metaphorically'),\n", + " ('occupy', \"consume all of one's attention or time\")]},\n", " {'answer': 'absorbing',\n", " 'hint': 'synonyms for absorbing',\n", - " 'clues': [('absorb', \"consume all of one's attention or time\"),\n", + " 'clues': [('absorb', 'become imbued'),\n", + " ('steep', 'devote (oneself) fully to'),\n", + " ('immerse', 'devote (oneself) fully to'),\n", " ('soak up', 'take in, also metaphorically'),\n", - " ('engulf', 'devote (oneself) fully to'),\n", + " ('plunge', 'devote (oneself) fully to'),\n", + " ('engage', \"consume all of one's attention or time\"),\n", + " ('draw', 'take in, also metaphorically'),\n", + " ('engross', \"consume all of one's attention or time\"),\n", + " ('take in', 'suck or take up or in'),\n", " ('take up', 'take in, also metaphorically'),\n", - " ('imbibe', 'take in, also metaphorically'),\n", + " ('assimilate', 'take up mentally'),\n", + " ('sop up', 'take in, also metaphorically'),\n", " ('suck', 'take in, also metaphorically'),\n", - " ('engross', \"consume all of one's attention or time\"),\n", - " ('immerse', 'devote (oneself) fully to'),\n", " ('take over', 'take up, as of debts or payments'),\n", + " ('engulf', 'devote (oneself) fully to'),\n", + " ('imbibe', 'take in, also metaphorically'),\n", " ('ingest', 'take up mentally'),\n", - " ('steep', 'devote (oneself) fully to'),\n", - " ('take in', 'suck or take up or in'),\n", - " ('engage', \"consume all of one's attention or time\"),\n", - " ('plunge', 'devote (oneself) fully to'),\n", - " ('sop up', 'take in, also metaphorically'),\n", - " ('assimilate', 'take up mentally'),\n", - " ('occupy', \"consume all of one's attention or time\"),\n", - " ('draw', 'take in, also metaphorically'),\n", - " ('suck up', 'take in, also metaphorically')]},\n", + " ('suck up', 'take in, also metaphorically'),\n", + " ('occupy', \"consume all of one's attention or time\")]},\n", " {'answer': 'abstract',\n", " 'hint': 'synonyms for abstract',\n", - " 'clues': [('pilfer', 'make off with belongings of others'),\n", + " 'clues': [('filch', 'make off with belongings of others'),\n", + " ('cabbage', 'make off with belongings of others'),\n", + " ('lift', 'make off with belongings of others'),\n", + " ('nobble', 'make off with belongings of others'),\n", + " ('hook', 'make off with belongings of others'),\n", + " ('snarf', 'make off with belongings of others'),\n", " ('sneak', 'make off with belongings of others'),\n", - " ('filch', 'make off with belongings of others'),\n", + " ('pilfer', 'make off with belongings of others'),\n", " ('purloin', 'make off with belongings of others'),\n", " ('swipe', 'make off with belongings of others'),\n", - " ('pinch', 'make off with belongings of others'),\n", - " ('hook', 'make off with belongings of others'),\n", - " ('lift', 'make off with belongings of others'),\n", - " ('nobble', 'make off with belongings of others'),\n", - " ('cabbage', 'make off with belongings of others'),\n", - " ('snarf', 'make off with belongings of others')]},\n", + " ('pinch', 'make off with belongings of others')]},\n", " {'answer': 'abstracted',\n", " 'hint': 'synonyms for abstracted',\n", - " 'clues': [('pilfer', 'make off with belongings of others'),\n", - " ('sneak', 'make off with belongings of others'),\n", + " 'clues': [('abstract',\n", + " 'consider apart from a particular case or instance'),\n", " ('filch', 'make off with belongings of others'),\n", - " ('purloin', 'make off with belongings of others'),\n", - " ('swipe', 'make off with belongings of others'),\n", - " ('pinch', 'make off with belongings of others'),\n", - " ('abstract', 'give an abstract (of)'),\n", - " ('hook', 'make off with belongings of others'),\n", + " ('cabbage', 'make off with belongings of others'),\n", " ('lift', 'make off with belongings of others'),\n", + " ('hook', 'make off with belongings of others'),\n", " ('nobble', 'make off with belongings of others'),\n", - " ('cabbage', 'make off with belongings of others'),\n", - " ('snarf', 'make off with belongings of others')]},\n", + " ('snarf', 'make off with belongings of others'),\n", + " ('sneak', 'make off with belongings of others'),\n", + " ('pilfer', 'make off with belongings of others'),\n", + " ('purloin', 'make off with belongings of others'),\n", + " ('swipe', 'make off with belongings of others'),\n", + " ('pinch', 'make off with belongings of others')]},\n", " {'answer': 'abused',\n", " 'hint': 'synonyms for abused',\n", - " 'clues': [('clapperclaw', 'use foul or abusive language towards'),\n", + " 'clues': [('abuse',\n", + " 'change the inherent purpose or function of something'),\n", + " ('mistreat', 'treat badly'),\n", + " ('pervert', 'change the inherent purpose or function of something'),\n", + " ('ill-treat', 'treat badly'),\n", + " ('ill-use', 'treat badly'),\n", " ('step', 'treat badly'),\n", - " ('abuse', 'treat badly'),\n", " ('shout', 'use foul or abusive language towards'),\n", - " ('maltreat', 'treat badly'),\n", - " ('misuse', 'change the inherent purpose or function of something'),\n", - " ('ill-use', 'treat badly'),\n", - " ('mistreat', 'treat badly'),\n", " ('blackguard', 'use foul or abusive language towards'),\n", - " ('ill-treat', 'treat badly'),\n", - " ('pervert', 'change the inherent purpose or function of something')]},\n", + " ('misuse', 'change the inherent purpose or function of something'),\n", + " ('clapperclaw', 'use foul or abusive language towards'),\n", + " ('maltreat', 'treat badly')]},\n", " {'answer': 'accelerated',\n", " 'hint': 'synonyms for accelerated',\n", - " 'clues': [('speed up', 'move faster'),\n", - " ('accelerate', 'cause to move faster'),\n", - " ('quicken', 'move faster'),\n", - " ('speed', 'cause to move faster')]},\n", + " 'clues': [('accelerate', 'cause to move faster'),\n", + " ('speed up', 'move faster'),\n", + " ('speed', 'cause to move faster'),\n", + " ('quicken', 'move faster')]},\n", " {'answer': 'accented',\n", " 'hint': 'synonyms for accented',\n", - " 'clues': [('emphasize', 'to stress, single out as important'),\n", - " ('accent', 'put stress on; utter with an accent'),\n", - " ('punctuate', 'to stress, single out as important'),\n", - " ('stress', 'put stress on; utter with an accent'),\n", - " ('accentuate', 'to stress, single out as important')]},\n", + " 'clues': [('accent', 'to stress, single out as important'),\n", + " ('emphasize', 'to stress, single out as important'),\n", + " ('stress', 'to stress, single out as important'),\n", + " ('accentuate', 'put stress on; utter with an accent'),\n", + " ('punctuate', 'to stress, single out as important')]},\n", " {'answer': 'accepted',\n", " 'hint': 'synonyms for accepted',\n", - " 'clues': [('accept', 'receive (a report) officially, as from a committee'),\n", - " ('take', 'be designed to hold or take'),\n", - " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " 'clues': [('accept', 'receive willingly something given or offered'),\n", " ('consent', 'give an affirmative reply to; respond favorably to'),\n", + " ('have', 'receive willingly something given or offered'),\n", + " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " ('live with', 'tolerate or accommodate oneself to'),\n", + " ('take', 'be designed to hold or take'),\n", " ('take on', 'admit into a group or community'),\n", + " ('swallow', 'tolerate or accommodate oneself to'),\n", + " ('go for', 'give an affirmative reply to; respond favorably to'),\n", " ('take over',\n", " \"take on as one's own the expenses or debts of another person\"),\n", - " ('swallow', 'tolerate or accommodate oneself to'),\n", " ('admit', 'admit into a group or community'),\n", - " ('go for', 'give an affirmative reply to; respond favorably to'),\n", " ('assume',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", - " ('live with', 'tolerate or accommodate oneself to'),\n", - " ('have', 'receive willingly something given or offered')]},\n", + " \"take on as one's own the expenses or debts of another person\")]},\n", " {'answer': 'accepting',\n", " 'hint': 'synonyms for accepting',\n", - " 'clues': [('accept', 'receive (a report) officially, as from a committee'),\n", - " ('take', 'be designed to hold or take'),\n", - " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " 'clues': [('accept', 'receive willingly something given or offered'),\n", " ('consent', 'give an affirmative reply to; respond favorably to'),\n", + " ('have', 'receive willingly something given or offered'),\n", + " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " ('live with', 'tolerate or accommodate oneself to'),\n", + " ('take', 'be designed to hold or take'),\n", " ('take on', 'admit into a group or community'),\n", + " ('swallow', 'tolerate or accommodate oneself to'),\n", + " ('go for', 'give an affirmative reply to; respond favorably to'),\n", " ('take over',\n", " \"take on as one's own the expenses or debts of another person\"),\n", - " ('swallow', 'tolerate or accommodate oneself to'),\n", " ('admit', 'admit into a group or community'),\n", - " ('go for', 'give an affirmative reply to; respond favorably to'),\n", " ('assume',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", - " ('live with', 'tolerate or accommodate oneself to'),\n", - " ('have', 'receive willingly something given or offered')]},\n", + " \"take on as one's own the expenses or debts of another person\")]},\n", " {'answer': 'accommodating',\n", " 'hint': 'synonyms for accommodating',\n", - " 'clues': [('oblige', 'provide a service or favor for someone'),\n", + " 'clues': [('accommodate', 'provide housing for'),\n", + " ('suit', 'be agreeable or acceptable to'),\n", + " ('fit', 'be agreeable or acceptable to'),\n", " ('reconcile', 'make (one thing) compatible with (another)'),\n", - " ('accommodate', 'be agreeable or acceptable to'),\n", - " ('hold', 'have room for; hold without crowding'),\n", " ('adapt', 'make fit for, or change to suit a new purpose'),\n", - " ('fit', 'be agreeable or acceptable to'),\n", - " ('conciliate', 'make (one thing) compatible with (another)'),\n", " ('lodge', 'provide housing for'),\n", + " ('conciliate', 'make (one thing) compatible with (another)'),\n", " ('admit', 'have room for; hold without crowding'),\n", - " ('suit', 'be agreeable or acceptable to')]},\n", + " ('oblige', 'provide a service or favor for someone'),\n", + " ('hold', 'have room for; hold without crowding')]},\n", " {'answer': 'accompanied',\n", " 'hint': 'synonyms for accompanied',\n", - " 'clues': [('accompany',\n", + " 'clues': [('attach to',\n", " 'be present or associated with an event or entity'),\n", + " ('companion', 'be a companion to somebody'),\n", " ('keep company', 'be a companion to somebody'),\n", - " ('come with', 'be present or associated with an event or entity'),\n", - " ('attach to', 'be present or associated with an event or entity'),\n", - " ('go with', 'be present or associated with an event or entity'),\n", + " ('accompany', 'go or travel along with'),\n", " ('follow', 'perform an accompaniment to'),\n", - " ('companion', 'be a companion to somebody'),\n", - " ('play along', 'perform an accompaniment to')]},\n", + " ('play along', 'perform an accompaniment to'),\n", + " ('come with', 'be present or associated with an event or entity'),\n", + " ('go with', 'be present or associated with an event or entity')]},\n", " {'answer': 'accompanying',\n", " 'hint': 'synonyms for accompanying',\n", - " 'clues': [('accompany',\n", + " 'clues': [('attach to',\n", " 'be present or associated with an event or entity'),\n", + " ('companion', 'be a companion to somebody'),\n", " ('keep company', 'be a companion to somebody'),\n", - " ('come with', 'be present or associated with an event or entity'),\n", - " ('attach to', 'be present or associated with an event or entity'),\n", - " ('go with', 'be present or associated with an event or entity'),\n", + " ('accompany', 'go or travel along with'),\n", " ('follow', 'perform an accompaniment to'),\n", - " ('companion', 'be a companion to somebody'),\n", - " ('play along', 'perform an accompaniment to')]},\n", + " ('play along', 'perform an accompaniment to'),\n", + " ('come with', 'be present or associated with an event or entity'),\n", + " ('go with', 'be present or associated with an event or entity')]},\n", " {'answer': 'accomplished',\n", " 'hint': 'synonyms for accomplished',\n", - " 'clues': [('fulfil', 'put in effect'),\n", + " 'clues': [('carry out', 'put in effect'),\n", + " ('action', 'put in effect'),\n", + " ('accomplish', 'put in effect'),\n", + " ('fulfil', 'put in effect'),\n", " ('achieve', 'to gain with effort'),\n", " ('execute', 'put in effect'),\n", - " ('carry through', 'put in effect'),\n", " ('attain', 'to gain with effort'),\n", " ('reach', 'to gain with effort'),\n", - " ('accomplish', 'put in effect'),\n", - " ('action', 'put in effect'),\n", - " ('carry out', 'put in effect')]},\n", + " ('carry through', 'put in effect')]},\n", " {'answer': 'according',\n", " 'hint': 'synonyms for according',\n", - " 'clues': [('agree', 'go together'),\n", - " ('fit in', 'go together'),\n", + " 'clues': [('accord', 'go together'),\n", " ('concord', 'go together'),\n", - " ('grant', 'allow to have'),\n", - " ('accord', 'go together'),\n", + " ('allot', 'allow to have'),\n", + " ('harmonize', 'go together'),\n", " ('consort', 'go together'),\n", - " ('harmonise', 'go together'),\n", - " ('allot', 'allow to have')]},\n", + " ('fit in', 'go together'),\n", + " ('grant', 'allow to have'),\n", + " ('agree', 'go together')]},\n", " {'answer': 'accumulated',\n", " 'hint': 'synonyms for accumulated',\n", - " 'clues': [('accumulate', 'get or gather together'),\n", - " ('collect', 'get or gather together'),\n", - " ('amass', 'get or gather together'),\n", - " ('hoard', 'get or gather together'),\n", - " ('pile up', 'collect or gather'),\n", + " 'clues': [('pile up', 'collect or gather'),\n", " ('conglomerate', 'collect or gather'),\n", - " ('compile', 'get or gather together'),\n", + " ('amass', 'collect or gather'),\n", " ('roll up', 'get or gather together'),\n", - " ('gather', 'collect or gather')]},\n", + " ('gather', 'collect or gather'),\n", + " ('cumulate', 'collect or gather'),\n", + " ('compile', 'get or gather together'),\n", + " ('collect', 'get or gather together'),\n", + " ('hoard', 'get or gather together')]},\n", " {'answer': 'accursed',\n", " 'hint': 'synonyms for accursed',\n", - " 'clues': [('anathemize',\n", + " 'clues': [('execrate',\n", " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n", " ('anathematise',\n", " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n", " ('comminate',\n", " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n", - " ('accurse',\n", + " ('anathemize',\n", " 'curse or declare to be evil or anathema or threaten with divine punishment'),\n", - " ('execrate',\n", + " ('accurse',\n", " 'curse or declare to be evil or anathema or threaten with divine punishment')]},\n", " {'answer': 'accusing',\n", " 'hint': 'synonyms for accusing',\n", - " 'clues': [('incriminate',\n", - " 'bring an accusation against; level a charge against'),\n", - " ('accuse', 'bring an accusation against; level a charge against'),\n", + " 'clues': [('accuse',\n", + " 'blame for, make a claim of wrongdoing or misbehavior against'),\n", " ('impeach', 'bring an accusation against; level a charge against'),\n", + " ('incriminate', 'bring an accusation against; level a charge against'),\n", " ('charge',\n", " 'blame for, make a claim of wrongdoing or misbehavior against')]},\n", " {'answer': 'ace',\n", " 'hint': 'synonyms for ace',\n", " 'clues': [('nail', 'succeed at easily'),\n", - " ('sail through', 'succeed at easily'),\n", - " ('breeze through', 'succeed at easily'),\n", + " ('sweep through', 'succeed at easily'),\n", " ('pass with flying colors', 'succeed at easily'),\n", - " ('sweep through', 'succeed at easily')]},\n", + " ('breeze through', 'succeed at easily'),\n", + " ('sail through', 'succeed at easily')]},\n", " {'answer': 'aching',\n", " 'hint': 'synonyms for aching',\n", - " 'clues': [('ache', 'be the source of pain'),\n", - " ('hurt', 'feel physical pain'),\n", + " 'clues': [('yen',\n", + " 'have a desire for something or someone who is not present'),\n", + " ('ache', 'feel physical pain'),\n", + " ('smart', 'be the source of pain'),\n", " ('pine', 'have a desire for something or someone who is not present'),\n", - " ('languish', 'have a desire for something or someone who is not present'),\n", " ('suffer', 'feel physical pain'),\n", - " ('smart', 'be the source of pain'),\n", " ('yearn', 'have a desire for something or someone who is not present'),\n", - " ('yen', 'have a desire for something or someone who is not present')]},\n", + " ('hurt', 'feel physical pain'),\n", + " ('languish',\n", + " 'have a desire for something or someone who is not present')]},\n", " {'answer': 'acknowledged',\n", " 'hint': 'synonyms for acknowledged',\n", - " 'clues': [('recognise', 'express obligation, thanks, or gratitude for'),\n", - " ('acknowledge', 'report the receipt of'),\n", + " 'clues': [('acknowledge', 'express obligation, thanks, or gratitude for'),\n", " ('receipt', 'report the receipt of'),\n", - " ('admit',\n", - " 'declare to be true or admit the existence or reality or truth of'),\n", " ('know',\n", " 'accept (someone) to be what is claimed or accept his power and authority'),\n", + " ('recognise',\n", + " 'accept (someone) to be what is claimed or accept his power and authority'),\n", + " ('admit',\n", + " 'declare to be true or admit the existence or reality or truth of'),\n", " ('notice',\n", " 'express recognition of the presence or existence of, or acquaintance with')]},\n", " {'answer': 'acquainted',\n", " 'hint': 'synonyms for acquainted',\n", - " 'clues': [('acquaint', 'inform'),\n", + " 'clues': [('familiarize', 'make familiar or conversant with'),\n", + " ('present', 'cause to come to know personally'),\n", " ('introduce', 'cause to come to know personally'),\n", - " ('familiarize', 'make familiar or conversant with'),\n", - " ('present', 'cause to come to know personally')]},\n", + " ('acquaint', 'inform')]},\n", " {'answer': 'acquired',\n", " 'hint': 'synonyms for acquired',\n", - " 'clues': [('assume', 'take on a certain form, attribute, or aspect'),\n", - " ('produce',\n", + " 'clues': [('grow',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('evolve', 'gain through experience'),\n", - " ('larn', 'gain knowledge or skills'),\n", " ('acquire',\n", - " 'locate (a moving entity) by means of a tracking system such as radar'),\n", - " ('win', \"win something through one's efforts\"),\n", - " ('grow',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('take', 'take on a certain form, attribute, or aspect'),\n", - " ('develop', 'gain through experience'),\n", + " ('take on', 'take on a certain form, attribute, or aspect'),\n", + " ('assume', 'take on a certain form, attribute, or aspect'),\n", " ('gain', \"win something through one's efforts\"),\n", + " ('take', 'take on a certain form, attribute, or aspect'),\n", + " ('adopt', 'take on a certain form, attribute, or aspect'),\n", + " ('larn', 'gain knowledge or skills'),\n", + " ('develop',\n", + " 'come to have or undergo a change of (physical features and attributes)'),\n", " ('get',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('adopt', 'take on a certain form, attribute, or aspect'),\n", - " ('take on', 'take on a certain form, attribute, or aspect')]},\n", + " ('evolve', 'gain through experience'),\n", + " ('win', \"win something through one's efforts\"),\n", + " ('produce',\n", + " 'come to have or undergo a change of (physical features and attributes)')]},\n", " {'answer': 'acquitted',\n", " 'hint': 'synonyms for acquitted',\n", - " 'clues': [('acquit', 'pronounce not guilty of criminal charges'),\n", - " ('behave', 'behave in a certain manner'),\n", + " 'clues': [('deport', 'behave in a certain manner'),\n", + " ('assoil', 'pronounce not guilty of criminal charges'),\n", + " ('exonerate', 'pronounce not guilty of criminal charges'),\n", + " ('clear', 'pronounce not guilty of criminal charges'),\n", + " ('acquit', 'behave in a certain manner'),\n", " ('discharge', 'pronounce not guilty of criminal charges'),\n", " ('carry', 'behave in a certain manner'),\n", + " ('behave', 'behave in a certain manner'),\n", " ('comport', 'behave in a certain manner'),\n", - " ('exonerate', 'pronounce not guilty of criminal charges'),\n", - " ('assoil', 'pronounce not guilty of criminal charges'),\n", " ('exculpate', 'pronounce not guilty of criminal charges'),\n", - " ('clear', 'pronounce not guilty of criminal charges'),\n", - " ('deport', 'behave in a certain manner'),\n", " ('conduct', 'behave in a certain manner'),\n", " ('bear', 'behave in a certain manner')]},\n", " {'answer': 'acting',\n", " 'hint': 'synonyms for acting',\n", - " 'clues': [('represent', 'play a role or part'),\n", - " ('act', 'have an effect or outcome; often the one desired or expected'),\n", - " ('play', 'play a role or part'),\n", - " ('pretend', 'behave unnaturally or affectedly'),\n", - " ('behave',\n", + " 'clues': [('do',\n", " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n", - " ('work', 'have an effect or outcome; often the one desired or expected'),\n", - " ('playact', 'perform on a stage or theater'),\n", + " ('act as', 'pretend to have certain qualities or state of mind'),\n", + " ('play', 'perform on a stage or theater'),\n", " ('move', 'perform an action, or work out or perform (an action)'),\n", - " ('roleplay', 'perform on a stage or theater'),\n", + " ('act', \"discharge one's duties\"),\n", " ('dissemble', 'behave unnaturally or affectedly'),\n", - " ('do',\n", + " ('pretend', 'behave unnaturally or affectedly'),\n", + " ('represent', 'play a role or part'),\n", + " ('work', 'have an effect or outcome; often the one desired or expected'),\n", + " ('behave',\n", " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n", - " ('act as', 'pretend to have certain qualities or state of mind')]},\n", + " ('roleplay', 'perform on a stage or theater'),\n", + " ('playact', 'perform on a stage or theater')]},\n", " {'answer': 'activated',\n", " 'hint': 'synonyms for activated',\n", - " 'clues': [('set off', 'put in motion or move to act'),\n", + " 'clues': [('activate', 'make more adsorptive'),\n", " ('spark', 'put in motion or move to act'),\n", - " ('touch off', 'put in motion or move to act'),\n", + " ('trigger off', 'put in motion or move to act'),\n", " ('aerate',\n", " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n", - " ('activate', 'make more adsorptive'),\n", - " ('trip', 'put in motion or move to act'),\n", + " ('set off', 'put in motion or move to act'),\n", " ('spark off', 'put in motion or move to act'),\n", + " ('trip', 'put in motion or move to act'),\n", + " ('trigger', 'put in motion or move to act'),\n", " ('actuate', 'put in motion or move to act'),\n", - " ('trigger off', 'put in motion or move to act'),\n", - " ('trigger', 'put in motion or move to act')]},\n", + " ('touch off', 'put in motion or move to act')]},\n", " {'answer': 'activating',\n", " 'hint': 'synonyms for activating',\n", - " 'clues': [('set off', 'put in motion or move to act'),\n", + " 'clues': [('activate', 'make more adsorptive'),\n", " ('spark', 'put in motion or move to act'),\n", - " ('touch off', 'put in motion or move to act'),\n", + " ('trigger off', 'put in motion or move to act'),\n", " ('aerate',\n", " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n", - " ('activate', 'make more adsorptive'),\n", - " ('trip', 'put in motion or move to act'),\n", + " ('set off', 'put in motion or move to act'),\n", " ('spark off', 'put in motion or move to act'),\n", + " ('trip', 'put in motion or move to act'),\n", + " ('trigger', 'put in motion or move to act'),\n", " ('actuate', 'put in motion or move to act'),\n", - " ('trigger off', 'put in motion or move to act'),\n", - " ('trigger', 'put in motion or move to act')]},\n", + " ('touch off', 'put in motion or move to act')]},\n", " {'answer': 'actuated',\n", " 'hint': 'synonyms for actuated',\n", - " 'clues': [('incite', 'give an incentive for action'),\n", - " ('set off', 'put in motion or move to act'),\n", + " 'clues': [('propel', 'give an incentive for action'),\n", + " ('incite', 'give an incentive for action'),\n", " ('spark', 'put in motion or move to act'),\n", - " ('propel', 'give an incentive for action'),\n", - " ('touch off', 'put in motion or move to act'),\n", - " ('actuate', 'give an incentive for action'),\n", - " ('move', 'give an incentive for action'),\n", - " ('trip', 'put in motion or move to act'),\n", " ('prompt', 'give an incentive for action'),\n", - " ('spark off', 'put in motion or move to act'),\n", " ('motivate', 'give an incentive for action'),\n", - " ('activate', 'put in motion or move to act'),\n", " ('trigger off', 'put in motion or move to act'),\n", - " ('trigger', 'put in motion or move to act')]},\n", + " ('set off', 'put in motion or move to act'),\n", + " ('spark off', 'put in motion or move to act'),\n", + " ('trip', 'put in motion or move to act'),\n", + " ('trigger', 'put in motion or move to act'),\n", + " ('activate', 'put in motion or move to act'),\n", + " ('actuate', 'put in motion or move to act'),\n", + " ('touch off', 'put in motion or move to act'),\n", + " ('move', 'give an incentive for action')]},\n", " {'answer': 'actuating',\n", " 'hint': 'synonyms for actuating',\n", - " 'clues': [('incite', 'give an incentive for action'),\n", - " ('set off', 'put in motion or move to act'),\n", + " 'clues': [('propel', 'give an incentive for action'),\n", + " ('incite', 'give an incentive for action'),\n", " ('spark', 'put in motion or move to act'),\n", - " ('propel', 'give an incentive for action'),\n", - " ('touch off', 'put in motion or move to act'),\n", - " ('actuate', 'give an incentive for action'),\n", - " ('move', 'give an incentive for action'),\n", - " ('trip', 'put in motion or move to act'),\n", " ('prompt', 'give an incentive for action'),\n", - " ('spark off', 'put in motion or move to act'),\n", " ('motivate', 'give an incentive for action'),\n", - " ('activate', 'put in motion or move to act'),\n", " ('trigger off', 'put in motion or move to act'),\n", - " ('trigger', 'put in motion or move to act')]},\n", + " ('set off', 'put in motion or move to act'),\n", + " ('spark off', 'put in motion or move to act'),\n", + " ('trip', 'put in motion or move to act'),\n", + " ('trigger', 'put in motion or move to act'),\n", + " ('activate', 'put in motion or move to act'),\n", + " ('actuate', 'put in motion or move to act'),\n", + " ('touch off', 'put in motion or move to act'),\n", + " ('move', 'give an incentive for action')]},\n", " {'answer': 'adapted',\n", " 'hint': 'synonyms for adapted',\n", - " 'clues': [('conform',\n", + " 'clues': [('adjust',\n", " 'adapt or conform oneself to new or different conditions'),\n", - " ('adjust', 'adapt or conform oneself to new or different conditions'),\n", " ('adapt', 'adapt or conform oneself to new or different conditions'),\n", + " ('conform', 'adapt or conform oneself to new or different conditions'),\n", " ('accommodate', 'make fit for, or change to suit a new purpose')]},\n", " {'answer': 'addressed',\n", " 'hint': 'synonyms for addressed',\n", - " 'clues': [('address', 'put an address on (an envelope)'),\n", - " ('accost', 'speak to someone'),\n", - " ('plow', 'act on verbally or in some form of artistic expression'),\n", - " ('handle', 'act on verbally or in some form of artistic expression'),\n", - " ('call', 'greet, as with a prescribed form, title, or name'),\n", - " ('treat', 'act on verbally or in some form of artistic expression'),\n", - " ('turn to', 'speak to'),\n", + " 'clues': [('speak', 'give a speech to'),\n", + " ('address', 'greet, as with a prescribed form, title, or name'),\n", " ('come up to', 'speak to someone'),\n", - " ('direct', 'put an address on (an envelope)'),\n", " ('cover', 'act on verbally or in some form of artistic expression'),\n", + " ('call', 'greet, as with a prescribed form, title, or name'),\n", + " ('plow', 'act on verbally or in some form of artistic expression'),\n", " ('deal', 'act on verbally or in some form of artistic expression'),\n", - " ('speak', 'give a speech to')]},\n", + " ('treat', 'act on verbally or in some form of artistic expression'),\n", + " ('accost', 'speak to someone'),\n", + " ('turn to', 'speak to'),\n", + " ('handle', 'act on verbally or in some form of artistic expression'),\n", + " ('direct', 'put an address on (an envelope)')]},\n", " {'answer': 'adjusted',\n", " 'hint': 'synonyms for adjusted',\n", - " 'clues': [('line up',\n", + " 'clues': [('adjust',\n", + " 'adapt or conform oneself to new or different conditions'),\n", + " ('conform', 'adapt or conform oneself to new or different conditions'),\n", + " ('line up',\n", " 'place in a line or arrange so as to be parallel or straight'),\n", - " ('adjust', 'adapt or conform oneself to new or different conditions'),\n", " ('correct',\n", " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", + " ('align', 'place in a line or arrange so as to be parallel or straight'),\n", + " ('aline', 'place in a line or arrange so as to be parallel or straight'),\n", " ('adapt', 'adapt or conform oneself to new or different conditions'),\n", " ('set',\n", - " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", - " ('align', 'place in a line or arrange so as to be parallel or straight'),\n", - " ('conform', 'adapt or conform oneself to new or different conditions'),\n", - " ('aline',\n", - " 'place in a line or arrange so as to be parallel or straight')]},\n", + " 'alter or regulate so as to achieve accuracy or conform to a standard')]},\n", " {'answer': 'admonishing',\n", " 'hint': 'synonyms for admonishing',\n", - " 'clues': [('caution', 'warn strongly; put on guard'),\n", - " ('monish', \"admonish or counsel in terms of someone's behavior\"),\n", - " ('warn', \"admonish or counsel in terms of someone's behavior\"),\n", + " 'clues': [('reprove', 'take to task'),\n", " ('discourage', \"admonish or counsel in terms of someone's behavior\"),\n", - " ('reprove', 'take to task')]},\n", + " ('caution', 'warn strongly; put on guard'),\n", + " ('admonish', 'warn strongly; put on guard'),\n", + " ('warn', \"admonish or counsel in terms of someone's behavior\")]},\n", " {'answer': 'adopted',\n", " 'hint': 'synonyms for adopted',\n", - " 'clues': [('adopt', \"take up and practice as one's own\"),\n", - " ('assume', 'take on a certain form, attribute, or aspect'),\n", - " ('take on', 'take on titles, offices, duties, responsibilities'),\n", - " ('sweep up',\n", + " 'clues': [('adopt',\n", " \"take up the cause, ideology, practice, method, of someone and use it as one's own\"),\n", " ('espouse',\n", " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n", - " ('dramatise', 'put into dramatic form'),\n", + " ('take on', 'take on a certain form, attribute, or aspect'),\n", + " ('acquire', 'take on a certain form, attribute, or aspect'),\n", + " ('assume', 'take on a certain form, attribute, or aspect'),\n", + " ('sweep up',\n", + " \"take up the cause, ideology, practice, method, of someone and use it as one's own\"),\n", + " ('take over', 'take on titles, offices, duties, responsibilities'),\n", + " ('take', 'take on a certain form, attribute, or aspect'),\n", + " ('dramatize', 'put into dramatic form'),\n", " ('borrow', \"take up and practice as one's own\"),\n", " ('take up', \"take up and practice as one's own\"),\n", " ('embrace',\n", " \"take up the cause, ideology, practice, method, of someone and use it as one's own\"),\n", - " ('take', 'take on a certain form, attribute, or aspect'),\n", - " ('take over', 'take on titles, offices, duties, responsibilities'),\n", - " ('acquire', 'take on a certain form, attribute, or aspect'),\n", " ('follow',\n", " 'choose and follow; as of theories, ideas, policies, strategies or plans')]},\n", " {'answer': 'adorned',\n", " 'hint': 'synonyms for adorned',\n", - " 'clues': [('adorn',\n", - " 'make more attractive by adding ornament, colour, etc.'),\n", + " 'clues': [('decorate', 'be beautiful to look at'),\n", + " ('clothe', 'furnish with power or authority; of kings or emperors'),\n", + " ('adorn', 'make more attractive by adding ornament, colour, etc.'),\n", + " ('ornament', 'make more attractive by adding ornament, colour, etc.'),\n", " ('beautify', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('grace', 'be beautiful to look at'),\n", " ('embellish', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('ornament', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('invest', 'furnish with power or authority; of kings or emperors'),\n", + " ('grace', 'make more attractive by adding ornament, colour, etc.'),\n", " ('deck', 'be beautiful to look at'),\n", - " ('decorate', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('clothe', 'furnish with power or authority; of kings or emperors')]},\n", + " ('invest', 'furnish with power or authority; of kings or emperors')]},\n", " {'answer': 'adulterate',\n", " 'hint': 'synonyms for adulterate',\n", - " 'clues': [('dilute',\n", + " 'clues': [('stretch',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('stretch',\n", + " ('dilute',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", " ('load',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", @@ -6994,7081 +7025,7064 @@ " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n", " {'answer': 'adulterated',\n", " 'hint': 'synonyms for adulterated',\n", - " 'clues': [('stretch',\n", + " 'clues': [('adulterate',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('dilute',\n", + " ('load',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('adulterate',\n", + " ('stretch',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('load',\n", + " ('dilute',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", " ('debase',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n", " {'answer': 'adulterating',\n", " 'hint': 'synonyms for adulterating',\n", - " 'clues': [('stretch',\n", + " 'clues': [('adulterate',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('dilute',\n", + " ('load',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('adulterate',\n", + " ('stretch',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('load',\n", + " ('dilute',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", " ('debase',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n", " {'answer': 'advance',\n", " 'hint': 'synonyms for advance',\n", - " 'clues': [('gain ground', 'obtain advantages, such as points, etc.'),\n", - " ('pull ahead', 'obtain advantages, such as points, etc.'),\n", - " ('go on', 'move forward, also in the metaphorical sense'),\n", - " ('throw out', 'bring forward for consideration or acceptance'),\n", - " ('get ahead', 'obtain advantages, such as points, etc.'),\n", + " 'clues': [('get ahead', 'obtain advantages, such as points, etc.'),\n", + " ('progress', 'develop in a positive way'),\n", + " ('gain', 'rise in rate or price'),\n", + " ('supercharge', 'increase or raise'),\n", + " ('get along', 'develop in a positive way'),\n", + " ('elevate', 'give a promotion to or assign to a higher position'),\n", " ('come on', 'develop in a positive way'),\n", - " ('shape up', 'develop in a positive way'),\n", - " ('make headway', 'obtain advantages, such as points, etc.'),\n", + " ('encourage', 'contribute to the progress or growth of'),\n", + " ('promote', 'contribute to the progress or growth of'),\n", + " ('pull ahead', 'obtain advantages, such as points, etc.'),\n", " ('come along', 'develop in a positive way'),\n", - " ('supercharge', 'increase or raise'),\n", - " ('boost', 'contribute to the progress or growth of'),\n", + " ('make headway', 'obtain advantages, such as points, etc.'),\n", + " ('gain ground', 'obtain advantages, such as points, etc.'),\n", " ('pass on', 'move forward, also in the metaphorical sense'),\n", - " ('bring forward', 'cause to move forward'),\n", - " ('encourage', 'contribute to the progress or growth of'),\n", - " ('further', 'contribute to the progress or growth of'),\n", " ('move on', 'move forward, also in the metaphorical sense'),\n", - " ('promote', 'give a promotion to or assign to a higher position'),\n", - " ('gain', 'rise in rate or price'),\n", " ('win', 'obtain advantages, such as points, etc.'),\n", - " ('get along', 'develop in a positive way'),\n", - " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n", - " ('march on', 'move forward, also in the metaphorical sense'),\n", + " ('further', 'contribute to the progress or growth of'),\n", + " ('go on', 'move forward, also in the metaphorical sense'),\n", " ('get on', 'develop in a positive way'),\n", - " ('elevate', 'give a promotion to or assign to a higher position'),\n", - " ('progress', 'develop in a positive way'),\n", " ('upgrade', 'give a promotion to or assign to a higher position'),\n", - " ('raise', 'give a promotion to or assign to a higher position')]},\n", + " ('throw out', 'bring forward for consideration or acceptance'),\n", + " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n", + " ('raise', 'give a promotion to or assign to a higher position'),\n", + " ('shape up', 'develop in a positive way'),\n", + " ('march on', 'move forward, also in the metaphorical sense'),\n", + " ('boost', 'contribute to the progress or growth of'),\n", + " ('bring forward', 'cause to move forward')]},\n", " {'answer': 'advanced',\n", " 'hint': 'synonyms for advanced',\n", - " 'clues': [('advance', 'cause to move forward'),\n", - " ('come on', 'develop in a positive way'),\n", - " ('make headway', 'obtain advantages, such as points, etc.'),\n", - " ('supercharge', 'increase or raise'),\n", - " ('boost', 'contribute to the progress or growth of'),\n", - " ('set ahead', 'move forward'),\n", - " ('bring forward', 'cause to move forward'),\n", + " 'clues': [('gain', 'rise in rate or price'),\n", + " ('get along', 'develop in a positive way'),\n", + " ('advance', 'contribute to the progress or growth of'),\n", + " ('promote', 'contribute to the progress or growth of'),\n", + " ('come along', 'develop in a positive way'),\n", " ('move on', 'move forward, also in the metaphorical sense'),\n", - " ('gain', 'rise in rate or price'),\n", - " ('win', 'obtain advantages, such as points, etc.'),\n", + " ('raise', 'give a promotion to or assign to a higher position'),\n", + " ('set ahead', 'move forward'),\n", + " ('get on', 'develop in a positive way'),\n", " ('progress', 'develop in a positive way'),\n", - " ('gain ground', 'obtain advantages, such as points, etc.'),\n", + " ('supercharge', 'increase or raise'),\n", + " ('elevate', 'give a promotion to or assign to a higher position'),\n", + " ('come on', 'develop in a positive way'),\n", + " ('encourage', 'contribute to the progress or growth of'),\n", " ('pull ahead', 'obtain advantages, such as points, etc.'),\n", - " ('go on', 'move forward, also in the metaphorical sense'),\n", - " ('throw out', 'bring forward for consideration or acceptance'),\n", - " ('shape up', 'develop in a positive way'),\n", - " ('come along', 'develop in a positive way'),\n", + " ('make headway', 'obtain advantages, such as points, etc.'),\n", + " ('gain ground', 'obtain advantages, such as points, etc.'),\n", " ('pass on', 'move forward, also in the metaphorical sense'),\n", - " ('encourage', 'contribute to the progress or growth of'),\n", + " ('win', 'obtain advantages, such as points, etc.'),\n", " ('further', 'contribute to the progress or growth of'),\n", - " ('promote', 'give a promotion to or assign to a higher position'),\n", - " ('get along', 'develop in a positive way'),\n", + " ('go on', 'move forward, also in the metaphorical sense'),\n", + " ('upgrade', 'give a promotion to or assign to a higher position'),\n", + " ('throw out', 'bring forward for consideration or acceptance'),\n", " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n", + " ('shape up', 'develop in a positive way'),\n", " ('march on', 'move forward, also in the metaphorical sense'),\n", - " ('get on', 'develop in a positive way'),\n", - " ('elevate', 'give a promotion to or assign to a higher position'),\n", - " ('upgrade', 'give a promotion to or assign to a higher position'),\n", - " ('raise', 'give a promotion to or assign to a higher position')]},\n", + " ('boost', 'contribute to the progress or growth of'),\n", + " ('bring forward', 'cause to move forward')]},\n", " {'answer': 'advancing',\n", " 'hint': 'synonyms for advancing',\n", - " 'clues': [('advance', 'cause to move forward'),\n", - " ('come on', 'develop in a positive way'),\n", - " ('make headway', 'obtain advantages, such as points, etc.'),\n", - " ('supercharge', 'increase or raise'),\n", - " ('boost', 'contribute to the progress or growth of'),\n", - " ('set ahead', 'move forward'),\n", - " ('bring forward', 'cause to move forward'),\n", + " 'clues': [('gain', 'rise in rate or price'),\n", + " ('get along', 'develop in a positive way'),\n", + " ('advance', 'contribute to the progress or growth of'),\n", + " ('promote', 'contribute to the progress or growth of'),\n", + " ('come along', 'develop in a positive way'),\n", " ('move on', 'move forward, also in the metaphorical sense'),\n", - " ('gain', 'rise in rate or price'),\n", - " ('win', 'obtain advantages, such as points, etc.'),\n", + " ('raise', 'give a promotion to or assign to a higher position'),\n", + " ('set ahead', 'move forward'),\n", + " ('get on', 'develop in a positive way'),\n", " ('progress', 'develop in a positive way'),\n", - " ('gain ground', 'obtain advantages, such as points, etc.'),\n", + " ('supercharge', 'increase or raise'),\n", + " ('elevate', 'give a promotion to or assign to a higher position'),\n", + " ('come on', 'develop in a positive way'),\n", + " ('encourage', 'contribute to the progress or growth of'),\n", " ('pull ahead', 'obtain advantages, such as points, etc.'),\n", - " ('go on', 'move forward, also in the metaphorical sense'),\n", - " ('throw out', 'bring forward for consideration or acceptance'),\n", - " ('shape up', 'develop in a positive way'),\n", - " ('come along', 'develop in a positive way'),\n", + " ('make headway', 'obtain advantages, such as points, etc.'),\n", + " ('gain ground', 'obtain advantages, such as points, etc.'),\n", " ('pass on', 'move forward, also in the metaphorical sense'),\n", - " ('encourage', 'contribute to the progress or growth of'),\n", + " ('win', 'obtain advantages, such as points, etc.'),\n", " ('further', 'contribute to the progress or growth of'),\n", - " ('promote', 'give a promotion to or assign to a higher position'),\n", - " ('get along', 'develop in a positive way'),\n", + " ('go on', 'move forward, also in the metaphorical sense'),\n", + " ('upgrade', 'give a promotion to or assign to a higher position'),\n", + " ('throw out', 'bring forward for consideration or acceptance'),\n", " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n", + " ('shape up', 'develop in a positive way'),\n", " ('march on', 'move forward, also in the metaphorical sense'),\n", - " ('get on', 'develop in a positive way'),\n", - " ('elevate', 'give a promotion to or assign to a higher position'),\n", - " ('upgrade', 'give a promotion to or assign to a higher position'),\n", - " ('raise', 'give a promotion to or assign to a higher position')]},\n", + " ('boost', 'contribute to the progress or growth of'),\n", + " ('bring forward', 'cause to move forward')]},\n", " {'answer': 'advertised',\n", " 'hint': 'synonyms for advertised',\n", - " 'clues': [('advertize', 'call attention to'),\n", - " ('publicize', 'call attention to'),\n", - " ('promote', 'make publicity for; try to sell (a product)'),\n", - " ('push', 'make publicity for; try to sell (a product)')]},\n", + " 'clues': [('publicise', 'call attention to'),\n", + " ('push', 'make publicity for; try to sell (a product)'),\n", + " ('advertise', 'call attention to'),\n", + " ('promote', 'make publicity for; try to sell (a product)')]},\n", " {'answer': 'advised',\n", " 'hint': 'synonyms for advised',\n", - " 'clues': [('rede', 'give advice to'),\n", - " ('notify', 'inform (somebody) of something'),\n", - " ('apprize', 'inform (somebody) of something'),\n", + " 'clues': [('notify', 'inform (somebody) of something'),\n", + " ('give notice', 'inform (somebody) of something'),\n", + " ('apprise', 'inform (somebody) of something'),\n", " ('advise', 'inform (somebody) of something'),\n", " ('send word', 'inform (somebody) of something'),\n", - " ('suggest', 'make a proposal, declare a plan for something'),\n", - " ('give notice', 'inform (somebody) of something'),\n", " ('propose', 'make a proposal, declare a plan for something'),\n", + " ('suggest', 'make a proposal, declare a plan for something'),\n", + " ('rede', 'give advice to'),\n", " ('counsel', 'give advice to')]},\n", " {'answer': 'aerated',\n", " 'hint': 'synonyms for aerated',\n", - " 'clues': [('air', 'expose to fresh air'),\n", - " ('oxygenise', 'impregnate, combine, or supply with oxygen'),\n", + " 'clues': [('oxygenate', 'impregnate, combine, or supply with oxygen'),\n", + " ('oxygenize', 'impregnate, combine, or supply with oxygen'),\n", " ('aerate',\n", " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n", - " ('air out', 'expose to fresh air'),\n", + " ('air', 'expose to fresh air'),\n", " ('activate',\n", " 'aerate (sewage) so as to favor the growth of organisms that decompose organic matter'),\n", - " ('oxygenate', 'impregnate, combine, or supply with oxygen')]},\n", + " ('air out', 'expose to fresh air')]},\n", " {'answer': 'affected',\n", " 'hint': 'synonyms for affected',\n", - " 'clues': [('involve', 'connect closely and often incriminatingly'),\n", + " 'clues': [('touch', 'have an effect upon'),\n", + " ('dissemble', 'make believe with the intent to deceive'),\n", + " ('feign', 'make believe with the intent to deceive'),\n", " ('pretend', 'make believe with the intent to deceive'),\n", - " ('impact', 'have an effect upon'),\n", - " ('bear on', 'have an effect upon'),\n", - " ('strike', 'have an emotional or cognitive impact upon'),\n", - " ('move', 'have an emotional or cognitive impact upon'),\n", - " ('affect', 'connect closely and often incriminatingly'),\n", + " ('bear upon', 'have an effect upon'),\n", " ('regard', 'connect closely and often incriminatingly'),\n", - " ('touch', 'have an effect upon'),\n", + " ('move', 'have an emotional or cognitive impact upon'),\n", + " ('affect', 'act physically on; have an effect upon'),\n", " ('impress', 'have an emotional or cognitive impact upon'),\n", " ('sham', 'make believe with the intent to deceive'),\n", + " ('involve', 'connect closely and often incriminatingly'),\n", + " ('impact', 'have an effect upon'),\n", " ('touch on', 'have an effect upon'),\n", - " ('dissemble', 'make believe with the intent to deceive'),\n", - " ('feign', 'make believe with the intent to deceive')]},\n", + " ('strike', 'have an emotional or cognitive impact upon')]},\n", " {'answer': 'affecting',\n", " 'hint': 'synonyms for affecting',\n", - " 'clues': [('involve', 'connect closely and often incriminatingly'),\n", + " 'clues': [('touch', 'have an effect upon'),\n", + " ('dissemble', 'make believe with the intent to deceive'),\n", + " ('feign', 'make believe with the intent to deceive'),\n", " ('pretend', 'make believe with the intent to deceive'),\n", - " ('impact', 'have an effect upon'),\n", - " ('bear on', 'have an effect upon'),\n", - " ('strike', 'have an emotional or cognitive impact upon'),\n", - " ('move', 'have an emotional or cognitive impact upon'),\n", - " ('affect', 'connect closely and often incriminatingly'),\n", + " ('bear upon', 'have an effect upon'),\n", " ('regard', 'connect closely and often incriminatingly'),\n", - " ('touch', 'have an effect upon'),\n", + " ('move', 'have an emotional or cognitive impact upon'),\n", + " ('affect', 'act physically on; have an effect upon'),\n", " ('impress', 'have an emotional or cognitive impact upon'),\n", " ('sham', 'make believe with the intent to deceive'),\n", + " ('involve', 'connect closely and often incriminatingly'),\n", + " ('impact', 'have an effect upon'),\n", " ('touch on', 'have an effect upon'),\n", - " ('dissemble', 'make believe with the intent to deceive'),\n", - " ('feign', 'make believe with the intent to deceive')]},\n", + " ('strike', 'have an emotional or cognitive impact upon')]},\n", " {'answer': 'affiliated',\n", " 'hint': 'synonyms for affiliated',\n", - " 'clues': [('affiliate', 'keep company with; hang out with'),\n", - " ('associate', 'keep company with; hang out with'),\n", - " ('consort', 'keep company with; hang out with'),\n", - " ('assort', 'keep company with; hang out with')]},\n", + " 'clues': [('associate', 'keep company with; hang out with'),\n", + " ('assort', 'keep company with; hang out with'),\n", + " ('affiliate', 'join in an affiliation'),\n", + " ('consort', 'keep company with; hang out with')]},\n", " {'answer': 'affixed',\n", " 'hint': 'synonyms for affixed',\n", - " 'clues': [('affix', 'add to the very end'),\n", - " ('add on', 'add to the very end'),\n", + " 'clues': [('add on', 'add to the very end'),\n", " ('append', 'add to the very end'),\n", " ('supplement', 'add to the very end'),\n", - " ('stick on', 'attach to')]},\n", + " ('stick on', 'attach to'),\n", + " ('affix', 'attach to')]},\n", " {'answer': 'aged',\n", " 'hint': 'synonyms for aged',\n", " 'clues': [('mature', 'grow old or older'),\n", - " ('age', 'grow old or older'),\n", + " ('age', 'make older'),\n", " ('senesce', 'grow old or older'),\n", " ('get on', 'grow old or older')]},\n", " {'answer': 'ageing',\n", " 'hint': 'synonyms for ageing',\n", " 'clues': [('mature', 'grow old or older'),\n", - " ('age', 'grow old or older'),\n", + " ('age', 'make older'),\n", " ('senesce', 'grow old or older'),\n", " ('get on', 'grow old or older')]},\n", " {'answer': 'aggravated',\n", " 'hint': 'synonyms for aggravated',\n", - " 'clues': [('aggravate', 'exasperate or irritate'),\n", + " 'clues': [('exasperate', 'make worse'),\n", " ('exacerbate', 'exasperate or irritate'),\n", - " ('exasperate', 'exasperate or irritate'),\n", - " ('worsen', 'make worse')]},\n", + " ('worsen', 'make worse'),\n", + " ('aggravate', 'exasperate or irritate')]},\n", " {'answer': 'aggravating',\n", " 'hint': 'synonyms for aggravating',\n", - " 'clues': [('aggravate', 'exasperate or irritate'),\n", + " 'clues': [('exasperate', 'make worse'),\n", " ('exacerbate', 'exasperate or irritate'),\n", - " ('exasperate', 'exasperate or irritate'),\n", - " ('worsen', 'make worse')]},\n", + " ('worsen', 'make worse'),\n", + " ('aggravate', 'exasperate or irritate')]},\n", " {'answer': 'aging',\n", " 'hint': 'synonyms for aging',\n", " 'clues': [('mature', 'grow old or older'),\n", - " ('age', 'grow old or older'),\n", + " ('age', 'make older'),\n", " ('senesce', 'grow old or older'),\n", " ('get on', 'grow old or older')]},\n", " {'answer': 'agitated',\n", " 'hint': 'synonyms for agitated',\n", - " 'clues': [('budge', 'move very slightly'),\n", - " ('agitate', 'change the arrangement or position of'),\n", - " ('commove', 'change the arrangement or position of'),\n", - " ('excite', 'cause to be agitated, excited, or roused'),\n", - " ('raise up', 'change the arrangement or position of'),\n", - " ('charge', 'cause to be agitated, excited, or roused'),\n", + " 'clues': [('disturb', 'change the arrangement or position of'),\n", + " ('fight',\n", + " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", + " ('commove', 'cause to be agitated, excited, or roused'),\n", + " ('push',\n", + " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", " ('press',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('stir up', 'try to stir up public opinion'),\n", + " ('budge', 'move very slightly'),\n", + " ('vex', 'change the arrangement or position of'),\n", + " ('agitate', 'try to stir up public opinion'),\n", + " ('rouse', 'cause to be agitated, excited, or roused'),\n", " ('shake', 'move or cause to move back and forth'),\n", + " ('charge', 'cause to be agitated, excited, or roused'),\n", " ('turn on', 'cause to be agitated, excited, or roused'),\n", - " ('charge up', 'cause to be agitated, excited, or roused'),\n", - " ('rouse', 'cause to be agitated, excited, or roused'),\n", - " ('stir', 'move very slightly'),\n", - " ('push',\n", - " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", " ('campaign',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('fight',\n", - " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('vex', 'change the arrangement or position of'),\n", - " ('shift', 'move very slightly'),\n", " ('crusade',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('shake up', 'change the arrangement or position of'),\n", + " ('stir up', 'change the arrangement or position of'),\n", " ('foment', 'try to stir up public opinion'),\n", - " ('disturb', 'change the arrangement or position of')]},\n", + " ('charge up', 'cause to be agitated, excited, or roused'),\n", + " ('shake up', 'change the arrangement or position of'),\n", + " ('excite', 'cause to be agitated, excited, or roused'),\n", + " ('stir', 'move very slightly'),\n", + " ('shift', 'move very slightly'),\n", + " ('raise up', 'change the arrangement or position of')]},\n", " {'answer': 'agitating',\n", " 'hint': 'synonyms for agitating',\n", - " 'clues': [('budge', 'move very slightly'),\n", - " ('agitate', 'change the arrangement or position of'),\n", - " ('commove', 'change the arrangement or position of'),\n", - " ('excite', 'cause to be agitated, excited, or roused'),\n", - " ('raise up', 'change the arrangement or position of'),\n", - " ('charge', 'cause to be agitated, excited, or roused'),\n", + " 'clues': [('disturb', 'change the arrangement or position of'),\n", + " ('fight',\n", + " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", + " ('commove', 'cause to be agitated, excited, or roused'),\n", + " ('push',\n", + " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", " ('press',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('stir up', 'try to stir up public opinion'),\n", + " ('budge', 'move very slightly'),\n", + " ('vex', 'change the arrangement or position of'),\n", + " ('agitate', 'try to stir up public opinion'),\n", + " ('rouse', 'cause to be agitated, excited, or roused'),\n", " ('shake', 'move or cause to move back and forth'),\n", + " ('charge', 'cause to be agitated, excited, or roused'),\n", " ('turn on', 'cause to be agitated, excited, or roused'),\n", - " ('charge up', 'cause to be agitated, excited, or roused'),\n", - " ('rouse', 'cause to be agitated, excited, or roused'),\n", - " ('stir', 'move very slightly'),\n", - " ('push',\n", - " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", " ('campaign',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('fight',\n", - " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('vex', 'change the arrangement or position of'),\n", - " ('shift', 'move very slightly'),\n", " ('crusade',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('shake up', 'change the arrangement or position of'),\n", + " ('stir up', 'change the arrangement or position of'),\n", " ('foment', 'try to stir up public opinion'),\n", - " ('disturb', 'change the arrangement or position of')]},\n", + " ('charge up', 'cause to be agitated, excited, or roused'),\n", + " ('shake up', 'change the arrangement or position of'),\n", + " ('excite', 'cause to be agitated, excited, or roused'),\n", + " ('stir', 'move very slightly'),\n", + " ('shift', 'move very slightly'),\n", + " ('raise up', 'change the arrangement or position of')]},\n", " {'answer': 'agreed',\n", " 'hint': 'synonyms for agreed',\n", - " 'clues': [('gibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('match',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('fit in', 'go together'),\n", - " ('tally',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('agree', 'consent or assent to a condition, or agree to do something'),\n", - " ('check',\n", + " 'clues': [('fit',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('accord', 'go together'),\n", + " ('concord', 'go together'),\n", + " ('agree', 'achieve harmony of opinion, feeling, or purpose'),\n", " ('consort', 'go together'),\n", - " ('jibe',\n", + " ('correspond',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('check',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('fit in', 'go together'),\n", + " ('match',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('harmonize', 'go together'),\n", + " ('hold', 'be in accord; be in agreement'),\n", " ('concur', 'be in accord; be in agreement'),\n", - " ('fit',\n", + " ('tally',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('concord', 'go together'),\n", - " ('correspond',\n", + " ('jibe',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('harmonise', 'go together'),\n", - " ('hold', 'be in accord; be in agreement')]},\n", + " ('gibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics')]},\n", " {'answer': 'aired',\n", " 'hint': 'synonyms for aired',\n", - " 'clues': [('bare', 'make public'),\n", - " ('air', 'expose to fresh air'),\n", - " ('send', 'broadcast over the airwaves, as in radio or television'),\n", - " ('beam', 'broadcast over the airwaves, as in radio or television'),\n", + " 'clues': [('vent', 'expose to cool or cold air so as to cool or freshen'),\n", " ('publicize', 'make public'),\n", - " ('air out', 'expose to fresh air'),\n", + " ('air', 'broadcast over the airwaves, as in radio or television'),\n", + " ('send', 'broadcast over the airwaves, as in radio or television'),\n", " ('transmit', 'broadcast over the airwaves, as in radio or television'),\n", + " ('air out', 'expose to cool or cold air so as to cool or freshen'),\n", " ('broadcast', 'broadcast over the airwaves, as in radio or television'),\n", + " ('beam', 'broadcast over the airwaves, as in radio or television'),\n", + " ('bare', 'make public'),\n", " ('ventilate', 'expose to cool or cold air so as to cool or freshen'),\n", - " ('vent', 'expose to cool or cold air so as to cool or freshen'),\n", " ('aerate', 'expose to fresh air')]},\n", " {'answer': 'alarmed',\n", " 'hint': 'synonyms for alarmed',\n", " 'clues': [('alarm',\n", " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n", - " ('alert',\n", - " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n", " ('appal',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('dismay',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('horrify',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('dismay',\n", - " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", + " ('alert',\n", + " 'warn or arouse to a sense of danger or call to a state of preparedness')]},\n", " {'answer': 'alarming',\n", " 'hint': 'synonyms for alarming',\n", " 'clues': [('alarm',\n", " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n", - " ('alert',\n", - " 'warn or arouse to a sense of danger or call to a state of preparedness'),\n", " ('appal',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('dismay',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('horrify',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('dismay',\n", - " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", + " ('alert',\n", + " 'warn or arouse to a sense of danger or call to a state of preparedness')]},\n", " {'answer': 'alienated',\n", " 'hint': 'synonyms for alienated',\n", - " 'clues': [('alienate',\n", - " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", + " 'clues': [('alien', 'transfer property or ownership'),\n", + " ('alienate', 'make withdrawn or isolated or emotionally dissociated'),\n", " ('estrange',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", - " ('alien', 'transfer property or ownership'),\n", " ('disaffect',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n", " {'answer': 'alienating',\n", " 'hint': 'synonyms for alienating',\n", - " 'clues': [('alienate',\n", - " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", + " 'clues': [('alien', 'transfer property or ownership'),\n", + " ('alienate', 'make withdrawn or isolated or emotionally dissociated'),\n", " ('estrange',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", - " ('alien', 'transfer property or ownership'),\n", " ('disaffect',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n", " {'answer': 'aligned',\n", " 'hint': 'synonyms for aligned',\n", - " 'clues': [('array', 'align oneself with a group or a way of thinking'),\n", + " 'clues': [('align', 'be or come into adjustment with'),\n", + " ('array', 'align oneself with a group or a way of thinking'),\n", " ('line up',\n", " 'place in a line or arrange so as to be parallel or straight'),\n", - " ('ordinate',\n", - " 'bring (components or parts) into proper or desirable coordination correlation'),\n", " ('adjust', 'place in a line or arrange so as to be parallel or straight'),\n", - " ('align',\n", - " 'bring (components or parts) into proper or desirable coordination correlation'),\n", - " ('aline',\n", - " 'place in a line or arrange so as to be parallel or straight')]},\n", + " ('aline', 'place in a line or arrange so as to be parallel or straight'),\n", + " ('coordinate',\n", + " 'bring (components or parts) into proper or desirable coordination correlation')]},\n", " {'answer': 'aligning',\n", " 'hint': 'synonyms for aligning',\n", - " 'clues': [('array', 'align oneself with a group or a way of thinking'),\n", + " 'clues': [('align', 'be or come into adjustment with'),\n", + " ('array', 'align oneself with a group or a way of thinking'),\n", " ('line up',\n", " 'place in a line or arrange so as to be parallel or straight'),\n", - " ('ordinate',\n", - " 'bring (components or parts) into proper or desirable coordination correlation'),\n", " ('adjust', 'place in a line or arrange so as to be parallel or straight'),\n", - " ('align',\n", - " 'bring (components or parts) into proper or desirable coordination correlation'),\n", - " ('aline',\n", - " 'place in a line or arrange so as to be parallel or straight')]},\n", + " ('aline', 'place in a line or arrange so as to be parallel or straight'),\n", + " ('coordinate',\n", + " 'bring (components or parts) into proper or desirable coordination correlation')]},\n", " {'answer': 'alleviated',\n", " 'hint': 'synonyms for alleviated',\n", - " 'clues': [('facilitate', 'make easier'),\n", + " 'clues': [('palliate', 'provide physical relief, as from pain'),\n", + " ('facilitate', 'make easier'),\n", + " ('alleviate', 'make easier'),\n", " ('ease', 'make easier'),\n", - " ('alleviate', 'provide physical relief, as from pain'),\n", " ('relieve', 'provide physical relief, as from pain'),\n", - " ('assuage', 'provide physical relief, as from pain'),\n", - " ('palliate', 'provide physical relief, as from pain')]},\n", + " ('assuage', 'provide physical relief, as from pain')]},\n", " {'answer': 'allotted',\n", " 'hint': 'synonyms for allotted',\n", - " 'clues': [('portion', 'give out'),\n", - " ('grant', 'allow to have'),\n", - " ('assign', 'give out'),\n", - " ('accord', 'allow to have'),\n", + " 'clues': [('lot', 'administer or bestow, as in small portions'),\n", + " ('dish out', 'administer or bestow, as in small portions'),\n", " ('dispense', 'administer or bestow, as in small portions'),\n", - " ('allot', 'give out'),\n", " ('shell out', 'administer or bestow, as in small portions'),\n", + " ('allot', 'administer or bestow, as in small portions'),\n", + " ('accord', 'allow to have'),\n", + " ('assign', 'give out'),\n", + " ('dole out', 'administer or bestow, as in small portions'),\n", + " ('mete out', 'administer or bestow, as in small portions'),\n", + " ('parcel out', 'administer or bestow, as in small portions'),\n", " ('deal out', 'administer or bestow, as in small portions'),\n", " ('administer', 'administer or bestow, as in small portions'),\n", - " ('dish out', 'administer or bestow, as in small portions'),\n", " ('deal', 'administer or bestow, as in small portions'),\n", - " ('lot', 'administer or bestow, as in small portions'),\n", - " ('distribute', 'administer or bestow, as in small portions'),\n", - " ('dole out', 'administer or bestow, as in small portions'),\n", - " ('parcel out', 'administer or bestow, as in small portions'),\n", - " ('mete out', 'administer or bestow, as in small portions')]},\n", + " ('portion', 'give out'),\n", + " ('grant', 'allow to have'),\n", + " ('distribute', 'administer or bestow, as in small portions')]},\n", " {'answer': 'altered',\n", " 'hint': 'synonyms for altered',\n", - " 'clues': [('change',\n", - " 'cause to change; make different; cause a transformation'),\n", + " 'clues': [('alter',\n", + " 'insert words into texts, often falsifying it thereby'),\n", " ('falsify', 'insert words into texts, often falsifying it thereby'),\n", + " ('spay', 'remove the ovaries of'),\n", " ('interpolate', 'insert words into texts, often falsifying it thereby'),\n", - " ('vary',\n", + " ('change',\n", " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n", - " ('spay', 'remove the ovaries of'),\n", - " ('alter', 'cause to change; make different; cause a transformation'),\n", - " ('modify', 'cause to change; make different; cause a transformation'),\n", " ('castrate', 'remove the ovaries of'),\n", + " ('modify', 'cause to change; make different; cause a transformation'),\n", + " ('vary',\n", + " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n", " ('neuter', 'remove the ovaries of')]},\n", " {'answer': 'alternate',\n", " 'hint': 'synonyms for alternate',\n", " 'clues': [('switch',\n", " 'reverse (a direction, attitude, or course of action)'),\n", - " ('flip', 'reverse (a direction, attitude, or course of action)'),\n", - " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n", + " ('understudy', 'be an understudy or alternate for a role'),\n", " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n", + " ('tack', 'reverse (a direction, attitude, or course of action)'),\n", " ('take turns', 'do something in turns'),\n", + " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n", " ('jump',\n", " 'go back and forth; swing back and forth between two states or conditions'),\n", - " ('understudy', 'be an understudy or alternate for a role'),\n", - " ('tack', 'reverse (a direction, attitude, or course of action)')]},\n", + " ('flip', 'reverse (a direction, attitude, or course of action)')]},\n", " {'answer': 'alternating',\n", " 'hint': 'synonyms for alternating',\n", - " 'clues': [('alternate',\n", + " 'clues': [('switch',\n", " 'reverse (a direction, attitude, or course of action)'),\n", - " ('flip', 'reverse (a direction, attitude, or course of action)'),\n", - " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n", + " ('alternate', 'be an understudy or alternate for a role'),\n", + " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n", + " ('tack', 'reverse (a direction, attitude, or course of action)'),\n", + " ('take turns', 'do something in turns'),\n", " ('jump',\n", " 'go back and forth; swing back and forth between two states or conditions'),\n", " ('understudy', 'be an understudy or alternate for a role'),\n", - " ('switch', 'reverse (a direction, attitude, or course of action)'),\n", - " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n", - " ('take turns', 'do something in turns'),\n", - " ('tack', 'reverse (a direction, attitude, or course of action)')]},\n", + " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n", + " ('flip', 'reverse (a direction, attitude, or course of action)')]},\n", " {'answer': 'amalgamate',\n", " 'hint': 'synonyms for amalgamate',\n", - " 'clues': [('commix',\n", - " 'to bring or combine together or with something else'),\n", - " ('mingle', 'to bring or combine together or with something else'),\n", - " ('mix', 'to bring or combine together or with something else'),\n", - " ('unify', 'to bring or combine together or with something else')]},\n", + " 'clues': [('mix', 'to bring or combine together or with something else'),\n", + " ('commix', 'to bring or combine together or with something else'),\n", + " ('unify', 'to bring or combine together or with something else'),\n", + " ('mingle', 'to bring or combine together or with something else')]},\n", " {'answer': 'amalgamated',\n", " 'hint': 'synonyms for amalgamated',\n", " 'clues': [('mingle',\n", " 'to bring or combine together or with something else'),\n", - " ('amalgamate', 'to bring or combine together or with something else'),\n", + " ('unify', 'to bring or combine together or with something else'),\n", " ('mix', 'to bring or combine together or with something else'),\n", " ('commix', 'to bring or combine together or with something else'),\n", - " ('unify', 'to bring or combine together or with something else')]},\n", + " ('amalgamate', 'to bring or combine together or with something else')]},\n", " {'answer': 'amazed',\n", " 'hint': 'synonyms for amazed',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", - " ('get', 'be a mystery or bewildering to'),\n", - " ('astonish', 'affect with wonder'),\n", - " ('beat', 'be a mystery or bewildering to'),\n", + " 'clues': [('baffle', 'be a mystery or bewildering to'),\n", " ('amaze', 'affect with wonder'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", - " ('perplex', 'be a mystery or bewildering to'),\n", - " ('astound', 'affect with wonder'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", + " ('beat', 'be a mystery or bewildering to'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", - " {'answer': 'amazing',\n", - " 'hint': 'synonyms for amazing',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", + " ('flummox', 'be a mystery or bewildering to'),\n", " ('get', 'be a mystery or bewildering to'),\n", - " ('astonish', 'affect with wonder'),\n", - " ('beat', 'be a mystery or bewildering to'),\n", - " ('amaze', 'affect with wonder'),\n", " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", " ('perplex', 'be a mystery or bewildering to'),\n", - " ('astound', 'affect with wonder'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", " ('gravel', 'be a mystery or bewildering to'),\n", + " ('astound', 'affect with wonder'),\n", + " ('astonish', 'affect with wonder'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", + " {'answer': 'amazing',\n", + " 'hint': 'synonyms for amazing',\n", + " 'clues': [('baffle', 'be a mystery or bewildering to'),\n", + " ('amaze', 'affect with wonder'),\n", + " ('beat', 'be a mystery or bewildering to'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", + " ('flummox', 'be a mystery or bewildering to'),\n", + " ('get', 'be a mystery or bewildering to'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('perplex', 'be a mystery or bewildering to'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('astound', 'affect with wonder'),\n", + " ('astonish', 'affect with wonder'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", " {'answer': 'ameliorating',\n", " 'hint': 'synonyms for ameliorating',\n", - " 'clues': [('better', 'get better'),\n", - " ('ameliorate', 'to make better'),\n", - " ('improve', 'get better'),\n", - " ('amend', 'to make better')]},\n", + " 'clues': [('meliorate', 'to make better'),\n", + " ('better', 'get better'),\n", + " ('amend', 'to make better'),\n", + " ('improve', 'to make better')]},\n", " {'answer': 'amended',\n", " 'hint': 'synonyms for amended',\n", - " 'clues': [('repair', 'set straight or right'),\n", - " ('ameliorate', 'to make better'),\n", - " ('better', 'to make better'),\n", - " ('amend', 'set straight or right'),\n", - " ('remediate', 'set straight or right'),\n", - " ('remedy', 'set straight or right'),\n", + " 'clues': [('remediate', 'set straight or right'),\n", + " ('meliorate', 'to make better'),\n", + " ('amend', 'to make better'),\n", " ('rectify', 'set straight or right'),\n", - " ('improve', 'to make better')]},\n", + " ('improve', 'to make better'),\n", + " ('repair', 'set straight or right'),\n", + " ('remedy', 'set straight or right'),\n", + " ('better', 'to make better')]},\n", " {'answer': 'analyzed',\n", " 'hint': 'synonyms for analyzed',\n", - " 'clues': [('examine',\n", - " 'consider in detail and subject to an analysis in order to discover essential features or meaning'),\n", - " ('analyze',\n", - " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", - " ('psychoanalyze', 'subject to psychoanalytic treatment'),\n", - " ('take apart',\n", + " 'clues': [('psychoanalyze', 'subject to psychoanalytic treatment'),\n", + " ('analyse',\n", " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", - " ('canvass',\n", + " ('examine',\n", " 'consider in detail and subject to an analysis in order to discover essential features or meaning'),\n", - " ('study',\n", + " ('canvas',\n", " 'consider in detail and subject to an analysis in order to discover essential features or meaning'),\n", " ('break down',\n", " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", " ('dissect',\n", - " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features')]},\n", + " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", + " ('take apart',\n", + " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", + " ('study',\n", + " 'consider in detail and subject to an analysis in order to discover essential features or meaning')]},\n", " {'answer': 'angled',\n", " 'hint': 'synonyms for angled',\n", " 'clues': [('lean', 'to incline or bend from a vertical position'),\n", - " ('slant', 'present with a bias'),\n", - " ('angle', 'fish with a hook'),\n", - " ('tilt', 'to incline or bend from a vertical position'),\n", " ('tip', 'to incline or bend from a vertical position'),\n", - " ('weight', 'present with a bias'),\n", - " ('fish', 'seek indirectly')]},\n", + " ('fish', 'seek indirectly'),\n", + " ('angle', 'move or proceed at an angle'),\n", + " ('tilt', 'to incline or bend from a vertical position'),\n", + " ('slant', 'to incline or bend from a vertical position'),\n", + " ('weight', 'present with a bias')]},\n", " {'answer': 'animate',\n", " 'hint': 'synonyms for animate',\n", - " 'clues': [('liven', 'make lively'),\n", - " ('animize', 'give lifelike qualities to'),\n", - " ('enliven', 'make lively'),\n", + " 'clues': [('animize', 'give lifelike qualities to'),\n", + " ('quicken', 'give new life or energy to'),\n", + " ('inspire', 'heighten or intensify'),\n", " ('vivify', 'give new life or energy to'),\n", - " ('invigorate', 'heighten or intensify'),\n", - " ('reanimate', 'give new life or energy to'),\n", - " ('repair', 'give new life or energy to'),\n", - " ('exalt', 'heighten or intensify'),\n", " ('revive', 'give new life or energy to'),\n", - " ('inspire', 'heighten or intensify'),\n", - " ('renovate', 'give new life or energy to'),\n", " ('liven up', 'make lively'),\n", - " ('quicken', 'give new life or energy to'),\n", - " ('recreate', 'give new life or energy to')]},\n", + " ('renovate', 'give new life or energy to'),\n", + " ('invigorate', 'make lively'),\n", + " ('liven', 'make lively'),\n", + " ('repair', 'give new life or energy to'),\n", + " ('reanimate', 'give new life or energy to'),\n", + " ('enliven', 'make lively'),\n", + " ('recreate', 'give new life or energy to'),\n", + " ('exalt', 'heighten or intensify')]},\n", " {'answer': 'animated',\n", " 'hint': 'synonyms for animated',\n", - " 'clues': [('liven', 'make lively'),\n", - " ('animize', 'give lifelike qualities to'),\n", - " ('animate', 'give lifelike qualities to'),\n", - " ('invigorate', 'heighten or intensify'),\n", + " 'clues': [('animize', 'give lifelike qualities to'),\n", + " ('revive', 'give new life or energy to'),\n", + " ('invigorate', 'make lively'),\n", + " ('liven', 'make lively'),\n", + " ('animate', 'give new life or energy to'),\n", + " ('repair', 'give new life or energy to'),\n", " ('enliven', 'heighten or intensify'),\n", - " ('exalt', 'heighten or intensify'),\n", - " ('liven up', 'make lively'),\n", + " ('renovate', 'give new life or energy to'),\n", " ('quicken', 'give new life or energy to'),\n", - " ('recreate', 'give new life or energy to'),\n", - " ('vivify', 'give new life or energy to'),\n", - " ('repair', 'give new life or energy to'),\n", - " ('revive', 'give new life or energy to'),\n", " ('inspire', 'heighten or intensify'),\n", - " ('renovate', 'give new life or energy to')]},\n", + " ('vivify', 'give new life or energy to'),\n", + " ('liven up', 'make lively'),\n", + " ('recreate', 'give new life or energy to'),\n", + " ('exalt', 'heighten or intensify')]},\n", " {'answer': 'animating',\n", " 'hint': 'synonyms for animating',\n", - " 'clues': [('liven', 'make lively'),\n", - " ('animize', 'give lifelike qualities to'),\n", - " ('animate', 'give lifelike qualities to'),\n", - " ('invigorate', 'heighten or intensify'),\n", + " 'clues': [('animize', 'give lifelike qualities to'),\n", + " ('revive', 'give new life or energy to'),\n", + " ('invigorate', 'make lively'),\n", + " ('liven', 'make lively'),\n", + " ('animate', 'give new life or energy to'),\n", + " ('repair', 'give new life or energy to'),\n", " ('enliven', 'heighten or intensify'),\n", - " ('exalt', 'heighten or intensify'),\n", - " ('liven up', 'make lively'),\n", + " ('renovate', 'give new life or energy to'),\n", " ('quicken', 'give new life or energy to'),\n", - " ('recreate', 'give new life or energy to'),\n", - " ('vivify', 'give new life or energy to'),\n", - " ('repair', 'give new life or energy to'),\n", - " ('revive', 'give new life or energy to'),\n", " ('inspire', 'heighten or intensify'),\n", - " ('renovate', 'give new life or energy to')]},\n", + " ('vivify', 'give new life or energy to'),\n", + " ('liven up', 'make lively'),\n", + " ('recreate', 'give new life or energy to'),\n", + " ('exalt', 'heighten or intensify')]},\n", " {'answer': 'annihilated',\n", " 'hint': 'synonyms for annihilated',\n", " 'clues': [('wipe out', 'kill in large numbers'),\n", " ('eradicate', 'kill in large numbers'),\n", + " ('carry off', 'kill in large numbers'),\n", + " ('decimate', 'kill in large numbers'),\n", " ('eliminate', 'kill in large numbers'),\n", " ('extinguish', 'kill in large numbers'),\n", - " ('annihilate', 'kill in large numbers'),\n", - " ('carry off', 'kill in large numbers'),\n", - " ('decimate', 'kill in large numbers')]},\n", + " ('annihilate', 'kill in large numbers')]},\n", " {'answer': 'annihilating',\n", " 'hint': 'synonyms for annihilating',\n", " 'clues': [('wipe out', 'kill in large numbers'),\n", " ('eradicate', 'kill in large numbers'),\n", + " ('carry off', 'kill in large numbers'),\n", + " ('decimate', 'kill in large numbers'),\n", " ('eliminate', 'kill in large numbers'),\n", " ('extinguish', 'kill in large numbers'),\n", - " ('annihilate', 'kill in large numbers'),\n", - " ('carry off', 'kill in large numbers'),\n", - " ('decimate', 'kill in large numbers')]},\n", + " ('annihilate', 'kill in large numbers')]},\n", " {'answer': 'announced',\n", " 'hint': 'synonyms for announced',\n", - " 'clues': [('annunciate', 'foreshadow or presage'),\n", - " ('denote', 'make known; make an announcement'),\n", - " ('declare', 'announce publicly or officially'),\n", + " 'clues': [('announce', 'make known; make an announcement'),\n", " ('harbinger', 'foreshadow or presage'),\n", - " ('announce', 'announce publicly or officially'),\n", + " ('annunciate', 'foreshadow or presage'),\n", + " ('herald', 'foreshadow or presage'),\n", " ('foretell', 'foreshadow or presage'),\n", - " ('herald', 'foreshadow or presage')]},\n", + " ('declare', 'announce publicly or officially'),\n", + " ('denote', 'make known; make an announcement')]},\n", " {'answer': 'annoyed',\n", " 'hint': 'synonyms for annoyed',\n", - " 'clues': [('bother',\n", + " 'clues': [('annoy',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('nettle',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('gravel',\n", + " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('bother',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('irritate',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('get at',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('get to',\n", + " ('gravel',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('annoy',\n", + " ('get to',\n", " 'cause annoyance in; disturb, especially by minor irritations')]},\n", " {'answer': 'annoying',\n", " 'hint': 'synonyms for annoying',\n", - " 'clues': [('bother',\n", + " 'clues': [('annoy',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('nettle',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('gravel',\n", + " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('bother',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('irritate',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('get at',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('get to',\n", + " ('gravel',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('annoy',\n", + " ('get to',\n", " 'cause annoyance in; disturb, especially by minor irritations')]},\n", " {'answer': 'answering',\n", " 'hint': 'synonyms for answering',\n", - " 'clues': [('answer', 'react to a stimulus or command'),\n", - " ('do', 'be sufficient; be adequate, either in quality or quantity'),\n", - " ('suffice', 'be sufficient; be adequate, either in quality or quantity'),\n", + " 'clues': [('do',\n", + " 'be sufficient; be adequate, either in quality or quantity'),\n", + " ('answer', 'be liable or accountable'),\n", " ('reply', 'react verbally'),\n", + " ('suffice', 'be sufficient; be adequate, either in quality or quantity'),\n", " ('respond', 'react verbally'),\n", - " ('resolve', 'understand the meaning of'),\n", - " ('serve', 'be sufficient; be adequate, either in quality or quantity')]},\n", + " ('serve', 'be sufficient; be adequate, either in quality or quantity'),\n", + " ('resolve', 'understand the meaning of')]},\n", " {'answer': 'anticipated',\n", " 'hint': 'synonyms for anticipated',\n", - " 'clues': [('previse', 'realize beforehand'),\n", - " ('foreknow', 'realize beforehand'),\n", - " ('prognosticate', 'make a prediction about; tell in advance'),\n", - " ('anticipate', 'act in advance of; deal with ahead of time'),\n", - " ('counter', 'act in advance of; deal with ahead of time'),\n", - " ('predict', 'make a prediction about; tell in advance'),\n", + " 'clues': [('look to', 'be excited or anxious about'),\n", + " ('call', 'make a prediction about; tell in advance'),\n", + " ('anticipate', 'regard something as probable or likely'),\n", + " ('foresee', 'realize beforehand'),\n", " ('forebode', 'make a prediction about; tell in advance'),\n", " ('expect', 'regard something as probable or likely'),\n", - " ('foresee', 'act in advance of; deal with ahead of time'),\n", - " ('forestall', 'act in advance of; deal with ahead of time'),\n", + " ('previse', 'realize beforehand'),\n", + " ('predict', 'make a prediction about; tell in advance'),\n", " ('foretell', 'make a prediction about; tell in advance'),\n", + " ('prognosticate', 'make a prediction about; tell in advance'),\n", + " ('foreknow', 'realize beforehand'),\n", " ('promise', 'make a prediction about; tell in advance'),\n", - " ('look for', 'be excited or anxious about'),\n", - " ('call', 'make a prediction about; tell in advance'),\n", - " ('look to', 'be excited or anxious about')]},\n", + " ('forestall', 'act in advance of; deal with ahead of time'),\n", + " ('counter', 'act in advance of; deal with ahead of time'),\n", + " ('look for', 'be excited or anxious about')]},\n", " {'answer': 'appalled',\n", " 'hint': 'synonyms for appalled',\n", - " 'clues': [('appal', 'strike with disgust or revulsion'),\n", - " ('outrage', 'strike with disgust or revulsion'),\n", - " ('scandalise', 'strike with disgust or revulsion'),\n", - " ('offend', 'strike with disgust or revulsion'),\n", - " ('shock', 'strike with disgust or revulsion'),\n", - " ('dismay',\n", + " 'clues': [('outrage', 'strike with disgust or revulsion'),\n", + " ('horrify',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('alarm',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('horrify',\n", - " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", - " {'answer': 'appalling',\n", - " 'hint': 'synonyms for appalling',\n", - " 'clues': [('appal', 'strike with disgust or revulsion'),\n", - " ('outrage', 'strike with disgust or revulsion'),\n", - " ('scandalise', 'strike with disgust or revulsion'),\n", + " ('appall',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('offend', 'strike with disgust or revulsion'),\n", + " ('scandalise', 'strike with disgust or revulsion'),\n", " ('shock', 'strike with disgust or revulsion'),\n", " ('dismay',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", + " {'answer': 'appalling',\n", + " 'hint': 'synonyms for appalling',\n", + " 'clues': [('outrage', 'strike with disgust or revulsion'),\n", + " ('horrify',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('alarm',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('horrify',\n", + " ('appall',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('offend', 'strike with disgust or revulsion'),\n", + " ('scandalise', 'strike with disgust or revulsion'),\n", + " ('shock', 'strike with disgust or revulsion'),\n", + " ('dismay',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", " {'answer': 'appareled',\n", " 'hint': 'synonyms for appareled',\n", - " 'clues': [('raiment', 'provide with clothes or put clothes on'),\n", - " ('enclothe', 'provide with clothes or put clothes on'),\n", - " ('garb', 'provide with clothes or put clothes on'),\n", - " ('garment', 'provide with clothes or put clothes on'),\n", + " 'clues': [('garb', 'provide with clothes or put clothes on'),\n", " ('habilitate', 'provide with clothes or put clothes on'),\n", - " ('tog', 'provide with clothes or put clothes on'),\n", " ('fit out', 'provide with clothes or put clothes on'),\n", + " ('garment', 'provide with clothes or put clothes on'),\n", " ('dress', 'provide with clothes or put clothes on'),\n", - " ('apparel', 'provide with clothes or put clothes on')]},\n", + " ('enclothe', 'provide with clothes or put clothes on'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", + " ('apparel', 'provide with clothes or put clothes on'),\n", + " ('tog', 'provide with clothes or put clothes on')]},\n", " {'answer': 'appeasing',\n", " 'hint': 'synonyms for appeasing',\n", - " 'clues': [('lenify',\n", + " 'clues': [('mollify',\n", " 'cause to be more favorably inclined; gain the good will of'),\n", - " ('stay', 'overcome or allay'),\n", - " ('appease', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('mollify', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('pacify', 'cause to be more favorably inclined; gain the good will of'),\n", + " ('placate', 'cause to be more favorably inclined; gain the good will of'),\n", + " ('appease', 'make peace with'),\n", + " ('gentle', 'cause to be more favorably inclined; gain the good will of'),\n", " ('conciliate',\n", " 'cause to be more favorably inclined; gain the good will of'),\n", + " ('pacify', 'cause to be more favorably inclined; gain the good will of'),\n", " ('propitiate', 'make peace with'),\n", + " ('gruntle', 'cause to be more favorably inclined; gain the good will of'),\n", " ('quell', 'overcome or allay'),\n", - " ('gentle', 'cause to be more favorably inclined; gain the good will of'),\n", + " ('stay', 'overcome or allay'),\n", " ('assuage', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('gruntle', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('placate',\n", + " ('lenify',\n", " 'cause to be more favorably inclined; gain the good will of')]},\n", " {'answer': 'applied',\n", " 'hint': 'synonyms for applied',\n", - " 'clues': [('apply', 'apply to a surface'),\n", - " ('utilize',\n", - " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", - " ('practice', 'avail oneself to'),\n", - " ('put on', 'apply to a surface'),\n", + " 'clues': [('practice', 'avail oneself to'),\n", + " ('go for', 'be pertinent or relevant or applicable'),\n", + " ('apply', 'give or convey physically'),\n", " ('enforce', 'ensure observance of laws and rules'),\n", - " ('give', 'give or convey physically'),\n", + " ('put on', 'apply to a surface'),\n", " ('lend oneself', 'be applicable to; as to an analysis'),\n", - " ('employ',\n", + " ('utilize',\n", " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", - " ('hold', 'be pertinent or relevant or applicable'),\n", + " ('implement', 'ensure observance of laws and rules'),\n", " ('use',\n", " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", - " ('go for', 'be pertinent or relevant or applicable'),\n", - " ('implement', 'ensure observance of laws and rules')]},\n", + " ('give', 'give or convey physically'),\n", + " ('hold', 'be pertinent or relevant or applicable'),\n", + " ('employ',\n", + " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose')]},\n", " {'answer': 'appointed',\n", " 'hint': 'synonyms for appointed',\n", - " 'clues': [('name', 'create and charge with a task or function'),\n", + " 'clues': [('appoint', 'furnish'),\n", " ('constitute', 'create and charge with a task or function'),\n", - " ('appoint', 'create and charge with a task or function'),\n", + " ('name', 'create and charge with a task or function'),\n", " ('charge', 'assign a duty, responsibility or obligation to'),\n", " ('nominate', 'create and charge with a task or function')]},\n", " {'answer': 'apportioned',\n", " 'hint': 'synonyms for apportioned',\n", - " 'clues': [('portion out', \"give out as one's portion or share\"),\n", - " ('divvy up', \"give out as one's portion or share\"),\n", - " ('deal', \"give out as one's portion or share\"),\n", + " 'clues': [('divvy up', \"give out as one's portion or share\"),\n", " ('apportion',\n", " 'distribute according to a plan or set apart for a special purpose'),\n", " ('share', \"give out as one's portion or share\"),\n", " ('allocate',\n", - " 'distribute according to a plan or set apart for a special purpose')]},\n", + " 'distribute according to a plan or set apart for a special purpose'),\n", + " ('deal', \"give out as one's portion or share\"),\n", + " ('portion out', \"give out as one's portion or share\")]},\n", " {'answer': 'appraising',\n", " 'hint': 'synonyms for appraising',\n", - " 'clues': [('measure',\n", - " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n", - " ('appraise',\n", + " 'clues': [('valuate',\n", " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n", - " ('value',\n", + " ('survey', 'consider in a comprehensive way'),\n", + " ('measure',\n", " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n", " ('assess',\n", " 'evaluate or estimate the nature, quality, ability, extent, or significance of'),\n", - " ('survey', 'consider in a comprehensive way'),\n", - " ('valuate',\n", + " ('appraise', 'consider in a comprehensive way'),\n", + " ('value',\n", " 'evaluate or estimate the nature, quality, ability, extent, or significance of')]},\n", " {'answer': 'appreciated',\n", " 'hint': 'synonyms for appreciated',\n", " 'clues': [('take account', 'be fully aware of; realize fully'),\n", " ('appreciate', 'hold dear'),\n", + " ('apprise', 'gain in value'),\n", + " ('revalue', 'gain in value'),\n", " ('treasure', 'hold dear'),\n", - " ('value', 'hold dear'),\n", " ('prize', 'hold dear'),\n", - " ('apprise', 'gain in value'),\n", - " ('revalue', 'gain in value')]},\n", + " ('value', 'hold dear')]},\n", " {'answer': 'apprehended',\n", " 'hint': 'synonyms for apprehended',\n", - " 'clues': [('pick up', 'take into custody'),\n", - " ('grok', 'get the meaning of something'),\n", - " ('dig', 'get the meaning of something'),\n", - " ('arrest', 'take into custody'),\n", + " 'clues': [('grasp', 'get the meaning of something'),\n", " ('apprehend', 'take into custody'),\n", - " ('collar', 'take into custody'),\n", - " ('quail at', 'anticipate with dread or anxiety'),\n", - " ('grasp', 'get the meaning of something'),\n", + " ('comprehend', 'get the meaning of something'),\n", + " ('compass', 'get the meaning of something'),\n", " ('nail', 'take into custody'),\n", - " ('nab', 'take into custody'),\n", - " ('get the picture', 'get the meaning of something'),\n", + " ('pick up', 'take into custody'),\n", " ('cop', 'take into custody'),\n", - " ('compass', 'get the meaning of something'),\n", + " ('arrest', 'take into custody'),\n", + " ('nab', 'take into custody'),\n", + " ('collar', 'take into custody'),\n", + " ('quail at', 'anticipate with dread or anxiety'),\n", + " ('dig', 'get the meaning of something'),\n", " ('savvy', 'get the meaning of something'),\n", - " ('comprehend', 'get the meaning of something')]},\n", + " ('grok', 'get the meaning of something'),\n", + " ('get the picture', 'get the meaning of something')]},\n", " {'answer': 'approaching',\n", " 'hint': 'synonyms for approaching',\n", - " 'clues': [('approach',\n", - " 'come near or verge on, resemble, come nearer in quality, or character'),\n", - " ('come near', 'come near in time'),\n", - " ('go up', 'move towards'),\n", + " 'clues': [('come near', 'come near in time'),\n", + " ('approach', 'move towards'),\n", " ('near', 'move towards'),\n", - " ('go about', 'begin to deal with'),\n", - " ('come on', 'move towards'),\n", - " ('draw close', 'move towards'),\n", - " ('draw near', 'move towards'),\n", " ('border on',\n", " 'come near or verge on, resemble, come nearer in quality, or character'),\n", + " ('draw near', 'move towards'),\n", + " ('go about', 'begin to deal with'),\n", + " ('draw close', 'move towards'),\n", + " ('come on', 'move towards'),\n", + " ('go up', 'move towards'),\n", " ('set about', 'begin to deal with')]},\n", " {'answer': 'appropriate',\n", " 'hint': 'synonyms for appropriate',\n", - " 'clues': [('conquer', 'take possession of by force, as after an invasion'),\n", - " ('earmark', 'give or assign a resource to a particular person or cause'),\n", - " ('allow', 'give or assign a resource to a particular person or cause'),\n", - " ('capture', 'take possession of by force, as after an invasion'),\n", - " ('reserve', 'give or assign a resource to a particular person or cause'),\n", + " 'clues': [('reserve',\n", + " 'give or assign a resource to a particular person or cause'),\n", + " ('seize', 'take possession of by force, as after an invasion'),\n", " ('set aside',\n", " 'give or assign a resource to a particular person or cause'),\n", - " ('seize', 'take possession of by force, as after an invasion')]},\n", + " ('conquer', 'take possession of by force, as after an invasion'),\n", + " ('allow', 'give or assign a resource to a particular person or cause'),\n", + " ('earmark', 'give or assign a resource to a particular person or cause'),\n", + " ('capture', 'take possession of by force, as after an invasion')]},\n", " {'answer': 'approximate',\n", " 'hint': 'synonyms for approximate',\n", - " 'clues': [('come close', 'be close or similar'),\n", - " ('guess',\n", + " 'clues': [('guess',\n", " 'judge tentatively or form an estimate of (quantities or time)'),\n", + " ('come close', 'be close or similar'),\n", " ('gauge',\n", " 'judge tentatively or form an estimate of (quantities or time)'),\n", - " ('judge',\n", - " 'judge tentatively or form an estimate of (quantities or time)'),\n", " ('estimate',\n", + " 'judge tentatively or form an estimate of (quantities or time)'),\n", + " ('judge',\n", " 'judge tentatively or form an estimate of (quantities or time)')]},\n", " {'answer': 'armed',\n", " 'hint': 'synonyms for armed',\n", - " 'clues': [('arm', 'supply with arms'),\n", + " 'clues': [('build up', 'prepare oneself for a military confrontation'),\n", + " ('arm', 'prepare oneself for a military confrontation'),\n", " ('gird', 'prepare oneself for a military confrontation'),\n", - " ('build up', 'prepare oneself for a military confrontation'),\n", " ('fortify', 'prepare oneself for a military confrontation')]},\n", " {'answer': 'aroused',\n", " 'hint': 'synonyms for aroused',\n", - " 'clues': [('arouse', 'to begin moving,'),\n", - " ('energize', 'cause to be alert and energetic'),\n", - " ('raise', 'call forth (emotions, feelings, and responses)'),\n", - " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", - " ('elicit', 'call forth (emotions, feelings, and responses)'),\n", - " ('brace', 'cause to be alert and energetic'),\n", - " ('wind up', 'stimulate sexually'),\n", - " ('excite', 'stimulate sexually'),\n", - " ('put forward',\n", - " 'summon into action or bring into existence, often as if by magic'),\n", - " ('invoke',\n", + " 'clues': [('stir', 'to begin moving,'),\n", + " ('enkindle', 'call forth (emotions, feelings, and responses)'),\n", + " ('wake', 'cause to become awake or conscious'),\n", + " ('bring up',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('conjure up',\n", + " ('energise', 'cause to be alert and energetic'),\n", + " ('arouse', 'stimulate sexually'),\n", + " ('come alive', 'stop sleeping'),\n", + " ('raise',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('wake up', 'cause to become awake or conscious'),\n", + " ('wake up', 'stop sleeping'),\n", + " ('stimulate', 'cause to be alert and energetic'),\n", " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", - " ('waken', 'cause to become awake or conscious'),\n", - " ('enkindle', 'call forth (emotions, feelings, and responses)'),\n", - " ('come alive', 'stop sleeping'),\n", + " ('awaken', 'stop sleeping'),\n", + " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('sex', 'stimulate sexually'),\n", " ('turn on', 'stimulate sexually'),\n", - " ('call down',\n", + " ('invoke',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('stir',\n", + " ('call down',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('fire', 'call forth (emotions, feelings, and responses)'),\n", - " ('awake', 'stop sleeping'),\n", + " ('excite', 'stimulate sexually'),\n", + " ('wind up', 'stimulate sexually'),\n", " ('call forth',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('conjure',\n", + " ('perk up', 'cause to be alert and energetic'),\n", + " ('put forward',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('bring up',\n", + " ('fire', 'call forth (emotions, feelings, and responses)'),\n", + " ('conjure',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('perk up', 'cause to be alert and energetic'),\n", - " ('stimulate', 'cause to be alert and energetic'),\n", - " ('sex', 'stimulate sexually')]},\n", + " ('elicit', 'call forth (emotions, feelings, and responses)'),\n", + " ('brace', 'cause to be alert and energetic'),\n", + " ('conjure up',\n", + " 'summon into action or bring into existence, often as if by magic')]},\n", " {'answer': 'arranged',\n", " 'hint': 'synonyms for arranged',\n", - " 'clues': [('coiffe', 'arrange attractively'),\n", - " ('do', 'arrange attractively'),\n", - " ('set up', 'put into a proper or systematic order'),\n", - " ('put', 'arrange thoughts, ideas, temporal events'),\n", - " ('set', 'adapt for performance in a different way'),\n", - " ('arrange', 'make arrangements for'),\n", + " 'clues': [('coiffure', 'arrange attractively'),\n", + " ('set up', 'arrange thoughts, ideas, temporal events'),\n", + " ('coif', 'arrange attractively'),\n", " ('dress', 'arrange attractively'),\n", - " ('order', 'arrange thoughts, ideas, temporal events'),\n", + " ('arrange', 'put into a proper or systematic order'),\n", + " ('put', 'arrange thoughts, ideas, temporal events'),\n", " ('fix up', 'make arrangements for'),\n", - " ('format', 'set (printed matter) into a specific format'),\n", + " ('do', 'arrange attractively'),\n", + " ('set', 'arrange attractively'),\n", " ('stage', 'plan, organize, and carry out (an event)'),\n", - " ('coif', 'arrange attractively')]},\n", + " ('format', 'set (printed matter) into a specific format'),\n", + " ('order', 'arrange thoughts, ideas, temporal events')]},\n", " {'answer': 'arrayed',\n", " 'hint': 'synonyms for arrayed',\n", - " 'clues': [('array',\n", - " 'lay out orderly or logically in a line or as if in a line'),\n", - " ('lay out', 'lay out orderly or logically in a line or as if in a line'),\n", - " ('align', 'align oneself with a group or a way of thinking'),\n", + " 'clues': [('array', 'align oneself with a group or a way of thinking'),\n", " ('set out', 'lay out orderly or logically in a line or as if in a line'),\n", - " ('range', 'lay out orderly or logically in a line or as if in a line')]},\n", + " ('lay out', 'lay out orderly or logically in a line or as if in a line'),\n", + " ('range', 'lay out orderly or logically in a line or as if in a line'),\n", + " ('align', 'align oneself with a group or a way of thinking')]},\n", " {'answer': 'arresting',\n", " 'hint': 'synonyms for arresting',\n", - " 'clues': [('arrest', 'take into custody'),\n", + " 'clues': [('apprehend', 'take into custody'),\n", " ('contain',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", + " ('get', 'attract and fix'),\n", " ('halt', 'cause to stop'),\n", - " ('hold', 'cause to stop'),\n", - " ('nail', 'take into custody'),\n", - " ('nab', 'take into custody'),\n", - " ('stop',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", + " ('cop', 'take into custody'),\n", + " ('arrest', 'take into custody'),\n", " ('collar', 'take into custody'),\n", - " ('get', 'attract and fix'),\n", - " ('turn back',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('apprehend', 'take into custody'),\n", " ('catch', 'attract and fix'),\n", " ('check',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('cop', 'take into custody'),\n", + " ('turn back',\n", + " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", + " ('nail', 'take into custody'),\n", + " ('pick up', 'take into custody'),\n", " ('hold back',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('pick up', 'take into custody')]},\n", + " ('nab', 'take into custody'),\n", + " ('hold', 'cause to stop'),\n", + " ('stop',\n", + " 'hold back, as of a danger or an enemy; check the expansion or influence of')]},\n", " {'answer': 'articulate',\n", " 'hint': 'synonyms for articulate',\n", - " 'clues': [('joint', 'provide with a joint'),\n", + " 'clues': [('vocalise', 'express or state clearly'),\n", " ('formulate', 'put into words or an expression'),\n", - " ('say', 'speak, pronounce, or utter in a certain way'),\n", + " ('joint', 'provide with a joint'),\n", " ('enunciate', 'express or state clearly'),\n", - " ('pronounce', 'speak, pronounce, or utter in a certain way'),\n", " ('enounce', 'speak, pronounce, or utter in a certain way'),\n", - " ('vocalize', 'express or state clearly'),\n", " ('give voice', 'put into words or an expression'),\n", " ('word', 'put into words or an expression'),\n", - " ('phrase', 'put into words or an expression'),\n", - " ('sound out', 'speak, pronounce, or utter in a certain way')]},\n", + " ('say', 'speak, pronounce, or utter in a certain way'),\n", + " ('sound out', 'speak, pronounce, or utter in a certain way'),\n", + " ('pronounce', 'speak, pronounce, or utter in a certain way'),\n", + " ('phrase', 'put into words or an expression')]},\n", " {'answer': 'articulated',\n", " 'hint': 'synonyms for articulated',\n", - " 'clues': [('joint', 'provide with a joint'),\n", + " 'clues': [('articulate', 'speak, pronounce, or utter in a certain way'),\n", + " ('vocalise', 'express or state clearly'),\n", " ('formulate', 'put into words or an expression'),\n", - " ('articulate', 'speak, pronounce, or utter in a certain way'),\n", - " ('say', 'speak, pronounce, or utter in a certain way'),\n", + " ('joint', 'provide with a joint'),\n", " ('enunciate', 'express or state clearly'),\n", - " ('pronounce', 'speak, pronounce, or utter in a certain way'),\n", " ('enounce', 'speak, pronounce, or utter in a certain way'),\n", - " ('vocalize', 'express or state clearly'),\n", " ('give voice', 'put into words or an expression'),\n", " ('word', 'put into words or an expression'),\n", - " ('phrase', 'put into words or an expression'),\n", - " ('sound out', 'speak, pronounce, or utter in a certain way')]},\n", + " ('say', 'speak, pronounce, or utter in a certain way'),\n", + " ('pronounce', 'speak, pronounce, or utter in a certain way'),\n", + " ('sound out', 'speak, pronounce, or utter in a certain way'),\n", + " ('phrase', 'put into words or an expression')]},\n", " {'answer': 'ascending',\n", " 'hint': 'synonyms for ascending',\n", - " 'clues': [('ascend', 'travel up,'),\n", - " ('climb up', 'appear to be moving upward, as by means of tendrils'),\n", - " ('move up',\n", - " 'move to a better position in life or to a better job; \"She ascended from a life of poverty to one of great'),\n", + " 'clues': [('ascend', 'go back in order of genealogical succession'),\n", " ('rise',\n", " 'move to a better position in life or to a better job; \"She ascended from a life of poverty to one of great'),\n", " ('go up', 'travel up,'),\n", + " ('come up', 'come up, of celestial bodies'),\n", " ('uprise', 'come up, of celestial bodies'),\n", - " ('come up', 'come up, of celestial bodies')]},\n", + " ('move up',\n", + " 'move to a better position in life or to a better job; \"She ascended from a life of poverty to one of great'),\n", + " ('climb up', 'appear to be moving upward, as by means of tendrils')]},\n", " {'answer': 'ascertained',\n", " 'hint': 'synonyms for ascertained',\n", - " 'clues': [('see to it',\n", - " 'be careful or certain to do something; make certain of something'),\n", + " 'clues': [('check',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", " ('ascertain',\n", - " 'be careful or certain to do something; make certain of something'),\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", " ('determine',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('see',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('check',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('find out',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('watch',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('find',\n", " 'establish after a calculation, investigation, experiment, survey, or study'),\n", - " ('learn',\n", + " ('watch',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('assure',\n", + " ('see',\n", " 'be careful or certain to do something; make certain of something'),\n", " ('control',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('assure',\n", + " 'be careful or certain to do something; make certain of something'),\n", " ('ensure',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('find out',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", " ('insure',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('find',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('learn',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('see to it',\n", " 'be careful or certain to do something; make certain of something')]},\n", " {'answer': 'asphyxiated',\n", " 'hint': 'synonyms for asphyxiated',\n", - " 'clues': [('suffocate', 'be asphyxiated; die from lack of oxygen'),\n", - " ('asphyxiate', 'deprive of oxygen and prevent from breathing'),\n", + " 'clues': [('asphyxiate', 'deprive of oxygen and prevent from breathing'),\n", + " ('suffocate', 'impair the respiration of or obstruct the air passage of'),\n", " ('stifle', 'be asphyxiated; die from lack of oxygen'),\n", - " ('smother', 'deprive of oxygen and prevent from breathing'),\n", - " ('choke', 'impair the respiration of or obstruct the air passage of')]},\n", + " ('choke', 'impair the respiration of or obstruct the air passage of'),\n", + " ('smother', 'deprive of oxygen and prevent from breathing')]},\n", " {'answer': 'asphyxiating',\n", " 'hint': 'synonyms for asphyxiating',\n", - " 'clues': [('suffocate', 'be asphyxiated; die from lack of oxygen'),\n", - " ('asphyxiate', 'deprive of oxygen and prevent from breathing'),\n", + " 'clues': [('asphyxiate', 'deprive of oxygen and prevent from breathing'),\n", + " ('suffocate', 'impair the respiration of or obstruct the air passage of'),\n", " ('stifle', 'be asphyxiated; die from lack of oxygen'),\n", - " ('smother', 'deprive of oxygen and prevent from breathing'),\n", - " ('choke', 'impair the respiration of or obstruct the air passage of')]},\n", + " ('choke', 'impair the respiration of or obstruct the air passage of'),\n", + " ('smother', 'deprive of oxygen and prevent from breathing')]},\n", " {'answer': 'aspiring',\n", " 'hint': 'synonyms for aspiring',\n", - " 'clues': [('shoot for', 'have an ambitious plan or a lofty goal'),\n", + " 'clues': [('draw a bead on', 'have an ambitious plan or a lofty goal'),\n", + " ('shoot for', 'have an ambitious plan or a lofty goal'),\n", " ('aspire', 'have an ambitious plan or a lofty goal'),\n", - " ('aim', 'have an ambitious plan or a lofty goal'),\n", - " ('draw a bead on', 'have an ambitious plan or a lofty goal')]},\n", + " ('aim', 'have an ambitious plan or a lofty goal')]},\n", " {'answer': 'asserted',\n", " 'hint': 'synonyms for asserted',\n", - " 'clues': [('aver', 'to declare or affirm solemnly and formally as true'),\n", + " 'clues': [('affirm', 'to declare or affirm solemnly and formally as true'),\n", " ('assert', \"insist on having one's opinions and rights recognized\"),\n", - " ('swear', 'to declare or affirm solemnly and formally as true'),\n", + " ('insist', 'assert to be true'),\n", " ('swan', 'to declare or affirm solemnly and formally as true'),\n", - " ('put forward', \"insist on having one's opinions and rights recognized\"),\n", - " ('affirm', 'to declare or affirm solemnly and formally as true'),\n", " ('verify', 'to declare or affirm solemnly and formally as true'),\n", - " ('maintain', 'state categorically'),\n", + " ('asseverate', 'state categorically'),\n", " ('avow', 'to declare or affirm solemnly and formally as true'),\n", - " ('insist', 'assert to be true'),\n", - " ('asseverate', 'state categorically')]},\n", + " ('maintain', 'state categorically'),\n", + " ('aver', 'to declare or affirm solemnly and formally as true'),\n", + " ('put forward', \"insist on having one's opinions and rights recognized\"),\n", + " ('swear', 'to declare or affirm solemnly and formally as true')]},\n", " {'answer': 'asserting',\n", " 'hint': 'synonyms for asserting',\n", - " 'clues': [('aver', 'to declare or affirm solemnly and formally as true'),\n", + " 'clues': [('affirm', 'to declare or affirm solemnly and formally as true'),\n", " ('assert', \"insist on having one's opinions and rights recognized\"),\n", - " ('swear', 'to declare or affirm solemnly and formally as true'),\n", + " ('insist', 'assert to be true'),\n", " ('swan', 'to declare or affirm solemnly and formally as true'),\n", - " ('put forward', \"insist on having one's opinions and rights recognized\"),\n", - " ('affirm', 'to declare or affirm solemnly and formally as true'),\n", " ('verify', 'to declare or affirm solemnly and formally as true'),\n", - " ('maintain', 'state categorically'),\n", + " ('asseverate', 'state categorically'),\n", " ('avow', 'to declare or affirm solemnly and formally as true'),\n", - " ('insist', 'assert to be true'),\n", - " ('asseverate', 'state categorically')]},\n", + " ('maintain', 'state categorically'),\n", + " ('aver', 'to declare or affirm solemnly and formally as true'),\n", + " ('put forward', \"insist on having one's opinions and rights recognized\"),\n", + " ('swear', 'to declare or affirm solemnly and formally as true')]},\n", " {'answer': 'assigned',\n", " 'hint': 'synonyms for assigned',\n", - " 'clues': [('portion', 'give out'),\n", - " ('attribute', 'decide as to where something belongs in a scheme'),\n", - " ('ascribe', 'attribute or credit to'),\n", - " ('assign', 'select something or someone for a specific purpose'),\n", - " ('arrogate', 'make undue claims to having'),\n", - " ('allot', 'give out'),\n", - " ('specify', 'select something or someone for a specific purpose'),\n", + " 'clues': [('assign', \"transfer one's right to\"),\n", " ('depute',\n", " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", - " ('set apart', 'select something or someone for a specific purpose'),\n", - " ('impute', 'attribute or credit to'),\n", " ('designate',\n", " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", - " ('put', 'attribute or give'),\n", + " ('specify', 'select something or someone for a specific purpose'),\n", " ('delegate',\n", - " 'give an assignment to (a person) to a post, or assign a task to (a person)')]},\n", + " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", + " ('put', 'attribute or give'),\n", + " ('allot', 'give out'),\n", + " ('attribute', 'decide as to where something belongs in a scheme'),\n", + " ('ascribe', 'attribute or credit to'),\n", + " ('arrogate', 'make undue claims to having'),\n", + " ('impute', 'attribute or credit to'),\n", + " ('portion', 'give out'),\n", + " ('set apart', 'select something or someone for a specific purpose')]},\n", " {'answer': 'assimilating',\n", " 'hint': 'synonyms for assimilating',\n", " 'clues': [('take in', 'take up mentally'),\n", + " ('assimilate', \"become similar to one's environment\"),\n", + " ('ingest', 'take up mentally'),\n", " ('absorb', 'take up mentally'),\n", - " ('assimilate', 'take up mentally'),\n", - " ('imbibe', 'take (gas, light or heat) into a solution'),\n", - " ('ingest', 'take up mentally')]},\n", + " ('imbibe', 'take (gas, light or heat) into a solution')]},\n", " {'answer': 'assisted',\n", " 'hint': 'synonyms for assisted',\n", - " 'clues': [('attend to', 'work for or be a servant to'),\n", - " ('assist', 'work for or be a servant to'),\n", + " 'clues': [('aid', 'give help or assistance; be of service'),\n", + " ('assist', 'give help or assistance; be of service'),\n", + " ('serve', 'work for or be a servant to'),\n", + " ('attend to', 'work for or be a servant to'),\n", " ('attend', 'work for or be a servant to'),\n", - " ('aid', 'give help or assistance; be of service'),\n", - " ('help', 'give help or assistance; be of service'),\n", " ('wait on', 'work for or be a servant to'),\n", - " ('serve', 'work for or be a servant to')]},\n", + " ('help', 'give help or assistance; be of service')]},\n", " {'answer': 'associate',\n", " 'hint': 'synonyms for associate',\n", - " 'clues': [('relate', 'make a logical or causal connection'),\n", - " ('tie in', 'make a logical or causal connection'),\n", - " ('connect', 'make a logical or causal connection'),\n", + " 'clues': [('assort', 'keep company with; hang out with'),\n", " ('affiliate', 'keep company with; hang out with'),\n", - " ('link up', 'make a logical or causal connection'),\n", " ('colligate', 'make a logical or causal connection'),\n", - " ('consort', 'keep company with; hang out with'),\n", " ('consociate', 'bring or come into association or action'),\n", + " ('link up', 'make a logical or causal connection'),\n", " ('link', 'make a logical or causal connection'),\n", - " ('assort', 'keep company with; hang out with')]},\n", + " ('connect', 'make a logical or causal connection'),\n", + " ('consort', 'keep company with; hang out with'),\n", + " ('tie in', 'make a logical or causal connection'),\n", + " ('relate', 'make a logical or causal connection')]},\n", " {'answer': 'assorted',\n", " 'hint': 'synonyms for assorted',\n", - " 'clues': [('sort out', 'arrange or order by classes or categories'),\n", + " 'clues': [('associate', 'keep company with; hang out with'),\n", + " ('assort', 'keep company with; hang out with'),\n", + " ('sort out', 'arrange or order by classes or categories'),\n", + " ('separate', 'arrange or order by classes or categories'),\n", + " ('classify', 'arrange or order by classes or categories'),\n", + " ('sort', 'arrange or order by classes or categories'),\n", " ('affiliate', 'keep company with; hang out with'),\n", " ('consort', 'keep company with; hang out with'),\n", - " ('class', 'arrange or order by classes or categories'),\n", - " ('assort', 'arrange or order by classes or categories'),\n", - " ('sort', 'arrange or order by classes or categories'),\n", - " ('separate', 'arrange or order by classes or categories'),\n", - " ('associate', 'keep company with; hang out with'),\n", - " ('classify', 'arrange or order by classes or categories')]},\n", + " ('class', 'arrange or order by classes or categories')]},\n", " {'answer': 'assumed',\n", " 'hint': 'synonyms for assumed',\n", - " 'clues': [('presume',\n", - " 'take to be the case or to be true; accept without verification or proof'),\n", + " 'clues': [('don', \"put clothing on one's body\"),\n", + " ('take', 'occupy or take on'),\n", + " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " ('assume',\n", + " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", " ('adopt', 'take on titles, offices, duties, responsibilities'),\n", - " ('take on', 'take on titles, offices, duties, responsibilities'),\n", - " ('assume', 'take on a certain form, attribute, or aspect'),\n", - " ('accept',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", - " ('put on', \"put clothing on one's body\"),\n", - " ('sham', 'make a pretence of'),\n", - " ('seize',\n", - " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", - " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " ('take on', 'take on a certain form, attribute, or aspect'),\n", + " ('acquire', 'take on a certain form, attribute, or aspect'),\n", + " ('simulate', 'make a pretence of'),\n", " ('feign', 'make a pretence of'),\n", - " ('don', \"put clothing on one's body\"),\n", + " ('take for granted',\n", + " 'take to be the case or to be true; accept without verification or proof'),\n", + " ('wear', \"put clothing on one's body\"),\n", + " ('get into', \"put clothing on one's body\"),\n", + " ('take over', 'take on titles, offices, duties, responsibilities'),\n", " ('strike', 'occupy or take on'),\n", - " ('take over',\n", + " ('take up', 'occupy or take on'),\n", + " ('accept',\n", " \"take on as one's own the expenses or debts of another person\"),\n", - " ('take', 'occupy or take on'),\n", - " ('usurp',\n", - " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", - " ('get into', \"put clothing on one's body\"),\n", " ('arrogate',\n", " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", - " ('wear', \"put clothing on one's body\"),\n", - " ('simulate', 'make a pretence of'),\n", - " ('take for granted',\n", - " 'take to be the case or to be true; accept without verification or proof'),\n", - " ('acquire', 'take on a certain form, attribute, or aspect'),\n", - " ('take up', 'occupy or take on')]},\n", - " {'answer': 'assuming',\n", - " 'hint': 'synonyms for assuming',\n", - " 'clues': [('presume',\n", + " ('presume',\n", " 'take to be the case or to be true; accept without verification or proof'),\n", - " ('adopt', 'take on titles, offices, duties, responsibilities'),\n", - " ('take on', 'take on titles, offices, duties, responsibilities'),\n", - " ('assume', 'take on a certain form, attribute, or aspect'),\n", - " ('accept',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", - " ('put on', \"put clothing on one's body\"),\n", " ('sham', 'make a pretence of'),\n", - " ('seize',\n", + " ('put on', \"put clothing on one's body\"),\n", + " ('usurp',\n", " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", + " ('seize',\n", + " \"seize and take control without authority and possibly with force; take as one's right or possession\")]},\n", + " {'answer': 'assuming',\n", + " 'hint': 'synonyms for assuming',\n", + " 'clues': [('don', \"put clothing on one's body\"),\n", + " ('take', 'occupy or take on'),\n", " ('bear', \"take on as one's own the expenses or debts of another person\"),\n", + " ('assume',\n", + " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", + " ('adopt', 'take on titles, offices, duties, responsibilities'),\n", + " ('take on', 'take on a certain form, attribute, or aspect'),\n", + " ('acquire', 'take on a certain form, attribute, or aspect'),\n", + " ('simulate', 'make a pretence of'),\n", " ('feign', 'make a pretence of'),\n", - " ('don', \"put clothing on one's body\"),\n", + " ('take for granted',\n", + " 'take to be the case or to be true; accept without verification or proof'),\n", + " ('wear', \"put clothing on one's body\"),\n", + " ('get into', \"put clothing on one's body\"),\n", + " ('take over', 'take on titles, offices, duties, responsibilities'),\n", " ('strike', 'occupy or take on'),\n", - " ('take over',\n", + " ('take up', 'occupy or take on'),\n", + " ('accept',\n", " \"take on as one's own the expenses or debts of another person\"),\n", - " ('take', 'occupy or take on'),\n", - " ('usurp',\n", - " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", - " ('get into', \"put clothing on one's body\"),\n", " ('arrogate',\n", " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", - " ('wear', \"put clothing on one's body\"),\n", - " ('simulate', 'make a pretence of'),\n", - " ('take for granted',\n", + " ('presume',\n", " 'take to be the case or to be true; accept without verification or proof'),\n", - " ('acquire', 'take on a certain form, attribute, or aspect'),\n", - " ('take up', 'occupy or take on')]},\n", + " ('sham', 'make a pretence of'),\n", + " ('put on', \"put clothing on one's body\"),\n", + " ('usurp',\n", + " \"seize and take control without authority and possibly with force; take as one's right or possession\"),\n", + " ('seize',\n", + " \"seize and take control without authority and possibly with force; take as one's right or possession\")]},\n", " {'answer': 'assured',\n", " 'hint': 'synonyms for assured',\n", - " 'clues': [('reassure', 'cause to feel sure; give reassurance to'),\n", - " ('promise', 'make a promise or commitment'),\n", - " ('see to it',\n", - " 'be careful or certain to do something; make certain of something'),\n", + " 'clues': [('assure', 'make certain of'),\n", " ('ascertain',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('guarantee', 'make certain of'),\n", + " ('insure', 'make certain of'),\n", + " ('promise', 'make a promise or commitment'),\n", + " ('secure', 'make certain of'),\n", " ('see',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('secure', 'make certain of'),\n", - " ('check',\n", + " ('control',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('ensure',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('ensure', 'make certain of'),\n", - " ('guarantee', 'make certain of'),\n", - " ('insure', 'make certain of'),\n", " ('tell', 'inform positively and with certainty and confidence'),\n", - " ('control',\n", + " ('check',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('see to it',\n", " 'be careful or certain to do something; make certain of something')]},\n", " {'answer': 'assuring',\n", " 'hint': 'synonyms for assuring',\n", - " 'clues': [('reassure', 'cause to feel sure; give reassurance to'),\n", - " ('promise', 'make a promise or commitment'),\n", - " ('see to it',\n", - " 'be careful or certain to do something; make certain of something'),\n", + " 'clues': [('assure', 'make certain of'),\n", " ('ascertain',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('guarantee', 'make certain of'),\n", + " ('insure', 'make certain of'),\n", + " ('promise', 'make a promise or commitment'),\n", + " ('secure', 'make certain of'),\n", " ('see',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('secure', 'make certain of'),\n", - " ('check',\n", + " ('control',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('ensure',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('ensure', 'make certain of'),\n", - " ('guarantee', 'make certain of'),\n", - " ('insure', 'make certain of'),\n", " ('tell', 'inform positively and with certainty and confidence'),\n", - " ('control',\n", + " ('check',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('see to it',\n", " 'be careful or certain to do something; make certain of something')]},\n", " {'answer': 'attached',\n", " 'hint': 'synonyms for attached',\n", - " 'clues': [('tie', 'create social or emotional ties'),\n", - " ('confiscate',\n", - " 'take temporary possession of as a security, by legal authority'),\n", - " ('attach', 'be attached; be in contact with'),\n", - " ('sequester',\n", + " 'clues': [('attach',\n", " 'take temporary possession of as a security, by legal authority'),\n", + " ('bond', 'create social or emotional ties'),\n", " ('bind', 'create social or emotional ties'),\n", + " ('seize',\n", + " 'take temporary possession of as a security, by legal authority'),\n", + " ('confiscate',\n", + " 'take temporary possession of as a security, by legal authority'),\n", + " ('tie', 'create social or emotional ties'),\n", " ('impound',\n", " 'take temporary possession of as a security, by legal authority'),\n", - " ('bond', 'create social or emotional ties'),\n", - " ('seize',\n", + " ('sequester',\n", " 'take temporary possession of as a security, by legal authority')]},\n", " {'answer': 'attacking',\n", " 'hint': 'synonyms for attacking',\n", - " 'clues': [('aggress', 'take the initiative and go on the offensive'),\n", - " ('assail',\n", - " 'launch an attack or assault on; begin hostilities or start warfare with'),\n", - " ('attack',\n", - " 'launch an attack or assault on; begin hostilities or start warfare with'),\n", - " ('lash out', 'attack in speech or writing'),\n", - " ('assault', 'attack in speech or writing'),\n", + " 'clues': [('attack', 'attack in speech or writing'),\n", + " ('assault', 'attack someone physically or emotionally'),\n", " ('round', 'attack in speech or writing'),\n", " ('snipe', 'attack in speech or writing'),\n", + " ('lash out', 'attack in speech or writing'),\n", + " ('assail', 'attack in speech or writing'),\n", + " ('aggress', 'take the initiative and go on the offensive'),\n", " ('set on', 'attack someone physically or emotionally')]},\n", " {'answer': 'attained',\n", " 'hint': 'synonyms for attained',\n", - " 'clues': [('achieve', 'to gain with effort'),\n", - " ('chance upon', 'find unexpectedly'),\n", - " ('attain', 'find unexpectedly'),\n", - " ('come across', 'find unexpectedly'),\n", - " ('discover', 'find unexpectedly'),\n", + " 'clues': [('chance upon', 'find unexpectedly'),\n", + " ('fall upon', 'find unexpectedly'),\n", + " ('achieve', 'to gain with effort'),\n", " ('gain', 'reach a destination, either real or abstract'),\n", - " ('hit', 'reach a destination, either real or abstract'),\n", - " ('arrive at', 'reach a destination, either real or abstract'),\n", + " ('attain', 'to gain with effort'),\n", " ('make', 'reach a destination, either real or abstract'),\n", + " ('reach', 'to gain with effort'),\n", + " ('come across', 'find unexpectedly'),\n", " ('come upon', 'find unexpectedly'),\n", - " ('reach', 'reach a destination, either real or abstract'),\n", " ('happen upon', 'find unexpectedly'),\n", - " ('fall upon', 'find unexpectedly'),\n", + " ('discover', 'find unexpectedly'),\n", + " ('hit', 'reach a destination, either real or abstract'),\n", + " ('accomplish', 'to gain with effort'),\n", " ('light upon', 'find unexpectedly'),\n", - " ('strike', 'find unexpectedly'),\n", - " ('accomplish', 'to gain with effort')]},\n", + " ('arrive at', 'reach a destination, either real or abstract'),\n", + " ('strike', 'find unexpectedly')]},\n", " {'answer': 'attempted',\n", " 'hint': 'synonyms for attempted',\n", - " 'clues': [('essay', 'make an effort or attempt'),\n", - " ('seek', 'make an effort or attempt'),\n", + " 'clues': [('try', 'make an effort or attempt'),\n", + " ('attempt', 'make an effort or attempt'),\n", " ('undertake', 'enter upon an activity or enterprise'),\n", + " ('essay', 'make an effort or attempt'),\n", " ('assay', 'make an effort or attempt'),\n", - " ('attempt', 'make an effort or attempt'),\n", " ('set about', 'enter upon an activity or enterprise'),\n", - " ('try', 'make an effort or attempt')]},\n", + " ('seek', 'make an effort or attempt')]},\n", " {'answer': 'attended',\n", " 'hint': 'synonyms for attended',\n", - " 'clues': [('pay heed', 'give heed (to)'),\n", - " ('advert', 'give heed (to)'),\n", - " ('attend to', 'work for or be a servant to'),\n", + " 'clues': [('look', 'take charge of or deal with'),\n", " ('attend', 'take charge of or deal with'),\n", - " ('assist', 'work for or be a servant to'),\n", " ('hang', 'give heed (to)'),\n", - " ('go to', 'be present at (meetings, church services, university), etc.'),\n", - " ('look', 'take charge of or deal with'),\n", - " ('serve', 'work for or be a servant to'),\n", " ('give ear', 'give heed (to)'),\n", - " ('wait on', 'work for or be a servant to'),\n", + " ('assist', 'work for or be a servant to'),\n", + " ('serve', 'work for or be a servant to'),\n", + " ('attend to', 'work for or be a servant to'),\n", + " ('pay heed', 'give heed (to)'),\n", + " ('go to', 'be present at (meetings, church services, university), etc.'),\n", " ('take care', 'take charge of or deal with'),\n", + " ('advert', 'give heed (to)'),\n", + " ('wait on', 'work for or be a servant to'),\n", " ('see', 'take charge of or deal with')]},\n", " {'answer': 'attested',\n", " 'hint': 'synonyms for attested',\n", - " 'clues': [('attest',\n", - " 'authenticate, affirm to be true, genuine, or correct, as in an official capacity'),\n", - " ('testify', 'give testimony in a court of law'),\n", + " 'clues': [('manifest',\n", + " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", " ('certify',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('manifest',\n", + " ('attest', 'establish or verify the usage of'),\n", + " ('evidence',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", " ('demonstrate',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('take the stand', 'give testimony in a court of law'),\n", " ('bear witness', 'give testimony in a court of law'),\n", - " ('evidence',\n", - " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n", + " ('take the stand', 'give testimony in a court of law'),\n", + " ('testify', 'give testimony in a court of law')]},\n", " {'answer': 'attired',\n", " 'hint': 'synonyms for attired',\n", - " 'clues': [('attire',\n", + " 'clues': [('deck up',\n", + " 'put on special clothes to appear particularly appealing and attractive'),\n", + " ('trick out',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('rig out',\n", + " ('fig up',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", " ('get up',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('overdress',\n", - " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('fancy up',\n", + " ('fig out',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", " ('prink',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('tog out',\n", + " ('trick up',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", " ('gussy up',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('fig up',\n", - " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('tog up',\n", + " ('tog out',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", " ('deck out',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('trick up',\n", + " ('attire',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('trick out',\n", + " ('dress up',\n", + " 'put on special clothes to appear particularly appealing and attractive'),\n", + " ('overdress',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('deck up',\n", + " ('fancy up',\n", " 'put on special clothes to appear particularly appealing and attractive'),\n", - " ('dress up',\n", + " ('tog up',\n", " 'put on special clothes to appear particularly appealing and attractive')]},\n", " {'answer': 'authorised',\n", " 'hint': 'synonyms for authorised',\n", - " 'clues': [('authorize', 'grant authorization or clearance for'),\n", - " ('empower', 'give or delegate power or authority to'),\n", - " ('clear', 'grant authorization or clearance for'),\n", - " ('pass', 'grant authorization or clearance for')]},\n", + " 'clues': [('clear', 'grant authorization or clearance for'),\n", + " ('pass', 'grant authorization or clearance for'),\n", + " ('authorize', 'grant authorization or clearance for'),\n", + " ('empower', 'give or delegate power or authority to')]},\n", " {'answer': 'authorized',\n", " 'hint': 'synonyms for authorized',\n", - " 'clues': [('authorize', 'grant authorization or clearance for'),\n", - " ('empower', 'give or delegate power or authority to'),\n", - " ('clear', 'grant authorization or clearance for'),\n", - " ('pass', 'grant authorization or clearance for')]},\n", + " 'clues': [('clear', 'grant authorization or clearance for'),\n", + " ('pass', 'grant authorization or clearance for'),\n", + " ('authorize', 'grant authorization or clearance for'),\n", + " ('empower', 'give or delegate power or authority to')]},\n", " {'answer': 'avowed',\n", " 'hint': 'synonyms for avowed',\n", - " 'clues': [('aver', 'to declare or affirm solemnly and formally as true'),\n", - " ('swear', 'to declare or affirm solemnly and formally as true'),\n", - " ('swan', 'to declare or affirm solemnly and formally as true'),\n", - " ('affirm', 'to declare or affirm solemnly and formally as true'),\n", + " 'clues': [('affirm', 'to declare or affirm solemnly and formally as true'),\n", " ('avow', 'admit openly and bluntly; make no bones about'),\n", + " ('swan', 'to declare or affirm solemnly and formally as true'),\n", " ('verify', 'to declare or affirm solemnly and formally as true'),\n", + " ('avouch', 'admit openly and bluntly; make no bones about'),\n", " ('assert', 'to declare or affirm solemnly and formally as true'),\n", - " ('avouch', 'admit openly and bluntly; make no bones about')]},\n", + " ('aver', 'to declare or affirm solemnly and formally as true'),\n", + " ('swear', 'to declare or affirm solemnly and formally as true')]},\n", " {'answer': 'awake',\n", " 'hint': 'synonyms for awake',\n", - " 'clues': [('waken', 'stop sleeping'),\n", - " ('arouse', 'stop sleeping'),\n", + " 'clues': [('awaken', 'stop sleeping'),\n", + " ('wake', 'stop sleeping'),\n", " ('come alive', 'stop sleeping'),\n", - " ('wake up', 'stop sleeping')]},\n", + " ('wake up', 'stop sleeping'),\n", + " ('arouse', 'stop sleeping')]},\n", " {'answer': 'awakened',\n", " 'hint': 'synonyms for awakened',\n", - " 'clues': [('arouse', 'stop sleeping'),\n", + " 'clues': [('awaken', 'stop sleeping'),\n", " ('wake', 'cause to become awake or conscious'),\n", " ('wake up', 'cause to become awake or conscious'),\n", - " ('awaken', 'cause to become awake or conscious'),\n", + " ('arouse', 'cause to become awake or conscious'),\n", " ('come alive', 'stop sleeping')]},\n", " {'answer': 'back',\n", " 'hint': 'synonyms for back',\n", - " 'clues': [('endorse', \"give support or one's approval to\"),\n", + " 'clues': [('indorse', \"give support or one's approval to\"),\n", + " ('bet on', 'place a bet on'),\n", " ('second', \"give support or one's approval to\"),\n", - " ('support', 'be behind; approve of'),\n", - " ('punt', 'place a bet on'),\n", - " ('plunk for', 'be behind; approve of'),\n", - " ('gage', 'place a bet on'),\n", " ('stake', 'place a bet on'),\n", - " ('bet on', 'place a bet on'),\n", - " ('plump for', 'be behind; approve of'),\n", + " ('gage', 'place a bet on'),\n", + " ('support', 'be behind; approve of'),\n", " ('game', 'place a bet on'),\n", - " ('back up', 'establish as valid or genuine')]},\n", + " ('plump for', 'be behind; approve of'),\n", + " ('plunk for', 'be behind; approve of'),\n", + " ('back up', 'establish as valid or genuine'),\n", + " ('punt', 'place a bet on')]},\n", " {'answer': 'backed',\n", " 'hint': 'synonyms for backed',\n", - " 'clues': [('second', \"give support or one's approval to\"),\n", - " ('punt', 'place a bet on'),\n", - " ('plunk for', 'be behind; approve of'),\n", - " ('gage', 'place a bet on'),\n", - " ('endorse', 'be behind; approve of'),\n", + " 'clues': [('indorse', \"give support or one's approval to\"),\n", + " ('bet on', 'place a bet on'),\n", + " ('second', \"give support or one's approval to\"),\n", " ('back', 'be behind; approve of'),\n", + " ('punt', 'place a bet on'),\n", + " ('stake', 'place a bet on'),\n", " ('plump for', 'be behind; approve of'),\n", + " ('back up', 'establish as valid or genuine'),\n", + " ('gage', 'place a bet on'),\n", " ('support', 'be behind; approve of'),\n", - " ('bet on', 'place a bet on'),\n", - " ('stake', 'place a bet on'),\n", " ('game', 'place a bet on'),\n", - " ('back up', 'establish as valid or genuine')]},\n", + " ('plunk for', 'be behind; approve of')]},\n", " {'answer': 'baffled',\n", " 'hint': 'synonyms for baffled',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", - " ('get', 'be a mystery or bewildering to'),\n", - " ('beat', 'be a mystery or bewildering to'),\n", - " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('amaze', 'be a mystery or bewildering to'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " 'clues': [('cross',\n", + " 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('regulate', 'check the emission of (sound)'),\n", - " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", - " ('perplex', 'be a mystery or bewildering to'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('beat', 'be a mystery or bewildering to'),\n", " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", - " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('regulate', 'check the emission of (sound)'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", - " {'answer': 'baffling',\n", - " 'hint': 'synonyms for baffling',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", + " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('flummox', 'be a mystery or bewildering to'),\n", + " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('get', 'be a mystery or bewildering to'),\n", - " ('beat', 'be a mystery or bewildering to'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('perplex', 'be a mystery or bewildering to'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('amaze', 'be a mystery or bewildering to'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", + " {'answer': 'baffling',\n", + " 'hint': 'synonyms for baffling',\n", + " 'clues': [('cross',\n", + " 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('regulate', 'check the emission of (sound)'),\n", - " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", - " ('perplex', 'be a mystery or bewildering to'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('beat', 'be a mystery or bewildering to'),\n", " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", - " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('regulate', 'check the emission of (sound)'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", + " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('flummox', 'be a mystery or bewildering to'),\n", + " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('get', 'be a mystery or bewildering to'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('perplex', 'be a mystery or bewildering to'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('amaze', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", " {'answer': 'balanced',\n", " 'hint': 'synonyms for balanced',\n", - " 'clues': [('balance', 'bring into balance or equilibrium'),\n", + " 'clues': [('balance', 'hold or carry in equilibrium'),\n", " ('equilibrize', 'bring into balance or equilibrium'),\n", - " ('equilibrate', 'bring into balance or equilibrium'),\n", - " ('poise', 'hold or carry in equilibrium')]},\n", + " ('poise', 'hold or carry in equilibrium'),\n", + " ('equilibrate', 'bring into balance or equilibrium')]},\n", " {'answer': 'banging',\n", " 'hint': 'synonyms for banging',\n", - " 'clues': [('slam', 'close violently'),\n", - " ('have it away', 'have sexual intercourse with'),\n", - " ('roll in the hay', 'have sexual intercourse with'),\n", - " ('jazz', 'have sexual intercourse with'),\n", - " ('bang', 'leap, jerk, bang'),\n", - " ('get it on', 'have sexual intercourse with'),\n", + " 'clues': [('bang',\n", + " 'to produce a sharp often metallic explosive or percussive sound'),\n", " ('hump', 'have sexual intercourse with'),\n", - " ('sleep together', 'have sexual intercourse with'),\n", - " ('screw', 'have sexual intercourse with'),\n", - " ('have sex', 'have sexual intercourse with'),\n", - " ('spang', 'leap, jerk, bang'),\n", - " ('have intercourse', 'have sexual intercourse with'),\n", + " ('jazz', 'have sexual intercourse with'),\n", + " ('slam', 'close violently'),\n", " ('eff', 'have sexual intercourse with'),\n", - " ('get laid', 'have sexual intercourse with'),\n", - " ('love', 'have sexual intercourse with'),\n", - " ('have it off', 'have sexual intercourse with'),\n", " ('do it', 'have sexual intercourse with'),\n", - " ('fuck', 'have sexual intercourse with'),\n", " ('bed', 'have sexual intercourse with'),\n", - " ('make love', 'have sexual intercourse with'),\n", - " ('be intimate', 'have sexual intercourse with'),\n", - " ('have a go at it', 'have sexual intercourse with'),\n", - " ('bonk', 'have sexual intercourse with'),\n", + " ('lie with', 'have sexual intercourse with'),\n", " ('sleep with', 'have sexual intercourse with'),\n", + " ('fuck', 'have sexual intercourse with'),\n", + " ('be intimate', 'have sexual intercourse with'),\n", + " ('make love', 'have sexual intercourse with'),\n", + " ('get it on', 'have sexual intercourse with'),\n", + " ('roll in the hay', 'have sexual intercourse with'),\n", " ('know', 'have sexual intercourse with'),\n", + " ('love', 'have sexual intercourse with'),\n", + " ('have sex', 'have sexual intercourse with'),\n", + " ('bonk', 'have sexual intercourse with'),\n", + " ('spang', 'leap, jerk, bang'),\n", + " ('have it off', 'have sexual intercourse with'),\n", + " ('get laid', 'have sexual intercourse with'),\n", + " ('have a go at it', 'have sexual intercourse with'),\n", + " ('have it away', 'have sexual intercourse with'),\n", " ('make out', 'have sexual intercourse with'),\n", - " ('lie with', 'have sexual intercourse with')]},\n", + " ('have intercourse', 'have sexual intercourse with'),\n", + " ('sleep together', 'have sexual intercourse with'),\n", + " ('screw', 'have sexual intercourse with')]},\n", " {'answer': 'banned',\n", " 'hint': 'synonyms for banned',\n", - " 'clues': [('censor',\n", - " 'forbid the public distribution of ( a movie or a newspaper)'),\n", - " ('blackball', 'expel from a community or group'),\n", - " ('ostracize', 'expel from a community or group'),\n", - " ('ban', 'expel from a community or group'),\n", + " 'clues': [('banish', 'ban from a place of residence, as for punishment'),\n", " ('shun', 'expel from a community or group'),\n", - " ('banish', 'expel from a community or group'),\n", + " ('ban', 'ban from a place of residence, as for punishment'),\n", + " ('ostracize', 'expel from a community or group'),\n", + " ('censor', 'forbid the public distribution of ( a movie or a newspaper)'),\n", + " ('blackball', 'expel from a community or group'),\n", " ('cast out', 'expel from a community or group')]},\n", " {'answer': 'bantering',\n", " 'hint': 'synonyms for bantering',\n", " 'clues': [('josh', 'be silly or tease one another'),\n", - " ('kid', 'be silly or tease one another'),\n", + " ('chaff', 'be silly or tease one another'),\n", " ('banter', 'be silly or tease one another'),\n", - " ('jolly', 'be silly or tease one another'),\n", - " ('chaff', 'be silly or tease one another')]},\n", + " ('kid', 'be silly or tease one another'),\n", + " ('jolly', 'be silly or tease one another')]},\n", " {'answer': 'bare',\n", " 'hint': 'synonyms for bare',\n", - " 'clues': [('publicise', 'make public'),\n", - " ('denudate', 'lay bare'),\n", + " 'clues': [('denudate', 'lay bare'),\n", + " ('publicize', 'make public'),\n", " ('strip', 'lay bare'),\n", " ('air', 'make public')]},\n", " {'answer': 'bared',\n", " 'hint': 'synonyms for bared',\n", - " 'clues': [('block', 'render unsuitable for passage'),\n", - " ('bar', 'secure with, or as if with, bars'),\n", - " ('publicize', 'make public'),\n", - " ('denudate', 'lay bare'),\n", - " ('strip', 'lay bare'),\n", + " 'clues': [('exclude', 'prevent from entering; keep out'),\n", + " ('bare', 'lay bare'),\n", + " ('denude', 'lay bare'),\n", + " ('relegate', 'expel, as if by official decree'),\n", + " ('stop', 'render unsuitable for passage'),\n", + " ('blockade', 'render unsuitable for passage'),\n", " ('block up', 'render unsuitable for passage'),\n", + " ('strip', 'lay bare'),\n", " ('air', 'make public'),\n", - " ('exclude', 'prevent from entering; keep out'),\n", - " ('stop', 'render unsuitable for passage'),\n", + " ('barricade', 'render unsuitable for passage'),\n", + " ('publicize', 'make public'),\n", " ('debar', 'prevent from entering; keep out'),\n", - " ('blockade', 'render unsuitable for passage'),\n", - " ('relegate', 'expel, as if by official decree'),\n", " ('banish', 'expel, as if by official decree'),\n", - " ('barricade', 'render unsuitable for passage'),\n", + " ('block', 'render unsuitable for passage'),\n", " ('block off', 'render unsuitable for passage')]},\n", " {'answer': 'barred',\n", " 'hint': 'synonyms for barred',\n", - " 'clues': [('block', 'render unsuitable for passage'),\n", + " 'clues': [('exclude', 'prevent from entering; keep out'),\n", " ('bar', 'secure with, or as if with, bars'),\n", - " ('block up', 'render unsuitable for passage'),\n", - " ('blockade', 'render unsuitable for passage'),\n", + " ('debar', 'prevent from entering; keep out'),\n", + " ('stop', 'render unsuitable for passage'),\n", " ('relegate', 'expel, as if by official decree'),\n", " ('banish', 'expel, as if by official decree'),\n", - " ('exclude', 'prevent from entering; keep out'),\n", - " ('stop', 'render unsuitable for passage'),\n", - " ('debar', 'prevent from entering; keep out'),\n", - " ('barricade', 'render unsuitable for passage'),\n", - " ('block off', 'render unsuitable for passage')]},\n", + " ('blockade', 'render unsuitable for passage'),\n", + " ('block up', 'render unsuitable for passage'),\n", + " ('block', 'render unsuitable for passage'),\n", + " ('block off', 'render unsuitable for passage'),\n", + " ('barricade', 'render unsuitable for passage')]},\n", " {'answer': 'barricaded',\n", " 'hint': 'synonyms for barricaded',\n", - " 'clues': [('barricado', 'block off with barricades'),\n", - " ('block', 'render unsuitable for passage'),\n", - " ('bar', 'render unsuitable for passage'),\n", - " ('block up', 'render unsuitable for passage'),\n", - " ('blockade', 'render unsuitable for passage'),\n", + " 'clues': [('block', 'render unsuitable for passage'),\n", + " ('barricado', 'block off with barricades'),\n", " ('stop', 'render unsuitable for passage'),\n", + " ('blockade', 'render unsuitable for passage'),\n", + " ('block up', 'render unsuitable for passage'),\n", + " ('bar', 'render unsuitable for passage'),\n", " ('block off', 'render unsuitable for passage')]},\n", " {'answer': 'base',\n", " 'hint': 'synonyms for base',\n", - " 'clues': [('free-base',\n", + " 'clues': [('ground', 'use as a basis for; found on'),\n", + " ('establish', 'use as a basis for; found on'),\n", + " ('free-base',\n", " 'use (purified cocaine) by burning it and inhaling the fumes'),\n", - " ('found', 'use as a basis for; found on'),\n", - " ('ground', 'use as a basis for; found on'),\n", - " ('establish', 'use as a basis for; found on')]},\n", + " ('found', 'use as a basis for; found on')]},\n", " {'answer': 'based',\n", " 'hint': 'synonyms for based',\n", - " 'clues': [('base', 'situate as a center of operations'),\n", - " ('found', 'use as a basis for; found on'),\n", - " ('ground', 'use as a basis for; found on'),\n", + " 'clues': [('ground', 'use as a basis for; found on'),\n", + " ('base', 'use (purified cocaine) by burning it and inhaling the fumes'),\n", " ('establish', 'use as a basis for; found on'),\n", " ('free-base',\n", - " 'use (purified cocaine) by burning it and inhaling the fumes')]},\n", + " 'use (purified cocaine) by burning it and inhaling the fumes'),\n", + " ('found', 'use as a basis for; found on')]},\n", " {'answer': 'bated',\n", " 'hint': 'synonyms for bated',\n", - " 'clues': [('bate', 'moderate or restrain; lessen the force of'),\n", - " ('clobber', 'beat thoroughly and conclusively in a competition or fight'),\n", + " 'clues': [('thrash',\n", + " 'beat thoroughly and conclusively in a competition or fight'),\n", + " ('bate', 'flap the wings wildly or frantically; used of falcons'),\n", " ('lick', 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('thrash', 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('drub', 'beat thoroughly and conclusively in a competition or fight'),\n", " ('cream', 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('flutter', 'wink briefly')]},\n", + " ('drub', 'beat thoroughly and conclusively in a competition or fight'),\n", + " ('flutter', 'wink briefly'),\n", + " ('clobber',\n", + " 'beat thoroughly and conclusively in a competition or fight')]},\n", " {'answer': 'bats',\n", " 'hint': 'synonyms for bats',\n", - " 'clues': [('clobber',\n", + " 'clues': [('thrash',\n", " 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('bat', 'wink briefly'),\n", " ('lick', 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('thrash', 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('drub', 'beat thoroughly and conclusively in a competition or fight'),\n", + " ('bat', 'strike with, or as if with a baseball bat'),\n", " ('cream', 'beat thoroughly and conclusively in a competition or fight'),\n", - " ('flutter', 'wink briefly')]},\n", + " ('drub', 'beat thoroughly and conclusively in a competition or fight'),\n", + " ('flutter', 'wink briefly'),\n", + " ('clobber',\n", + " 'beat thoroughly and conclusively in a competition or fight')]},\n", " {'answer': 'battered',\n", " 'hint': 'synonyms for battered',\n", - " 'clues': [('baste', 'strike violently and repeatedly'),\n", - " ('batter', 'make a dent or impression in'),\n", + " 'clues': [('batter', 'strike violently and repeatedly'),\n", + " ('dinge', 'make a dent or impression in'),\n", " ('buffet', 'strike against forcefully'),\n", - " ('clobber', 'strike violently and repeatedly'),\n", + " ('baste', 'strike violently and repeatedly'),\n", " ('knock about', 'strike against forcefully'),\n", - " ('dinge', 'make a dent or impression in')]},\n", + " ('clobber', 'strike violently and repeatedly')]},\n", " {'answer': 'beaming',\n", " 'hint': 'synonyms for beaming',\n", - " 'clues': [('shine', 'emit light; be bright, as of the sun or a light'),\n", - " ('beam', \"smile radiantly; express joy through one's facial expression\"),\n", + " 'clues': [('air',\n", + " 'broadcast over the airwaves, as in radio or television'),\n", " ('send', 'broadcast over the airwaves, as in radio or television'),\n", - " ('radiate',\n", + " ('transmit', 'broadcast over the airwaves, as in radio or television'),\n", + " ('beam',\n", " 'have a complexion with a strong bright color, such as red or pink'),\n", + " ('shine', 'emit light; be bright, as of the sun or a light'),\n", + " ('broadcast', 'broadcast over the airwaves, as in radio or television'),\n", " ('glow',\n", - " 'experience a feeling of well-being or happiness, as from good health or an intense emotion'),\n", - " ('air', 'broadcast over the airwaves, as in radio or television'),\n", - " ('transmit', 'broadcast over the airwaves, as in radio or television'),\n", - " ('broadcast', 'broadcast over the airwaves, as in radio or television')]},\n", + " 'have a complexion with a strong bright color, such as red or pink'),\n", + " ('radiate',\n", + " 'have a complexion with a strong bright color, such as red or pink')]},\n", " {'answer': 'bearing',\n", " 'hint': 'synonyms for bearing',\n", - " 'clues': [('have a bun in the oven', 'be pregnant with'),\n", - " ('bear', 'have'),\n", - " ('accept',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", - " ('behave', 'behave in a certain manner'),\n", - " ('carry', 'behave in a certain manner'),\n", - " ('tolerate', 'put up with something or somebody unpleasant'),\n", + " 'clues': [('endure', 'put up with something or somebody unpleasant'),\n", + " ('turn out', 'bring forth,'),\n", + " ('bear', 'contain or hold; have within'),\n", + " ('birth', 'cause to be born'),\n", + " ('have', 'cause to be born'),\n", + " ('give birth', 'cause to be born'),\n", " ('comport', 'behave in a certain manner'),\n", - " ('hold', 'have rightfully; of rights, titles, and offices'),\n", - " ('deport', 'behave in a certain manner'),\n", - " ('take over',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", " ('support', 'put up with something or somebody unpleasant'),\n", - " ('stomach', 'put up with something or somebody unpleasant'),\n", + " ('hold', 'contain or hold; have within'),\n", + " ('yield', 'bring in'),\n", + " ('have a bun in the oven', 'be pregnant with'),\n", + " ('wear', \"have on one's person\"),\n", + " ('carry', 'support or hold in a certain manner'),\n", + " ('acquit', 'behave in a certain manner'),\n", + " ('digest', 'put up with something or somebody unpleasant'),\n", " ('brook', 'put up with something or somebody unpleasant'),\n", - " ('stand', 'put up with something or somebody unpleasant'),\n", - " ('stick out', 'put up with something or somebody unpleasant'),\n", - " ('deliver', 'cause to be born'),\n", - " ('birth', 'cause to be born'),\n", - " ('give birth', 'cause to be born'),\n", - " ('contain', 'contain or hold; have within'),\n", - " ('turn out', 'bring forth,'),\n", - " ('expect', 'be pregnant with'),\n", " ('assume',\n", " \"take on as one's own the expenses or debts of another person\"),\n", + " ('tolerate', 'put up with something or somebody unpleasant'),\n", + " ('deport', 'behave in a certain manner'),\n", + " ('expect', 'be pregnant with'),\n", + " ('contain', 'contain or hold; have within'),\n", + " ('abide', 'put up with something or somebody unpleasant'),\n", + " ('put up', 'put up with something or somebody unpleasant'),\n", + " ('conduct', 'behave in a certain manner'),\n", " ('pay', 'bring in'),\n", + " ('stick out', 'put up with something or somebody unpleasant'),\n", " ('suffer', 'put up with something or somebody unpleasant'),\n", - " ('yield', 'bring in'),\n", - " ('have', 'cause to be born'),\n", - " ('endure', 'put up with something or somebody unpleasant'),\n", - " ('wear', \"have on one's person\"),\n", - " ('conduct', 'behave in a certain manner'),\n", - " ('abide', 'put up with something or somebody unpleasant'),\n", + " ('take over',\n", + " \"take on as one's own the expenses or debts of another person\"),\n", + " ('accept',\n", + " \"take on as one's own the expenses or debts of another person\"),\n", + " ('stand', 'put up with something or somebody unpleasant'),\n", + " ('behave', 'behave in a certain manner'),\n", " ('gestate', 'be pregnant with'),\n", - " ('put up', 'put up with something or somebody unpleasant'),\n", - " ('acquit', 'behave in a certain manner'),\n", - " ('digest', 'put up with something or somebody unpleasant')]},\n", + " ('stomach', 'put up with something or somebody unpleasant'),\n", + " ('deliver', 'cause to be born')]},\n", " {'answer': 'beat',\n", " 'hint': 'synonyms for beat',\n", - " 'clues': [('get', 'be a mystery or bewildering to'),\n", - " ('tucker out', 'wear out completely'),\n", - " ('exhaust', 'wear out completely'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('baffle', 'be a mystery or bewildering to'),\n", - " ('crush', 'come out better in a competition, race, or conflict'),\n", - " ('outwit', 'beat through cleverness and wit'),\n", + " 'clues': [('work over',\n", + " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", + " ('scramble', 'stir vigorously'),\n", + " ('beat out', 'come out better in a competition, race, or conflict'),\n", " ('thump', 'move rhythmically'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", - " ('quiver', 'move with or as if with a regular alternating motion'),\n", - " ('tick', 'make a sound like a clock or a timer'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", - " ('perplex', 'be a mystery or bewildering to'),\n", " ('ticktock', 'make a sound like a clock or a timer'),\n", - " ('trounce', 'come out better in a competition, race, or conflict'),\n", - " ('scramble', 'stir vigorously'),\n", - " ('outsmart', 'beat through cleverness and wit'),\n", - " ('overreach', 'beat through cleverness and wit'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", - " ('pulsate', 'move with or as if with a regular alternating motion'),\n", - " ('pound', 'move rhythmically'),\n", - " ('vanquish', 'come out better in a competition, race, or conflict'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to'),\n", + " ('mystify', 'be a mystery or bewildering to'),\n", " ('puzzle', 'be a mystery or bewildering to'),\n", - " ('drum', 'make a rhythmic sound'),\n", - " ('amaze', 'be a mystery or bewildering to'),\n", - " ('beat out', 'come out better in a competition, race, or conflict'),\n", - " ('thrum', 'make a rhythmic sound'),\n", + " ('circumvent', 'beat through cleverness and wit'),\n", + " ('crush', 'come out better in a competition, race, or conflict'),\n", + " ('flummox', 'be a mystery or bewildering to'),\n", " ('shell', 'come out better in a competition, race, or conflict'),\n", - " ('bunk', 'avoid paying'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", " ('flap', 'move with a thrashing motion'),\n", - " ('wash up', 'wear out completely'),\n", - " ('beat up',\n", - " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", - " ('circumvent', 'beat through cleverness and wit'),\n", - " ('work over',\n", - " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('thrum', 'make a rhythmic sound'),\n", " ('tucker', 'wear out completely'),\n", - " ('mystify', 'be a mystery or bewildering to'),\n", " ('outfox', 'beat through cleverness and wit'),\n", - " ('vex', 'be a mystery or bewildering to')]},\n", - " {'answer': 'beaten',\n", - " 'hint': 'synonyms for beaten',\n", - " 'clues': [('get', 'be a mystery or bewildering to'),\n", - " ('beat', 'move with a flapping motion'),\n", " ('tucker out', 'wear out completely'),\n", - " ('exhaust', 'wear out completely'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('amaze', 'be a mystery or bewildering to'),\n", + " ('vanquish', 'come out better in a competition, race, or conflict'),\n", " ('baffle', 'be a mystery or bewildering to'),\n", - " ('crush', 'come out better in a competition, race, or conflict'),\n", - " ('outwit', 'beat through cleverness and wit'),\n", - " ('thump', 'move rhythmically'),\n", + " ('bunk', 'avoid paying'),\n", + " ('pound', 'move rhythmically'),\n", + " ('exhaust', 'wear out completely'),\n", " ('pose', 'be a mystery or bewildering to'),\n", + " ('stick', 'be a mystery or bewildering to'),\n", " ('quiver', 'move with or as if with a regular alternating motion'),\n", - " ('tick', 'make a sound like a clock or a timer'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('vex', 'be a mystery or bewildering to'),\n", + " ('overreach', 'beat through cleverness and wit'),\n", + " ('beat up',\n", + " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", + " ('outwit', 'beat through cleverness and wit'),\n", + " ('pulsate', 'move with or as if with a regular alternating motion'),\n", + " ('get', 'be a mystery or bewildering to'),\n", + " ('wash up', 'wear out completely'),\n", " ('perplex', 'be a mystery or bewildering to'),\n", - " ('ticktock', 'make a sound like a clock or a timer'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('outsmart', 'beat through cleverness and wit'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", " ('trounce', 'come out better in a competition, race, or conflict'),\n", + " ('drum', 'make a rhythmic sound'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", + " {'answer': 'beaten',\n", + " 'hint': 'synonyms for beaten',\n", + " 'clues': [('work over',\n", + " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", + " ('beat', 'avoid paying'),\n", " ('scramble', 'stir vigorously'),\n", - " ('outsmart', 'beat through cleverness and wit'),\n", - " ('overreach', 'beat through cleverness and wit'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", - " ('pulsate', 'move with or as if with a regular alternating motion'),\n", - " ('pound', 'move rhythmically'),\n", - " ('vanquish', 'come out better in a competition, race, or conflict'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", + " ('beat out', 'come out better in a competition, race, or conflict'),\n", + " ('thump', 'move rhythmically'),\n", + " ('ticktock', 'make a sound like a clock or a timer'),\n", + " ('mystify', 'be a mystery or bewildering to'),\n", " ('puzzle', 'be a mystery or bewildering to'),\n", + " ('circumvent', 'beat through cleverness and wit'),\n", + " ('crush', 'come out better in a competition, race, or conflict'),\n", " ('flummox', 'be a mystery or bewildering to'),\n", - " ('drum', 'make a rhythmic sound'),\n", - " ('beat out', 'come out better in a competition, race, or conflict'),\n", - " ('thrum', 'make a rhythmic sound'),\n", - " ('amaze', 'be a mystery or bewildering to'),\n", " ('shell', 'come out better in a competition, race, or conflict'),\n", - " ('bunk', 'avoid paying'),\n", " ('flap', 'move with a thrashing motion'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('wash up', 'wear out completely'),\n", - " ('beat up',\n", - " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", - " ('circumvent', 'beat through cleverness and wit'),\n", - " ('work over',\n", - " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('thrum', 'make a rhythmic sound'),\n", " ('tucker', 'wear out completely'),\n", - " ('mystify', 'be a mystery or bewildering to'),\n", " ('outfox', 'beat through cleverness and wit'),\n", - " ('vex', 'be a mystery or bewildering to')]},\n", - " {'answer': 'beatified',\n", - " 'hint': 'synonyms for beatified',\n", - " 'clues': [('exalt', 'fill with sublime emotion'),\n", - " ('beatify', 'fill with sublime emotion'),\n", - " ('thrill', 'fill with sublime emotion'),\n", - " ('tickle pink', 'fill with sublime emotion'),\n", + " ('tucker out', 'wear out completely'),\n", + " ('amaze', 'be a mystery or bewildering to'),\n", + " ('vanquish', 'come out better in a competition, race, or conflict'),\n", + " ('baffle', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to'),\n", + " ('bunk', 'avoid paying'),\n", + " ('pound', 'move rhythmically'),\n", + " ('exhaust', 'wear out completely'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('stick', 'be a mystery or bewildering to'),\n", + " ('quiver', 'move with or as if with a regular alternating motion'),\n", + " ('vex', 'be a mystery or bewildering to'),\n", + " ('overreach', 'beat through cleverness and wit'),\n", + " ('beat up',\n", + " 'give a beating to; subject to a beating, either as a punishment or as an act of aggression'),\n", + " ('outwit', 'beat through cleverness and wit'),\n", + " ('pulsate', 'move with or as if with a regular alternating motion'),\n", + " ('get', 'be a mystery or bewildering to'),\n", + " ('wash up', 'wear out completely'),\n", + " ('perplex', 'be a mystery or bewildering to'),\n", + " ('outsmart', 'beat through cleverness and wit'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('trounce', 'come out better in a competition, race, or conflict'),\n", + " ('drum', 'make a rhythmic sound'),\n", + " ('dumbfound', 'be a mystery or bewildering to')]},\n", + " {'answer': 'beatified',\n", + " 'hint': 'synonyms for beatified',\n", + " 'clues': [('beatify', 'make blessedly happy'),\n", + " ('thrill', 'fill with sublime emotion'),\n", + " ('tickle pink', 'fill with sublime emotion'),\n", " ('exhilarate', 'fill with sublime emotion'),\n", - " ('inebriate', 'fill with sublime emotion')]},\n", + " ('inebriate', 'fill with sublime emotion'),\n", + " ('exalt', 'fill with sublime emotion')]},\n", " {'answer': 'becoming',\n", " 'hint': 'synonyms for becoming',\n", " 'clues': [('become', 'come into existence'),\n", " ('suit', 'enhance the appearance of'),\n", - " ('go', 'enter or assume a certain state or condition'),\n", " ('get', 'enter or assume a certain state or condition'),\n", - " ('turn', 'undergo a change or development')]},\n", + " ('turn', 'undergo a change or development'),\n", + " ('go', 'enter or assume a certain state or condition')]},\n", " {'answer': 'bedded',\n", " 'hint': 'synonyms for bedded',\n", - " 'clues': [('bed', 'place (plants) in a prepared bed of soil'),\n", - " ('get it on', 'have sexual intercourse with'),\n", - " ('hump', 'have sexual intercourse with'),\n", - " ('screw', 'have sexual intercourse with'),\n", - " ('have sex', 'have sexual intercourse with'),\n", - " ('go to bed', 'prepare for sleep'),\n", - " ('go to sleep', 'prepare for sleep'),\n", + " 'clues': [('hump', 'have sexual intercourse with'),\n", + " ('jazz', 'have sexual intercourse with'),\n", + " ('eff', 'have sexual intercourse with'),\n", + " ('do it', 'have sexual intercourse with'),\n", + " ('bed', 'have sexual intercourse with'),\n", + " ('lie with', 'have sexual intercourse with'),\n", + " ('sleep with', 'have sexual intercourse with'),\n", + " ('fuck', 'have sexual intercourse with'),\n", + " ('be intimate', 'have sexual intercourse with'),\n", + " ('roll in the hay', 'have sexual intercourse with'),\n", " ('sack out', 'prepare for sleep'),\n", + " ('bang', 'have sexual intercourse with'),\n", " ('love', 'have sexual intercourse with'),\n", " ('have it off', 'have sexual intercourse with'),\n", " ('hit the sack', 'prepare for sleep'),\n", - " ('do it', 'have sexual intercourse with'),\n", - " ('bang', 'have sexual intercourse with'),\n", " ('have a go at it', 'have sexual intercourse with'),\n", - " ('sleep with', 'have sexual intercourse with'),\n", - " ('sleep together', 'have sexual intercourse with'),\n", - " ('make love', 'have sexual intercourse with'),\n", - " ('lie with', 'have sexual intercourse with'),\n", " ('have it away', 'have sexual intercourse with'),\n", - " ('roll in the hay', 'have sexual intercourse with'),\n", - " ('jazz', 'have sexual intercourse with'),\n", - " ('kip down', 'prepare for sleep'),\n", - " ('hit the hay', 'prepare for sleep'),\n", " ('retire', 'prepare for sleep'),\n", + " ('go to bed', 'prepare for sleep'),\n", + " ('have intercourse', 'have sexual intercourse with'),\n", + " ('kip down', 'prepare for sleep'),\n", " ('crawl in', 'prepare for sleep'),\n", + " ('make love', 'have sexual intercourse with'),\n", + " ('get it on', 'have sexual intercourse with'),\n", + " ('know', 'have sexual intercourse with'),\n", " ('turn in', 'prepare for sleep'),\n", - " ('have intercourse', 'have sexual intercourse with'),\n", - " ('eff', 'have sexual intercourse with'),\n", - " ('get laid', 'have sexual intercourse with'),\n", - " ('fuck', 'have sexual intercourse with'),\n", - " ('be intimate', 'have sexual intercourse with'),\n", + " ('have sex', 'have sexual intercourse with'),\n", " ('bonk', 'have sexual intercourse with'),\n", - " ('know', 'have sexual intercourse with'),\n", - " ('make out', 'have sexual intercourse with')]},\n", + " ('get laid', 'have sexual intercourse with'),\n", + " ('go to sleep', 'prepare for sleep'),\n", + " ('make out', 'have sexual intercourse with'),\n", + " ('hit the hay', 'prepare for sleep'),\n", + " ('sleep together', 'have sexual intercourse with'),\n", + " ('screw', 'have sexual intercourse with')]},\n", " {'answer': 'bedimmed',\n", " 'hint': 'synonyms for bedimmed',\n", - " 'clues': [('bedim', 'make obscure or unclear'),\n", + " 'clues': [('bedim', 'make darker and difficult to perceive by sight'),\n", " ('benight', 'make darker and difficult to perceive by sight'),\n", " ('obscure', 'make obscure or unclear'),\n", " ('overcloud', 'make obscure or unclear')]},\n", " {'answer': 'befogged',\n", " 'hint': 'synonyms for befogged',\n", - " 'clues': [('fog', 'make less visible or unclear'),\n", + " 'clues': [('haze over', 'make less visible or unclear'),\n", " ('becloud', 'make less visible or unclear'),\n", - " ('haze over', 'make less visible or unclear'),\n", - " ('obscure', 'make less visible or unclear'),\n", - " ('cloud', 'make less visible or unclear'),\n", " ('mist', 'make less visible or unclear'),\n", + " ('obscure', 'make less visible or unclear'),\n", " ('obnubilate', 'make less visible or unclear'),\n", + " ('fog', 'make less visible or unclear'),\n", + " ('cloud', 'make less visible or unclear'),\n", " ('befog', 'make less visible or unclear')]},\n", " {'answer': 'befouled',\n", " 'hint': 'synonyms for befouled',\n", - " 'clues': [('foul', 'spot, stain, or pollute'),\n", + " 'clues': [('maculate', 'spot, stain, or pollute'),\n", " ('defile', 'spot, stain, or pollute'),\n", - " ('maculate', 'spot, stain, or pollute'),\n", + " ('foul', 'spot, stain, or pollute'),\n", " ('befoul', 'spot, stain, or pollute')]},\n", " {'answer': 'befuddled',\n", " 'hint': 'synonyms for befuddled',\n", - " 'clues': [('fuddle',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('bedevil',\n", + " 'clues': [('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('discombobulate',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('fox',\n", + " ('confound',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('befuddle', 'make stupid with alcohol'),\n", " ('throw',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('confuse',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('confound',\n", + " ('fox',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('bedevil',\n", " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n", " {'answer': 'beginning',\n", " 'hint': 'synonyms for beginning',\n", " 'clues': [('begin',\n", - " 'begin an event that is implied and limited by the nature or inherent function of the direct object'),\n", - " ('start',\n", - " 'begin an event that is implied and limited by the nature or inherent function of the direct object'),\n", + " 'have a beginning characterized in some specified way'),\n", " ('get', 'take the first step or steps in carrying out an action'),\n", - " ('get down', 'take the first step or steps in carrying out an action'),\n", - " ('start out', 'take the first step or steps in carrying out an action'),\n", + " ('set out', 'take the first step or steps in carrying out an action'),\n", + " ('start', 'set in motion, cause to start'),\n", " ('lead off', 'set in motion, cause to start'),\n", - " ('set about', 'take the first step or steps in carrying out an action'),\n", - " ('commence', 'set in motion, cause to start')]},\n", + " ('get down', 'take the first step or steps in carrying out an action'),\n", + " ('commence', 'set in motion, cause to start'),\n", + " ('start out', 'take the first step or steps in carrying out an action')]},\n", " {'answer': 'begotten',\n", " 'hint': 'synonyms for begotten',\n", - " 'clues': [('beget', 'make children'),\n", + " 'clues': [('mother', 'make children'),\n", " ('father', 'make children'),\n", + " ('sire', 'make children'),\n", " ('bring forth', 'make children'),\n", - " ('get', 'make children'),\n", " ('engender', 'make children'),\n", - " ('sire', 'make children'),\n", " ('generate', 'make children'),\n", - " ('mother', 'make children')]},\n", + " ('get', 'make children'),\n", + " ('beget', 'make children')]},\n", " {'answer': 'begrimed',\n", " 'hint': 'synonyms for begrimed',\n", - " 'clues': [('soil', 'make soiled, filthy, or dirty'),\n", - " ('begrime', 'make soiled, filthy, or dirty'),\n", - " ('bemire', 'make soiled, filthy, or dirty'),\n", - " ('colly', 'make soiled, filthy, or dirty'),\n", + " 'clues': [('colly', 'make soiled, filthy, or dirty'),\n", " ('grime', 'make soiled, filthy, or dirty'),\n", - " ('dirty', 'make soiled, filthy, or dirty')]},\n", + " ('dirty', 'make soiled, filthy, or dirty'),\n", + " ('soil', 'make soiled, filthy, or dirty'),\n", + " ('begrime', 'make soiled, filthy, or dirty'),\n", + " ('bemire', 'make soiled, filthy, or dirty')]},\n", " {'answer': 'beguiled',\n", " 'hint': 'synonyms for beguiled',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", + " ('beguile', 'influence by slyness'),\n", " ('becharm', 'attract; cause to be enamored'),\n", + " ('juggle', 'influence by slyness'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('enchant', 'attract; cause to be enamored'),\n", - " ('hoodwink', 'influence by slyness'),\n", - " ('beguile', 'influence by slyness'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", - " ('fascinate', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", - " ('juggle', 'influence by slyness')]},\n", + " ('hoodwink', 'influence by slyness'),\n", + " ('charm', 'attract; cause to be enamored')]},\n", " {'answer': 'beguiling',\n", " 'hint': 'synonyms for beguiling',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", + " ('beguile', 'influence by slyness'),\n", " ('becharm', 'attract; cause to be enamored'),\n", + " ('juggle', 'influence by slyness'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('enchant', 'attract; cause to be enamored'),\n", - " ('hoodwink', 'influence by slyness'),\n", - " ('beguile', 'influence by slyness'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", - " ('fascinate', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", - " ('juggle', 'influence by slyness')]},\n", + " ('hoodwink', 'influence by slyness'),\n", + " ('charm', 'attract; cause to be enamored')]},\n", " {'answer': 'belittled',\n", " 'hint': 'synonyms for belittled',\n", - " 'clues': [('derogate', 'cause to seem less serious; play down'),\n", - " ('pick at', 'express a negative opinion of'),\n", + " 'clues': [('minimize', 'cause to seem less serious; play down'),\n", " ('diminish', 'lessen the authority, dignity, or reputation of'),\n", - " ('belittle', 'express a negative opinion of'),\n", - " ('minimize', 'cause to seem less serious; play down'),\n", + " ('belittle', 'lessen the authority, dignity, or reputation of'),\n", " ('disparage', 'express a negative opinion of'),\n", - " ('denigrate', 'cause to seem less serious; play down')]},\n", + " ('denigrate', 'cause to seem less serious; play down'),\n", + " ('derogate', 'cause to seem less serious; play down'),\n", + " ('pick at', 'express a negative opinion of')]},\n", " {'answer': 'belittling',\n", " 'hint': 'synonyms for belittling',\n", - " 'clues': [('derogate', 'cause to seem less serious; play down'),\n", - " ('pick at', 'express a negative opinion of'),\n", + " 'clues': [('minimize', 'cause to seem less serious; play down'),\n", " ('diminish', 'lessen the authority, dignity, or reputation of'),\n", - " ('belittle', 'express a negative opinion of'),\n", - " ('minimize', 'cause to seem less serious; play down'),\n", + " ('belittle', 'lessen the authority, dignity, or reputation of'),\n", " ('disparage', 'express a negative opinion of'),\n", - " ('denigrate', 'cause to seem less serious; play down')]},\n", + " ('denigrate', 'cause to seem less serious; play down'),\n", + " ('derogate', 'cause to seem less serious; play down'),\n", + " ('pick at', 'express a negative opinion of')]},\n", " {'answer': 'bemused',\n", " 'hint': 'synonyms for bemused',\n", " 'clues': [('throw', 'cause to be confused emotionally'),\n", - " ('bewilder', 'cause to be confused emotionally'),\n", + " ('bemuse', 'cause to be confused emotionally'),\n", " ('discombobulate', 'cause to be confused emotionally'),\n", - " ('bemuse', 'cause to be confused emotionally')]},\n", + " ('bewilder', 'cause to be confused emotionally')]},\n", " {'answer': 'bended',\n", " 'hint': 'synonyms for bended',\n", - " 'clues': [('flex',\n", - " 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('bow', \"bend one's back forward from the waist on down\"),\n", + " 'clues': [('turn away',\n", + " 'turn from a straight course, fixed direction, or line of interest'),\n", " ('deform',\n", " 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('stoop', \"bend one's back forward from the waist on down\"),\n", + " ('flex', 'cause (a plastic object) to assume a crooked or angular form'),\n", + " ('bend', 'cause (a plastic object) to assume a crooked or angular form'),\n", + " ('bow', \"bend one's back forward from the waist on down\"),\n", + " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n", " ('twist', 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('crouch', \"bend one's back forward from the waist on down\"),\n", - " ('bend',\n", - " 'turn from a straight course, fixed direction, or line of interest'),\n", - " ('turn away',\n", - " 'turn from a straight course, fixed direction, or line of interest'),\n", " ('deflect',\n", - " 'turn from a straight course, fixed direction, or line of interest')]},\n", + " 'turn from a straight course, fixed direction, or line of interest'),\n", + " ('crouch', \"bend one's back forward from the waist on down\"),\n", + " ('stoop', \"bend one's back forward from the waist on down\")]},\n", " {'answer': 'bent',\n", " 'hint': 'synonyms for bent',\n", - " 'clues': [('flex',\n", - " 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('bow', \"bend one's back forward from the waist on down\"),\n", + " 'clues': [('turn away',\n", + " 'turn from a straight course, fixed direction, or line of interest'),\n", " ('deform',\n", " 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('stoop', \"bend one's back forward from the waist on down\"),\n", + " ('flex', 'cause (a plastic object) to assume a crooked or angular form'),\n", + " ('bend', 'cause (a plastic object) to assume a crooked or angular form'),\n", + " ('bow', \"bend one's back forward from the waist on down\"),\n", + " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n", " ('twist', 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('crouch', \"bend one's back forward from the waist on down\"),\n", - " ('bend',\n", - " 'turn from a straight course, fixed direction, or line of interest'),\n", - " ('turn away',\n", - " 'turn from a straight course, fixed direction, or line of interest'),\n", " ('deflect',\n", - " 'turn from a straight course, fixed direction, or line of interest')]},\n", + " 'turn from a straight course, fixed direction, or line of interest'),\n", + " ('crouch', \"bend one's back forward from the waist on down\"),\n", + " ('stoop', \"bend one's back forward from the waist on down\")]},\n", " {'answer': 'benumbed',\n", " 'hint': 'synonyms for benumbed',\n", - " 'clues': [('blunt', 'make numb or insensitive'),\n", - " ('numb', 'make numb or insensitive'),\n", - " ('benumb', 'make numb or insensitive'),\n", - " ('dull', 'make numb or insensitive')]},\n", + " 'clues': [('benumb', 'make numb or insensitive'),\n", + " ('blunt', 'make numb or insensitive'),\n", + " ('dull', 'make numb or insensitive'),\n", + " ('numb', 'make numb or insensitive')]},\n", " {'answer': 'beseeching',\n", " 'hint': 'synonyms for beseeching',\n", - " 'clues': [('entreat', 'ask for or request earnestly'),\n", - " ('adjure', 'ask for or request earnestly'),\n", - " ('beseech', 'ask for or request earnestly'),\n", + " 'clues': [('beseech', 'ask for or request earnestly'),\n", + " ('press', 'ask for or request earnestly'),\n", " ('bid', 'ask for or request earnestly'),\n", " ('conjure', 'ask for or request earnestly'),\n", - " ('press', 'ask for or request earnestly')]},\n", + " ('entreat', 'ask for or request earnestly'),\n", + " ('adjure', 'ask for or request earnestly')]},\n", " {'answer': 'besieged',\n", " 'hint': 'synonyms for besieged',\n", - " 'clues': [('hem in', 'surround so as to force to give up'),\n", - " ('surround', 'surround so as to force to give up'),\n", + " 'clues': [('circumvent', 'surround so as to force to give up'),\n", " ('besiege', 'harass, as with questions or requests'),\n", - " ('beleaguer', 'surround so as to force to give up'),\n", - " ('circumvent', 'surround so as to force to give up')]},\n", + " ('surround', 'surround so as to force to give up'),\n", + " ('hem in', 'surround so as to force to give up'),\n", + " ('beleaguer', 'surround so as to force to give up')]},\n", " {'answer': 'bespoke',\n", " 'hint': 'synonyms for bespoke',\n", - " 'clues': [('call for', 'express the need or desire for; ask for'),\n", + " 'clues': [('bespeak', 'be a signal for or a symptom of'),\n", + " ('request', 'express the need or desire for; ask for'),\n", + " ('betoken', 'be a signal for or a symptom of'),\n", + " ('indicate', 'be a signal for or a symptom of'),\n", " ('point', 'be a signal for or a symptom of'),\n", - " ('bespeak', 'express the need or desire for; ask for'),\n", - " ('signal', 'be a signal for or a symptom of'),\n", " ('quest', 'express the need or desire for; ask for'),\n", - " ('betoken', 'be a signal for or a symptom of'),\n", - " ('request', 'express the need or desire for; ask for'),\n", - " ('indicate', 'be a signal for or a symptom of')]},\n", + " ('signal', 'be a signal for or a symptom of'),\n", + " ('call for', 'express the need or desire for; ask for')]},\n", " {'answer': 'bespoken',\n", " 'hint': 'synonyms for bespoken',\n", - " 'clues': [('call for', 'express the need or desire for; ask for'),\n", + " 'clues': [('bespeak', 'be a signal for or a symptom of'),\n", + " ('request', 'express the need or desire for; ask for'),\n", + " ('betoken', 'be a signal for or a symptom of'),\n", + " ('indicate', 'be a signal for or a symptom of'),\n", " ('point', 'be a signal for or a symptom of'),\n", - " ('bespeak', 'express the need or desire for; ask for'),\n", - " ('signal', 'be a signal for or a symptom of'),\n", " ('quest', 'express the need or desire for; ask for'),\n", - " ('betoken', 'be a signal for or a symptom of'),\n", - " ('request', 'express the need or desire for; ask for'),\n", - " ('indicate', 'be a signal for or a symptom of')]},\n", + " ('signal', 'be a signal for or a symptom of'),\n", + " ('call for', 'express the need or desire for; ask for')]},\n", " {'answer': 'best',\n", " 'hint': 'synonyms for best',\n", - " 'clues': [('outdo', 'get the better of'),\n", - " ('scoop', 'get the better of'),\n", - " ('trump', 'get the better of'),\n", - " ('outflank', 'get the better of')]},\n", + " 'clues': [('scoop', 'get the better of'),\n", + " ('outflank', 'get the better of'),\n", + " ('outdo', 'get the better of'),\n", + " ('trump', 'get the better of')]},\n", " {'answer': 'betrothed',\n", " 'hint': 'synonyms for betrothed',\n", - " 'clues': [('engage', 'give to in marriage'),\n", + " 'clues': [('affiance', 'give to in marriage'),\n", " ('betroth', 'give to in marriage'),\n", " ('plight', 'give to in marriage'),\n", - " ('affiance', 'give to in marriage')]},\n", + " ('engage', 'give to in marriage')]},\n", " {'answer': 'better',\n", " 'hint': 'synonyms for better',\n", - " 'clues': [('ameliorate', 'get better'),\n", - " ('improve', 'get better'),\n", + " 'clues': [('ameliorate', 'to make better'),\n", " ('break', 'surpass in excellence'),\n", + " ('improve', 'get better'),\n", " ('amend', 'to make better')]},\n", " {'answer': 'bettering',\n", " 'hint': 'synonyms for bettering',\n", - " 'clues': [('better', 'get better'),\n", - " ('ameliorate', 'to make better'),\n", - " ('break', 'surpass in excellence'),\n", - " ('improve', 'get better'),\n", - " ('amend', 'to make better')]},\n", + " 'clues': [('meliorate', 'to make better'),\n", + " ('better', 'get better'),\n", + " ('amend', 'to make better'),\n", + " ('improve', 'to make better'),\n", + " ('break', 'surpass in excellence')]},\n", " {'answer': 'betting',\n", " 'hint': 'synonyms for betting',\n", - " 'clues': [('play', 'stake on the outcome of an issue'),\n", - " ('count', 'have faith or confidence in'),\n", + " 'clues': [('calculate', 'have faith or confidence in'),\n", + " ('play', 'stake on the outcome of an issue'),\n", + " ('bet', 'maintain with or as if with a bet'),\n", " ('wager', 'maintain with or as if with a bet'),\n", + " ('count', 'have faith or confidence in'),\n", + " ('reckon', 'have faith or confidence in'),\n", " ('look', 'have faith or confidence in'),\n", - " ('depend', 'have faith or confidence in'),\n", - " ('bet', 'maintain with or as if with a bet'),\n", - " ('calculate', 'have faith or confidence in'),\n", - " ('reckon', 'have faith or confidence in')]},\n", + " ('depend', 'have faith or confidence in')]},\n", " {'answer': 'bewildered',\n", " 'hint': 'synonyms for bewildered',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", - " ('get', 'be a mystery or bewildering to'),\n", - " ('beat', 'be a mystery or bewildering to'),\n", - " ('amaze', 'be a mystery or bewildering to'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('bemuse', 'cause to be confused emotionally'),\n", + " 'clues': [('throw', 'cause to be confused emotionally'),\n", " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", " ('bewilder', 'cause to be confused emotionally'),\n", - " ('perplex', 'be a mystery or bewildering to'),\n", - " ('throw', 'cause to be confused emotionally'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", + " ('beat', 'be a mystery or bewildering to'),\n", + " ('discombobulate', 'cause to be confused emotionally'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('discombobulate', 'cause to be confused emotionally'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", + " ('flummox', 'be a mystery or bewildering to'),\n", + " ('bemuse', 'cause to be confused emotionally'),\n", + " ('get', 'be a mystery or bewildering to'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('perplex', 'be a mystery or bewildering to'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('amaze', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", " {'answer': 'bewitched',\n", " 'hint': 'synonyms for bewitched',\n", - " 'clues': [('magnetise', 'attract strongly, as if with a magnet'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('bewitch',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('bewitch', 'attract strongly, as if with a magnet'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", - " ('beguile', 'attract; cause to be enamored'),\n", - " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('mesmerise', 'attract strongly, as if with a magnet'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", " ('spellbind', 'attract strongly, as if with a magnet'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('hex',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('glamour',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('enchant',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('mesmerise', 'attract strongly, as if with a magnet'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('magnetise', 'attract strongly, as if with a magnet'),\n", + " ('hex',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('jinx',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('witch',\n", - " 'cast a spell over someone or something; put a hex on someone or something')]},\n", - " {'answer': 'bewitching',\n", - " 'hint': 'synonyms for bewitching',\n", - " 'clues': [('magnetise', 'attract strongly, as if with a magnet'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('bewitch',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", - " ('fascinate', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('mesmerise', 'attract strongly, as if with a magnet'),\n", + " ('charm', 'attract; cause to be enamored')]},\n", + " {'answer': 'bewitching',\n", + " 'hint': 'synonyms for bewitching',\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('bewitch', 'attract strongly, as if with a magnet'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", " ('spellbind', 'attract strongly, as if with a magnet'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('hex',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('glamour',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('enchant',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('mesmerise', 'attract strongly, as if with a magnet'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('magnetise', 'attract strongly, as if with a magnet'),\n", + " ('hex',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('jinx',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('witch',\n", - " 'cast a spell over someone or something; put a hex on someone or something')]},\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", + " ('beguile', 'attract; cause to be enamored'),\n", + " ('capture', 'attract; cause to be enamored'),\n", + " ('charm', 'attract; cause to be enamored')]},\n", " {'answer': 'billowing',\n", " 'hint': 'synonyms for billowing',\n", - " 'clues': [('billow', 'rise up as if in waves'),\n", - " ('inflate', 'become inflated'),\n", - " ('wallow', 'rise up as if in waves'),\n", + " 'clues': [('billow', 'rise and move, as in waves or billows'),\n", " ('surge', 'rise and move, as in waves or billows'),\n", - " ('heave', 'rise and move, as in waves or billows'),\n", - " ('balloon', 'become inflated')]},\n", + " ('wallow', 'rise up as if in waves'),\n", + " ('balloon', 'become inflated'),\n", + " ('inflate', 'become inflated'),\n", + " ('heave', 'rise and move, as in waves or billows')]},\n", " {'answer': 'binding',\n", " 'hint': 'synonyms for binding',\n", - " 'clues': [('bond', 'stick to firmly'),\n", - " ('tie down', 'secure with or as if with ropes'),\n", - " ('tie', 'create social or emotional ties'),\n", - " ('truss', 'secure with or as if with ropes'),\n", - " ('bind', 'create social or emotional ties'),\n", + " 'clues': [('bind', 'stick to firmly'),\n", + " ('oblige', 'bind by an obligation; cause to be indebted'),\n", " ('adhere', 'stick to firmly'),\n", + " ('tie', 'fasten or secure with a rope, string, or cord'),\n", + " ('stick to', 'stick to firmly'),\n", " ('hold fast', 'stick to firmly'),\n", - " ('tie up', 'secure with or as if with ropes'),\n", - " ('attach', 'create social or emotional ties'),\n", " ('stick', 'stick to firmly'),\n", - " ('oblige', 'bind by an obligation; cause to be indebted'),\n", + " ('tie up', 'secure with or as if with ropes'),\n", " ('constipate', 'cause to be constipated'),\n", + " ('bond', 'stick to firmly'),\n", " ('bandage', 'wrap around with something so as to cover or enclose'),\n", - " ('hold', 'bind by an obligation; cause to be indebted'),\n", - " ('stick to', 'stick to firmly')]},\n", + " ('tie down', 'secure with or as if with ropes'),\n", + " ('truss', 'secure with or as if with ropes'),\n", + " ('attach', 'create social or emotional ties'),\n", + " ('hold', 'bind by an obligation; cause to be indebted')]},\n", " {'answer': 'biting',\n", " 'hint': 'synonyms for biting',\n", - " 'clues': [('bite', 'cause a sharp or stinging pain or discomfort'),\n", - " ('sting', 'deliver a sting to'),\n", + " 'clues': [('bite', 'penetrate or cut, as with a knife'),\n", " ('burn', 'cause a sharp or stinging pain or discomfort'),\n", + " ('sting', 'cause a sharp or stinging pain or discomfort'),\n", " ('prick', 'deliver a sting to'),\n", " ('seize with teeth',\n", " 'to grip, cut off, or tear with or as if with the teeth or jaws')]},\n", " {'answer': 'blackened',\n", " 'hint': 'synonyms for blackened',\n", - " 'clues': [('blacken',\n", - " 'burn slightly and superficially so as to affect color'),\n", + " 'clues': [('blacken', 'make or become black'),\n", + " ('melanise', 'make or become black'),\n", " ('scorch', 'burn slightly and superficially so as to affect color'),\n", - " ('nigrify', 'make or become black'),\n", - " ('char', 'burn slightly and superficially so as to affect color'),\n", " ('black', 'make or become black'),\n", - " ('melanize', 'make or become black'),\n", - " ('sear', 'burn slightly and superficially so as to affect color')]},\n", + " ('sear', 'burn slightly and superficially so as to affect color'),\n", + " ('char', 'burn slightly and superficially so as to affect color'),\n", + " ('nigrify', 'make or become black')]},\n", " {'answer': 'blame',\n", " 'hint': 'synonyms for blame',\n", - " 'clues': [('charge', 'attribute responsibility to'),\n", + " 'clues': [('find fault', 'harass with constant criticism'),\n", + " ('pick', 'harass with constant criticism'),\n", " ('fault', 'put or pin the blame on'),\n", - " ('find fault', 'harass with constant criticism'),\n", - " ('pick', 'harass with constant criticism')]},\n", + " ('charge', 'attribute responsibility to')]},\n", " {'answer': 'blamed',\n", " 'hint': 'synonyms for blamed',\n", - " 'clues': [('blame', 'harass with constant criticism'),\n", + " 'clues': [('find fault', 'harass with constant criticism'),\n", + " ('blame', 'harass with constant criticism'),\n", " ('charge', 'attribute responsibility to'),\n", - " ('fault', 'put or pin the blame on'),\n", " ('pick', 'harass with constant criticism'),\n", - " ('find fault', 'harass with constant criticism')]},\n", + " ('fault', 'put or pin the blame on')]},\n", " {'answer': 'blanched',\n", " 'hint': 'synonyms for blanched',\n", - " 'clues': [('parboil', 'cook (vegetables) briefly'),\n", - " ('blanch', 'turn pale, as if in fear'),\n", + " 'clues': [('blanch', 'turn pale, as if in fear'),\n", + " ('parboil', 'cook (vegetables) briefly'),\n", " ('pale', 'turn pale, as if in fear'),\n", " ('blench', 'turn pale, as if in fear')]},\n", " {'answer': 'blaring',\n", " 'hint': 'synonyms for blaring',\n", - " 'clues': [('blast', 'make a strident sound'),\n", + " 'clues': [('blare', 'make a loud noise'),\n", " ('beep', 'make a loud noise'),\n", " ('honk', 'make a loud noise'),\n", - " ('toot', 'make a loud noise'),\n", - " ('blare', 'make a strident sound'),\n", - " ('claxon', 'make a loud noise')]},\n", + " ('blast', 'make a strident sound'),\n", + " ('claxon', 'make a loud noise'),\n", + " ('toot', 'make a loud noise')]},\n", " {'answer': 'blasted',\n", " 'hint': 'synonyms for blasted',\n", - " 'clues': [('blast', 'use explosives on'),\n", - " ('shoot', 'fire a shot'),\n", - " ('knock down', 'shatter as if by explosion'),\n", - " ('blare', 'make a strident sound'),\n", - " ('crucify', 'criticize harshly or violently'),\n", - " ('nail', 'hit hard'),\n", + " 'clues': [('blare', 'make a strident sound'),\n", + " ('blast', 'use explosives on'),\n", + " ('pillory', 'criticize harshly or violently'),\n", + " ('smash', 'hit hard'),\n", " ('boom', 'hit hard'),\n", - " ('savage', 'criticize harshly or violently'),\n", + " ('crucify', 'criticize harshly or violently'),\n", " ('shell', 'create by using explosives'),\n", - " ('pillory', 'criticize harshly or violently'),\n", - " ('smash', 'hit hard')]},\n", - " {'answer': 'blasting',\n", - " 'hint': 'synonyms for blasting',\n", - " 'clues': [('blast', 'use explosives on'),\n", " ('shoot', 'fire a shot'),\n", - " ('knock down', 'shatter as if by explosion'),\n", - " ('blare', 'make a strident sound'),\n", - " ('crucify', 'criticize harshly or violently'),\n", " ('nail', 'hit hard'),\n", + " ('knock down', 'shatter as if by explosion'),\n", + " ('savage', 'criticize harshly or violently')]},\n", + " {'answer': 'blasting',\n", + " 'hint': 'synonyms for blasting',\n", + " 'clues': [('blare', 'make a strident sound'),\n", + " ('blast', 'use explosives on'),\n", + " ('pillory', 'criticize harshly or violently'),\n", + " ('smash', 'hit hard'),\n", " ('boom', 'hit hard'),\n", - " ('savage', 'criticize harshly or violently'),\n", + " ('crucify', 'criticize harshly or violently'),\n", " ('shell', 'create by using explosives'),\n", - " ('pillory', 'criticize harshly or violently'),\n", - " ('smash', 'hit hard')]},\n", + " ('shoot', 'fire a shot'),\n", + " ('nail', 'hit hard'),\n", + " ('knock down', 'shatter as if by explosion'),\n", + " ('savage', 'criticize harshly or violently')]},\n", " {'answer': 'bleached',\n", " 'hint': 'synonyms for bleached',\n", - " 'clues': [('bleach out', 'remove color from'),\n", - " ('discolorize', 'remove color from'),\n", - " ('decolorise', 'remove color from'),\n", - " ('bleach', 'make whiter or lighter'),\n", - " ('decolour', 'remove color from')]},\n", + " 'clues': [('discolourise', 'remove color from'),\n", + " ('decolourize', 'remove color from'),\n", + " ('bleach', 'remove color from'),\n", + " ('decolour', 'remove color from'),\n", + " ('bleach out', 'remove color from')]},\n", " {'answer': 'blemished',\n", " 'hint': 'synonyms for blemished',\n", - " 'clues': [('spot', 'mar or impair with a flaw'),\n", - " ('blemish', 'add a flaw or blemish to; make imperfect or defective'),\n", + " 'clues': [('flaw',\n", + " 'add a flaw or blemish to; make imperfect or defective'),\n", " ('disfigure', 'mar or spoil the appearance of'),\n", " ('deface', 'mar or spoil the appearance of'),\n", - " ('flaw', 'add a flaw or blemish to; make imperfect or defective')]},\n", + " ('spot', 'mar or impair with a flaw'),\n", + " ('blemish', 'mar or impair with a flaw')]},\n", " {'answer': 'blended',\n", " 'hint': 'synonyms for blended',\n", - " 'clues': [('coalesce', 'mix together different elements'),\n", - " ('flux', 'mix together different elements'),\n", - " ('combine', 'mix together different elements'),\n", - " ('blend in', 'blend or harmonize'),\n", - " ('blend', 'combine into one'),\n", - " ('meld', 'mix together different elements'),\n", - " ('go', 'blend or harmonize'),\n", - " ('immingle', 'combine into one'),\n", + " 'clues': [('blend', 'blend or harmonize'),\n", + " ('intermingle', 'combine into one'),\n", + " ('conflate', 'mix together different elements'),\n", " ('fuse', 'mix together different elements'),\n", + " ('go', 'blend or harmonize'),\n", + " ('meld', 'mix together different elements'),\n", + " ('coalesce', 'mix together different elements'),\n", " ('mix', 'mix together different elements'),\n", - " ('conflate', 'mix together different elements'),\n", + " ('immix', 'mix together different elements'),\n", + " ('blend in', 'blend or harmonize'),\n", " ('intermix', 'combine into one'),\n", " ('merge', 'mix together different elements'),\n", - " ('intermingle', 'combine into one'),\n", " ('commingle', 'mix together different elements'),\n", - " ('immix', 'mix together different elements')]},\n", + " ('immingle', 'combine into one'),\n", + " ('combine', 'mix together different elements'),\n", + " ('flux', 'mix together different elements')]},\n", " {'answer': 'blessed',\n", " 'hint': 'synonyms for blessed',\n", - " 'clues': [('sign',\n", + " 'clues': [('bless',\n", " 'make the sign of the cross over someone in order to call on God for protection; consecrate'),\n", " ('hallow', 'render holy by means of religious rites'),\n", - " ('bless', 'render holy by means of religious rites'),\n", " ('sanctify', 'render holy by means of religious rites'),\n", - " ('consecrate', 'render holy by means of religious rites')]},\n", + " ('consecrate', 'render holy by means of religious rites'),\n", + " ('sign',\n", + " 'make the sign of the cross over someone in order to call on God for protection; consecrate')]},\n", " {'answer': 'blest',\n", " 'hint': 'synonyms for blest',\n", - " 'clues': [('sign',\n", + " 'clues': [('bless',\n", " 'make the sign of the cross over someone in order to call on God for protection; consecrate'),\n", " ('hallow', 'render holy by means of religious rites'),\n", - " ('bless', 'render holy by means of religious rites'),\n", " ('sanctify', 'render holy by means of religious rites'),\n", - " ('consecrate', 'render holy by means of religious rites')]},\n", + " ('consecrate', 'render holy by means of religious rites'),\n", + " ('sign',\n", + " 'make the sign of the cross over someone in order to call on God for protection; consecrate')]},\n", " {'answer': 'blinking',\n", " 'hint': 'synonyms for blinking',\n", - " 'clues': [('nictate', 'briefly shut the eyes'),\n", - " ('blink', 'gleam or glow intermittently'),\n", - " ('wink', 'briefly shut the eyes'),\n", + " 'clues': [('flash', 'gleam or glow intermittently'),\n", " ('blink away', 'force to go away by blinking'),\n", - " ('winkle', 'gleam or glow intermittently'),\n", - " ('flash', 'gleam or glow intermittently')]},\n", + " ('wink', 'briefly shut the eyes'),\n", + " ('nictitate', 'briefly shut the eyes'),\n", + " ('blink', 'gleam or glow intermittently'),\n", + " ('winkle', 'gleam or glow intermittently')]},\n", " {'answer': 'blistering',\n", " 'hint': 'synonyms for blistering',\n", - " 'clues': [('scald', 'subject to harsh criticism'),\n", - " ('blister', 'subject to harsh criticism'),\n", - " ('whip', 'subject to harsh criticism'),\n", - " ('vesicate', 'get blistered')]},\n", + " 'clues': [('blister', 'subject to harsh criticism'),\n", + " ('scald', 'subject to harsh criticism'),\n", + " ('vesicate', 'get blistered'),\n", + " ('whip', 'subject to harsh criticism')]},\n", " {'answer': 'blockaded',\n", " 'hint': 'synonyms for blockaded',\n", - " 'clues': [('block', 'render unsuitable for passage'),\n", - " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n", - " ('bar', 'render unsuitable for passage'),\n", - " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block up', 'render unsuitable for passage'),\n", + " 'clues': [('block off', 'obstruct access to'),\n", " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n", - " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", - " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block off', 'obstruct access to'),\n", - " ('stop', 'render unsuitable for passage'),\n", + " ('blockade', 'impose a blockade on'),\n", " ('seal off', 'impose a blockade on'),\n", + " ('stop', 'render unsuitable for passage'),\n", " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block', 'hinder or prevent the progress or accomplishment of'),\n", + " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", + " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block up', 'render unsuitable for passage'),\n", + " ('bar', 'render unsuitable for passage'),\n", + " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", " ('barricade', 'render unsuitable for passage')]},\n", " {'answer': 'blockading',\n", " 'hint': 'synonyms for blockading',\n", - " 'clues': [('block', 'render unsuitable for passage'),\n", - " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n", - " ('bar', 'render unsuitable for passage'),\n", - " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block up', 'render unsuitable for passage'),\n", + " 'clues': [('block off', 'obstruct access to'),\n", " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n", - " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", - " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block off', 'obstruct access to'),\n", - " ('stop', 'render unsuitable for passage'),\n", + " ('blockade', 'impose a blockade on'),\n", " ('seal off', 'impose a blockade on'),\n", + " ('stop', 'render unsuitable for passage'),\n", " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block', 'hinder or prevent the progress or accomplishment of'),\n", + " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", + " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block up', 'render unsuitable for passage'),\n", + " ('bar', 'render unsuitable for passage'),\n", + " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", " ('barricade', 'render unsuitable for passage')]},\n", " {'answer': 'blocked',\n", " 'hint': 'synonyms for blocked',\n", - " 'clues': [('block', 'render unsuitable for passage'),\n", - " ('stop', 'stop from happening or developing'),\n", - " ('freeze', 'prohibit the conversion or use of (assets)'),\n", - " ('bar', 'render unsuitable for passage'),\n", - " ('jam', 'block passage through'),\n", + " 'clues': [('hinder',\n", + " 'hinder or prevent the progress or accomplishment of'),\n", + " ('jam', 'interfere with or prevent the reception of signals'),\n", + " ('close up', 'block passage through'),\n", + " ('immobilize', 'prohibit the conversion or use of (assets)'),\n", + " ('stop', 'render unsuitable for passage'),\n", + " ('obstruct', 'block passage through'),\n", " ('block up', 'render unsuitable for passage'),\n", - " ('deflect', 'impede the movement of (an opponent or a ball)'),\n", - " ('immobilise', 'prohibit the conversion or use of (assets)'),\n", - " ('parry', 'impede the movement of (an opponent or a ball)'),\n", + " ('block', 'shape by using a block'),\n", + " ('barricade', 'render unsuitable for passage'),\n", + " ('forget', 'be unable to remember'),\n", + " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n", + " ('lug', 'obstruct'),\n", + " ('choke up', 'obstruct'),\n", + " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", " ('stuff', 'obstruct'),\n", + " ('blank out', 'be unable to remember'),\n", " ('kibosh', 'stop from happening or developing'),\n", - " ('blockade', 'render unsuitable for passage'),\n", - " ('obstruct',\n", - " 'shut out from view or get in the way so as to hide from sight'),\n", + " ('obturate', 'block passage through'),\n", + " ('impede', 'block passage through'),\n", + " ('block off', 'render unsuitable for passage'),\n", + " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", - " ('choke up', 'obstruct'),\n", - " ('barricade', 'render unsuitable for passage'),\n", - " ('occlude', 'block passage through'),\n", + " ('parry', 'impede the movement of (an opponent or a ball)'),\n", + " ('deflect', 'impede the movement of (an opponent or a ball)'),\n", + " ('freeze', 'prohibit the conversion or use of (assets)'),\n", " ('draw a blank', 'be unable to remember'),\n", - " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n", - " ('blank out', 'be unable to remember'),\n", - " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", - " ('close up', 'block passage through'),\n", - " ('lug', 'obstruct'),\n", - " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", " ('halt', 'stop from happening or developing'),\n", - " ('forget', 'be unable to remember'),\n", - " ('impede', 'block passage through'),\n", - " ('obturate', 'block passage through'),\n", - " ('block off', 'render unsuitable for passage')]},\n", + " ('bar', 'render unsuitable for passage'),\n", + " ('occlude', 'block passage through')]},\n", " {'answer': 'blown',\n", " 'hint': 'synonyms for blown',\n", - " 'clues': [('fumble', 'make a mess of, destroy or ruin'),\n", - " ('fuck up', 'make a mess of, destroy or ruin'),\n", - " ('bungle', 'make a mess of, destroy or ruin'),\n", - " ('bollix', 'make a mess of, destroy or ruin'),\n", - " ('bluster', 'show off'),\n", - " ('ball up', 'make a mess of, destroy or ruin'),\n", - " ('screw up', 'make a mess of, destroy or ruin'),\n", - " ('float', 'be in motion due to some air or water current'),\n", - " ('blow', 'burst suddenly'),\n", + " 'clues': [('bodge', 'make a mess of, destroy or ruin'),\n", + " ('blow', 'lay eggs'),\n", + " ('muck up', 'make a mess of, destroy or ruin'),\n", + " ('bobble', 'make a mess of, destroy or ruin'),\n", + " ('botch up', 'make a mess of, destroy or ruin'),\n", + " ('swash', 'show off'),\n", + " ('foul up', 'make a mess of, destroy or ruin'),\n", + " ('spoil', 'make a mess of, destroy or ruin'),\n", + " ('fellate', 'provide sexual gratification through oral stimulation'),\n", + " ('suck', 'provide sexual gratification through oral stimulation'),\n", " ('squander', 'spend thoughtlessly; throw away'),\n", - " ('bumble', 'make a mess of, destroy or ruin'),\n", - " ('mishandle', 'make a mess of, destroy or ruin'),\n", + " ('go down on', 'provide sexual gratification through oral stimulation'),\n", + " ('bollocks up', 'make a mess of, destroy or ruin'),\n", " ('vaunt', 'show off'),\n", + " ('brag', 'show off'),\n", + " ('mishandle', 'make a mess of, destroy or ruin'),\n", + " ('muff', 'make a mess of, destroy or ruin'),\n", " ('shove off', 'leave; informal or rude'),\n", - " ('bollocks up', 'make a mess of, destroy or ruin'),\n", + " ('gas', 'show off'),\n", + " ('bungle', 'make a mess of, destroy or ruin'),\n", + " ('fumble', 'make a mess of, destroy or ruin'),\n", + " ('tout', 'show off'),\n", " ('drift', 'be in motion due to some air or water current'),\n", - " ('flub', 'make a mess of, destroy or ruin'),\n", - " ('suck', 'provide sexual gratification through oral stimulation'),\n", - " ('bobble', 'make a mess of, destroy or ruin'),\n", - " ('be adrift', 'be in motion due to some air or water current'),\n", - " ('brag', 'show off'),\n", + " ('bollix up', 'make a mess of, destroy or ruin'),\n", + " ('fluff', 'make a mess of, destroy or ruin'),\n", + " ('screw up', 'make a mess of, destroy or ruin'),\n", + " ('float', 'be in motion due to some air or water current'),\n", + " ('bluster', 'show off'),\n", " ('boast', 'show off'),\n", " ('gasconade', 'show off'),\n", - " ('botch up', 'make a mess of, destroy or ruin'),\n", - " ('spoil', 'make a mess of, destroy or ruin'),\n", - " ('gas', 'show off'),\n", - " ('foul up', 'make a mess of, destroy or ruin'),\n", - " ('muff', 'make a mess of, destroy or ruin'),\n", - " ('louse up', 'make a mess of, destroy or ruin'),\n", - " ('fluff', 'make a mess of, destroy or ruin'),\n", - " ('go down on', 'provide sexual gratification through oral stimulation'),\n", - " ('shove along', 'leave; informal or rude'),\n", - " ('bodge', 'make a mess of, destroy or ruin'),\n", - " ('burn out', 'melt, break, or become otherwise unusable'),\n", - " ('bollocks', 'make a mess of, destroy or ruin'),\n", + " ('be adrift', 'be in motion due to some air or water current'),\n", + " ('bollix', 'make a mess of, destroy or ruin'),\n", + " ('bumble', 'make a mess of, destroy or ruin'),\n", " ('waste', 'spend thoughtlessly; throw away'),\n", - " ('fellate', 'provide sexual gratification through oral stimulation'),\n", - " ('swash', 'show off'),\n", - " ('botch', 'make a mess of, destroy or ruin'),\n", " ('mess up', 'make a mess of, destroy or ruin'),\n", - " ('shoot a line', 'show off'),\n", " ('blow out', 'melt, break, or become otherwise unusable'),\n", - " ('tout', 'show off'),\n", - " ('bollix up', 'make a mess of, destroy or ruin')]},\n", + " ('flub', 'make a mess of, destroy or ruin'),\n", + " ('shoot a line', 'show off'),\n", + " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('burn out', 'melt, break, or become otherwise unusable'),\n", + " ('louse up', 'make a mess of, destroy or ruin'),\n", + " ('bollocks', 'make a mess of, destroy or ruin'),\n", + " ('shove along', 'leave; informal or rude'),\n", + " ('botch', 'make a mess of, destroy or ruin')]},\n", " {'answer': 'blunt',\n", " 'hint': 'synonyms for blunt',\n", - " 'clues': [('dull', 'make numb or insensitive'),\n", - " ('benumb', 'make numb or insensitive'),\n", + " 'clues': [('benumb', 'make numb or insensitive'),\n", + " ('dull', 'make numb or insensitive'),\n", + " ('numb', 'make numb or insensitive'),\n", " ('deaden',\n", - " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", - " ('numb', 'make numb or insensitive')]},\n", + " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation')]},\n", " {'answer': 'blunted',\n", " 'hint': 'synonyms for blunted',\n", - " 'clues': [('deaden',\n", + " 'clues': [('blunt',\n", + " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", + " ('dull', 'make numb or insensitive'),\n", + " ('deaden',\n", " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", - " ('blunt', 'make less intense'),\n", - " ('dull', 'make dull or blunt'),\n", " ('benumb', 'make numb or insensitive'),\n", " ('numb', 'make numb or insensitive')]},\n", " {'answer': 'blurred',\n", " 'hint': 'synonyms for blurred',\n", - " 'clues': [('blur', 'to make less distinct or clear'),\n", - " ('slur', 'become vague or indistinct'),\n", + " 'clues': [('obscure', 'make unclear, indistinct, or blurred'),\n", + " ('smutch', 'make a smudge on; soil by smudging'),\n", " ('blear', 'make dim or indistinct'),\n", - " ('obnubilate', 'make unclear, indistinct, or blurred'),\n", - " ('dim', 'become vague or indistinct'),\n", " ('glaze over', 'become glassy; lose clear vision'),\n", - " ('smudge', 'make a smudge on; soil by smudging'),\n", + " ('slur', 'become vague or indistinct'),\n", + " ('blur', 'to make less distinct or clear'),\n", " ('confuse', 'make unclear, indistinct, or blurred'),\n", - " ('obscure', 'make unclear, indistinct, or blurred'),\n", + " ('smudge', 'make a smudge on; soil by smudging'),\n", + " ('dim', 'become vague or indistinct'),\n", " ('smear', 'make a smudge on; soil by smudging'),\n", - " ('smutch', 'make a smudge on; soil by smudging'),\n", + " ('obnubilate', 'make unclear, indistinct, or blurred'),\n", " ('film over', 'become glassy; lose clear vision')]},\n", " {'answer': 'blushing',\n", " 'hint': 'synonyms for blushing',\n", - " 'clues': [('blush', 'turn red, as if in embarrassment or shame'),\n", + " 'clues': [('flush', 'turn red, as if in embarrassment or shame'),\n", + " ('blush', 'turn red, as if in embarrassment or shame'),\n", " ('crimson', 'turn red, as if in embarrassment or shame'),\n", - " ('redden', 'turn red, as if in embarrassment or shame'),\n", - " ('flush', 'turn red, as if in embarrassment or shame')]},\n", + " ('redden', 'turn red, as if in embarrassment or shame')]},\n", " {'answer': 'blustering',\n", " 'hint': 'synonyms for blustering',\n", - " 'clues': [('swagger',\n", - " 'act in an arrogant, overly self-assured, or conceited manner'),\n", - " ('bluster',\n", + " 'clues': [('bluster',\n", " 'act in an arrogant, overly self-assured, or conceited manner'),\n", " ('swash', 'act in an arrogant, overly self-assured, or conceited manner'),\n", - " ('brag', 'show off'),\n", + " ('tout', 'show off'),\n", + " ('shoot a line', 'show off'),\n", + " ('blow', 'show off'),\n", " ('boast', 'show off'),\n", + " ('vaunt', 'show off'),\n", + " ('brag', 'show off'),\n", " ('gasconade', 'show off'),\n", " ('gas', 'show off'),\n", - " ('blow', 'show off'),\n", - " ('shoot a line', 'show off'),\n", - " ('vaunt', 'show off'),\n", - " ('tout', 'show off')]},\n", + " ('swagger',\n", + " 'act in an arrogant, overly self-assured, or conceited manner')]},\n", " {'answer': 'boiled',\n", " 'hint': 'synonyms for boiled',\n", - " 'clues': [('seethe', 'be in an agitated emotional state'),\n", - " ('boil', 'be in an agitated emotional state'),\n", + " 'clues': [('boil', 'be agitated'),\n", + " ('seethe', 'be in an agitated emotional state'),\n", " ('roil', 'be agitated'),\n", - " ('churn', 'be agitated'),\n", - " ('moil', 'be agitated')]},\n", + " ('moil', 'be agitated'),\n", + " ('churn', 'be agitated')]},\n", " {'answer': 'bone',\n", " 'hint': 'synonyms for bone',\n", - " 'clues': [('grind away', 'study intensively, as before an exam'),\n", + " 'clues': [('drum', 'study intensively, as before an exam'),\n", + " ('debone', 'remove the bones from'),\n", + " ('swot', 'study intensively, as before an exam'),\n", " ('cram', 'study intensively, as before an exam'),\n", " ('get up', 'study intensively, as before an exam'),\n", - " ('debone', 'remove the bones from'),\n", " ('bone up', 'study intensively, as before an exam'),\n", - " ('drum', 'study intensively, as before an exam'),\n", " ('mug up', 'study intensively, as before an exam'),\n", - " ('swot', 'study intensively, as before an exam'),\n", + " ('grind away', 'study intensively, as before an exam'),\n", " ('swot up', 'study intensively, as before an exam')]},\n", " {'answer': 'boned',\n", " 'hint': 'synonyms for boned',\n", - " 'clues': [('grind away', 'study intensively, as before an exam'),\n", + " 'clues': [('drum', 'study intensively, as before an exam'),\n", + " ('debone', 'remove the bones from'),\n", + " ('swot', 'study intensively, as before an exam'),\n", " ('cram', 'study intensively, as before an exam'),\n", " ('get up', 'study intensively, as before an exam'),\n", - " ('debone', 'remove the bones from'),\n", + " ('bone', 'remove the bones from'),\n", " ('bone up', 'study intensively, as before an exam'),\n", - " ('bone', 'study intensively, as before an exam'),\n", - " ('drum', 'study intensively, as before an exam'),\n", " ('mug up', 'study intensively, as before an exam'),\n", - " ('swot', 'study intensively, as before an exam'),\n", + " ('grind away', 'study intensively, as before an exam'),\n", " ('swot up', 'study intensively, as before an exam')]},\n", " {'answer': 'booming',\n", " 'hint': 'synonyms for booming',\n", - " 'clues': [('boom out', 'make a deep hollow sound'),\n", - " ('nail', 'hit hard'),\n", - " ('boom', 'hit hard'),\n", - " ('expand', 'grow vigorously'),\n", - " ('thunder', 'be the case that thunder is being heard'),\n", - " ('blast', 'hit hard'),\n", + " 'clues': [('flourish', 'grow vigorously'),\n", + " ('boom', 'make a deep hollow sound'),\n", " ('thrive', 'grow vigorously'),\n", " ('din', 'make a resonant sound, like artillery'),\n", + " ('blast', 'hit hard'),\n", " ('smash', 'hit hard'),\n", - " ('flourish', 'grow vigorously')]},\n", - " {'answer': 'bootlicking',\n", + " ('thunder', 'be the case that thunder is being heard'),\n", + " ('boom out', 'make a deep hollow sound'),\n", + " ('expand', 'grow vigorously'),\n", + " ('nail', 'hit hard')]},\n", + " {'answer': 'bootlicking',\n", " 'hint': 'synonyms for bootlicking',\n", - " 'clues': [('kowtow', 'try to gain favor by cringing or flattering'),\n", - " ('truckle', 'try to gain favor by cringing or flattering'),\n", + " 'clues': [('toady', 'try to gain favor by cringing or flattering'),\n", + " ('kotow', 'try to gain favor by cringing or flattering'),\n", " ('fawn', 'try to gain favor by cringing or flattering'),\n", + " ('truckle', 'try to gain favor by cringing or flattering'),\n", " ('bootlick', 'try to gain favor by cringing or flattering'),\n", - " ('toady', 'try to gain favor by cringing or flattering'),\n", " ('suck up', 'try to gain favor by cringing or flattering')]},\n", " {'answer': 'bordered',\n", " 'hint': 'synonyms for bordered',\n", - " 'clues': [('bound', 'form the boundary of; be contiguous to'),\n", - " ('environ', 'extend on all sides of simultaneously; encircle'),\n", + " 'clues': [('surround', 'extend on all sides of simultaneously; encircle'),\n", " ('ring', 'extend on all sides of simultaneously; encircle'),\n", - " ('frame', 'enclose in or as if in a frame'),\n", - " ('border', 'form the boundary of; be contiguous to'),\n", + " ('frame in', 'enclose in or as if in a frame'),\n", " ('butt on', 'lie adjacent to another or share a boundary'),\n", + " ('frame', 'enclose in or as if in a frame'),\n", " ('edge', 'lie adjacent to another or share a boundary'),\n", - " ('frame in', 'enclose in or as if in a frame'),\n", + " ('environ', 'extend on all sides of simultaneously; encircle'),\n", + " ('border', 'lie adjacent to another or share a boundary'),\n", + " ('butt', 'lie adjacent to another or share a boundary'),\n", " ('adjoin', 'lie adjacent to another or share a boundary'),\n", + " ('bound', 'form the boundary of; be contiguous to'),\n", + " ('skirt', 'extend on all sides of simultaneously; encircle'),\n", " ('abut', 'lie adjacent to another or share a boundary'),\n", - " ('butt against', 'lie adjacent to another or share a boundary'),\n", " ('march', 'lie adjacent to another or share a boundary'),\n", - " ('skirt', 'extend on all sides of simultaneously; encircle'),\n", - " ('surround', 'extend on all sides of simultaneously; encircle'),\n", - " ('butt', 'lie adjacent to another or share a boundary')]},\n", + " ('butt against', 'lie adjacent to another or share a boundary')]},\n", " {'answer': 'born',\n", " 'hint': 'synonyms for born',\n", - " 'clues': [('have a bun in the oven', 'be pregnant with'),\n", - " ('bear', 'have'),\n", - " ('accept',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", - " ('behave', 'behave in a certain manner'),\n", - " ('carry', 'behave in a certain manner'),\n", - " ('tolerate', 'put up with something or somebody unpleasant'),\n", + " 'clues': [('endure', 'put up with something or somebody unpleasant'),\n", + " ('turn out', 'bring forth,'),\n", + " ('bear', 'contain or hold; have within'),\n", + " ('birth', 'cause to be born'),\n", + " ('have', 'cause to be born'),\n", + " ('give birth', 'cause to be born'),\n", " ('comport', 'behave in a certain manner'),\n", - " ('hold', 'have rightfully; of rights, titles, and offices'),\n", - " ('deport', 'behave in a certain manner'),\n", - " ('take over',\n", - " \"take on as one's own the expenses or debts of another person\"),\n", " ('support', 'put up with something or somebody unpleasant'),\n", - " ('stomach', 'put up with something or somebody unpleasant'),\n", + " ('hold', 'contain or hold; have within'),\n", + " ('yield', 'bring in'),\n", + " ('have a bun in the oven', 'be pregnant with'),\n", + " ('wear', \"have on one's person\"),\n", + " ('carry', 'support or hold in a certain manner'),\n", + " ('acquit', 'behave in a certain manner'),\n", + " ('digest', 'put up with something or somebody unpleasant'),\n", " ('brook', 'put up with something or somebody unpleasant'),\n", - " ('stand', 'put up with something or somebody unpleasant'),\n", - " ('stick out', 'put up with something or somebody unpleasant'),\n", - " ('deliver', 'cause to be born'),\n", - " ('birth', 'cause to be born'),\n", - " ('give birth', 'cause to be born'),\n", - " ('contain', 'contain or hold; have within'),\n", - " ('turn out', 'bring forth,'),\n", - " ('expect', 'be pregnant with'),\n", " ('assume',\n", " \"take on as one's own the expenses or debts of another person\"),\n", + " ('tolerate', 'put up with something or somebody unpleasant'),\n", + " ('deport', 'behave in a certain manner'),\n", + " ('expect', 'be pregnant with'),\n", + " ('contain', 'contain or hold; have within'),\n", + " ('abide', 'put up with something or somebody unpleasant'),\n", + " ('put up', 'put up with something or somebody unpleasant'),\n", + " ('conduct', 'behave in a certain manner'),\n", " ('pay', 'bring in'),\n", + " ('stick out', 'put up with something or somebody unpleasant'),\n", " ('suffer', 'put up with something or somebody unpleasant'),\n", - " ('yield', 'bring in'),\n", - " ('have', 'cause to be born'),\n", - " ('endure', 'put up with something or somebody unpleasant'),\n", - " ('wear', \"have on one's person\"),\n", - " ('conduct', 'behave in a certain manner'),\n", - " ('abide', 'put up with something or somebody unpleasant'),\n", + " ('take over',\n", + " \"take on as one's own the expenses or debts of another person\"),\n", + " ('accept',\n", + " \"take on as one's own the expenses or debts of another person\"),\n", + " ('stand', 'put up with something or somebody unpleasant'),\n", + " ('behave', 'behave in a certain manner'),\n", " ('gestate', 'be pregnant with'),\n", - " ('put up', 'put up with something or somebody unpleasant'),\n", - " ('acquit', 'behave in a certain manner'),\n", - " ('digest', 'put up with something or somebody unpleasant')]},\n", + " ('stomach', 'put up with something or somebody unpleasant'),\n", + " ('deliver', 'cause to be born')]},\n", " {'answer': 'bosomed',\n", " 'hint': 'synonyms for bosomed',\n", - " 'clues': [('bosom', \"hide in one's bosom\"),\n", + " 'clues': [('bosom',\n", + " 'squeeze (someone) tightly in your arms, usually with fondness'),\n", " ('squeeze',\n", " 'squeeze (someone) tightly in your arms, usually with fondness'),\n", - " ('hug', 'squeeze (someone) tightly in your arms, usually with fondness'),\n", " ('embrace',\n", + " 'squeeze (someone) tightly in your arms, usually with fondness'),\n", + " ('hug',\n", " 'squeeze (someone) tightly in your arms, usually with fondness')]},\n", " {'answer': 'botched',\n", " 'hint': 'synonyms for botched',\n", - " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n", - " ('fumble', 'make a mess of, destroy or ruin'),\n", + " 'clues': [('bodge', 'make a mess of, destroy or ruin'),\n", " ('bungle', 'make a mess of, destroy or ruin'),\n", - " ('bollix', 'make a mess of, destroy or ruin'),\n", - " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('fumble', 'make a mess of, destroy or ruin'),\n", + " ('blow', 'make a mess of, destroy or ruin'),\n", + " ('muck up', 'make a mess of, destroy or ruin'),\n", + " ('bollix up', 'make a mess of, destroy or ruin'),\n", + " ('bobble', 'make a mess of, destroy or ruin'),\n", + " ('fluff', 'make a mess of, destroy or ruin'),\n", " ('screw up', 'make a mess of, destroy or ruin'),\n", " ('botch up', 'make a mess of, destroy or ruin'),\n", + " ('foul up', 'make a mess of, destroy or ruin'),\n", + " ('bollix', 'make a mess of, destroy or ruin'),\n", " ('spoil', 'make a mess of, destroy or ruin'),\n", " ('bumble', 'make a mess of, destroy or ruin'),\n", - " ('mishandle', 'make a mess of, destroy or ruin'),\n", - " ('foul up', 'make a mess of, destroy or ruin'),\n", - " ('muff', 'make a mess of, destroy or ruin'),\n", - " ('louse up', 'make a mess of, destroy or ruin'),\n", - " ('fluff', 'make a mess of, destroy or ruin'),\n", - " ('bodge', 'make a mess of, destroy or ruin'),\n", + " ('mess up', 'make a mess of, destroy or ruin'),\n", + " ('flub', 'make a mess of, destroy or ruin'),\n", + " ('ball up', 'make a mess of, destroy or ruin'),\n", " ('bollocks up', 'make a mess of, destroy or ruin'),\n", + " ('louse up', 'make a mess of, destroy or ruin'),\n", " ('bollocks', 'make a mess of, destroy or ruin'),\n", - " ('blow', 'make a mess of, destroy or ruin'),\n", - " ('botch', 'make a mess of, destroy or ruin'),\n", - " ('flub', 'make a mess of, destroy or ruin'),\n", - " ('mess up', 'make a mess of, destroy or ruin'),\n", - " ('bollix up', 'make a mess of, destroy or ruin'),\n", - " ('bobble', 'make a mess of, destroy or ruin')]},\n", + " ('mishandle', 'make a mess of, destroy or ruin'),\n", + " ('muff', 'make a mess of, destroy or ruin'),\n", + " ('botch', 'make a mess of, destroy or ruin')]},\n", " {'answer': 'bothered',\n", " 'hint': 'synonyms for bothered',\n", - " 'clues': [('trouble', 'take the trouble to do something; concern oneself'),\n", - " ('gravel',\n", + " 'clues': [('vex',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('bother', 'to cause inconvenience or discomfort to'),\n", - " ('put out', 'to cause inconvenience or discomfort to'),\n", - " ('get to',\n", + " ('nettle',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('chafe', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('discommode', 'to cause inconvenience or discomfort to'),\n", + " ('bother',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('trouble oneself', 'take the trouble to do something; concern oneself'),\n", + " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('irritate',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('get at',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('trouble', 'to cause inconvenience or discomfort to'),\n", + " ('gravel',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('get to',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('inconvenience', 'to cause inconvenience or discomfort to'),\n", " ('annoy', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('discommode', 'to cause inconvenience or discomfort to'),\n", + " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('put out', 'to cause inconvenience or discomfort to'),\n", " ('incommode', 'to cause inconvenience or discomfort to'),\n", " ('inconvenience oneself',\n", " 'take the trouble to do something; concern oneself'),\n", - " ('nettle',\n", - " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('inconvenience', 'to cause inconvenience or discomfort to'),\n", - " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('trouble oneself', 'take the trouble to do something; concern oneself'),\n", - " ('get at',\n", - " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('disoblige', 'to cause inconvenience or discomfort to')]},\n", " {'answer': 'bouncing',\n", " 'hint': 'synonyms for bouncing',\n", - " 'clues': [('bounce', 'move up and down repeatedly'),\n", - " ('spring', 'spring back; spring away from an impact'),\n", - " ('bound', 'spring back; spring away from an impact'),\n", - " ('rebound', 'spring back; spring away from an impact'),\n", - " ('take a hop', 'spring back; spring away from an impact'),\n", - " ('resile', 'spring back; spring away from an impact'),\n", + " 'clues': [('bounce', 'eject from the premises'),\n", " ('jounce', 'move up and down repeatedly'),\n", + " ('take a hop', 'spring back; spring away from an impact'),\n", + " ('spring', 'spring back; spring away from an impact'),\n", + " ('recoil', 'spring back; spring away from an impact'),\n", " ('reverberate', 'spring back; spring away from an impact'),\n", " ('ricochet', 'spring back; spring away from an impact'),\n", - " ('recoil', 'spring back; spring away from an impact')]},\n", + " ('rebound', 'spring back; spring away from an impact'),\n", + " ('resile', 'spring back; spring away from an impact'),\n", + " ('bound', 'spring back; spring away from an impact')]},\n", " {'answer': 'bound',\n", " 'hint': 'synonyms for bound',\n", - " 'clues': [('bond', 'stick to firmly'),\n", - " ('rebound', 'spring back; spring away from an impact'),\n", - " ('bind', 'create social or emotional ties'),\n", + " 'clues': [('bind', 'stick to firmly'),\n", + " ('oblige', 'bind by an obligation; cause to be indebted'),\n", " ('adhere', 'stick to firmly'),\n", + " ('stick to', 'stick to firmly'),\n", + " ('throttle', 'place limits on (extent or access)'),\n", " ('hold fast', 'stick to firmly'),\n", - " ('tie up', 'secure with or as if with ropes'),\n", + " ('bounce', 'spring back; spring away from an impact'),\n", " ('stick', 'stick to firmly'),\n", - " ('oblige', 'bind by an obligation; cause to be indebted'),\n", + " ('rebound', 'spring back; spring away from an impact'),\n", " ('constipate', 'cause to be constipated'),\n", - " ('bounce', 'spring back; spring away from an impact'),\n", - " ('spring', 'move forward by leaps and bounds'),\n", + " ('bond', 'stick to firmly'),\n", + " ('limit', 'place limits on (extent or access)'),\n", + " ('restrict', 'place limits on (extent or access)'),\n", + " ('truss', 'secure with or as if with ropes'),\n", " ('confine', 'place limits on (extent or access)'),\n", - " ('take a hop', 'spring back; spring away from an impact'),\n", - " ('bandage', 'wrap around with something so as to cover or enclose'),\n", + " ('restrain', 'place limits on (extent or access)'),\n", + " ('reverberate', 'spring back; spring away from an impact'),\n", + " ('border', 'form the boundary of; be contiguous to'),\n", + " ('ricochet', 'spring back; spring away from an impact'),\n", + " ('spring', 'move forward by leaps and bounds'),\n", + " ('resile', 'spring back; spring away from an impact'),\n", " ('hold', 'bind by an obligation; cause to be indebted'),\n", - " ('stick to', 'stick to firmly'),\n", " ('leap', 'move forward by leaps and bounds'),\n", + " ('take a hop', 'spring back; spring away from an impact'),\n", + " ('tie', 'fasten or secure with a rope, string, or cord'),\n", + " ('tie up', 'secure with or as if with ropes'),\n", + " ('jump', 'move forward by leaps and bounds'),\n", + " ('bandage', 'wrap around with something so as to cover or enclose'),\n", " ('tie down', 'secure with or as if with ropes'),\n", - " ('tie', 'create social or emotional ties'),\n", - " ('truss', 'secure with or as if with ropes'),\n", - " ('border', 'form the boundary of; be contiguous to'),\n", + " ('recoil', 'spring back; spring away from an impact'),\n", " ('attach', 'create social or emotional ties'),\n", - " ('throttle', 'place limits on (extent or access)'),\n", - " ('restrict', 'place limits on (extent or access)'),\n", - " ('reverberate', 'spring back; spring away from an impact'),\n", - " ('jump', 'move forward by leaps and bounds'),\n", - " ('limit', 'place limits on (extent or access)'),\n", - " ('restrain', 'place limits on (extent or access)'),\n", - " ('resile', 'spring back; spring away from an impact'),\n", - " ('trammel', 'place limits on (extent or access)'),\n", - " ('ricochet', 'spring back; spring away from an impact'),\n", - " ('recoil', 'spring back; spring away from an impact')]},\n", + " ('trammel', 'place limits on (extent or access)')]},\n", " {'answer': 'bounded',\n", " 'hint': 'synonyms for bounded',\n", - " 'clues': [('bound', 'move forward by leaps and bounds'),\n", - " ('rebound', 'spring back; spring away from an impact'),\n", - " ('border', 'form the boundary of; be contiguous to'),\n", + " 'clues': [('leap', 'move forward by leaps and bounds'),\n", + " ('take a hop', 'spring back; spring away from an impact'),\n", + " ('spring', 'spring back; spring away from an impact'),\n", " ('throttle', 'place limits on (extent or access)'),\n", - " ('restrict', 'place limits on (extent or access)'),\n", " ('bounce', 'spring back; spring away from an impact'),\n", - " ('reverberate', 'spring back; spring away from an impact'),\n", - " ('spring', 'move forward by leaps and bounds'),\n", - " ('confine', 'place limits on (extent or access)'),\n", + " ('rebound', 'spring back; spring away from an impact'),\n", " ('jump', 'move forward by leaps and bounds'),\n", + " ('bound', 'form the boundary of; be contiguous to'),\n", " ('limit', 'place limits on (extent or access)'),\n", - " ('take a hop', 'spring back; spring away from an impact'),\n", + " ('restrict', 'place limits on (extent or access)'),\n", + " ('recoil', 'spring back; spring away from an impact'),\n", + " ('confine', 'place limits on (extent or access)'),\n", " ('restrain', 'place limits on (extent or access)'),\n", - " ('resile', 'spring back; spring away from an impact'),\n", + " ('reverberate', 'spring back; spring away from an impact'),\n", + " ('border', 'form the boundary of; be contiguous to'),\n", " ('trammel', 'place limits on (extent or access)'),\n", - " ('leap', 'move forward by leaps and bounds'),\n", " ('ricochet', 'spring back; spring away from an impact'),\n", - " ('recoil', 'spring back; spring away from an impact')]},\n", + " ('resile', 'spring back; spring away from an impact')]},\n", " {'answer': 'bowed',\n", " 'hint': 'synonyms for bowed',\n", - " 'clues': [('bow', \"bend one's back forward from the waist on down\"),\n", + " 'clues': [('give in', \"yield to another's wish or opinion\"),\n", + " ('bow',\n", + " 'bend the head or the upper part of the body in a gesture of respect or greeting'),\n", " ('bow down', \"bend one's knee or body, or lower one's head\"),\n", - " ('give in', \"yield to another's wish or opinion\"),\n", - " ('stoop', \"bend one's back forward from the waist on down\"),\n", - " ('crouch', \"bend one's back forward from the waist on down\"),\n", " ('accede', \"yield to another's wish or opinion\"),\n", - " ('submit', \"yield to another's wish or opinion\"),\n", + " ('crouch', \"bend one's back forward from the waist on down\"),\n", " ('bend', \"bend one's back forward from the waist on down\"),\n", - " ('defer', \"yield to another's wish or opinion\")]},\n", + " ('defer', \"yield to another's wish or opinion\"),\n", + " ('submit', \"yield to another's wish or opinion\"),\n", + " ('stoop', \"bend one's back forward from the waist on down\")]},\n", " {'answer': 'bowing',\n", " 'hint': 'synonyms for bowing',\n", - " 'clues': [('bow', \"bend one's back forward from the waist on down\"),\n", + " 'clues': [('give in', \"yield to another's wish or opinion\"),\n", + " ('bow',\n", + " 'bend the head or the upper part of the body in a gesture of respect or greeting'),\n", " ('bow down', \"bend one's knee or body, or lower one's head\"),\n", - " ('give in', \"yield to another's wish or opinion\"),\n", - " ('stoop', \"bend one's back forward from the waist on down\"),\n", - " ('crouch', \"bend one's back forward from the waist on down\"),\n", " ('accede', \"yield to another's wish or opinion\"),\n", - " ('submit', \"yield to another's wish or opinion\"),\n", + " ('crouch', \"bend one's back forward from the waist on down\"),\n", " ('bend', \"bend one's back forward from the waist on down\"),\n", - " ('defer', \"yield to another's wish or opinion\")]},\n", + " ('defer', \"yield to another's wish or opinion\"),\n", + " ('submit', \"yield to another's wish or opinion\"),\n", + " ('stoop', \"bend one's back forward from the waist on down\")]},\n", " {'answer': 'braced',\n", " 'hint': 'synonyms for braced',\n", - " 'clues': [('energize', 'cause to be alert and energetic'),\n", + " 'clues': [('brace',\n", + " 'support or hold steady and make steadfast, with or as if with a brace'),\n", " ('stabilize',\n", " 'support or hold steady and make steadfast, with or as if with a brace'),\n", + " ('energize', 'cause to be alert and energetic'),\n", " ('poise', 'prepare (oneself) for something unpleasant or difficult'),\n", + " ('steady',\n", + " 'support or hold steady and make steadfast, with or as if with a brace'),\n", " ('arouse', 'cause to be alert and energetic'),\n", " ('perk up', 'cause to be alert and energetic'),\n", - " ('stimulate', 'cause to be alert and energetic'),\n", - " ('brace', 'cause to be alert and energetic'),\n", - " ('steady',\n", - " 'support or hold steady and make steadfast, with or as if with a brace')]},\n", + " ('stimulate', 'cause to be alert and energetic')]},\n", " {'answer': 'bracing',\n", " 'hint': 'synonyms for bracing',\n", - " 'clues': [('energize', 'cause to be alert and energetic'),\n", + " 'clues': [('brace',\n", + " 'support or hold steady and make steadfast, with or as if with a brace'),\n", " ('stabilize',\n", " 'support or hold steady and make steadfast, with or as if with a brace'),\n", + " ('energize', 'cause to be alert and energetic'),\n", " ('poise', 'prepare (oneself) for something unpleasant or difficult'),\n", + " ('steady',\n", + " 'support or hold steady and make steadfast, with or as if with a brace'),\n", " ('arouse', 'cause to be alert and energetic'),\n", " ('perk up', 'cause to be alert and energetic'),\n", - " ('stimulate', 'cause to be alert and energetic'),\n", - " ('brace', 'cause to be alert and energetic'),\n", - " ('steady',\n", - " 'support or hold steady and make steadfast, with or as if with a brace')]},\n", + " ('stimulate', 'cause to be alert and energetic')]},\n", " {'answer': 'brag',\n", " 'hint': 'synonyms for brag',\n", - " 'clues': [('boast', 'show off'),\n", + " 'clues': [('tout', 'show off'),\n", + " ('shoot a line', 'show off'),\n", " ('bluster', 'show off'),\n", - " ('swash', 'show off'),\n", - " ('gasconade', 'show off'),\n", - " ('gas', 'show off'),\n", " ('blow', 'show off'),\n", - " ('shoot a line', 'show off'),\n", + " ('boast', 'show off'),\n", " ('vaunt', 'show off'),\n", - " ('tout', 'show off')]},\n", + " ('gasconade', 'show off'),\n", + " ('swash', 'show off'),\n", + " ('gas', 'show off')]},\n", " {'answer': 'bragging',\n", " 'hint': 'synonyms for bragging',\n", - " 'clues': [('brag', 'show off'),\n", - " ('boast', 'show off'),\n", + " 'clues': [('tout', 'show off'),\n", + " ('shoot a line', 'show off'),\n", " ('bluster', 'show off'),\n", - " ('swash', 'show off'),\n", - " ('gasconade', 'show off'),\n", - " ('gas', 'show off'),\n", " ('blow', 'show off'),\n", - " ('shoot a line', 'show off'),\n", + " ('boast', 'show off'),\n", " ('vaunt', 'show off'),\n", - " ('tout', 'show off')]},\n", + " ('brag', 'show off'),\n", + " ('gasconade', 'show off'),\n", + " ('swash', 'show off'),\n", + " ('gas', 'show off')]},\n", " {'answer': 'braided',\n", " 'hint': 'synonyms for braided',\n", - " 'clues': [('pleach', 'form or weave into a braid or braids'),\n", + " 'clues': [('braid', 'make by braiding or interlacing'),\n", " ('lace', 'make by braiding or interlacing'),\n", - " ('braid', 'form or weave into a braid or braids'),\n", + " ('pleach', 'form or weave into a braid or braids'),\n", " ('plait', 'make by braiding or interlacing')]},\n", " {'answer': 'branched',\n", " 'hint': 'synonyms for branched',\n", - " 'clues': [('branch',\n", - " 'grow and send out branches or branch-like structures'),\n", + " 'clues': [('furcate',\n", + " 'divide into two or more branches so as to form a fork'),\n", " ('ramify', 'divide into two or more branches so as to form a fork'),\n", - " ('furcate', 'divide into two or more branches so as to form a fork'),\n", " ('fork', 'divide into two or more branches so as to form a fork'),\n", + " ('branch', 'grow and send out branches or branch-like structures'),\n", " ('separate', 'divide into two or more branches so as to form a fork')]},\n", " {'answer': 'branching',\n", " 'hint': 'synonyms for branching',\n", - " 'clues': [('branch',\n", - " 'grow and send out branches or branch-like structures'),\n", + " 'clues': [('furcate',\n", + " 'divide into two or more branches so as to form a fork'),\n", " ('ramify', 'divide into two or more branches so as to form a fork'),\n", - " ('furcate', 'divide into two or more branches so as to form a fork'),\n", " ('fork', 'divide into two or more branches so as to form a fork'),\n", + " ('branch', 'grow and send out branches or branch-like structures'),\n", " ('separate', 'divide into two or more branches so as to form a fork')]},\n", " {'answer': 'branded',\n", " 'hint': 'synonyms for branded',\n", - " 'clues': [('brand',\n", + " 'clues': [('brand', 'mark or expose as infamous'),\n", + " ('denounce',\n", " 'to accuse or condemn or openly or formally or brand as disgraceful'),\n", - " ('brandmark', 'mark with a brand or trademark'),\n", - " ('stigmatise',\n", + " ('stigmatize',\n", " 'to accuse or condemn or openly or formally or brand as disgraceful'),\n", " ('trademark', 'mark with a brand or trademark'),\n", " ('mark',\n", " 'to accuse or condemn or openly or formally or brand as disgraceful'),\n", - " ('post', 'mark or expose as infamous'),\n", - " ('denounce',\n", - " 'to accuse or condemn or openly or formally or brand as disgraceful')]},\n", + " ('brandmark', 'mark with a brand or trademark'),\n", + " ('post', 'mark or expose as infamous')]},\n", " {'answer': 'breathed',\n", " 'hint': 'synonyms for breathed',\n", - " 'clues': [('breathe',\n", - " 'reach full flavor by absorbing air and being let to stand after having been uncorked'),\n", - " ('pass off', 'expel (gases or odors)'),\n", - " ('emit', 'expel (gases or odors)'),\n", - " ('rest', \"take a short break from one's activities in order to relax\"),\n", + " 'clues': [('emit', 'expel (gases or odors)'),\n", + " ('respire', 'draw air into, and expel out of, the lungs'),\n", + " ('breathe', 'impart as if by breathing'),\n", " ('suspire', 'draw air into, and expel out of, the lungs'),\n", - " ('take a breather',\n", - " \"take a short break from one's activities in order to relax\"),\n", + " ('rest', \"take a short break from one's activities in order to relax\"),\n", + " ('pass off', 'expel (gases or odors)'),\n", + " ('take a breath', 'draw air into, and expel out of, the lungs'),\n", " (\"catch one's breath\",\n", - " \"take a short break from one's activities in order to relax\"),\n", - " ('respire', 'draw air into, and expel out of, the lungs')]},\n", + " \"take a short break from one's activities in order to relax\")]},\n", " {'answer': 'breathing',\n", " 'hint': 'synonyms for breathing',\n", - " 'clues': [('breathe',\n", - " 'reach full flavor by absorbing air and being let to stand after having been uncorked'),\n", - " ('pass off', 'expel (gases or odors)'),\n", - " ('emit', 'expel (gases or odors)'),\n", - " ('rest', \"take a short break from one's activities in order to relax\"),\n", + " 'clues': [('emit', 'expel (gases or odors)'),\n", + " ('respire', 'draw air into, and expel out of, the lungs'),\n", + " ('breathe', 'impart as if by breathing'),\n", " ('suspire', 'draw air into, and expel out of, the lungs'),\n", - " ('take a breather',\n", - " \"take a short break from one's activities in order to relax\"),\n", + " ('rest', \"take a short break from one's activities in order to relax\"),\n", + " ('pass off', 'expel (gases or odors)'),\n", + " ('take a breath', 'draw air into, and expel out of, the lungs'),\n", " (\"catch one's breath\",\n", - " \"take a short break from one's activities in order to relax\"),\n", - " ('respire', 'draw air into, and expel out of, the lungs')]},\n", + " \"take a short break from one's activities in order to relax\")]},\n", " {'answer': 'breeding',\n", " 'hint': 'synonyms for breeding',\n", - " 'clues': [('multiply', 'have young (animals) or reproduce (organisms)'),\n", - " ('breed', 'call forth'),\n", - " ('cover', 'copulate with a female, used especially of horses'),\n", + " 'clues': [('breed', 'copulate with a female, used especially of horses'),\n", + " ('multiply', 'have young (animals) or reproduce (organisms)'),\n", " ('engender', 'call forth'),\n", - " ('spawn', 'call forth')]},\n", + " ('spawn', 'call forth'),\n", + " ('cover', 'copulate with a female, used especially of horses')]},\n", " {'answer': 'bristled',\n", " 'hint': 'synonyms for bristled',\n", " 'clues': [('burst', 'be in a state of movement or action'),\n", - " ('stand up', 'rise up as in fear'),\n", + " ('bristle', 'be in a state of movement or action'),\n", " ('uprise', 'rise up as in fear'),\n", - " ('bristle', 'have or be thickly covered with or as if with bristles'),\n", + " ('stand up', 'rise up as in fear'),\n", " ('abound', 'be in a state of movement or action')]},\n", " {'answer': 'broke',\n", " 'hint': 'synonyms for broke',\n", - " 'clues': [('break',\n", - " 'fail to agree with; be in violation of; as of rules or patterns'),\n", - " ('go against',\n", - " 'fail to agree with; be in violation of; as of rules or patterns'),\n", - " ('recrudesce', 'happen'),\n", - " ('break away', 'move away or escape suddenly'),\n", - " ('break out', 'move away or escape suddenly'),\n", - " ('dampen', 'lessen in force or effect'),\n", - " ('erupt',\n", - " 'force out or release suddenly and often violently something pent up'),\n", + " 'clues': [('break', 'destroy the completeness of a set of related items'),\n", + " ('offend', 'act in disregard of laws, rules, contracts, or promises'),\n", " ('break up', 'destroy the completeness of a set of related items'),\n", - " ('founder', 'break down, literally or metaphorically'),\n", - " ('smash', 'reduce to bankruptcy'),\n", - " ('breach', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('bust', 'ruin completely'),\n", - " ('infract', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('let out',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('soften', 'lessen in force or effect'),\n", - " ('break-dance', 'do a break dance'),\n", - " ('separate', 'become separated into pieces or fragments'),\n", - " ('conk out', 'stop operating or functioning'),\n", - " ('go', 'stop operating or functioning'),\n", - " ('break off', 'prevent completion'),\n", - " ('fall in', 'break down, literally or metaphorically'),\n", - " ('go bad', 'stop operating or functioning'),\n", - " ('collapse', 'break down, literally or metaphorically'),\n", - " ('violate',\n", - " 'fail to agree with; be in violation of; as of rules or patterns'),\n", - " ('intermit', 'cease an action temporarily'),\n", - " ('ruin', 'reduce to bankruptcy'),\n", - " ('transgress', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('part', 'discontinue an association or relation; go different ways'),\n", - " ('discontinue', 'prevent completion'),\n", - " ('snap off', 'break a piece from a whole'),\n", - " ('break in',\n", - " \"enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act\"),\n", - " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('damp', 'lessen in force or effect'),\n", + " ('kick downstairs', 'assign to a lower position; reduce in rank'),\n", + " ('give', 'break down, literally or metaphorically'),\n", + " ('get out', 'be released or become known; of news'),\n", " ('divulge',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('fall apart', 'become separated into pieces or fragments'),\n", - " ('offend', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('split up', 'discontinue an association or relation; go different ways'),\n", - " ('demote', 'assign to a lower position; reduce in rank'),\n", - " ('relegate', 'assign to a lower position; reduce in rank'),\n", - " ('interrupt', 'terminate'),\n", - " ('bump', 'assign to a lower position; reduce in rank'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('wear out', 'go to pieces'),\n", " ('develop', 'happen'),\n", + " ('disclose',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('go against', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('transgress', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('break off', 'prevent completion'),\n", + " ('go', 'stop operating or functioning'),\n", + " ('breach', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('break away', 'move away or escape suddenly'),\n", + " ('come apart', 'become separated into pieces or fragments'),\n", + " ('wear', 'go to pieces'),\n", + " ('infract', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('erupt',\n", + " 'force out or release suddenly and often violently something pent up'),\n", + " ('better', 'surpass in excellence'),\n", " ('discover',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('let on',\n", + " ('split', 'discontinue an association or relation; go different ways'),\n", + " ('bankrupt', 'reduce to bankruptcy'),\n", + " ('snap off', 'break a piece from a whole'),\n", + " ('discontinue', 'prevent completion'),\n", + " ('expose',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('disclose',\n", + " ('part', 'discontinue an association or relation; go different ways'),\n", + " ('give away',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('interrupt', 'terminate'),\n", + " ('stop', 'prevent completion'),\n", + " ('go bad', 'stop operating or functioning'),\n", + " ('unwrap',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('give way', 'break down, literally or metaphorically'),\n", + " ('bust', 'go to pieces'),\n", + " ('get around', 'be released or become known; of news'),\n", + " ('break in',\n", + " \"enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act\"),\n", " ('weaken', 'lessen in force or effect'),\n", + " ('recrudesce', 'happen'),\n", + " ('split up', 'become separated into pieces or fragments'),\n", + " ('demote', 'assign to a lower position; reduce in rank'),\n", " ('cave in', 'break down, literally or metaphorically'),\n", - " ('come apart', 'become separated into pieces or fragments'),\n", + " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('break dance', 'do a break dance'),\n", + " ('separate', 'become separated into pieces or fragments'),\n", + " ('violate',\n", + " 'fail to agree with; be in violation of; as of rules or patterns'),\n", + " ('collapse', 'break down, literally or metaphorically'),\n", + " ('dampen', 'lessen in force or effect'),\n", + " ('intermit', 'cease an action temporarily'),\n", + " ('relegate', 'assign to a lower position; reduce in rank'),\n", " ('die', 'stop operating or functioning'),\n", - " ('wear', 'go to pieces'),\n", - " ('damp', 'lessen in force or effect'),\n", - " ('unwrap',\n", + " ('reveal',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('let on',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('crack', 'become fractured; break or crack on the surface only'),\n", - " ('split', 'discontinue an association or relation; go different ways'),\n", - " ('get around', 'be released or become known; of news'),\n", " ('fracture', 'fracture a bone of'),\n", - " ('stop', 'prevent completion'),\n", - " ('better', 'surpass in excellence'),\n", - " ('give', 'break down, literally or metaphorically'),\n", - " ('kick downstairs', 'assign to a lower position; reduce in rank'),\n", - " ('bankrupt', 'reduce to bankruptcy'),\n", + " ('fall apart', 'go to pieces'),\n", + " ('give out', 'stop operating or functioning'),\n", + " ('break down', 'stop operating or functioning'),\n", + " ('smash', 'reduce to bankruptcy'),\n", " ('pause', 'cease an action temporarily'),\n", + " ('fall in', 'break down, literally or metaphorically'),\n", + " ('wear out', 'go to pieces'),\n", + " ('break out', 'move away or escape suddenly'),\n", + " ('conk out', 'stop operating or functioning'),\n", + " ('crack', 'become fractured; break or crack on the surface only'),\n", + " ('ruin', 'reduce to bankruptcy'),\n", " ('fail', 'stop operating or functioning'),\n", + " ('bump', 'assign to a lower position; reduce in rank'),\n", " ('bring out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('reveal',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('expose',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n", + " ('founder', 'break down, literally or metaphorically'),\n", + " ('soften', 'lessen in force or effect')]},\n", " {'answer': 'broken',\n", " 'hint': 'synonyms for broken',\n", - " 'clues': [('break',\n", - " 'fail to agree with; be in violation of; as of rules or patterns'),\n", - " ('go against',\n", - " 'fail to agree with; be in violation of; as of rules or patterns'),\n", - " ('recrudesce', 'happen'),\n", - " ('break away', 'move away or escape suddenly'),\n", - " ('break out', 'move away or escape suddenly'),\n", - " ('dampen', 'lessen in force or effect'),\n", - " ('erupt',\n", - " 'force out or release suddenly and often violently something pent up'),\n", + " 'clues': [('break', 'destroy the completeness of a set of related items'),\n", + " ('offend', 'act in disregard of laws, rules, contracts, or promises'),\n", " ('break up', 'destroy the completeness of a set of related items'),\n", - " ('founder', 'break down, literally or metaphorically'),\n", - " ('smash', 'reduce to bankruptcy'),\n", - " ('breach', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('bust', 'ruin completely'),\n", - " ('infract', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('let out',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('soften', 'lessen in force or effect'),\n", - " ('break-dance', 'do a break dance'),\n", - " ('separate', 'become separated into pieces or fragments'),\n", - " ('conk out', 'stop operating or functioning'),\n", - " ('go', 'stop operating or functioning'),\n", - " ('break off', 'prevent completion'),\n", - " ('fall in', 'break down, literally or metaphorically'),\n", - " ('go bad', 'stop operating or functioning'),\n", - " ('collapse', 'break down, literally or metaphorically'),\n", - " ('violate',\n", - " 'fail to agree with; be in violation of; as of rules or patterns'),\n", - " ('intermit', 'cease an action temporarily'),\n", - " ('ruin', 'reduce to bankruptcy'),\n", - " ('transgress', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('part', 'discontinue an association or relation; go different ways'),\n", - " ('discontinue', 'prevent completion'),\n", - " ('snap off', 'break a piece from a whole'),\n", - " ('break in',\n", - " \"enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act\"),\n", - " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('damp', 'lessen in force or effect'),\n", + " ('kick downstairs', 'assign to a lower position; reduce in rank'),\n", + " ('give', 'break down, literally or metaphorically'),\n", + " ('get out', 'be released or become known; of news'),\n", " ('divulge',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('fall apart', 'become separated into pieces or fragments'),\n", - " ('offend', 'act in disregard of laws, rules, contracts, or promises'),\n", - " ('split up', 'discontinue an association or relation; go different ways'),\n", - " ('demote', 'assign to a lower position; reduce in rank'),\n", - " ('relegate', 'assign to a lower position; reduce in rank'),\n", - " ('interrupt', 'terminate'),\n", - " ('bump', 'assign to a lower position; reduce in rank'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('wear out', 'go to pieces'),\n", " ('develop', 'happen'),\n", + " ('disclose',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('go against', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('transgress', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('break off', 'prevent completion'),\n", + " ('go', 'stop operating or functioning'),\n", + " ('breach', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('break away', 'move away or escape suddenly'),\n", + " ('come apart', 'become separated into pieces or fragments'),\n", + " ('wear', 'go to pieces'),\n", + " ('infract', 'act in disregard of laws, rules, contracts, or promises'),\n", + " ('erupt',\n", + " 'force out or release suddenly and often violently something pent up'),\n", + " ('better', 'surpass in excellence'),\n", " ('discover',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('let on',\n", + " ('split', 'discontinue an association or relation; go different ways'),\n", + " ('bankrupt', 'reduce to bankruptcy'),\n", + " ('snap off', 'break a piece from a whole'),\n", + " ('discontinue', 'prevent completion'),\n", + " ('expose',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('disclose',\n", + " ('part', 'discontinue an association or relation; go different ways'),\n", + " ('give away',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('give way', 'break down, literally or metaphorically'),\n", + " ('interrupt', 'terminate'),\n", + " ('stop', 'prevent completion'),\n", + " ('go bad', 'stop operating or functioning'),\n", + " ('unwrap',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('bust', 'go to pieces'),\n", + " ('get around', 'be released or become known; of news'),\n", + " ('break in',\n", + " \"enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act\"),\n", " ('weaken', 'lessen in force or effect'),\n", + " ('recrudesce', 'happen'),\n", + " ('split up', 'become separated into pieces or fragments'),\n", + " ('demote', 'assign to a lower position; reduce in rank'),\n", " ('cave in', 'break down, literally or metaphorically'),\n", - " ('come apart', 'become separated into pieces or fragments'),\n", + " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('break dance', 'do a break dance'),\n", + " ('separate', 'become separated into pieces or fragments'),\n", + " ('violate',\n", + " 'fail to agree with; be in violation of; as of rules or patterns'),\n", + " ('collapse', 'break down, literally or metaphorically'),\n", + " ('dampen', 'lessen in force or effect'),\n", + " ('intermit', 'cease an action temporarily'),\n", + " ('relegate', 'assign to a lower position; reduce in rank'),\n", " ('die', 'stop operating or functioning'),\n", - " ('wear', 'go to pieces'),\n", - " ('damp', 'lessen in force or effect'),\n", - " ('unwrap',\n", + " ('reveal',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('let on',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('crack', 'become fractured; break or crack on the surface only'),\n", - " ('split', 'discontinue an association or relation; go different ways'),\n", - " ('get around', 'be released or become known; of news'),\n", " ('fracture', 'fracture a bone of'),\n", - " ('stop', 'prevent completion'),\n", - " ('better', 'surpass in excellence'),\n", - " ('give', 'break down, literally or metaphorically'),\n", - " ('kick downstairs', 'assign to a lower position; reduce in rank'),\n", - " ('bankrupt', 'reduce to bankruptcy'),\n", + " ('fall apart', 'go to pieces'),\n", + " ('give out', 'stop operating or functioning'),\n", + " ('break down', 'stop operating or functioning'),\n", + " ('smash', 'reduce to bankruptcy'),\n", " ('pause', 'cease an action temporarily'),\n", + " ('fall in', 'break down, literally or metaphorically'),\n", + " ('wear out', 'go to pieces'),\n", + " ('break out', 'move away or escape suddenly'),\n", + " ('conk out', 'stop operating or functioning'),\n", + " ('crack', 'become fractured; break or crack on the surface only'),\n", + " ('ruin', 'reduce to bankruptcy'),\n", " ('fail', 'stop operating or functioning'),\n", + " ('bump', 'assign to a lower position; reduce in rank'),\n", " ('bring out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('reveal',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('expose',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n", + " ('founder', 'break down, literally or metaphorically'),\n", + " ('soften', 'lessen in force or effect')]},\n", " {'answer': 'brooding',\n", " 'hint': 'synonyms for brooding',\n", - " 'clues': [('sulk', \"be in a huff and display one's displeasure\"),\n", - " ('cover', 'sit on (eggs)'),\n", - " ('brood', 'hang over, as of something threatening, dark, or menacing'),\n", + " 'clues': [('pout', \"be in a huff and display one's displeasure\"),\n", " ('grizzle', 'be in a huff; be silent or sullen'),\n", + " ('incubate', 'sit on (eggs)'),\n", + " ('dwell', 'think moodily or anxiously about something'),\n", " ('stew', 'be in a huff; be silent or sullen'),\n", + " ('brood', 'think moodily or anxiously about something'),\n", + " ('cover', 'sit on (eggs)'),\n", + " ('hover', 'hang over, as of something threatening, dark, or menacing'),\n", " ('hatch', 'sit on (eggs)'),\n", + " ('sulk', \"be in a huff and display one's displeasure\"),\n", " ('loom', 'hang over, as of something threatening, dark, or menacing'),\n", - " ('pout', \"be in a huff and display one's displeasure\"),\n", - " ('dwell', 'think moodily or anxiously about something'),\n", - " ('incubate', 'sit on (eggs)'),\n", - " ('hover', 'hang over, as of something threatening, dark, or menacing'),\n", " ('bulk large',\n", " 'hang over, as of something threatening, dark, or menacing')]},\n", " {'answer': 'bruising',\n", " 'hint': 'synonyms for bruising',\n", - " 'clues': [('spite', 'hurt the feelings of'),\n", + " 'clues': [('wound', 'hurt the feelings of'),\n", + " ('spite', 'hurt the feelings of'),\n", + " ('offend', 'hurt the feelings of'),\n", + " ('bruise', 'damage (plant tissue) by abrasion or pressure'),\n", " ('contuse', 'injure the underlying soft tissue or bone of'),\n", " ('injure', 'hurt the feelings of'),\n", - " ('bruise', 'damage (plant tissue) by abrasion or pressure'),\n", - " ('wound', 'hurt the feelings of'),\n", - " ('offend', 'hurt the feelings of'),\n", " ('hurt', 'hurt the feelings of')]},\n", " {'answer': 'bubbling',\n", " 'hint': 'synonyms for bubbling',\n", - " 'clues': [('bubble', 'form, produce, or emit bubbles'),\n", - " ('burble', 'flow in an irregular current with a bubbling noise'),\n", + " 'clues': [('guggle', 'flow in an irregular current with a bubbling noise'),\n", + " ('bubble', 'form, produce, or emit bubbles'),\n", " ('gurgle', 'flow in an irregular current with a bubbling noise'),\n", - " ('ripple', 'flow in an irregular current with a bubbling noise'),\n", + " ('burble', 'flow in an irregular current with a bubbling noise'),\n", " ('babble', 'flow in an irregular current with a bubbling noise'),\n", - " ('belch', 'expel gas from the stomach'),\n", - " ('burp', 'expel gas from the stomach'),\n", " ('eruct', 'expel gas from the stomach'),\n", - " ('guggle', 'flow in an irregular current with a bubbling noise')]},\n", + " ('burp', 'expel gas from the stomach'),\n", + " ('ripple', 'flow in an irregular current with a bubbling noise'),\n", + " ('belch', 'expel gas from the stomach')]},\n", " {'answer': 'buffeted',\n", " 'hint': 'synonyms for buffeted',\n", - " 'clues': [('buffet', 'strike, beat repeatedly'),\n", - " ('buff', 'strike, beat repeatedly'),\n", - " ('batter', 'strike against forcefully'),\n", - " ('knock about', 'strike against forcefully')]},\n", + " 'clues': [('batter', 'strike against forcefully'),\n", + " ('buffet', 'strike against forcefully'),\n", + " ('knock about', 'strike against forcefully'),\n", + " ('buff', 'strike, beat repeatedly')]},\n", " {'answer': 'bugged',\n", " 'hint': 'synonyms for bugged',\n", - " 'clues': [('bug', 'tap a telephone or telegraph wire to get information'),\n", + " 'clues': [('badger', 'annoy persistently'),\n", " ('tease', 'annoy persistently'),\n", - " ('wiretap', 'tap a telephone or telegraph wire to get information'),\n", - " ('pester', 'annoy persistently'),\n", - " ('tap', 'tap a telephone or telegraph wire to get information'),\n", " ('intercept', 'tap a telephone or telegraph wire to get information'),\n", + " ('wiretap', 'tap a telephone or telegraph wire to get information'),\n", " ('beleaguer', 'annoy persistently'),\n", - " ('badger', 'annoy persistently')]},\n", + " ('bug', 'tap a telephone or telegraph wire to get information'),\n", + " ('pester', 'annoy persistently'),\n", + " ('tap', 'tap a telephone or telegraph wire to get information')]},\n", " {'answer': 'built',\n", " 'hint': 'synonyms for built',\n", - " 'clues': [('build up', 'form or accumulate steadily'),\n", - " ('build', 'develop and grow'),\n", - " ('establish', 'build or establish something abstract'),\n", - " ('progress', 'form or accumulate steadily'),\n", - " ('work up', 'form or accumulate steadily'),\n", + " 'clues': [('build', 'order, supervise, or finance the construction of'),\n", + " ('build up', 'bolster or strengthen'),\n", + " ('work up', 'bolster or strengthen'),\n", " ('ramp up', 'bolster or strengthen'),\n", + " ('establish', 'build or establish something abstract'),\n", " ('construct', 'make by combining materials and parts'),\n", - " ('make', 'make by combining materials and parts')]},\n", + " ('make', 'make by combining materials and parts'),\n", + " ('progress', 'form or accumulate steadily')]},\n", " {'answer': 'bulging',\n", " 'hint': 'synonyms for bulging',\n", - " 'clues': [('pouch', 'swell or protrude outwards'),\n", + " 'clues': [('bulge', 'swell or protrude outwards'),\n", + " ('pop', 'bulge outward'),\n", + " ('protrude', 'swell or protrude outwards'),\n", + " ('bulk', 'cause to bulge or swell outwards'),\n", " ('bag',\n", " 'bulge out; form a bulge outward, or be so full as to appear to bulge'),\n", - " ('come out', 'bulge outward'),\n", - " ('bulge out', 'bulge outward'),\n", - " ('bulge', 'bulge outward'),\n", - " ('pop out', 'bulge outward'),\n", - " ('pop', 'bulge outward'),\n", - " ('protrude', 'bulge outward'),\n", " ('start', 'bulge outward'),\n", - " ('bulk', 'cause to bulge or swell outwards')]},\n", + " ('pouch', 'swell or protrude outwards'),\n", + " ('bulge out', 'bulge outward'),\n", + " ('come out', 'bulge outward'),\n", + " ('pop out', 'bulge outward')]},\n", " {'answer': 'bully',\n", " 'hint': 'synonyms for bully',\n", - " 'clues': [('bullyrag', 'be bossy towards'),\n", + " 'clues': [('ballyrag', 'be bossy towards'),\n", + " ('boss around', 'be bossy towards'),\n", + " ('swagger',\n", + " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", " ('browbeat',\n", " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", " ('push around', 'be bossy towards'),\n", - " ('strong-arm', 'be bossy towards'),\n", " ('hector', 'be bossy towards'),\n", - " ('swagger',\n", - " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", - " ('boss around', 'be bossy towards')]},\n", + " ('strong-arm', 'be bossy towards')]},\n", " {'answer': 'bullying',\n", " 'hint': 'synonyms for bullying',\n", - " 'clues': [('bully', 'be bossy towards'),\n", - " ('bullyrag', 'be bossy towards'),\n", + " 'clues': [('bully',\n", + " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", + " ('ballyrag', 'be bossy towards'),\n", + " ('boss around', 'be bossy towards'),\n", + " ('swagger',\n", + " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", " ('browbeat',\n", " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", " ('push around', 'be bossy towards'),\n", - " ('strong-arm', 'be bossy towards'),\n", " ('hector', 'be bossy towards'),\n", - " ('swagger',\n", - " 'discourage or frighten with threats or a domineering manner; intimidate'),\n", - " ('boss around', 'be bossy towards')]},\n", + " ('strong-arm', 'be bossy towards')]},\n", " {'answer': 'bum',\n", " 'hint': 'synonyms for bum',\n", - " 'clues': [('loll', 'be lazy or idle'),\n", + " 'clues': [('fuck off', 'be lazy or idle'),\n", + " ('loaf', 'be lazy or idle'),\n", + " ('bum around', 'be lazy or idle'),\n", + " ('grub', 'ask for and get free; be a parasite'),\n", + " ('cadge', 'ask for and get free; be a parasite'),\n", + " ('lounge about', 'be lazy or idle'),\n", + " ('arse about', 'be lazy or idle'),\n", + " ('lounge around', 'be lazy or idle'),\n", + " (\"waste one's time\", 'be lazy or idle'),\n", + " ('bum about', 'be lazy or idle'),\n", " ('loll around', 'be lazy or idle'),\n", " ('frig around', 'be lazy or idle'),\n", + " ('loll', 'be lazy or idle'),\n", " ('arse around', 'be lazy or idle'),\n", " ('mooch', 'ask for and get free; be a parasite'),\n", - " ('sponge', 'ask for and get free; be a parasite'),\n", - " ('loaf', 'be lazy or idle'),\n", - " ('bum about', 'be lazy or idle'),\n", - " ('arse about', 'be lazy or idle'),\n", - " ('fuck off', 'be lazy or idle'),\n", - " ('lounge about', 'be lazy or idle'),\n", - " (\"waste one's time\", 'be lazy or idle'),\n", - " ('bum around', 'be lazy or idle'),\n", - " ('cadge', 'ask for and get free; be a parasite'),\n", - " ('grub', 'ask for and get free; be a parasite'),\n", - " ('lounge around', 'be lazy or idle')]},\n", + " ('sponge', 'ask for and get free; be a parasite')]},\n", " {'answer': 'bumbling',\n", " 'hint': 'synonyms for bumbling',\n", - " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n", - " ('fumble', 'make a mess of, destroy or ruin'),\n", + " 'clues': [('bodge', 'make a mess of, destroy or ruin'),\n", " ('bungle', 'make a mess of, destroy or ruin'),\n", - " ('bollix', 'make a mess of, destroy or ruin'),\n", + " ('fumble', 'make a mess of, destroy or ruin'),\n", + " ('falter', 'walk unsteadily'),\n", + " ('blow', 'make a mess of, destroy or ruin'),\n", + " ('muck up', 'make a mess of, destroy or ruin'),\n", " ('stammer', 'speak haltingly'),\n", - " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('bollix up', 'make a mess of, destroy or ruin'),\n", + " ('bobble', 'make a mess of, destroy or ruin'),\n", + " ('fluff', 'make a mess of, destroy or ruin'),\n", " ('screw up', 'make a mess of, destroy or ruin'),\n", " ('botch up', 'make a mess of, destroy or ruin'),\n", + " ('bumble', 'speak haltingly'),\n", + " ('foul up', 'make a mess of, destroy or ruin'),\n", + " ('bollix', 'make a mess of, destroy or ruin'),\n", " ('spoil', 'make a mess of, destroy or ruin'),\n", + " ('mess up', 'make a mess of, destroy or ruin'),\n", + " ('flub', 'make a mess of, destroy or ruin'),\n", + " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('bollocks up', 'make a mess of, destroy or ruin'),\n", + " ('louse up', 'make a mess of, destroy or ruin'),\n", + " ('bollocks', 'make a mess of, destroy or ruin'),\n", " ('stumble', 'walk unsteadily'),\n", - " ('stutter', 'speak haltingly'),\n", - " ('bumble', 'make a mess of, destroy or ruin'),\n", " ('mishandle', 'make a mess of, destroy or ruin'),\n", - " ('foul up', 'make a mess of, destroy or ruin'),\n", " ('muff', 'make a mess of, destroy or ruin'),\n", - " ('louse up', 'make a mess of, destroy or ruin'),\n", - " ('fluff', 'make a mess of, destroy or ruin'),\n", - " ('bodge', 'make a mess of, destroy or ruin'),\n", - " ('falter', 'speak haltingly'),\n", - " ('bollocks up', 'make a mess of, destroy or ruin'),\n", - " ('bollocks', 'make a mess of, destroy or ruin'),\n", - " ('blow', 'make a mess of, destroy or ruin'),\n", - " ('botch', 'make a mess of, destroy or ruin'),\n", - " ('flub', 'make a mess of, destroy or ruin'),\n", - " ('mess up', 'make a mess of, destroy or ruin'),\n", - " ('bollix up', 'make a mess of, destroy or ruin'),\n", - " ('bobble', 'make a mess of, destroy or ruin')]},\n", + " ('stutter', 'speak haltingly'),\n", + " ('botch', 'make a mess of, destroy or ruin')]},\n", " {'answer': 'bungled',\n", " 'hint': 'synonyms for bungled',\n", - " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n", - " ('fumble', 'make a mess of, destroy or ruin'),\n", + " 'clues': [('bodge', 'make a mess of, destroy or ruin'),\n", " ('bungle', 'make a mess of, destroy or ruin'),\n", - " ('bollix', 'make a mess of, destroy or ruin'),\n", - " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('fumble', 'make a mess of, destroy or ruin'),\n", + " ('blow', 'make a mess of, destroy or ruin'),\n", + " ('muck up', 'make a mess of, destroy or ruin'),\n", + " ('bollix up', 'make a mess of, destroy or ruin'),\n", + " ('bobble', 'make a mess of, destroy or ruin'),\n", + " ('fluff', 'make a mess of, destroy or ruin'),\n", " ('screw up', 'make a mess of, destroy or ruin'),\n", " ('botch up', 'make a mess of, destroy or ruin'),\n", + " ('foul up', 'make a mess of, destroy or ruin'),\n", + " ('bollix', 'make a mess of, destroy or ruin'),\n", " ('spoil', 'make a mess of, destroy or ruin'),\n", " ('bumble', 'make a mess of, destroy or ruin'),\n", - " ('mishandle', 'make a mess of, destroy or ruin'),\n", - " ('foul up', 'make a mess of, destroy or ruin'),\n", - " ('muff', 'make a mess of, destroy or ruin'),\n", - " ('louse up', 'make a mess of, destroy or ruin'),\n", - " ('fluff', 'make a mess of, destroy or ruin'),\n", - " ('bodge', 'make a mess of, destroy or ruin'),\n", + " ('mess up', 'make a mess of, destroy or ruin'),\n", + " ('flub', 'make a mess of, destroy or ruin'),\n", + " ('ball up', 'make a mess of, destroy or ruin'),\n", " ('bollocks up', 'make a mess of, destroy or ruin'),\n", + " ('louse up', 'make a mess of, destroy or ruin'),\n", " ('bollocks', 'make a mess of, destroy or ruin'),\n", - " ('blow', 'make a mess of, destroy or ruin'),\n", - " ('botch', 'make a mess of, destroy or ruin'),\n", - " ('flub', 'make a mess of, destroy or ruin'),\n", - " ('mess up', 'make a mess of, destroy or ruin'),\n", - " ('bollix up', 'make a mess of, destroy or ruin'),\n", - " ('bobble', 'make a mess of, destroy or ruin')]},\n", + " ('mishandle', 'make a mess of, destroy or ruin'),\n", + " ('muff', 'make a mess of, destroy or ruin'),\n", + " ('botch', 'make a mess of, destroy or ruin')]},\n", " {'answer': 'bungling',\n", " 'hint': 'synonyms for bungling',\n", - " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n", - " ('fumble', 'make a mess of, destroy or ruin'),\n", + " 'clues': [('bodge', 'make a mess of, destroy or ruin'),\n", " ('bungle', 'make a mess of, destroy or ruin'),\n", - " ('bollix', 'make a mess of, destroy or ruin'),\n", - " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('fumble', 'make a mess of, destroy or ruin'),\n", + " ('blow', 'make a mess of, destroy or ruin'),\n", + " ('muck up', 'make a mess of, destroy or ruin'),\n", + " ('bollix up', 'make a mess of, destroy or ruin'),\n", + " ('bobble', 'make a mess of, destroy or ruin'),\n", + " ('fluff', 'make a mess of, destroy or ruin'),\n", " ('screw up', 'make a mess of, destroy or ruin'),\n", " ('botch up', 'make a mess of, destroy or ruin'),\n", + " ('foul up', 'make a mess of, destroy or ruin'),\n", + " ('bollix', 'make a mess of, destroy or ruin'),\n", " ('spoil', 'make a mess of, destroy or ruin'),\n", " ('bumble', 'make a mess of, destroy or ruin'),\n", - " ('mishandle', 'make a mess of, destroy or ruin'),\n", - " ('foul up', 'make a mess of, destroy or ruin'),\n", - " ('muff', 'make a mess of, destroy or ruin'),\n", - " ('louse up', 'make a mess of, destroy or ruin'),\n", - " ('fluff', 'make a mess of, destroy or ruin'),\n", - " ('bodge', 'make a mess of, destroy or ruin'),\n", + " ('mess up', 'make a mess of, destroy or ruin'),\n", + " ('flub', 'make a mess of, destroy or ruin'),\n", + " ('ball up', 'make a mess of, destroy or ruin'),\n", " ('bollocks up', 'make a mess of, destroy or ruin'),\n", + " ('louse up', 'make a mess of, destroy or ruin'),\n", " ('bollocks', 'make a mess of, destroy or ruin'),\n", - " ('blow', 'make a mess of, destroy or ruin'),\n", - " ('botch', 'make a mess of, destroy or ruin'),\n", - " ('flub', 'make a mess of, destroy or ruin'),\n", - " ('mess up', 'make a mess of, destroy or ruin'),\n", - " ('bollix up', 'make a mess of, destroy or ruin'),\n", - " ('bobble', 'make a mess of, destroy or ruin')]},\n", + " ('mishandle', 'make a mess of, destroy or ruin'),\n", + " ('muff', 'make a mess of, destroy or ruin'),\n", + " ('botch', 'make a mess of, destroy or ruin')]},\n", " {'answer': 'burbling',\n", " 'hint': 'synonyms for burbling',\n", - " 'clues': [('burble', 'flow in an irregular current with a bubbling noise'),\n", + " 'clues': [('guggle', 'flow in an irregular current with a bubbling noise'),\n", + " ('babble', 'flow in an irregular current with a bubbling noise'),\n", " ('gurgle', 'flow in an irregular current with a bubbling noise'),\n", " ('bubble', 'flow in an irregular current with a bubbling noise'),\n", - " ('guggle', 'flow in an irregular current with a bubbling noise'),\n", " ('ripple', 'flow in an irregular current with a bubbling noise'),\n", - " ('babble', 'flow in an irregular current with a bubbling noise')]},\n", + " ('burble', 'flow in an irregular current with a bubbling noise')]},\n", " {'answer': 'burdened',\n", " 'hint': 'synonyms for burdened',\n", - " 'clues': [('weight', 'weight down with a load'),\n", - " ('burthen', 'weight down with a load'),\n", + " 'clues': [('burthen', 'weight down with a load'),\n", + " ('saddle', 'impose a task upon, assign a responsibility to'),\n", " ('burden', 'impose a task upon, assign a responsibility to'),\n", " ('charge', 'impose a task upon, assign a responsibility to'),\n", - " ('saddle', 'impose a task upon, assign a responsibility to'),\n", - " ('weight down', 'weight down with a load')]},\n", + " ('weight down', 'weight down with a load'),\n", + " ('weight', 'weight down with a load')]},\n", " {'answer': 'buried',\n", " 'hint': 'synonyms for buried',\n", - " 'clues': [('sink', 'embed deeply'),\n", - " ('immerse', 'enclose or envelop completely, as if by swallowing'),\n", + " 'clues': [('forget', 'dismiss from the mind; stop remembering'),\n", + " ('bury', 'embed deeply'),\n", + " ('inhume', 'place in a grave or tomb'),\n", + " ('sink', 'embed deeply'),\n", " ('entomb', 'place in a grave or tomb'),\n", " ('inter', 'place in a grave or tomb'),\n", - " ('inhume', 'place in a grave or tomb'),\n", - " ('bury', 'place in the earth and cover with soil'),\n", - " ('eat up', 'enclose or envelop completely, as if by swallowing'),\n", - " ('lay to rest', 'place in a grave or tomb'),\n", - " ('forget', 'dismiss from the mind; stop remembering'),\n", + " ('immerse', 'enclose or envelop completely, as if by swallowing'),\n", " ('swallow', 'enclose or envelop completely, as if by swallowing'),\n", - " ('swallow up', 'enclose or envelop completely, as if by swallowing')]},\n", + " ('swallow up', 'enclose or envelop completely, as if by swallowing'),\n", + " ('lay to rest', 'place in a grave or tomb'),\n", + " ('eat up', 'enclose or envelop completely, as if by swallowing')]},\n", " {'answer': 'burned',\n", " 'hint': 'synonyms for burned',\n", - " 'clues': [('cauterise',\n", - " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", - " ('burn',\n", - " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", - " ('glow', 'shine intensely, as if with heat'),\n", - " ('burn off', 'use up (energy)'),\n", - " ('combust', 'cause to burn or combust'),\n", - " ('fire', 'destroy by fire'),\n", + " 'clues': [('burn', 'get a sunburn by overexposure to the sun'),\n", " ('bite', 'cause a sharp or stinging pain or discomfort'),\n", - " ('burn up', 'use up (energy)'),\n", - " ('sting', 'cause a sharp or stinging pain or discomfort'),\n", - " ('sunburn', 'get a sunburn by overexposure to the sun'),\n", + " ('combust', 'undergo combustion'),\n", + " ('fire', 'destroy by fire'),\n", " ('incinerate', 'cause to undergo combustion'),\n", " ('cut', 'create by duplicating data'),\n", - " ('burn down', 'destroy by fire')]},\n", - " {'answer': 'burning',\n", - " 'hint': 'synonyms for burning',\n", - " 'clues': [('cauterise',\n", - " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", - " ('burn',\n", - " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", - " ('glow', 'shine intensely, as if with heat'),\n", " ('burn off', 'use up (energy)'),\n", - " ('combust', 'cause to burn or combust'),\n", - " ('fire', 'destroy by fire'),\n", - " ('bite', 'cause a sharp or stinging pain or discomfort'),\n", - " ('burn up', 'use up (energy)'),\n", + " ('glow', 'shine intensely, as if with heat'),\n", + " ('cauterise',\n", + " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", " ('sting', 'cause a sharp or stinging pain or discomfort'),\n", + " ('burn down', 'destroy by fire'),\n", " ('sunburn', 'get a sunburn by overexposure to the sun'),\n", + " ('burn up', 'use up (energy)')]},\n", + " {'answer': 'burning',\n", + " 'hint': 'synonyms for burning',\n", + " 'clues': [('burn', 'get a sunburn by overexposure to the sun'),\n", + " ('bite', 'cause a sharp or stinging pain or discomfort'),\n", + " ('combust', 'undergo combustion'),\n", + " ('fire', 'destroy by fire'),\n", " ('incinerate', 'cause to undergo combustion'),\n", " ('cut', 'create by duplicating data'),\n", - " ('burn down', 'destroy by fire')]},\n", - " {'answer': 'burnt',\n", - " 'hint': 'synonyms for burnt',\n", - " 'clues': [('cauterise',\n", - " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", - " ('burn',\n", - " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", - " ('glow', 'shine intensely, as if with heat'),\n", " ('burn off', 'use up (energy)'),\n", - " ('combust', 'cause to burn or combust'),\n", - " ('fire', 'destroy by fire'),\n", - " ('bite', 'cause a sharp or stinging pain or discomfort'),\n", - " ('burn up', 'use up (energy)'),\n", + " ('glow', 'shine intensely, as if with heat'),\n", + " ('cauterise',\n", + " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", " ('sting', 'cause a sharp or stinging pain or discomfort'),\n", + " ('burn down', 'destroy by fire'),\n", " ('sunburn', 'get a sunburn by overexposure to the sun'),\n", + " ('burn up', 'use up (energy)')]},\n", + " {'answer': 'burnt',\n", + " 'hint': 'synonyms for burnt',\n", + " 'clues': [('burn', 'get a sunburn by overexposure to the sun'),\n", + " ('bite', 'cause a sharp or stinging pain or discomfort'),\n", + " ('combust', 'undergo combustion'),\n", + " ('fire', 'destroy by fire'),\n", " ('incinerate', 'cause to undergo combustion'),\n", " ('cut', 'create by duplicating data'),\n", - " ('burn down', 'destroy by fire')]},\n", + " ('burn off', 'use up (energy)'),\n", + " ('glow', 'shine intensely, as if with heat'),\n", + " ('cauterise',\n", + " 'burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent'),\n", + " ('sting', 'cause a sharp or stinging pain or discomfort'),\n", + " ('burn down', 'destroy by fire'),\n", + " ('sunburn', 'get a sunburn by overexposure to the sun'),\n", + " ('burn up', 'use up (energy)')]},\n", " {'answer': 'bushwhacking',\n", " 'hint': 'synonyms for bushwhacking',\n", - " 'clues': [('lurk', 'wait in hiding to attack'),\n", - " ('lie in wait', 'wait in hiding to attack'),\n", - " ('waylay', 'wait in hiding to attack'),\n", - " ('bushwhack', 'wait in hiding to attack'),\n", + " 'clues': [('bushwhack', 'live in the bush as a fugitive or as a guerilla'),\n", + " ('lurk', 'wait in hiding to attack'),\n", " ('scupper', 'wait in hiding to attack'),\n", " ('ambush', 'wait in hiding to attack'),\n", - " ('ambuscade', 'wait in hiding to attack')]},\n", + " ('lie in wait', 'wait in hiding to attack'),\n", + " ('ambuscade', 'wait in hiding to attack'),\n", + " ('waylay', 'wait in hiding to attack')]},\n", " {'answer': 'bust',\n", " 'hint': 'synonyms for bust',\n", - " 'clues': [('rupture', 'separate or cause to separate abruptly'),\n", + " 'clues': [('wear out', 'go to pieces'),\n", + " ('rupture', 'separate or cause to separate abruptly'),\n", + " ('break', 'go to pieces'),\n", + " ('raid', 'search without warning, make a sudden surprise attack on'),\n", " ('fall apart', 'go to pieces'),\n", " ('wear', 'go to pieces'),\n", - " ('tear', 'separate or cause to separate abruptly'),\n", " ('burst', 'break open or apart suddenly and forcefully'),\n", - " ('break', 'ruin completely'),\n", " ('snap', 'separate or cause to separate abruptly'),\n", - " ('raid', 'search without warning, make a sudden surprise attack on'),\n", - " ('wear out', 'go to pieces')]},\n", + " ('tear', 'separate or cause to separate abruptly')]},\n", " {'answer': 'busted',\n", " 'hint': 'synonyms for busted',\n", - " 'clues': [('rupture', 'separate or cause to separate abruptly'),\n", + " 'clues': [('bust',\n", + " 'search without warning, make a sudden surprise attack on'),\n", + " ('wear out', 'go to pieces'),\n", + " ('rupture', 'separate or cause to separate abruptly'),\n", + " ('break', 'go to pieces'),\n", + " ('raid', 'search without warning, make a sudden surprise attack on'),\n", " ('fall apart', 'go to pieces'),\n", " ('wear', 'go to pieces'),\n", - " ('tear', 'separate or cause to separate abruptly'),\n", - " ('bust', 'go to pieces'),\n", - " ('break', 'ruin completely'),\n", " ('snap', 'separate or cause to separate abruptly'),\n", - " ('raid', 'search without warning, make a sudden surprise attack on'),\n", - " ('wear out', 'go to pieces')]},\n", + " ('tear', 'separate or cause to separate abruptly')]},\n", " {'answer': 'buzzing',\n", " 'hint': 'synonyms for buzzing',\n", " 'clues': [('buzz', 'call with a buzzer'),\n", - " ('bombinate', 'make a buzzing sound'),\n", - " ('hum', 'be noisy with activity'),\n", - " ('seethe', 'be noisy with activity')]},\n", + " ('bombilate', 'make a buzzing sound'),\n", + " ('seethe', 'be noisy with activity'),\n", + " ('hum', 'be noisy with activity')]},\n", " {'answer': 'bypast',\n", " 'hint': 'synonyms for bypast',\n", - " 'clues': [('bypass', 'avoid something unpleasant or laborious'),\n", - " ('get around', 'avoid something unpleasant or laborious'),\n", + " 'clues': [('go around', 'avoid something unpleasant or laborious'),\n", " ('short-circuit', 'avoid something unpleasant or laborious'),\n", - " ('go around', 'avoid something unpleasant or laborious')]},\n", + " ('get around', 'avoid something unpleasant or laborious'),\n", + " ('bypass', 'avoid something unpleasant or laborious')]},\n", " {'answer': 'calculated',\n", " 'hint': 'synonyms for calculated',\n", - " 'clues': [('forecast', 'predict in advance'),\n", + " 'clues': [('work out', 'make a mathematical calculation or computation'),\n", + " ('cypher', 'make a mathematical calculation or computation'),\n", " ('direct',\n", " 'specifically design a product, event, or activity for a certain public'),\n", - " ('count on', 'judge to be probable'),\n", - " ('estimate', 'judge to be probable'),\n", - " ('aim',\n", - " 'specifically design a product, event, or activity for a certain public'),\n", - " ('calculate',\n", - " 'specifically design a product, event, or activity for a certain public'),\n", - " ('account', 'keep an account of'),\n", - " ('work out', 'make a mathematical calculation or computation'),\n", + " ('forecast', 'judge to be probable'),\n", + " ('look', 'have faith or confidence in'),\n", " ('bet', 'have faith or confidence in'),\n", - " ('compute', 'make a mathematical calculation or computation'),\n", - " ('reckon', 'make a mathematical calculation or computation'),\n", - " ('count', 'have faith or confidence in'),\n", + " ('cipher', 'make a mathematical calculation or computation'),\n", + " ('account', 'keep an account of'),\n", " ('figure', 'make a mathematical calculation or computation'),\n", - " ('look', 'have faith or confidence in'),\n", + " ('calculate', 'keep an account of'),\n", + " ('reckon', 'have faith or confidence in'),\n", " ('depend', 'have faith or confidence in'),\n", - " ('cypher', 'make a mathematical calculation or computation'),\n", - " ('cipher', 'make a mathematical calculation or computation')]},\n", - " {'answer': 'calculating',\n", - " 'hint': 'synonyms for calculating',\n", - " 'clues': [('forecast', 'predict in advance'),\n", - " ('direct',\n", - " 'specifically design a product, event, or activity for a certain public'),\n", + " ('compute', 'make a mathematical calculation or computation'),\n", + " ('count', 'have faith or confidence in'),\n", " ('count on', 'judge to be probable'),\n", " ('estimate', 'judge to be probable'),\n", " ('aim',\n", + " 'specifically design a product, event, or activity for a certain public')]},\n", + " {'answer': 'calculating',\n", + " 'hint': 'synonyms for calculating',\n", + " 'clues': [('work out', 'make a mathematical calculation or computation'),\n", + " ('cypher', 'make a mathematical calculation or computation'),\n", + " ('direct',\n", " 'specifically design a product, event, or activity for a certain public'),\n", - " ('calculate',\n", - " 'specifically design a product, event, or activity for a certain public'),\n", - " ('account', 'keep an account of'),\n", - " ('work out', 'make a mathematical calculation or computation'),\n", + " ('forecast', 'judge to be probable'),\n", + " ('look', 'have faith or confidence in'),\n", " ('bet', 'have faith or confidence in'),\n", - " ('compute', 'make a mathematical calculation or computation'),\n", - " ('reckon', 'make a mathematical calculation or computation'),\n", - " ('count', 'have faith or confidence in'),\n", + " ('cipher', 'make a mathematical calculation or computation'),\n", + " ('account', 'keep an account of'),\n", " ('figure', 'make a mathematical calculation or computation'),\n", - " ('look', 'have faith or confidence in'),\n", + " ('calculate', 'keep an account of'),\n", + " ('reckon', 'have faith or confidence in'),\n", " ('depend', 'have faith or confidence in'),\n", - " ('cypher', 'make a mathematical calculation or computation'),\n", - " ('cipher', 'make a mathematical calculation or computation')]},\n", + " ('compute', 'make a mathematical calculation or computation'),\n", + " ('count', 'have faith or confidence in'),\n", + " ('count on', 'judge to be probable'),\n", + " ('estimate', 'judge to be probable'),\n", + " ('aim',\n", + " 'specifically design a product, event, or activity for a certain public')]},\n", " {'answer': 'calm',\n", " 'hint': 'synonyms for calm',\n", - " 'clues': [('calm down',\n", + " 'clues': [('cool off',\n", " 'become quiet or calm, especially after a state of agitation'),\n", - " ('steady', 'make steady'),\n", - " ('sedate', 'cause to be calm or quiet as by administering a sedative to'),\n", - " ('still', 'make calm or still'),\n", - " ('quieten', 'make calm or still'),\n", " ('cool it',\n", " 'become quiet or calm, especially after a state of agitation'),\n", - " ('tranquillise',\n", + " ('tranquilize',\n", " 'cause to be calm or quiet as by administering a sedative to'),\n", + " ('calm down', 'make calm or still'),\n", " ('chill out',\n", " 'become quiet or calm, especially after a state of agitation'),\n", " ('quiet', 'make calm or still'),\n", - " ('cool off',\n", + " ('sedate', 'cause to be calm or quiet as by administering a sedative to'),\n", + " ('simmer down',\n", " 'become quiet or calm, especially after a state of agitation'),\n", - " ('lull', 'make calm or still'),\n", + " ('steady', 'make steady'),\n", + " ('quieten', 'make calm or still'),\n", " ('settle down',\n", " 'become quiet or calm, especially after a state of agitation'),\n", - " ('simmer down',\n", - " 'become quiet or calm, especially after a state of agitation'),\n", + " ('lull', 'make calm or still'),\n", + " ('still', 'make calm or still'),\n", " ('becalm', 'make steady')]},\n", " {'answer': 'camp',\n", " 'hint': 'synonyms for camp',\n", - " 'clues': [('encamp', 'live in or as if in a tent'),\n", + " 'clues': [('bivouac', 'live in or as if in a tent'),\n", " ('camp out', 'live in or as if in a tent'),\n", " ('camp down', 'establish or set up a camp'),\n", - " ('tent', 'live in or as if in a tent'),\n", - " ('bivouac', 'live in or as if in a tent')]},\n", + " ('encamp', 'live in or as if in a tent'),\n", + " ('tent', 'live in or as if in a tent')]},\n", " {'answer': 'cancelled',\n", " 'hint': 'synonyms for cancelled',\n", - " 'clues': [('delete', 'remove or make invisible'),\n", + " 'clues': [('invalidate', 'make invalid for use'),\n", + " ('cancel', 'remove or make invisible'),\n", + " ('set off', 'make up for'),\n", " ('scrub', 'postpone indefinitely or annul something that was scheduled'),\n", + " ('delete', 'remove or make invisible'),\n", + " ('scratch',\n", + " 'postpone indefinitely or annul something that was scheduled'),\n", " ('call off',\n", " 'postpone indefinitely or annul something that was scheduled'),\n", - " ('cancel', 'make invalid for use'),\n", - " ('invalidate', 'make invalid for use'),\n", " ('strike down', 'declare null and void; make ineffective'),\n", - " ('scratch',\n", - " 'postpone indefinitely or annul something that was scheduled'),\n", - " ('offset', 'make up for'),\n", - " ('set off', 'make up for')]},\n", + " ('offset', 'make up for')]},\n", " {'answer': 'canned',\n", " 'hint': 'synonyms for canned',\n", - " 'clues': [('fire',\n", + " 'clues': [('put up', 'preserve in a can or tin'),\n", + " ('sack',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('force out',\n", + " ('fire',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('terminate',\n", + " ('give the sack',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('dismiss',\n", + " ('can',\n", " 'terminate the employment of; discharge from an office or position'),\n", " ('send away',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('tin', 'preserve in a can or tin'),\n", - " ('put up', 'preserve in a can or tin'),\n", - " ('give the sack',\n", + " ('force out',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('sack',\n", + " ('terminate',\n", " 'terminate the employment of; discharge from an office or position'),\n", " ('give the axe',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('can',\n", + " ('displace',\n", " 'terminate the employment of; discharge from an office or position'),\n", + " ('tin', 'preserve in a can or tin'),\n", " ('give notice',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('displace',\n", + " ('dismiss',\n", " 'terminate the employment of; discharge from an office or position')]},\n", " {'answer': 'canted',\n", " 'hint': 'synonyms for canted',\n", " 'clues': [('tilt', 'heel over'),\n", - " ('pitch', 'heel over'),\n", " ('cant over', 'heel over'),\n", + " ('cant', 'heel over'),\n", " ('slant', 'heel over'),\n", - " ('cant', 'heel over')]},\n", + " ('pitch', 'heel over')]},\n", " {'answer': 'captivated',\n", " 'hint': 'synonyms for captivated',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", " ('bewitch', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", " ('enamour', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored')]},\n", + " ('charm', 'attract; cause to be enamored'),\n", + " ('becharm', 'attract; cause to be enamored')]},\n", " {'answer': 'captivating',\n", " 'hint': 'synonyms for captivating',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", " ('bewitch', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", " ('enamour', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored')]},\n", + " ('charm', 'attract; cause to be enamored'),\n", + " ('becharm', 'attract; cause to be enamored')]},\n", " {'answer': 'caring',\n", " 'hint': 'synonyms for caring',\n", - " 'clues': [('care', 'prefer or wish to do something'),\n", + " 'clues': [('deal', 'be in charge of, act on, or dispose of'),\n", + " ('handle', 'be in charge of, act on, or dispose of'),\n", + " ('care', 'be concerned with'),\n", + " ('wish', 'prefer or wish to do something'),\n", + " ('worry', 'be concerned with'),\n", " ('give care', 'provide care for'),\n", " ('manage', 'be in charge of, act on, or dispose of'),\n", - " ('like', 'prefer or wish to do something'),\n", - " ('worry', 'be concerned with'),\n", - " ('handle', 'be in charge of, act on, or dispose of'),\n", - " ('deal', 'be in charge of, act on, or dispose of'),\n", - " ('wish', 'prefer or wish to do something')]},\n", + " ('like', 'prefer or wish to do something')]},\n", " {'answer': 'castrated',\n", " 'hint': 'synonyms for castrated',\n", - " 'clues': [('expurgate',\n", + " 'clues': [('bowdlerise',\n", " 'edit by omitting or modifying parts considered indelicate'),\n", - " ('castrate', 'remove the testicles of a male animal'),\n", " ('spay', 'remove the ovaries of'),\n", - " ('demasculinize', 'remove the testicles of a male animal'),\n", - " ('emasculate', 'remove the testicles of a male animal'),\n", " ('alter', 'remove the ovaries of'),\n", + " ('castrate', 'deprive of strength or vigor'),\n", " ('shorten', 'edit by omitting or modifying parts considered indelicate'),\n", - " ('bowdlerise',\n", + " ('expurgate',\n", " 'edit by omitting or modifying parts considered indelicate'),\n", + " ('demasculinize', 'remove the testicles of a male animal'),\n", + " ('emasculate', 'deprive of strength or vigor'),\n", " ('neuter', 'remove the ovaries of')]},\n", " {'answer': 'catching',\n", " 'hint': 'synonyms for catching',\n", - " 'clues': [('catch', 'capture as if by hunting, snaring, or trapping'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('hitch', 'to hook or entangle'),\n", - " ('trip up', 'detect a blunder or misstep'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('fascinate', 'attract; cause to be enamored'),\n", - " ('take in', 'hear, usually without the knowledge of the speakers'),\n", - " ('get', 'succeed in catching or seizing, especially after a chase'),\n", + " 'clues': [('overtake', 'catch up with and possibly overtake'),\n", + " ('catch',\n", + " 'take hold of so as to seize or restrain or stop the motion of'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", " ('enamor', 'attract; cause to be enamored'),\n", - " ('beguile', 'attract; cause to be enamored'),\n", - " ('capture', 'attract; cause to be enamored'),\n", + " ('view', 'see or watch'),\n", " ('see', 'see or watch'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('get', 'suffer from the receipt of'),\n", + " ('overhear', 'hear, usually without the knowledge of the speakers'),\n", + " ('capture', 'succeed in catching or seizing, especially after a chase'),\n", + " ('trance', 'attract; cause to be enamored'),\n", + " ('charm', 'attract; cause to be enamored'),\n", + " ('catch up with', 'catch up with and possibly overtake'),\n", + " ('watch', 'see or watch'),\n", " ('grab', 'take hold of so as to seize or restrain or stop the motion of'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('hitch', 'to hook or entangle'),\n", " ('arrest', 'attract and fix'),\n", + " ('take in', 'hear, usually without the knowledge of the speakers'),\n", + " ('pick up', 'perceive with the senses quickly, suddenly, or momentarily'),\n", " ('take hold of',\n", " 'take hold of so as to seize or restrain or stop the motion of'),\n", - " ('charm', 'attract; cause to be enamored'),\n", - " ('overtake', 'catch up with and possibly overtake'),\n", - " ('overhear', 'hear, usually without the knowledge of the speakers'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('catch up with', 'catch up with and possibly overtake'),\n", - " ('watch', 'see or watch'),\n", - " ('view', 'see or watch'),\n", - " ('pick up',\n", - " 'perceive with the senses quickly, suddenly, or momentarily')]},\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trip up', 'detect a blunder or misstep'),\n", + " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored')]},\n", " {'answer': 'celebrated',\n", " 'hint': 'synonyms for celebrated',\n", - " 'clues': [('observe', 'behave as expected during of holidays or rites'),\n", + " 'clues': [('lionize', 'assign great social importance to'),\n", + " ('observe', 'behave as expected during of holidays or rites'),\n", " ('celebrate', 'behave as expected during of holidays or rites'),\n", - " ('lionize', 'assign great social importance to'),\n", - " ('keep', 'behave as expected during of holidays or rites'),\n", - " ('fete', 'have a celebration')]},\n", + " ('fete', 'have a celebration'),\n", + " ('keep', 'behave as expected during of holidays or rites')]},\n", " {'answer': 'center',\n", " 'hint': 'synonyms for center',\n", - " 'clues': [('pore', \"direct one's attention on something\"),\n", - " ('centre', 'move into the center'),\n", - " ('revolve about', 'center upon'),\n", - " ('revolve around', 'center upon'),\n", - " ('concentrate', \"direct one's attention on something\"),\n", + " 'clues': [('center on', 'center upon'),\n", + " ('centre', \"direct one's attention on something\"),\n", " ('focus', \"direct one's attention on something\"),\n", + " ('concentrate on', 'center upon'),\n", " ('rivet', \"direct one's attention on something\"),\n", " ('focus on', 'center upon'),\n", - " ('center on', 'center upon')]},\n", + " ('revolve around', 'center upon'),\n", + " ('pore', \"direct one's attention on something\"),\n", + " ('revolve about', 'center upon')]},\n", " {'answer': 'centered',\n", " 'hint': 'synonyms for centered',\n", - " 'clues': [('pore', \"direct one's attention on something\"),\n", - " ('centre', 'move into the center'),\n", - " ('revolve about', 'center upon'),\n", - " ('center', 'center upon'),\n", - " ('revolve around', 'center upon'),\n", - " ('concentrate', \"direct one's attention on something\"),\n", + " 'clues': [('center on', 'center upon'),\n", + " ('centre', \"direct one's attention on something\"),\n", " ('focus', \"direct one's attention on something\"),\n", + " ('concentrate on', 'center upon'),\n", " ('rivet', \"direct one's attention on something\"),\n", " ('focus on', 'center upon'),\n", - " ('center on', 'center upon')]},\n", + " ('revolve around', 'center upon'),\n", + " ('pore', \"direct one's attention on something\"),\n", + " ('center', 'center upon'),\n", + " ('revolve about', 'center upon')]},\n", " {'answer': 'certified',\n", " 'hint': 'synonyms for certified',\n", - " 'clues': [('licence', 'authorize officially'),\n", + " 'clues': [('manifest',\n", + " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", " ('certify', 'declare legally insane'),\n", - " ('indorse', 'guarantee as meeting a certain standard'),\n", - " ('manifest',\n", + " ('license', 'authorize officially'),\n", + " ('evidence',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", " ('demonstrate',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", " ('attest',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('evidence',\n", - " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n", + " ('indorse', 'guarantee as meeting a certain standard')]},\n", " {'answer': 'chafed',\n", " 'hint': 'synonyms for chafed',\n", - " 'clues': [('rub', 'cause friction'),\n", - " ('chafe', 'become or make sore by or as if by rubbing'),\n", - " ('gravel',\n", - " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('gall', 'become or make sore by or as if by rubbing'),\n", - " ('get to',\n", - " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " 'clues': [('chafe', 'feel extreme irritation or anger'),\n", " ('vex', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('irritate',\n", + " ('nettle',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('annoy', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('fret', 'cause friction'),\n", " ('bother',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('excoriate', 'tear or wear off the skin or make sore by abrading'),\n", - " ('nettle',\n", - " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('fray', 'cause friction'),\n", + " ('nark', 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('rile', 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('fret', 'become or make sore by or as if by rubbing'),\n", + " ('irritate',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", " ('scratch', 'cause friction'),\n", " ('get at',\n", " 'cause annoyance in; disturb, especially by minor irritations'),\n", - " ('nark',\n", - " 'cause annoyance in; disturb, especially by minor irritations')]},\n", + " ('gravel',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('excoriate', 'tear or wear off the skin or make sore by abrading'),\n", + " ('get to',\n", + " 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rub', 'cause friction'),\n", + " ('annoy', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('devil', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('rag', 'cause annoyance in; disturb, especially by minor irritations'),\n", + " ('gall', 'become or make sore by or as if by rubbing'),\n", + " ('fray', 'cause friction')]},\n", " {'answer': 'chagrined',\n", " 'hint': 'synonyms for chagrined',\n", - " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n", - " ('humiliate', 'cause to feel shame; hurt the pride of'),\n", - " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " 'clues': [('humble', 'cause to feel shame; hurt the pride of'),\n", " ('abase', 'cause to feel shame; hurt the pride of'),\n", - " ('humble', 'cause to feel shame; hurt the pride of')]},\n", + " ('chagrin', 'cause to feel shame; hurt the pride of'),\n", + " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " ('humiliate', 'cause to feel shame; hurt the pride of')]},\n", " {'answer': 'challenging',\n", " 'hint': 'synonyms for challenging',\n", - " 'clues': [('dispute', 'take exception to'),\n", - " ('challenge', 'raise a formal objection in a court of law'),\n", - " ('take exception', 'raise a formal objection in a court of law'),\n", - " ('gainsay', 'take exception to')]},\n", + " 'clues': [('challenge', 'issue a challenge to'),\n", + " ('gainsay', 'take exception to'),\n", + " ('dispute', 'take exception to'),\n", + " ('take exception', 'raise a formal objection in a court of law')]},\n", " {'answer': 'chance',\n", " 'hint': 'synonyms for chance',\n", - " 'clues': [('gamble', 'take a risk in the hope of a favorable outcome'),\n", - " ('run a risk', 'take a risk in the hope of a favorable outcome'),\n", + " 'clues': [('happen', 'come upon, as if by accident; meet with'),\n", + " ('take chances', 'take a risk in the hope of a favorable outcome'),\n", + " ('gamble', 'take a risk in the hope of a favorable outcome'),\n", " ('bump', 'come upon, as if by accident; meet with'),\n", - " ('happen', 'come upon, as if by accident; meet with'),\n", - " ('take a chance', 'take a risk in the hope of a favorable outcome'),\n", + " ('hazard', 'take a risk in the hope of a favorable outcome'),\n", " ('risk', 'take a risk in the hope of a favorable outcome'),\n", " ('encounter', 'come upon, as if by accident; meet with'),\n", - " ('hazard', 'take a risk in the hope of a favorable outcome'),\n", - " ('adventure', 'take a risk in the hope of a favorable outcome'),\n", - " ('find', 'come upon, as if by accident; meet with')]},\n", + " ('find', 'come upon, as if by accident; meet with'),\n", + " ('run a risk', 'take a risk in the hope of a favorable outcome'),\n", + " ('adventure', 'take a risk in the hope of a favorable outcome')]},\n", " {'answer': 'changed',\n", " 'hint': 'synonyms for changed',\n", " 'clues': [('commute',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", - " ('change', 'remove or replace the coverings of'),\n", - " ('alter', 'cause to change; make different; cause a transformation'),\n", - " ('modify', 'cause to change; make different; cause a transformation'),\n", - " ('switch', 'lay aside, abandon, or leave for another'),\n", " ('interchange', 'give to, and receive from, one another'),\n", - " ('shift', 'lay aside, abandon, or leave for another'),\n", + " ('alter',\n", + " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n", " ('convert',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", + " ('change',\n", + " 'exchange or replace with another, usually of the same kind or category'),\n", + " ('shift', 'lay aside, abandon, or leave for another'),\n", + " ('modify', 'cause to change; make different; cause a transformation'),\n", + " ('transfer', 'change from one vehicle or transportation line to another'),\n", + " ('deepen', 'become deeper in tone'),\n", " ('vary',\n", " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n", - " ('transfer', 'change from one vehicle or transportation line to another'),\n", - " ('deepen', 'become deeper in tone')]},\n", + " ('switch', 'lay aside, abandon, or leave for another')]},\n", " {'answer': 'changing',\n", " 'hint': 'synonyms for changing',\n", " 'clues': [('commute',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", - " ('change', 'remove or replace the coverings of'),\n", - " ('alter', 'cause to change; make different; cause a transformation'),\n", - " ('modify', 'cause to change; make different; cause a transformation'),\n", - " ('switch', 'lay aside, abandon, or leave for another'),\n", " ('interchange', 'give to, and receive from, one another'),\n", - " ('shift', 'lay aside, abandon, or leave for another'),\n", + " ('alter',\n", + " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n", " ('convert',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", + " ('change',\n", + " 'exchange or replace with another, usually of the same kind or category'),\n", + " ('shift', 'lay aside, abandon, or leave for another'),\n", + " ('modify', 'cause to change; make different; cause a transformation'),\n", + " ('transfer', 'change from one vehicle or transportation line to another'),\n", + " ('deepen', 'become deeper in tone'),\n", " ('vary',\n", " \"become different in some particular way, without permanently losing one's or its former characteristics or essence\"),\n", - " ('transfer', 'change from one vehicle or transportation line to another'),\n", - " ('deepen', 'become deeper in tone')]},\n", + " ('switch', 'lay aside, abandon, or leave for another')]},\n", " {'answer': 'chanted',\n", " 'hint': 'synonyms for chanted',\n", " 'clues': [('chant',\n", - " 'utter monotonously and repetitively and rhythmically'),\n", + " 'recite with musical intonation; recite as a chant or a psalm'),\n", " ('intone',\n", " 'recite with musical intonation; recite as a chant or a psalm'),\n", - " ('tone', 'utter monotonously and repetitively and rhythmically'),\n", " ('cantillate',\n", - " 'recite with musical intonation; recite as a chant or a psalm')]},\n", + " 'recite with musical intonation; recite as a chant or a psalm'),\n", + " ('tone', 'utter monotonously and repetitively and rhythmically')]},\n", " {'answer': 'charged',\n", " 'hint': 'synonyms for charged',\n", - " 'clues': [('charge', 'instruct or command with authority'),\n", - " ('level', 'direct into a position for use'),\n", - " ('point', 'direct into a position for use'),\n", - " ('load', 'provide (a device) with something necessary'),\n", + " 'clues': [('accuse',\n", + " 'blame for, make a claim of wrongdoing or misbehavior against'),\n", " ('appoint', 'assign a duty, responsibility or obligation to'),\n", - " ('charge up', 'cause to be agitated, excited, or roused'),\n", + " ('blame', 'attribute responsibility to'),\n", + " ('file', 'file a formal charge against'),\n", " ('saddle', 'impose a task upon, assign a responsibility to'),\n", + " ('rouse', 'cause to be agitated, excited, or roused'),\n", " ('shoot', 'move quickly and violently'),\n", - " ('agitate', 'cause to be agitated, excited, or roused'),\n", - " ('accuse',\n", - " 'blame for, make a claim of wrongdoing or misbehavior against'),\n", - " ('tear', 'move quickly and violently'),\n", - " ('bill', 'demand payment'),\n", + " ('charge', 'lie down on command, of hunting dogs'),\n", + " ('level', 'direct into a position for use'),\n", + " ('charge up', 'cause to be agitated, excited, or roused'),\n", " ('institutionalize',\n", " 'cause to be admitted; of persons to an institution'),\n", - " ('excite', 'cause to be agitated, excited, or roused'),\n", - " ('blame', 'attribute responsibility to'),\n", - " ('lodge', 'file a formal charge against'),\n", - " ('turn on', 'cause to be agitated, excited, or roused'),\n", - " ('rouse', 'cause to be agitated, excited, or roused'),\n", - " ('commit', 'cause to be admitted; of persons to an institution'),\n", " ('bear down', 'to make a rush at or sudden attack upon, as in battle'),\n", + " ('tear', 'move quickly and violently'),\n", + " ('consign', 'give over to another for care or safekeeping'),\n", + " ('commove', 'cause to be agitated, excited, or roused'),\n", + " ('buck', 'move quickly and violently'),\n", " ('send', 'cause to be admitted; of persons to an institution'),\n", " ('burden', 'impose a task upon, assign a responsibility to'),\n", - " ('commove', 'cause to be agitated, excited, or roused'),\n", - " ('consign', 'give over to another for care or safekeeping'),\n", - " ('shoot down', 'move quickly and violently'),\n", - " ('file', 'file a formal charge against'),\n", - " ('buck', 'move quickly and violently')]},\n", + " ('agitate', 'cause to be agitated, excited, or roused'),\n", + " ('turn on', 'cause to be agitated, excited, or roused'),\n", + " ('lodge', 'file a formal charge against'),\n", + " ('point', 'direct into a position for use'),\n", + " ('commit', 'cause to be admitted; of persons to an institution'),\n", + " ('excite', 'cause to be agitated, excited, or roused'),\n", + " ('bill', 'demand payment'),\n", + " ('load', 'provide (a device) with something necessary'),\n", + " ('shoot down', 'move quickly and violently')]},\n", " {'answer': 'charmed',\n", " 'hint': 'synonyms for charmed',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('influence', \"induce into action by using one's charm\"),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", " ('charm', 'control by magic spells, as by practicing witchcraft'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('influence', \"induce into action by using one's charm\"),\n", - " ('tempt', \"induce into action by using one's charm\"),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored')]},\n", + " ('tempt', \"induce into action by using one's charm\")]},\n", " {'answer': 'charming',\n", " 'hint': 'synonyms for charming',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('influence', \"induce into action by using one's charm\"),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", " ('charm', 'control by magic spells, as by practicing witchcraft'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('influence', \"induce into action by using one's charm\"),\n", - " ('tempt', \"induce into action by using one's charm\"),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored')]},\n", + " ('tempt', \"induce into action by using one's charm\")]},\n", " {'answer': 'chartered',\n", " 'hint': 'synonyms for chartered',\n", - " 'clues': [('engage', 'engage for service under a term of contract'),\n", - " ('rent', 'engage for service under a term of contract'),\n", - " ('hire', 'hold under a lease or rental agreement; of goods and services'),\n", - " ('charter',\n", - " 'hold under a lease or rental agreement; of goods and services'),\n", - " ('lease',\n", + " 'clues': [('lease',\n", " 'hold under a lease or rental agreement; of goods and services'),\n", - " ('take', 'engage for service under a term of contract')]},\n", + " ('rent', 'engage for service under a term of contract'),\n", + " ('hire', 'engage for service under a term of contract'),\n", + " ('take', 'engage for service under a term of contract'),\n", + " ('charter', 'grant a charter to'),\n", + " ('engage', 'engage for service under a term of contract')]},\n", " {'answer': 'cheating',\n", " 'hint': 'synonyms for cheating',\n", - " 'clues': [('rip off', 'deprive somebody of something by deceit'),\n", - " ('chisel', 'deprive somebody of something by deceit'),\n", - " ('cheat', 'engage in deceitful behavior; practice trickery or fraud'),\n", - " ('betray', \"be sexually unfaithful to one's partner in marriage\"),\n", - " ('wander', \"be sexually unfaithful to one's partner in marriage\"),\n", - " ('cuckold', \"be sexually unfaithful to one's partner in marriage\"),\n", + " 'clues': [('cheat',\n", + " 'engage in deceitful behavior; practice trickery or fraud'),\n", " ('cheat on', \"be sexually unfaithful to one's partner in marriage\"),\n", + " ('cuckold', \"be sexually unfaithful to one's partner in marriage\"),\n", + " ('betray', \"be sexually unfaithful to one's partner in marriage\"),\n", + " ('chisel', 'engage in deceitful behavior; practice trickery or fraud'),\n", + " ('chouse', 'defeat someone through trickery or deceit'),\n", " ('jockey', 'defeat someone through trickery or deceit'),\n", - " ('chicane', 'defeat someone through trickery or deceit'),\n", " ('shaft', 'defeat someone through trickery or deceit'),\n", - " ('chouse', 'defeat someone through trickery or deceit'),\n", + " ('chicane', 'defeat someone through trickery or deceit'),\n", + " ('rip off', 'deprive somebody of something by deceit'),\n", + " ('wander', \"be sexually unfaithful to one's partner in marriage\"),\n", " ('screw', 'defeat someone through trickery or deceit')]},\n", " {'answer': 'checked',\n", " 'hint': 'synonyms for checked',\n", - " 'clues': [('gibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('contain',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('determine',\n", + " 'clues': [('mark', 'put a check mark on or near or next to'),\n", + " ('ascertain',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('check',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('control',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('retard', 'slow the growth or development of'),\n", - " ('check', 'decline to initiate betting'),\n", - " ('chink', 'make cracks or chinks in'),\n", - " ('tick off', 'put a check mark on or near or next to'),\n", - " ('delay', 'slow the growth or development of'),\n", - " ('condition',\n", - " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", " ('fit',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('moderate',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('correspond',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('insure',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('mark off', 'put a check mark on or near or next to'),\n", - " ('check out',\n", - " 'examine so as to determine accuracy, quality, or condition'),\n", - " ('ascertain',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('discipline',\n", - " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", " ('see',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('train',\n", + " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", + " ('check out', 'be verified or confirmed; pass inspection'),\n", + " ('contain',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('tally',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('suss out',\n", " 'examine so as to determine accuracy, quality, or condition'),\n", - " ('stop',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('break', 'become fractured; break or crack on the surface only'),\n", - " ('agree',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('jibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('checker',\n", - " 'mark into squares or draw squares on; draw crossed lines on'),\n", - " ('turn back',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('hold in',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('ensure',\n", + " ('see to it',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('gibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('check into',\n", " 'examine so as to determine accuracy, quality, or condition'),\n", - " ('hold back',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('tally',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('find out',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('go over', 'examine so as to determine accuracy, quality, or condition'),\n", " ('watch',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('mark', 'put a check mark on or near or next to'),\n", - " ('curb',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('check up on',\n", - " 'examine so as to determine accuracy, quality, or condition'),\n", - " ('look into',\n", - " 'examine so as to determine accuracy, quality, or condition'),\n", - " ('go over', 'examine so as to determine accuracy, quality, or condition'),\n", - " ('see to it',\n", + " ('assure',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('ensure',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('retard', 'slow the growth or development of'),\n", + " ('chequer',\n", + " 'mark into squares or draw squares on; draw crossed lines on'),\n", + " ('insure',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('hold',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('moderate',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('curb',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('check up on',\n", + " 'examine so as to determine accuracy, quality, or condition'),\n", + " ('checker',\n", + " 'mark into squares or draw squares on; draw crossed lines on'),\n", + " ('discipline',\n", + " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", + " ('control',\n", " 'be careful or certain to do something; make certain of something'),\n", " ('match',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('hold',\n", + " ('tick off', 'put a check mark on or near or next to'),\n", + " ('tick', 'put a check mark on or near or next to'),\n", + " ('break', 'become fractured; break or crack on the surface only'),\n", + " ('condition',\n", + " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", + " ('check off', 'put a check mark on or near or next to'),\n", + " ('learn',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('delay', 'slow the growth or development of'),\n", + " ('stop',\n", + " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", + " ('agree',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('mark off', 'put a check mark on or near or next to'),\n", + " ('chink', 'make cracks or chinks in'),\n", + " ('hold in',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('crack', 'become fractured; break or crack on the surface only'),\n", + " ('determine',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('look into',\n", + " 'examine so as to determine accuracy, quality, or condition'),\n", + " ('turn back',\n", + " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", " ('check over',\n", " 'examine so as to determine accuracy, quality, or condition'),\n", - " ('learn',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('check off', 'put a check mark on or near or next to'),\n", - " ('assure',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('chequer',\n", - " 'mark into squares or draw squares on; draw crossed lines on'),\n", " ('arrest',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('tick', 'put a check mark on or near or next to'),\n", - " ('train',\n", - " \"develop (children's) behavior by instruction and practice; especially to teach self-control\")]},\n", + " ('hold back',\n", + " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", + " ('find out',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('jibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics')]},\n", " {'answer': 'cheering',\n", " 'hint': 'synonyms for cheering',\n", - " 'clues': [('chirk up', 'become cheerful'),\n", - " ('cheer', 'give encouragement to'),\n", + " 'clues': [('barrack',\n", + " 'spur on or encourage especially by cheers and shouts'),\n", + " ('pep up', 'spur on or encourage especially by cheers and shouts'),\n", + " ('cheer', 'show approval or good wishes by shouting'),\n", + " ('cheer up', 'cause (somebody) to feel happier or more cheerful'),\n", + " ('hearten', 'give encouragement to'),\n", + " ('recreate', 'give encouragement to'),\n", + " ('urge', 'spur on or encourage especially by cheers and shouts'),\n", + " ('chirk up', 'become cheerful'),\n", " ('inspire', 'spur on or encourage especially by cheers and shouts'),\n", - " ('embolden', 'give encouragement to'),\n", " ('exhort', 'spur on or encourage especially by cheers and shouts'),\n", " ('urge on', 'spur on or encourage especially by cheers and shouts'),\n", + " ('embolden', 'give encouragement to'),\n", " ('jolly up', 'cause (somebody) to feel happier or more cheerful'),\n", - " ('urge', 'spur on or encourage especially by cheers and shouts'),\n", - " ('cheer up', 'become cheerful'),\n", " ('root on', 'spur on or encourage especially by cheers and shouts'),\n", - " ('recreate', 'give encouragement to'),\n", - " ('hearten', 'give encouragement to'),\n", - " ('barrack', 'spur on or encourage especially by cheers and shouts'),\n", - " ('pep up', 'spur on or encourage especially by cheers and shouts'),\n", " ('jolly along', 'cause (somebody) to feel happier or more cheerful')]},\n", " {'answer': 'cherished',\n", " 'hint': 'synonyms for cherished',\n", - " 'clues': [('cherish', 'be fond of; be attached to'),\n", - " ('treasure', 'be fond of; be attached to'),\n", - " ('hold dear', 'be fond of; be attached to'),\n", - " ('care for', 'be fond of; be attached to')]},\n", + " 'clues': [('treasure', 'be fond of; be attached to'),\n", + " ('cherish', 'be fond of; be attached to'),\n", + " ('care for', 'be fond of; be attached to'),\n", + " ('hold dear', 'be fond of; be attached to')]},\n", " {'answer': 'chinked',\n", " 'hint': 'synonyms for chinked',\n", " 'clues': [('chink', 'fill the chinks of, as with caulking'),\n", + " ('tink', 'make or emit a high sound'),\n", " ('check', 'make cracks or chinks in'),\n", - " ('clink', 'make or emit a high sound'),\n", " ('tinkle', 'make or emit a high sound'),\n", - " ('tink', 'make or emit a high sound')]},\n", + " ('clink', 'make or emit a high sound')]},\n", " {'answer': 'choked',\n", " 'hint': 'synonyms for choked',\n", - " 'clues': [('fret', 'be too tight; rub or press'),\n", - " ('decease',\n", + " 'clues': [('perish',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('throttle', 'reduce the air supply'),\n", + " ('clog', 'become or cause to become obstructed'),\n", " ('suffocate', 'become stultified, suppressed, or stifled'),\n", - " ('choke', 'fail to perform adequately due to tension or agitation'),\n", - " ('go',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('gag', 'be too tight; rub or press'),\n", - " ('asphyxiate',\n", - " 'impair the respiration of or obstruct the air passage of'),\n", + " ('choke', 'struggle for breath; have insufficient oxygen intake'),\n", " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('strangle', 'struggle for breath; have insufficient oxygen intake'),\n", - " ('foul', 'become or cause to become obstructed'),\n", - " ('exit',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('congest', 'become or cause to become obstructed'),\n", - " ('die',\n", + " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('scrag', 'wring the neck of'),\n", - " ('croak',\n", + " ('back up', 'become or cause to become obstructed'),\n", + " ('conk',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('clog up', 'become or cause to become obstructed'),\n", " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('choke off', 'become or cause to become obstructed'),\n", - " ('clog', 'become or cause to become obstructed'),\n", - " ('give-up the ghost',\n", + " ('pass',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " (\"cash in one's chips\",\n", + " ('decease',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('stifle', 'impair the respiration of or obstruct the air passage of'),\n", - " ('perish',\n", + " ('choke off', 'become or cause to become obstructed'),\n", + " (\"cash in one's chips\",\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('snuff it',\n", + " ('strangle', 'struggle for breath; have insufficient oxygen intake'),\n", + " ('foul', 'become or cause to become obstructed'),\n", + " ('give-up the ghost',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('buy the farm',\n", + " ('gag', 'cause to retch or choke'),\n", + " ('fret', 'be too tight; rub or press'),\n", + " ('pass away',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('back up', 'become or cause to become obstructed'),\n", - " ('pass',\n", + " ('die',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('croak',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('congest', 'become or cause to become obstructed'),\n", + " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('expire',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('conk',\n", + " ('exit',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pop off',\n", + " ('throttle', 'reduce the air supply'),\n", + " ('go',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('clog up', 'become or cause to become obstructed')]},\n", + " ('scrag', 'wring the neck of'),\n", + " ('asphyxiate',\n", + " 'impair the respiration of or obstruct the air passage of')]},\n", " {'answer': 'churning',\n", " 'hint': 'synonyms for churning',\n", - " 'clues': [('moil', 'be agitated'),\n", + " 'clues': [('roil', 'be agitated'),\n", + " ('moil', 'be agitated'),\n", " ('churn', 'stir (cream) vigorously in order to make butter'),\n", - " ('boil', 'be agitated'),\n", - " ('roil', 'be agitated')]},\n", + " ('boil', 'be agitated')]},\n", " {'answer': 'circulating',\n", " 'hint': 'synonyms for circulating',\n", - " 'clues': [('propagate', 'cause to become widely known'),\n", + " 'clues': [('pass around', 'cause to become widely known'),\n", + " ('circulate', 'move around freely'),\n", + " ('propagate', 'cause to become widely known'),\n", + " ('circle', 'move in circles'),\n", + " ('mobilize', 'cause to move around'),\n", + " ('circularize', 'cause to become widely known'),\n", + " ('distribute', 'cause to become widely known'),\n", " ('diffuse', 'cause to become widely known'),\n", + " ('spread', 'become widely known and passed on'),\n", + " ('pass on', 'cause be distributed'),\n", " ('disseminate', 'cause to become widely known'),\n", - " ('circulate', 'cause to move in a circuit or system'),\n", - " ('pass around', 'cause be distributed'),\n", - " ('mobilise', 'cause to move around'),\n", - " ('distribute', 'cause to become widely known'),\n", - " ('circularize', 'cause to become widely known'),\n", - " ('circle', 'move in circles'),\n", + " ('broadcast', 'cause to become widely known'),\n", " ('go around', 'become widely known and passed on'),\n", - " ('pass on', 'cause be distributed'),\n", - " ('spread', 'cause to become widely known'),\n", - " ('disperse', 'cause to become widely known'),\n", - " ('broadcast', 'cause to become widely known')]},\n", + " ('disperse', 'cause to become widely known')]},\n", " {'answer': 'civilised',\n", " 'hint': 'synonyms for civilised',\n", - " 'clues': [('educate',\n", + " 'clues': [('train',\n", " 'teach or refine to be discriminative in taste or judgment'),\n", - " ('school', 'teach or refine to be discriminative in taste or judgment'),\n", " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n", " ('cultivate',\n", " 'teach or refine to be discriminative in taste or judgment'),\n", - " ('train', 'teach or refine to be discriminative in taste or judgment')]},\n", + " ('educate', 'teach or refine to be discriminative in taste or judgment'),\n", + " ('school', 'teach or refine to be discriminative in taste or judgment')]},\n", " {'answer': 'civilized',\n", " 'hint': 'synonyms for civilized',\n", - " 'clues': [('educate',\n", + " 'clues': [('train',\n", " 'teach or refine to be discriminative in taste or judgment'),\n", - " ('school', 'teach or refine to be discriminative in taste or judgment'),\n", " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n", " ('cultivate',\n", " 'teach or refine to be discriminative in taste or judgment'),\n", - " ('train', 'teach or refine to be discriminative in taste or judgment')]},\n", + " ('educate', 'teach or refine to be discriminative in taste or judgment'),\n", + " ('school', 'teach or refine to be discriminative in taste or judgment')]},\n", " {'answer': 'clad',\n", " 'hint': 'synonyms for clad',\n", - " 'clues': [('cloak', 'cover as if with clothing'),\n", - " ('raiment', 'provide with clothes or put clothes on'),\n", - " ('invest', 'furnish with power or authority; of kings or emperors'),\n", - " ('enclothe', 'provide with clothes or put clothes on'),\n", - " ('garb', 'provide with clothes or put clothes on'),\n", - " ('garment', 'provide with clothes or put clothes on'),\n", + " 'clues': [('garb', 'provide with clothes or put clothes on'),\n", " ('habilitate', 'provide with clothes or put clothes on'),\n", - " ('tog', 'provide with clothes or put clothes on'),\n", " ('fit out', 'provide with clothes or put clothes on'),\n", - " ('dress', 'provide with clothes or put clothes on'),\n", - " ('adorn', 'furnish with power or authority; of kings or emperors'),\n", + " ('clothe', 'furnish with power or authority; of kings or emperors'),\n", + " ('garment', 'provide with clothes or put clothes on'),\n", " ('drape', 'cover as if with clothing'),\n", + " ('cloak', 'cover as if with clothing'),\n", + " ('dress', 'provide with clothes or put clothes on'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", + " ('invest', 'furnish with power or authority; of kings or emperors'),\n", " ('apparel', 'provide with clothes or put clothes on'),\n", + " ('adorn', 'furnish with power or authority; of kings or emperors'),\n", + " ('tog', 'provide with clothes or put clothes on'),\n", " ('robe', 'cover as if with clothing')]},\n", " {'answer': 'classified',\n", " 'hint': 'synonyms for classified',\n", " 'clues': [('sort out', 'arrange or order by classes or categories'),\n", - " ('classify', 'declare unavailable, as for security reasons'),\n", + " ('separate', 'arrange or order by classes or categories'),\n", " ('assort', 'arrange or order by classes or categories'),\n", - " ('class', 'arrange or order by classes or categories'),\n", + " ('classify', 'arrange or order by classes or categories'),\n", " ('relegate', 'assign to a class or kind'),\n", " ('sort', 'arrange or order by classes or categories'),\n", - " ('separate', 'arrange or order by classes or categories')]},\n", + " ('class', 'arrange or order by classes or categories')]},\n", " {'answer': 'clean',\n", " 'hint': 'synonyms for clean',\n", - " 'clues': [('pick',\n", - " 'remove unwanted substances from, such as feathers or pits'),\n", + " 'clues': [('houseclean', 'clean and tidy up the house'),\n", " ('cleanse', \"clean one's body or parts thereof, as by washing\"),\n", - " ('clean house', 'clean and tidy up the house'),\n", - " ('houseclean', 'clean and tidy up the house'),\n", " ('strip', 'remove all contents or possession from, or empty completely'),\n", + " ('scavenge', 'remove unwanted substances from'),\n", + " ('clean house', 'clean and tidy up the house'),\n", " ('make clean',\n", " 'make clean by removing dirt, filth, or unwanted substances from'),\n", - " ('scavenge', 'remove unwanted substances from')]},\n", + " ('pick', 'remove unwanted substances from, such as feathers or pits')]},\n", " {'answer': 'clear',\n", " 'hint': 'synonyms for clear',\n", - " 'clues': [('straighten out',\n", - " 'make free from confusion or ambiguity; make clear'),\n", - " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n", - " ('exonerate', 'pronounce not guilty of criminal charges'),\n", - " ('authorise', 'grant authorization or clearance for'),\n", - " ('light up', 'become clear'),\n", - " ('net', 'yield as a net profit'),\n", - " ('gain',\n", - " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('realise',\n", + " 'clues': [('sack', 'make as a net profit'),\n", + " ('realize',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('pass', 'go unchallenged; be approved'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", " ('sack up', 'make as a net profit'),\n", - " ('bring in',\n", - " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('top', 'pass by, over, or under without making contact'),\n", - " ('sack', 'make as a net profit'),\n", - " ('discharge', 'pronounce not guilty of criminal charges'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('take in',\n", - " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", - " ('acquit', 'pronounce not guilty of criminal charges'),\n", - " ('brighten', 'become clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " ('light up', 'become clear'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", - " ('assoil', 'pronounce not guilty of criminal charges'),\n", - " ('unclutter', 'rid of obstructions'),\n", - " ('pass', 'grant authorization or clearance for'),\n", - " ('solve', 'settle, as of a debt'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", " ('pull in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('make',\n", + " ('brighten', 'become clear'),\n", + " ('assoil', 'pronounce not guilty of criminal charges'),\n", + " ('crystalise', 'make free from confusion or ambiguity; make clear'),\n", + " ('discharge', 'pronounce not guilty of criminal charges'),\n", + " ('bring in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", " ('earn',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('exculpate', 'pronounce not guilty of criminal charges')]},\n", - " {'answer': 'cleared',\n", - " 'hint': 'synonyms for cleared',\n", - " 'clues': [('straighten out',\n", - " 'make free from confusion or ambiguity; make clear'),\n", - " ('clear', 'remove (people) from a building'),\n", - " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n", - " ('exonerate', 'pronounce not guilty of criminal charges'),\n", - " ('authorise', 'grant authorization or clearance for'),\n", - " ('light up', 'become clear'),\n", - " ('net', 'yield as a net profit'),\n", - " ('gain',\n", - " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('realise',\n", + " ('exculpate', 'pronounce not guilty of criminal charges'),\n", + " ('take in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('sack up', 'make as a net profit'),\n", - " ('bring in',\n", + " ('clear up', 'become clear'),\n", + " ('gain',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('authorise', 'grant authorization or clearance for'),\n", " ('top', 'pass by, over, or under without making contact'),\n", - " ('sack', 'make as a net profit'),\n", - " ('discharge', 'pronounce not guilty of criminal charges'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('take in',\n", + " ('make',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", - " ('acquit', 'pronounce not guilty of criminal charges'),\n", - " ('brighten', 'become clear'),\n", + " ('net', 'make as a net profit'),\n", " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", - " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", - " ('assoil', 'pronounce not guilty of criminal charges'),\n", - " ('unclutter', 'rid of obstructions'),\n", - " ('pass', 'grant authorization or clearance for'),\n", " ('solve', 'settle, as of a debt'),\n", + " ('exonerate', 'pronounce not guilty of criminal charges'),\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('unclutter', 'rid of obstructions'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('acquit', 'pronounce not guilty of criminal charges')]},\n", + " {'answer': 'cleared',\n", + " 'hint': 'synonyms for cleared',\n", + " 'clues': [('clear', 'become clear'),\n", + " ('sack', 'make as a net profit'),\n", + " ('realize',\n", + " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('pass', 'go unchallenged; be approved'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", + " ('sack up', 'make as a net profit'),\n", + " ('light up', 'become clear'),\n", + " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", " ('pull in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('make',\n", + " ('brighten', 'become clear'),\n", + " ('assoil', 'pronounce not guilty of criminal charges'),\n", + " ('crystalise', 'make free from confusion or ambiguity; make clear'),\n", + " ('discharge', 'pronounce not guilty of criminal charges'),\n", + " ('bring in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", " ('earn',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('exculpate', 'pronounce not guilty of criminal charges')]},\n", + " ('exculpate', 'pronounce not guilty of criminal charges'),\n", + " ('clear up', 'become clear'),\n", + " ('take in',\n", + " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('gain',\n", + " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('authorise', 'grant authorization or clearance for'),\n", + " ('top', 'pass by, over, or under without making contact'),\n", + " ('make',\n", + " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('net', 'make as a net profit'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " ('solve', 'settle, as of a debt'),\n", + " ('exonerate', 'pronounce not guilty of criminal charges'),\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('unclutter', 'rid of obstructions'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('acquit', 'pronounce not guilty of criminal charges')]},\n", " {'answer': 'cleft',\n", " 'hint': 'synonyms for cleft',\n", " 'clues': [('cohere',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", - " ('cleave',\n", + " ('adhere',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", + " ('cleave', 'separate or cut with a tool, such as a sharp instrument'),\n", " ('rive', 'separate or cut with a tool, such as a sharp instrument'),\n", - " ('adhere',\n", + " ('cling',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", " ('stick',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", - " ('cling',\n", - " 'come or be in close contact with; stick or hold together and resist separation'),\n", " ('split', 'separate or cut with a tool, such as a sharp instrument')]},\n", " {'answer': 'clinking',\n", " 'hint': 'synonyms for clinking',\n", " 'clues': [('clink', 'make a high sound typical of glass'),\n", " ('chink', 'make or emit a high sound'),\n", - " ('tinkle', 'make or emit a high sound'),\n", - " ('tink', 'make or emit a high sound')]},\n", + " ('tink', 'make or emit a high sound'),\n", + " ('tinkle', 'make or emit a high sound')]},\n", " {'answer': 'clipped',\n", " 'hint': 'synonyms for clipped',\n", - " 'clues': [('clip', 'cultivate, tend, and cut back the growth of'),\n", - " ('prune', 'cultivate, tend, and cut back the growth of'),\n", - " ('lop', 'cultivate, tend, and cut back the growth of'),\n", - " ('jog', 'run at a moderately swift pace'),\n", - " ('nip', 'sever or remove by pinching or snipping'),\n", - " ('cut back', 'cultivate, tend, and cut back the growth of'),\n", - " ('dress', 'cultivate, tend, and cut back the growth of'),\n", - " ('nip off', 'sever or remove by pinching or snipping'),\n", - " ('cut short',\n", + " 'clues': [('dress', 'cultivate, tend, and cut back the growth of'),\n", + " ('curtail',\n", " 'terminate or abbreviate before its intended or proper end or its full extent'),\n", + " ('nip off', 'sever or remove by pinching or snipping'),\n", " ('crop', 'cultivate, tend, and cut back the growth of'),\n", + " ('clip', 'run at a moderately swift pace'),\n", + " ('snip', 'cultivate, tend, and cut back the growth of'),\n", + " ('trim', 'cultivate, tend, and cut back the growth of'),\n", + " ('prune', 'cultivate, tend, and cut back the growth of'),\n", + " ('jog', 'run at a moderately swift pace'),\n", " ('trot', 'run at a moderately swift pace'),\n", - " ('curtail',\n", + " ('cut short',\n", " 'terminate or abbreviate before its intended or proper end or its full extent'),\n", - " ('trim', 'cultivate, tend, and cut back the growth of')]},\n", + " ('lop', 'cultivate, tend, and cut back the growth of'),\n", + " ('cut back', 'cultivate, tend, and cut back the growth of')]},\n", " {'answer': 'cloaked',\n", " 'hint': 'synonyms for cloaked',\n", - " 'clues': [('cloak', 'hide under a false appearance'),\n", - " ('mask', 'hide under a false appearance'),\n", - " ('dissemble', 'hide under a false appearance'),\n", - " ('clothe', 'cover as if with clothing'),\n", + " 'clues': [('clothe', 'cover as if with clothing'),\n", " ('drape', 'cover as if with clothing'),\n", + " ('cloak', 'cover with or as if with a cloak'),\n", + " ('dissemble', 'hide under a false appearance'),\n", + " ('mask', 'hide under a false appearance'),\n", " ('robe', 'cover as if with clothing')]},\n", " {'answer': 'clogged',\n", " 'hint': 'synonyms for clogged',\n", - " 'clues': [('back up', 'become or cause to become obstructed'),\n", - " ('clog', 'impede the motion of, as with a chain or a burden'),\n", - " ('foul', 'become or cause to become obstructed'),\n", - " ('choke off', 'become or cause to become obstructed'),\n", + " 'clues': [('clog', 'dance a clog dance'),\n", " ('constipate', 'impede with a clog or as if with a clog'),\n", - " ('congest', 'become or cause to become obstructed'),\n", + " ('choke off', 'become or cause to become obstructed'),\n", + " ('foul', 'become or cause to become obstructed'),\n", + " ('back up', 'become or cause to become obstructed'),\n", " ('overload', 'fill to excess so that function is impaired'),\n", " ('clot', 'coalesce or unite in a mass'),\n", - " ('choke', 'become or cause to become obstructed'),\n", - " ('clog up', 'become or cause to become obstructed')]},\n", + " ('congest', 'become or cause to become obstructed'),\n", + " ('clog up', 'become or cause to become obstructed'),\n", + " ('choke', 'become or cause to become obstructed')]},\n", " {'answer': 'clogging',\n", " 'hint': 'synonyms for clogging',\n", - " 'clues': [('back up', 'become or cause to become obstructed'),\n", - " ('clog', 'impede the motion of, as with a chain or a burden'),\n", - " ('foul', 'become or cause to become obstructed'),\n", - " ('choke off', 'become or cause to become obstructed'),\n", + " 'clues': [('clog', 'dance a clog dance'),\n", " ('constipate', 'impede with a clog or as if with a clog'),\n", - " ('congest', 'become or cause to become obstructed'),\n", + " ('choke off', 'become or cause to become obstructed'),\n", + " ('foul', 'become or cause to become obstructed'),\n", + " ('back up', 'become or cause to become obstructed'),\n", " ('overload', 'fill to excess so that function is impaired'),\n", " ('clot', 'coalesce or unite in a mass'),\n", - " ('choke', 'become or cause to become obstructed'),\n", - " ('clog up', 'become or cause to become obstructed')]},\n", + " ('congest', 'become or cause to become obstructed'),\n", + " ('clog up', 'become or cause to become obstructed'),\n", + " ('choke', 'become or cause to become obstructed')]},\n", " {'answer': 'close',\n", " 'hint': 'synonyms for close',\n", - " 'clues': [('come together', 'come together, as if in an embrace'),\n", - " ('fold', 'cease to operate or cause to cease operating'),\n", - " ('shut down', 'cease to operate or cause to cease operating'),\n", + " 'clues': [('shut down', 'cease to operate or cause to cease operating'),\n", " ('shut', 'become closed'),\n", - " ('conclude', 'come to a close'),\n", " ('close down', 'cease to operate or cause to cease operating'),\n", + " ('fold', 'cease to operate or cause to cease operating'),\n", + " ('conclude', 'come to a close'),\n", + " ('fill up', 'fill or stop up'),\n", " ('close up',\n", " 'unite or bring into contact or bring together the edges of'),\n", - " ('fill up', 'fill or stop up')]},\n", + " ('come together', 'come together, as if in an embrace')]},\n", " {'answer': 'closed',\n", " 'hint': 'synonyms for closed',\n", - " 'clues': [('close', 'be priced or listed when trading stops'),\n", - " ('shut', 'become closed'),\n", - " ('conclude', 'come to a close'),\n", - " ('close up',\n", - " 'unite or bring into contact or bring together the edges of'),\n", + " 'clues': [('close', 'fill or stop up'),\n", + " ('shut', 'move so that an opening or passage is obstructed; make shut'),\n", + " ('fill up', 'fill or stop up'),\n", " ('come together', 'come together, as if in an embrace'),\n", " ('shut down', 'cease to operate or cause to cease operating'),\n", " ('close down', 'cease to operate or cause to cease operating'),\n", " ('fold', 'cease to operate or cause to cease operating'),\n", - " ('fill up', 'fill or stop up')]},\n", - " {'answer': 'closing',\n", - " 'hint': 'synonyms for closing',\n", - " 'clues': [('close', 'be priced or listed when trading stops'),\n", - " ('shut', 'become closed'),\n", " ('conclude', 'come to a close'),\n", " ('close up',\n", - " 'unite or bring into contact or bring together the edges of'),\n", + " 'unite or bring into contact or bring together the edges of')]},\n", + " {'answer': 'closing',\n", + " 'hint': 'synonyms for closing',\n", + " 'clues': [('close', 'fill or stop up'),\n", + " ('shut', 'move so that an opening or passage is obstructed; make shut'),\n", + " ('fill up', 'fill or stop up'),\n", " ('come together', 'come together, as if in an embrace'),\n", " ('shut down', 'cease to operate or cause to cease operating'),\n", " ('close down', 'cease to operate or cause to cease operating'),\n", " ('fold', 'cease to operate or cause to cease operating'),\n", - " ('fill up', 'fill or stop up')]},\n", + " ('conclude', 'come to a close'),\n", + " ('close up',\n", + " 'unite or bring into contact or bring together the edges of')]},\n", " {'answer': 'clothed',\n", " 'hint': 'synonyms for clothed',\n", - " 'clues': [('cloak', 'cover as if with clothing'),\n", - " ('raiment', 'provide with clothes or put clothes on'),\n", - " ('invest', 'furnish with power or authority; of kings or emperors'),\n", - " ('enclothe', 'provide with clothes or put clothes on'),\n", - " ('garb', 'provide with clothes or put clothes on'),\n", - " ('garment', 'provide with clothes or put clothes on'),\n", + " 'clues': [('garb', 'provide with clothes or put clothes on'),\n", " ('habilitate', 'provide with clothes or put clothes on'),\n", - " ('tog', 'provide with clothes or put clothes on'),\n", " ('fit out', 'provide with clothes or put clothes on'),\n", - " ('dress', 'provide with clothes or put clothes on'),\n", - " ('adorn', 'furnish with power or authority; of kings or emperors'),\n", + " ('clothe', 'furnish with power or authority; of kings or emperors'),\n", + " ('garment', 'provide with clothes or put clothes on'),\n", " ('drape', 'cover as if with clothing'),\n", + " ('cloak', 'cover as if with clothing'),\n", + " ('dress', 'provide with clothes or put clothes on'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", + " ('invest', 'furnish with power or authority; of kings or emperors'),\n", " ('apparel', 'provide with clothes or put clothes on'),\n", + " ('adorn', 'furnish with power or authority; of kings or emperors'),\n", + " ('tog', 'provide with clothes or put clothes on'),\n", " ('robe', 'cover as if with clothing')]},\n", " {'answer': 'clotted',\n", " 'hint': 'synonyms for clotted',\n", - " 'clues': [('curdle', 'turn into curds'),\n", - " ('clog', 'coalesce or unite in a mass'),\n", - " ('clot', 'cause to change from a liquid to a solid or thickened state'),\n", + " 'clues': [('clot', 'turn into curds'),\n", " ('clabber', 'turn into curds'),\n", - " ('coagulate', 'change from a liquid to a thickened or solid state')]},\n", + " ('coagulate', 'change from a liquid to a thickened or solid state'),\n", + " ('clog', 'coalesce or unite in a mass'),\n", + " ('curdle', 'turn into curds')]},\n", " {'answer': 'clouded',\n", " 'hint': 'synonyms for clouded',\n", - " 'clues': [('cloud', 'billow up in the form of a cloud'),\n", - " ('haze over', 'make less visible or unclear'),\n", - " ('taint', 'place under suspicion or cast doubt upon'),\n", - " ('corrupt', 'place under suspicion or cast doubt upon'),\n", - " ('sully', 'place under suspicion or cast doubt upon'),\n", - " ('obnubilate', 'make less visible or unclear'),\n", - " ('dapple', 'colour with streaks or blotches of different shades'),\n", - " ('fog', 'make less visible or unclear'),\n", + " 'clues': [('mist', 'make less visible or unclear'),\n", + " ('cloud', 'make less clear'),\n", " ('overcast', 'make overcast or cloudy'),\n", + " ('obnubilate', 'make less visible or unclear'),\n", + " ('sully', 'place under suspicion or cast doubt upon'),\n", + " ('befog', 'make less visible or unclear'),\n", + " ('haze over', 'make less visible or unclear'),\n", " ('becloud', 'make less visible or unclear'),\n", " ('obscure', 'make less visible or unclear'),\n", + " ('taint', 'place under suspicion or cast doubt upon'),\n", " ('defile', 'place under suspicion or cast doubt upon'),\n", - " ('mist', 'make less visible or unclear'),\n", + " ('dapple', 'colour with streaks or blotches of different shades'),\n", + " ('corrupt', 'place under suspicion or cast doubt upon'),\n", " ('mottle', 'colour with streaks or blotches of different shades'),\n", - " ('befog', 'make less visible or unclear')]},\n", + " ('fog', 'make less visible or unclear')]},\n", " {'answer': 'cloven',\n", " 'hint': 'synonyms for cloven',\n", " 'clues': [('cohere',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", - " ('cleave',\n", + " ('adhere',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", + " ('cleave', 'separate or cut with a tool, such as a sharp instrument'),\n", " ('rive', 'separate or cut with a tool, such as a sharp instrument'),\n", - " ('adhere',\n", + " ('cling',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", " ('stick',\n", " 'come or be in close contact with; stick or hold together and resist separation'),\n", - " ('cling',\n", - " 'come or be in close contact with; stick or hold together and resist separation'),\n", " ('split', 'separate or cut with a tool, such as a sharp instrument')]},\n", " {'answer': 'clustered',\n", " 'hint': 'synonyms for clustered',\n", - " 'clues': [('bunch up', 'gather or cause to gather into a cluster'),\n", - " ('bunch', 'gather or cause to gather into a cluster'),\n", + " 'clues': [('clump', 'gather or cause to gather into a cluster'),\n", + " ('bunch up', 'gather or cause to gather into a cluster'),\n", " ('bundle', 'gather or cause to gather into a cluster'),\n", - " ('cluster', 'gather or cause to gather into a cluster'),\n", - " ('clump', 'gather or cause to gather into a cluster'),\n", + " ('cluster', 'come together as in a cluster or flock'),\n", + " ('flock', 'come together as in a cluster or flock'),\n", " ('constellate', 'come together as in a cluster or flock'),\n", - " ('flock', 'come together as in a cluster or flock')]},\n", + " ('bunch', 'gather or cause to gather into a cluster')]},\n", " {'answer': 'coalesced',\n", " 'hint': 'synonyms for coalesced',\n", - " 'clues': [('fuse', 'mix together different elements'),\n", - " ('coalesce', 'mix together different elements'),\n", - " ('blend', 'mix together different elements'),\n", - " ('flux', 'mix together different elements'),\n", + " 'clues': [('conflate', 'mix together different elements'),\n", + " ('fuse', 'mix together different elements'),\n", + " ('coalesce', 'fuse or cause to grow together'),\n", " ('merge', 'mix together different elements'),\n", - " ('combine', 'mix together different elements'),\n", + " ('meld', 'mix together different elements'),\n", " ('commingle', 'mix together different elements'),\n", - " ('immix', 'mix together different elements'),\n", + " ('combine', 'mix together different elements'),\n", " ('mix', 'mix together different elements'),\n", - " ('meld', 'mix together different elements'),\n", - " ('conflate', 'mix together different elements')]},\n", + " ('flux', 'mix together different elements'),\n", + " ('immix', 'mix together different elements'),\n", + " ('blend', 'mix together different elements')]},\n", " {'answer': 'coalescing',\n", " 'hint': 'synonyms for coalescing',\n", - " 'clues': [('fuse', 'mix together different elements'),\n", - " ('coalesce', 'mix together different elements'),\n", - " ('blend', 'mix together different elements'),\n", - " ('flux', 'mix together different elements'),\n", + " 'clues': [('conflate', 'mix together different elements'),\n", + " ('fuse', 'mix together different elements'),\n", + " ('coalesce', 'fuse or cause to grow together'),\n", " ('merge', 'mix together different elements'),\n", - " ('combine', 'mix together different elements'),\n", + " ('meld', 'mix together different elements'),\n", " ('commingle', 'mix together different elements'),\n", - " ('immix', 'mix together different elements'),\n", + " ('combine', 'mix together different elements'),\n", " ('mix', 'mix together different elements'),\n", - " ('meld', 'mix together different elements'),\n", - " ('conflate', 'mix together different elements')]},\n", + " ('flux', 'mix together different elements'),\n", + " ('immix', 'mix together different elements'),\n", + " ('blend', 'mix together different elements')]},\n", " {'answer': 'coaxing',\n", " 'hint': 'synonyms for coaxing',\n", " 'clues': [('blarney',\n", " 'influence or urge by gentle urging, caressing, or flattering'),\n", + " ('coax', 'influence or urge by gentle urging, caressing, or flattering'),\n", + " ('sweet-talk',\n", + " 'influence or urge by gentle urging, caressing, or flattering'),\n", " ('wheedle',\n", " 'influence or urge by gentle urging, caressing, or flattering'),\n", - " ('palaver',\n", + " ('inveigle',\n", " 'influence or urge by gentle urging, caressing, or flattering'),\n", - " ('sweet-talk',\n", + " ('palaver',\n", " 'influence or urge by gentle urging, caressing, or flattering'),\n", " ('cajole',\n", - " 'influence or urge by gentle urging, caressing, or flattering'),\n", - " ('coax', 'influence or urge by gentle urging, caressing, or flattering'),\n", - " ('inveigle',\n", " 'influence or urge by gentle urging, caressing, or flattering')]},\n", " {'answer': 'cod',\n", " 'hint': 'synonyms for cod',\n", - " 'clues': [('tantalise', 'harass with persistent criticism or carping'),\n", - " ('gull', 'fool or hoax'),\n", - " ('put one across', 'fool or hoax'),\n", + " 'clues': [('gull', 'fool or hoax'),\n", + " ('twit', 'harass with persistent criticism or carping'),\n", + " ('bait', 'harass with persistent criticism or carping'),\n", " ('rag', 'harass with persistent criticism or carping'),\n", - " ('rally', 'harass with persistent criticism or carping'),\n", + " ('taunt', 'harass with persistent criticism or carping'),\n", + " ('tantalise', 'harass with persistent criticism or carping'),\n", + " ('slang', 'fool or hoax'),\n", + " ('take in', 'fool or hoax'),\n", + " ('dupe', 'fool or hoax'),\n", + " ('ride', 'harass with persistent criticism or carping'),\n", " ('fool', 'fool or hoax'),\n", - " ('twit', 'harass with persistent criticism or carping'),\n", - " ('razz', 'harass with persistent criticism or carping'),\n", " ('put one over', 'fool or hoax'),\n", + " ('razz', 'harass with persistent criticism or carping'),\n", + " ('rally', 'harass with persistent criticism or carping'),\n", + " ('put on', 'fool or hoax'),\n", " ('befool', 'fool or hoax'),\n", - " ('dupe', 'fool or hoax'),\n", " ('tease', 'harass with persistent criticism or carping'),\n", - " ('taunt', 'harass with persistent criticism or carping'),\n", - " ('bait', 'harass with persistent criticism or carping'),\n", - " ('ride', 'harass with persistent criticism or carping'),\n", - " ('take in', 'fool or hoax'),\n", - " ('put on', 'fool or hoax'),\n", - " ('slang', 'fool or hoax')]},\n", + " ('put one across', 'fool or hoax')]},\n", " {'answer': 'coiled',\n", " 'hint': 'synonyms for coiled',\n", - " 'clues': [('spiral', 'to wind or move in a spiral course'),\n", + " 'clues': [('hand-build', \"make without a potter's wheel\"),\n", " ('coil', 'wind around something in coils or loops'),\n", - " ('hand-build', \"make without a potter's wheel\"),\n", + " ('spiral', 'to wind or move in a spiral course'),\n", " ('gyrate', 'to wind or move in a spiral course'),\n", - " ('curl', 'wind around something in coils or loops'),\n", - " ('loop', 'wind around something in coils or loops')]},\n", + " ('loop', 'wind around something in coils or loops'),\n", + " ('curl', 'wind around something in coils or loops')]},\n", " {'answer': 'coiling',\n", " 'hint': 'synonyms for coiling',\n", - " 'clues': [('spiral', 'to wind or move in a spiral course'),\n", + " 'clues': [('hand-build', \"make without a potter's wheel\"),\n", " ('coil', 'wind around something in coils or loops'),\n", - " ('hand-build', \"make without a potter's wheel\"),\n", + " ('spiral', 'to wind or move in a spiral course'),\n", " ('gyrate', 'to wind or move in a spiral course'),\n", - " ('curl', 'wind around something in coils or loops'),\n", - " ('loop', 'wind around something in coils or loops')]},\n", + " ('loop', 'wind around something in coils or loops'),\n", + " ('curl', 'wind around something in coils or loops')]},\n", " {'answer': 'collect',\n", " 'hint': 'synonyms for collect',\n", - " 'clues': [('pull together', 'assemble or get together'),\n", - " ('pull in', 'get or bring together'),\n", - " ('accumulate', 'get or gather together'),\n", + " 'clues': [('pull in', 'get or bring together'),\n", + " ('call for', 'gather or collect'),\n", + " ('pick up', 'gather or collect'),\n", + " ('pile up', 'get or gather together'),\n", " ('gather', 'assemble or get together'),\n", - " ('amass', 'get or gather together'),\n", - " ('hoard', 'get or gather together'),\n", - " ('garner', 'assemble or get together'),\n", " ('take in', 'call for and obtain payment of'),\n", - " ('call for', 'gather or collect'),\n", - " ('compile', 'get or gather together'),\n", + " ('garner', 'assemble or get together'),\n", + " ('pull together', 'assemble or get together'),\n", " ('roll up', 'get or gather together'),\n", - " ('pile up', 'get or gather together'),\n", - " ('pick up', 'gather or collect'),\n", - " ('gather up', 'gather or collect')]},\n", + " ('amass', 'get or gather together'),\n", + " ('compile', 'get or gather together'),\n", + " ('gather up', 'gather or collect'),\n", + " ('accumulate', 'get or gather together'),\n", + " ('hoard', 'get or gather together')]},\n", " {'answer': 'collected',\n", " 'hint': 'synonyms for collected',\n", - " 'clues': [('pull together', 'assemble or get together'),\n", - " ('pull in', 'get or bring together'),\n", - " ('collect', 'get or gather together'),\n", - " ('hoard', 'get or gather together'),\n", - " ('call for', 'gather or collect'),\n", + " 'clues': [('call for', 'gather or collect'),\n", + " ('pick up', 'gather or collect'),\n", + " ('pile up', 'get or gather together'),\n", + " ('collect', 'call for and obtain payment of'),\n", + " ('take in', 'call for and obtain payment of'),\n", + " ('roll up', 'get or gather together'),\n", " ('gather up', 'gather or collect'),\n", " ('accumulate', 'get or gather together'),\n", + " ('pull in', 'get or bring together'),\n", " ('gather', 'assemble or get together'),\n", - " ('amass', 'get or gather together'),\n", " ('garner', 'assemble or get together'),\n", - " ('take in', 'call for and obtain payment of'),\n", + " ('pull together', 'assemble or get together'),\n", + " ('amass', 'get or gather together'),\n", " ('compile', 'get or gather together'),\n", - " ('roll up', 'get or gather together'),\n", - " ('pile up', 'get or gather together'),\n", - " ('pick up', 'gather or collect')]},\n", + " ('hoard', 'get or gather together')]},\n", " {'answer': 'color',\n", " 'hint': 'synonyms for color',\n", - " 'clues': [('colour', 'give a deceptive explanation or excuse for'),\n", + " 'clues': [('colourise', 'add color to'),\n", " ('distort', 'affect as in thought or feeling'),\n", " ('emblazon', 'decorate with colors'),\n", - " ('colourize', 'add color to'),\n", - " ('tinge', 'affect as in thought or feeling'),\n", - " ('discolor', 'change color, often in an undesired manner'),\n", " ('colour in', 'add color to'),\n", + " ('colorize', 'add color to'),\n", + " ('colour', 'give a deceptive explanation or excuse for'),\n", + " ('tinge', 'affect as in thought or feeling'),\n", " ('gloss', 'give a deceptive explanation or excuse for'),\n", - " ('colorise', 'add color to')]},\n", + " ('discolour', 'change color, often in an undesired manner')]},\n", " {'answer': 'colored',\n", " 'hint': 'synonyms for colored',\n", - " 'clues': [('emblazon', 'decorate with colors'),\n", - " ('color', 'modify or bias'),\n", - " ('colourise', 'add color to'),\n", + " 'clues': [('color', 'affect as in thought or feeling'),\n", + " ('emblazon', 'decorate with colors'),\n", + " ('colourize', 'add color to'),\n", " ('colour in', 'add color to'),\n", " ('discolour', 'change color, often in an undesired manner'),\n", - " ('gloss', 'give a deceptive explanation or excuse for'),\n", - " ('distort', 'affect as in thought or feeling'),\n", " ('tinge', 'affect as in thought or feeling'),\n", - " ('colorize', 'add color to')]},\n", + " ('colorise', 'add color to'),\n", + " ('distort', 'affect as in thought or feeling'),\n", + " ('gloss', 'give a deceptive explanation or excuse for')]},\n", " {'answer': 'colour',\n", " 'hint': 'synonyms for colour',\n", - " 'clues': [('color', 'give a deceptive explanation or excuse for'),\n", + " 'clues': [('colourise', 'add color to'),\n", " ('distort', 'affect as in thought or feeling'),\n", " ('emblazon', 'decorate with colors'),\n", - " ('tinge', 'affect as in thought or feeling'),\n", - " ('colourize', 'add color to'),\n", + " ('color', 'affect as in thought or feeling'),\n", " ('discolor', 'change color, often in an undesired manner'),\n", " ('colour in', 'add color to'),\n", - " ('gloss', 'give a deceptive explanation or excuse for'),\n", - " ('colorise', 'add color to')]},\n", + " ('colorize', 'add color to'),\n", + " ('tinge', 'affect as in thought or feeling'),\n", + " ('gloss', 'give a deceptive explanation or excuse for')]},\n", " {'answer': 'coloured',\n", " 'hint': 'synonyms for coloured',\n", " 'clues': [('emblazon', 'decorate with colors'),\n", - " ('color', 'modify or bias'),\n", - " ('colourise', 'add color to'),\n", + " ('color', 'affect as in thought or feeling'),\n", + " ('colourize', 'add color to'),\n", " ('colour in', 'add color to'),\n", " ('discolour', 'change color, often in an undesired manner'),\n", - " ('gloss', 'give a deceptive explanation or excuse for'),\n", - " ('distort', 'affect as in thought or feeling'),\n", " ('tinge', 'affect as in thought or feeling'),\n", - " ('colorize', 'add color to')]},\n", + " ('colorise', 'add color to'),\n", + " ('distort', 'affect as in thought or feeling'),\n", + " ('gloss', 'give a deceptive explanation or excuse for')]},\n", " {'answer': 'combed',\n", " 'hint': 'synonyms for combed',\n", - " 'clues': [('comb', 'smoothen and neaten with or as with a comb'),\n", - " ('comb out', 'smoothen and neaten with or as with a comb'),\n", + " 'clues': [('comb', 'search thoroughly'),\n", " ('ransack', 'search thoroughly'),\n", + " ('comb out', 'smoothen and neaten with or as with a comb'),\n", " ('disentangle', 'smoothen and neaten with or as with a comb')]},\n", " {'answer': 'combined',\n", " 'hint': 'synonyms for combined',\n", - " 'clues': [('aggregate', 'gather in a mass, sum, or whole'),\n", - " ('unite', 'have or possess in combination'),\n", - " ('coalesce', 'mix together different elements'),\n", + " 'clues': [('conflate', 'mix together different elements'),\n", + " ('fuse', 'mix together different elements'),\n", " ('flux', 'mix together different elements'),\n", - " ('combine', 'combine so as to form a whole; mix'),\n", - " ('compound', 'put or add together'),\n", + " ('unite', 'have or possess in combination'),\n", " ('meld', 'mix together different elements'),\n", - " ('blend', 'mix together different elements'),\n", - " ('fuse', 'mix together different elements'),\n", + " ('coalesce', 'mix together different elements'),\n", " ('mix', 'mix together different elements'),\n", - " ('conflate', 'mix together different elements'),\n", + " ('immix', 'mix together different elements'),\n", + " ('combine', 'join for a common purpose or in a common action'),\n", + " ('aggregate', 'gather in a mass, sum, or whole'),\n", " ('merge', 'mix together different elements'),\n", " ('commingle', 'mix together different elements'),\n", - " ('immix', 'mix together different elements')]},\n", + " ('compound', 'combine so as to form a whole; mix'),\n", + " ('blend', 'mix together different elements')]},\n", " {'answer': 'comforted',\n", " 'hint': 'synonyms for comforted',\n", " 'clues': [('ease', 'lessen pain or discomfort; alleviate'),\n", - " ('console', 'give moral or emotional strength to'),\n", - " ('comfort', 'lessen pain or discomfort; alleviate'),\n", + " ('comfort', 'give moral or emotional strength to'),\n", " ('soothe', 'give moral or emotional strength to'),\n", - " ('solace', 'give moral or emotional strength to')]},\n", + " ('solace', 'give moral or emotional strength to'),\n", + " ('console', 'give moral or emotional strength to')]},\n", " {'answer': 'comforting',\n", " 'hint': 'synonyms for comforting',\n", " 'clues': [('ease', 'lessen pain or discomfort; alleviate'),\n", - " ('console', 'give moral or emotional strength to'),\n", - " ('comfort', 'lessen pain or discomfort; alleviate'),\n", + " ('comfort', 'give moral or emotional strength to'),\n", " ('soothe', 'give moral or emotional strength to'),\n", - " ('solace', 'give moral or emotional strength to')]},\n", + " ('solace', 'give moral or emotional strength to'),\n", + " ('console', 'give moral or emotional strength to')]},\n", " {'answer': 'coming',\n", " 'hint': 'synonyms for coming',\n", - " 'clues': [('come', 'be found or available'),\n", - " ('get', 'reach a destination; arrive by movement or progress'),\n", + " 'clues': [('amount', 'develop into'),\n", " ('arrive', 'reach a destination; arrive by movement or progress'),\n", + " ('come', 'have a certain priority'),\n", + " ('occur', \"come to one's mind; suggest itself\"),\n", " ('total', 'add up in number or quantity'),\n", - " ('number', 'add up in number or quantity'),\n", - " ('follow', 'to be the product or result'),\n", + " ('get', 'reach a destination; arrive by movement or progress'),\n", + " ('hail', 'be a native of'),\n", " ('get along', 'proceed or get along'),\n", - " ('add up', 'develop into'),\n", - " ('amount', 'develop into'),\n", - " ('come in', 'be received'),\n", - " ('fall', 'come under, be classified or included'),\n", - " ('issue forth', 'come forth'),\n", - " ('occur', \"come to one's mind; suggest itself\"),\n", + " ('follow', 'to be the product or result'),\n", " ('make out', 'proceed or get along'),\n", - " ('fare', 'proceed or get along'),\n", - " ('hail', 'be a native of'),\n", - " ('come up',\n", - " 'move toward, travel toward something or somebody or approach something or somebody'),\n", - " ('descend',\n", - " 'come from; be connected by a relationship of blood, for example'),\n", " ('do', 'proceed or get along'),\n", + " ('fall', 'come under, be classified or included'),\n", " ('derive',\n", - " 'come from; be connected by a relationship of blood, for example')]},\n", + " 'come from; be connected by a relationship of blood, for example'),\n", + " ('descend',\n", + " 'come from; be connected by a relationship of blood, for example'),\n", + " ('number', 'add up in number or quantity'),\n", + " ('come up',\n", + " 'move toward, travel toward something or somebody or approach something or somebody'),\n", + " ('issue forth', 'come forth'),\n", + " ('add up', 'add up in number or quantity'),\n", + " ('fare', 'proceed or get along'),\n", + " ('come in', 'be received')]},\n", " {'answer': 'commanding',\n", " 'hint': 'synonyms for commanding',\n", - " 'clues': [('require', 'make someone do something'),\n", + " 'clues': [('command', 'be in command of'),\n", + " ('require', 'make someone do something'),\n", + " ('dominate', 'look down on'),\n", " ('overlook', 'look down on'),\n", - " ('command', 'exercise authoritative control or power over'),\n", - " ('control', 'exercise authoritative control or power over'),\n", " ('overtop', 'look down on'),\n", - " ('dominate', 'look down on')]},\n", + " ('control', 'exercise authoritative control or power over')]},\n", " {'answer': 'commemorating',\n", " 'hint': 'synonyms for commemorating',\n", - " 'clues': [('remember',\n", - " 'call to remembrance; keep alive the memory of someone or something, as in a ceremony'),\n", + " 'clues': [('commemorate',\n", + " 'be or provide a memorial to a person or an event'),\n", + " ('mark', 'mark by some ceremony or observation'),\n", + " ('record', 'be or provide a memorial to a person or an event'),\n", " ('immortalize', 'be or provide a memorial to a person or an event'),\n", " ('memorialise', 'be or provide a memorial to a person or an event'),\n", - " ('commemorate',\n", - " 'call to remembrance; keep alive the memory of someone or something, as in a ceremony'),\n", - " ('record', 'be or provide a memorial to a person or an event'),\n", - " ('mark', 'mark by some ceremony or observation')]},\n", + " ('remember',\n", + " 'call to remembrance; keep alive the memory of someone or something, as in a ceremony')]},\n", " {'answer': 'committed',\n", " 'hint': 'synonyms for committed',\n", - " 'clues': [('institutionalize',\n", - " 'cause to be admitted; of persons to an institution'),\n", - " ('commit', 'give entirely to a specific person, activity, or cause'),\n", - " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", - " ('entrust', 'confer a trust upon'),\n", + " 'clues': [('commit',\n", + " 'perform an act, usually with a negative connotation'),\n", " ('confide', 'confer a trust upon'),\n", + " ('send', 'cause to be admitted; of persons to an institution'),\n", " ('pull', 'perform an act, usually with a negative connotation'),\n", " ('devote', 'give entirely to a specific person, activity, or cause'),\n", - " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", - " ('invest', 'make an investment'),\n", - " ('send', 'cause to be admitted; of persons to an institution'),\n", - " ('trust', 'confer a trust upon'),\n", - " ('perpetrate', 'perform an act, usually with a negative connotation'),\n", " ('give', 'give entirely to a specific person, activity, or cause'),\n", + " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", + " ('institutionalise',\n", + " 'cause to be admitted; of persons to an institution'),\n", + " ('place', 'make an investment'),\n", + " ('perpetrate', 'perform an act, usually with a negative connotation'),\n", " ('put', 'make an investment'),\n", " ('charge', 'cause to be admitted; of persons to an institution'),\n", - " ('place', 'make an investment'),\n", + " ('trust', 'confer a trust upon'),\n", + " ('intrust', 'confer a trust upon'),\n", + " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", + " ('invest', 'make an investment'),\n", " ('practice', 'engage in or perform')]},\n", " {'answer': 'compact',\n", " 'hint': 'synonyms for compact',\n", - " 'clues': [('compress', 'squeeze or press together'),\n", - " ('bundle', 'compress into a wad'),\n", - " ('pack', 'compress into a wad'),\n", - " ('contract', 'squeeze or press together'),\n", - " ('constrict', 'squeeze or press together'),\n", + " 'clues': [('bundle', 'compress into a wad'),\n", " ('pack together', 'make more compact by or as if by pressing'),\n", - " ('press', 'squeeze or press together'),\n", + " ('pack', 'have the property of being packable or of compacting easily'),\n", " ('squeeze', 'squeeze or press together'),\n", - " ('wad', 'compress into a wad')]},\n", + " ('compress', 'make more compact by or as if by pressing'),\n", + " ('constrict', 'squeeze or press together'),\n", + " ('wad', 'compress into a wad'),\n", + " ('press', 'squeeze or press together'),\n", + " ('contract', 'squeeze or press together')]},\n", " {'answer': 'compassionate',\n", " 'hint': 'synonyms for compassionate',\n", - " 'clues': [('feel for', 'share the suffering of'),\n", + " 'clues': [('sympathize with', 'share the suffering of'),\n", " ('pity', 'share the suffering of'),\n", " ('condole with', 'share the suffering of'),\n", - " ('sympathize with', 'share the suffering of')]},\n", + " ('feel for', 'share the suffering of')]},\n", " {'answer': 'compensated',\n", " 'hint': 'synonyms for compensated',\n", - " 'clues': [('make up', 'adjust for'),\n", - " ('compensate', 'make amends for; pay compensation for'),\n", + " 'clues': [('make up', 'do or give something to somebody in return'),\n", + " ('compensate', 'make reparations or amends for'),\n", + " ('pay off', 'do or give something to somebody in return'),\n", " ('recompense', 'make amends for; pay compensation for'),\n", - " ('pay', 'do or give something to somebody in return'),\n", " ('correct', 'make reparations or amends for'),\n", + " ('repair', 'make amends for; pay compensation for'),\n", + " ('pay', 'do or give something to somebody in return'),\n", " ('remunerate', 'make payment to; compensate'),\n", - " ('pay off', 'do or give something to somebody in return'),\n", " ('cover',\n", " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n", - " ('even up', 'adjust for'),\n", - " ('redress', 'make reparations or amends for'),\n", " ('even out', 'adjust for'),\n", - " ('repair', 'make amends for; pay compensation for'),\n", - " ('right', 'make reparations or amends for'),\n", - " ('counterbalance', 'adjust for'),\n", + " ('even off', 'adjust for'),\n", + " ('indemnify', 'make amends for; pay compensation for'),\n", " ('overcompensate',\n", " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n", - " ('even off', 'adjust for'),\n", - " ('indemnify', 'make amends for; pay compensation for')]},\n", + " ('redress', 'make reparations or amends for'),\n", + " ('even up', 'adjust for'),\n", + " ('right', 'make reparations or amends for'),\n", + " ('counterbalance', 'adjust for')]},\n", " {'answer': 'complaining',\n", " 'hint': 'synonyms for complaining',\n", - " 'clues': [('sound off',\n", + " 'clues': [('kick',\n", " 'express complaints, discontent, displeasure, or unhappiness'),\n", - " ('complain', 'make a formal accusation; bring a formal charge'),\n", - " ('plain', 'express complaints, discontent, displeasure, or unhappiness'),\n", - " ('kick', 'express complaints, discontent, displeasure, or unhappiness'),\n", " ('quetch', 'express complaints, discontent, displeasure, or unhappiness'),\n", - " ('kvetch',\n", + " ('complain',\n", + " 'express complaints, discontent, displeasure, or unhappiness'),\n", + " ('sound off',\n", + " 'express complaints, discontent, displeasure, or unhappiness'),\n", + " ('kvetch', 'express complaints, discontent, displeasure, or unhappiness'),\n", + " ('plain',\n", " 'express complaints, discontent, displeasure, or unhappiness')]},\n", " {'answer': 'complete',\n", " 'hint': 'synonyms for complete',\n", " 'clues': [('finish', 'come or bring to a finish or an end'),\n", + " ('discharge', 'complete or carry out'),\n", " ('dispatch', 'complete or carry out'),\n", - " ('fill in', 'write all the required information onto a form'),\n", - " ('fill out', 'write all the required information onto a form'),\n", " ('nail', 'complete a pass'),\n", + " ('fill out', 'write all the required information onto a form'),\n", " ('make out', 'write all the required information onto a form'),\n", - " ('discharge', 'complete or carry out')]},\n", + " ('fill in', 'write all the required information onto a form')]},\n", " {'answer': 'completed',\n", " 'hint': 'synonyms for completed',\n", " 'clues': [('finish', 'come or bring to a finish or an end'),\n", - " ('fill out', 'write all the required information onto a form'),\n", - " ('discharge', 'complete or carry out'),\n", - " ('complete', 'complete or carry out'),\n", + " ('complete',\n", + " 'bring to a whole, with all the necessary parts or elements'),\n", " ('dispatch', 'complete or carry out'),\n", - " ('fill in', 'write all the required information onto a form'),\n", " ('nail', 'complete a pass'),\n", - " ('make out', 'write all the required information onto a form')]},\n", + " ('discharge', 'complete or carry out'),\n", + " ('fill out', 'write all the required information onto a form'),\n", + " ('make out', 'write all the required information onto a form'),\n", + " ('fill in', 'write all the required information onto a form')]},\n", " {'answer': 'completing',\n", " 'hint': 'synonyms for completing',\n", " 'clues': [('finish', 'come or bring to a finish or an end'),\n", - " ('fill out', 'write all the required information onto a form'),\n", - " ('discharge', 'complete or carry out'),\n", - " ('complete', 'complete or carry out'),\n", + " ('complete',\n", + " 'bring to a whole, with all the necessary parts or elements'),\n", " ('dispatch', 'complete or carry out'),\n", - " ('fill in', 'write all the required information onto a form'),\n", " ('nail', 'complete a pass'),\n", - " ('make out', 'write all the required information onto a form')]},\n", + " ('discharge', 'complete or carry out'),\n", + " ('fill out', 'write all the required information onto a form'),\n", + " ('make out', 'write all the required information onto a form'),\n", + " ('fill in', 'write all the required information onto a form')]},\n", " {'answer': 'complicated',\n", " 'hint': 'synonyms for complicated',\n", - " 'clues': [('elaborate', 'make more complex, intricate, or richer'),\n", - " ('rarify', 'make more complex, intricate, or richer'),\n", - " ('complicate', 'make more complicated'),\n", + " 'clues': [('complicate', 'make more complex, intricate, or richer'),\n", " ('perplex', 'make more complicated'),\n", + " ('elaborate', 'make more complex, intricate, or richer'),\n", + " ('rarify', 'make more complex, intricate, or richer'),\n", " ('refine', 'make more complex, intricate, or richer')]},\n", " {'answer': 'composed',\n", " 'hint': 'synonyms for composed',\n", - " 'clues': [('compose', 'make up plans or basic details for'),\n", - " ('write', 'write music'),\n", - " ('frame', 'make up plans or basic details for'),\n", - " ('compile', 'put together out of existing material'),\n", + " 'clues': [('compose', 'produce a literary work'),\n", " ('indite', 'produce a literary work'),\n", " ('draw up', 'make up plans or basic details for'),\n", - " ('pen', 'produce a literary work')]},\n", + " ('pen', 'produce a literary work'),\n", + " ('write', 'produce a literary work'),\n", + " ('frame', 'make up plans or basic details for'),\n", + " ('compile', 'put together out of existing material')]},\n", " {'answer': 'compound',\n", " 'hint': 'synonyms for compound',\n", - " 'clues': [('combine', 'put or add together'),\n", + " 'clues': [('deepen', 'make more intense, stronger, or more marked; ,'),\n", + " ('combine', 'combine so as to form a whole; mix'),\n", " ('heighten', 'make more intense, stronger, or more marked; ,'),\n", - " ('intensify', 'make more intense, stronger, or more marked; ,'),\n", - " ('deepen', 'make more intense, stronger, or more marked; ,')]},\n", + " ('intensify', 'make more intense, stronger, or more marked; ,')]},\n", " {'answer': 'compounded',\n", " 'hint': 'synonyms for compounded',\n", - " 'clues': [('combine', 'put or add together'),\n", - " ('heighten', 'make more intense, stronger, or more marked; ,'),\n", - " ('compound', 'make more intense, stronger, or more marked; ,'),\n", + " 'clues': [('deepen', 'make more intense, stronger, or more marked; ,'),\n", " ('intensify', 'make more intense, stronger, or more marked; ,'),\n", - " ('deepen', 'make more intense, stronger, or more marked; ,')]},\n", + " ('compound', 'make more intense, stronger, or more marked; ,'),\n", + " ('combine', 'combine so as to form a whole; mix'),\n", + " ('heighten', 'make more intense, stronger, or more marked; ,')]},\n", " {'answer': 'comprehended',\n", " 'hint': 'synonyms for comprehended',\n", - " 'clues': [('grok', 'get the meaning of something'),\n", - " ('dig', 'get the meaning of something'),\n", - " ('cover',\n", - " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", - " ('apprehend', 'get the meaning of something'),\n", - " ('comprehend', 'to become aware of through the senses'),\n", - " ('grasp', 'get the meaning of something'),\n", - " ('get the picture', 'get the meaning of something'),\n", + " 'clues': [('grasp', 'get the meaning of something'),\n", + " ('comprehend', 'get the meaning of something'),\n", + " ('compass', 'get the meaning of something'),\n", " ('perceive', 'to become aware of through the senses'),\n", + " ('apprehend', 'get the meaning of something'),\n", " ('embrace',\n", " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", - " ('compass', 'get the meaning of something'),\n", - " ('savvy', 'get the meaning of something')]},\n", + " ('dig', 'get the meaning of something'),\n", + " ('savvy', 'get the meaning of something'),\n", + " ('grok', 'get the meaning of something'),\n", + " ('cover',\n", + " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", + " ('get the picture', 'get the meaning of something')]},\n", " {'answer': 'compressed',\n", " 'hint': 'synonyms for compressed',\n", - " 'clues': [('compress', 'squeeze or press together'),\n", - " ('compact', 'squeeze or press together'),\n", - " ('contract', 'squeeze or press together'),\n", + " 'clues': [('pack together', 'make more compact by or as if by pressing'),\n", + " ('compact', 'make more compact by or as if by pressing'),\n", + " ('squeeze', 'squeeze or press together'),\n", + " ('compress', 'make more compact by or as if by pressing'),\n", " ('constrict', 'squeeze or press together'),\n", - " ('pack together', 'make more compact by or as if by pressing'),\n", " ('press', 'squeeze or press together'),\n", - " ('squeeze', 'squeeze or press together')]},\n", + " ('contract', 'squeeze or press together')]},\n", " {'answer': 'concealed',\n", " 'hint': 'synonyms for concealed',\n", - " 'clues': [('conceal', 'prevent from being seen or discovered'),\n", - " ('hold in', 'hold back; keep from being perceived by others'),\n", + " 'clues': [('hide', 'prevent from being seen or discovered'),\n", " ('hold back', 'hold back; keep from being perceived by others'),\n", - " ('hide', 'prevent from being seen or discovered')]},\n", + " ('conceal', 'prevent from being seen or discovered'),\n", + " ('hold in', 'hold back; keep from being perceived by others')]},\n", " {'answer': 'concealing',\n", " 'hint': 'synonyms for concealing',\n", - " 'clues': [('conceal', 'prevent from being seen or discovered'),\n", - " ('hold in', 'hold back; keep from being perceived by others'),\n", + " 'clues': [('hide', 'prevent from being seen or discovered'),\n", " ('hold back', 'hold back; keep from being perceived by others'),\n", - " ('hide', 'prevent from being seen or discovered')]},\n", + " ('conceal', 'prevent from being seen or discovered'),\n", + " ('hold in', 'hold back; keep from being perceived by others')]},\n", " {'answer': 'concentrated',\n", " 'hint': 'synonyms for concentrated',\n", - " 'clues': [('contract', 'compress or concentrate'),\n", - " ('concentrate', 'draw together or meet in one common center'),\n", + " 'clues': [('condense', 'compress or concentrate'),\n", + " ('concentrate', 'make central'),\n", + " ('focus', \"direct one's attention on something\"),\n", + " ('contract', 'compress or concentrate'),\n", + " ('center', \"direct one's attention on something\"),\n", + " ('pore', \"direct one's attention on something\"),\n", " ('centralize', 'make central'),\n", " ('reduce', 'be cooked until very little liquid is left'),\n", - " ('condense', 'make more concise'),\n", - " ('focus', \"direct one's attention on something\"),\n", - " ('boil down', 'be cooked until very little liquid is left'),\n", + " ('boil down', 'cook until very little liquid is left'),\n", " ('centre', \"direct one's attention on something\"),\n", - " ('pore', \"direct one's attention on something\"),\n", " ('rivet', \"direct one's attention on something\"),\n", " ('digest', 'make more concise'),\n", - " ('decoct', 'be cooked until very little liquid is left'),\n", - " ('center', \"direct one's attention on something\")]},\n", + " ('decoct', 'be cooked until very little liquid is left')]},\n", " {'answer': 'concerned',\n", " 'hint': 'synonyms for concerned',\n", - " 'clues': [('have-to doe with', 'be relevant to'),\n", - " ('concern', 'be on the mind of'),\n", - " ('worry', 'be on the mind of'),\n", + " 'clues': [('come to', 'be relevant to'),\n", + " ('have-to doe with', 'be relevant to'),\n", + " ('bear on', 'be relevant to'),\n", " ('relate', 'be relevant to'),\n", - " ('come to', 'be relevant to'),\n", + " ('touch on', 'be relevant to'),\n", + " ('worry', 'be on the mind of'),\n", " ('pertain', 'be relevant to'),\n", - " ('refer', 'be relevant to'),\n", - " ('bear on', 'be relevant to'),\n", - " ('touch', 'be relevant to'),\n", - " ('occupy', 'be on the mind of'),\n", + " ('concern', 'be relevant to'),\n", " ('interest', 'be on the mind of'),\n", - " ('touch on', 'be relevant to')]},\n", + " ('occupy', 'be on the mind of'),\n", + " ('touch', 'be relevant to'),\n", + " ('refer', 'be relevant to')]},\n", " {'answer': 'concluded',\n", " 'hint': 'synonyms for concluded',\n", - " 'clues': [('conclude',\n", - " 'decide by reasoning; draw or come to a conclusion'),\n", - " ('reason', 'decide by reasoning; draw or come to a conclusion'),\n", - " ('close', 'come to a close'),\n", + " 'clues': [('conclude', 'bring to a close'),\n", " ('resolve', 'reach a conclusion after a discussion or deliberation'),\n", - " ('reason out', 'decide by reasoning; draw or come to a conclusion')]},\n", + " ('reason out', 'decide by reasoning; draw or come to a conclusion'),\n", + " ('close', 'come to a close'),\n", + " ('reason', 'decide by reasoning; draw or come to a conclusion')]},\n", " {'answer': 'concluding',\n", " 'hint': 'synonyms for concluding',\n", - " 'clues': [('conclude',\n", - " 'decide by reasoning; draw or come to a conclusion'),\n", - " ('reason', 'decide by reasoning; draw or come to a conclusion'),\n", - " ('close', 'come to a close'),\n", + " 'clues': [('conclude', 'bring to a close'),\n", " ('resolve', 'reach a conclusion after a discussion or deliberation'),\n", - " ('reason out', 'decide by reasoning; draw or come to a conclusion')]},\n", + " ('reason out', 'decide by reasoning; draw or come to a conclusion'),\n", + " ('close', 'come to a close'),\n", + " ('reason', 'decide by reasoning; draw or come to a conclusion')]},\n", " {'answer': 'concurring',\n", " 'hint': 'synonyms for concurring',\n", - " 'clues': [('concord', 'be in accord; be in agreement'),\n", - " ('concur', 'be in accord; be in agreement'),\n", + " 'clues': [('concur', 'be in accord; be in agreement'),\n", + " ('concord', 'be in accord; be in agreement'),\n", + " ('agree', 'be in accord; be in agreement'),\n", " ('coincide', 'happen simultaneously'),\n", - " ('hold', 'be in accord; be in agreement'),\n", - " ('agree', 'be in accord; be in agreement')]},\n", + " ('hold', 'be in accord; be in agreement')]},\n", " {'answer': 'condemning',\n", " 'hint': 'synonyms for condemning',\n", - " 'clues': [('condemn', 'express strong disapproval of'),\n", - " ('excoriate', 'express strong disapproval of'),\n", + " 'clues': [('decry', 'express strong disapproval of'),\n", + " ('condemn', 'demonstrate the guilt of (someone)'),\n", + " ('objurgate', 'express strong disapproval of'),\n", " ('doom', 'pronounce a sentence on (somebody) in a court of law'),\n", " ('sentence', 'pronounce a sentence on (somebody) in a court of law'),\n", - " ('decry', 'express strong disapproval of'),\n", " ('reprobate', 'express strong disapproval of'),\n", - " ('objurgate', 'express strong disapproval of')]},\n", + " ('excoriate', 'express strong disapproval of')]},\n", " {'answer': 'condescending',\n", " 'hint': 'synonyms for condescending',\n", - " 'clues': [('patronise', 'treat condescendingly'),\n", - " ('condescend',\n", - " \"do something that one considers to be below one's dignity\"),\n", - " ('deign', \"do something that one considers to be below one's dignity\"),\n", - " ('lower oneself',\n", + " 'clues': [('stoop',\n", " 'debase oneself morally, act in an undignified, unworthy, or dishonorable way'),\n", - " ('stoop',\n", + " ('condescend', 'behave in a patronizing and condescending manner'),\n", + " ('patronize', 'treat condescendingly'),\n", + " ('lower oneself',\n", " 'debase oneself morally, act in an undignified, unworthy, or dishonorable way'),\n", + " ('deign', \"do something that one considers to be below one's dignity\"),\n", " ('descend',\n", " \"do something that one considers to be below one's dignity\")]},\n", " {'answer': 'conditioned',\n", " 'hint': 'synonyms for conditioned',\n", - " 'clues': [('check',\n", + " 'clues': [('train',\n", " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", - " ('qualify',\n", - " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n", - " ('condition',\n", - " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n", + " ('condition', 'put into a better state'),\n", " ('specify',\n", " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n", - " ('discipline',\n", - " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", - " ('train',\n", + " ('qualify',\n", + " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n", + " ('check',\n", " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", " ('stipulate',\n", - " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement')]},\n", + " 'specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement'),\n", + " ('discipline',\n", + " \"develop (children's) behavior by instruction and practice; especially to teach self-control\")]},\n", " {'answer': 'confiding',\n", " 'hint': 'synonyms for confiding',\n", - " 'clues': [('trust', 'confer a trust upon'),\n", - " ('entrust', 'confer a trust upon'),\n", - " ('confide', 'confer a trust upon'),\n", - " ('commit', 'confer a trust upon')]},\n", + " 'clues': [('confide', 'reveal in private; tell confidentially'),\n", + " ('commit', 'confer a trust upon'),\n", + " ('intrust', 'confer a trust upon'),\n", + " ('trust', 'confer a trust upon')]},\n", " {'answer': 'confined',\n", " 'hint': 'synonyms for confined',\n", - " 'clues': [('circumscribe', 'restrict or confine,'),\n", - " ('confine', 'close in; darkness enclosed him\"'),\n", + " 'clues': [('hold in', 'close in; darkness enclosed him\"'),\n", " ('throttle', 'place limits on (extent or access)'),\n", - " ('restrict', 'place limits on (extent or access)'),\n", - " ('limit', 'restrict or confine,'),\n", + " ('circumscribe', 'restrict or confine,'),\n", + " ('enclose', 'close in; darkness enclosed him\"'),\n", + " ('confine', 'deprive of freedom; take into confinement'),\n", + " ('detain', 'deprive of freedom; take into confinement'),\n", + " ('limit', 'place limits on (extent or access)'),\n", " ('bound', 'place limits on (extent or access)'),\n", + " ('restrict', 'place limits on (extent or access)'),\n", " ('restrain', 'place limits on (extent or access)'),\n", " ('hold', 'to close within bounds, limit or hold back from movement'),\n", - " ('detain', 'deprive of freedom; take into confinement'),\n", - " ('trammel', 'place limits on (extent or access)'),\n", - " ('enclose', 'close in; darkness enclosed him\"'),\n", - " ('hold in', 'close in; darkness enclosed him\"')]},\n", + " ('trammel', 'place limits on (extent or access)')]},\n", " {'answer': 'confining',\n", " 'hint': 'synonyms for confining',\n", - " 'clues': [('circumscribe', 'restrict or confine,'),\n", - " ('confine', 'close in; darkness enclosed him\"'),\n", + " 'clues': [('hold in', 'close in; darkness enclosed him\"'),\n", " ('throttle', 'place limits on (extent or access)'),\n", - " ('restrict', 'place limits on (extent or access)'),\n", - " ('limit', 'restrict or confine,'),\n", + " ('circumscribe', 'restrict or confine,'),\n", + " ('enclose', 'close in; darkness enclosed him\"'),\n", + " ('confine', 'deprive of freedom; take into confinement'),\n", + " ('detain', 'deprive of freedom; take into confinement'),\n", + " ('limit', 'place limits on (extent or access)'),\n", " ('bound', 'place limits on (extent or access)'),\n", + " ('restrict', 'place limits on (extent or access)'),\n", " ('restrain', 'place limits on (extent or access)'),\n", " ('hold', 'to close within bounds, limit or hold back from movement'),\n", - " ('detain', 'deprive of freedom; take into confinement'),\n", - " ('trammel', 'place limits on (extent or access)'),\n", - " ('enclose', 'close in; darkness enclosed him\"'),\n", - " ('hold in', 'close in; darkness enclosed him\"')]},\n", + " ('trammel', 'place limits on (extent or access)')]},\n", " {'answer': 'confirmed',\n", " 'hint': 'synonyms for confirmed',\n", - " 'clues': [('reassert', 'strengthen or make more firm'),\n", - " ('confirm', 'establish or strengthen as with new evidence or facts'),\n", - " ('affirm', 'establish or strengthen as with new evidence or facts'),\n", - " ('support', 'establish or strengthen as with new evidence or facts'),\n", + " 'clues': [('support',\n", + " 'establish or strengthen as with new evidence or facts'),\n", + " ('reassert', 'strengthen or make more firm'),\n", + " ('confirm', 'make more firm'),\n", " ('sustain', 'establish or strengthen as with new evidence or facts'),\n", " ('substantiate', 'establish or strengthen as with new evidence or facts'),\n", + " ('affirm', 'establish or strengthen as with new evidence or facts'),\n", " ('corroborate',\n", " 'establish or strengthen as with new evidence or facts')]},\n", " {'answer': 'confirming',\n", " 'hint': 'synonyms for confirming',\n", - " 'clues': [('reassert', 'strengthen or make more firm'),\n", - " ('confirm', 'establish or strengthen as with new evidence or facts'),\n", - " ('affirm', 'establish or strengthen as with new evidence or facts'),\n", - " ('support', 'establish or strengthen as with new evidence or facts'),\n", + " 'clues': [('support',\n", + " 'establish or strengthen as with new evidence or facts'),\n", + " ('reassert', 'strengthen or make more firm'),\n", + " ('confirm', 'make more firm'),\n", " ('sustain', 'establish or strengthen as with new evidence or facts'),\n", " ('substantiate', 'establish or strengthen as with new evidence or facts'),\n", + " ('affirm', 'establish or strengthen as with new evidence or facts'),\n", " ('corroborate',\n", " 'establish or strengthen as with new evidence or facts')]},\n", " {'answer': 'confiscate',\n", " 'hint': 'synonyms for confiscate',\n", - " 'clues': [('impound',\n", + " 'clues': [('attach',\n", + " 'take temporary possession of as a security, by legal authority'),\n", + " ('impound',\n", " 'take temporary possession of as a security, by legal authority'),\n", " ('sequester',\n", " 'take temporary possession of as a security, by legal authority'),\n", " ('seize',\n", - " 'take temporary possession of as a security, by legal authority'),\n", - " ('attach',\n", " 'take temporary possession of as a security, by legal authority')]},\n", " {'answer': 'conflicting',\n", " 'hint': 'synonyms for conflicting',\n", - " 'clues': [('conflict', 'be in conflict'),\n", + " 'clues': [('contravene', 'go against, as of rules and laws'),\n", + " ('conflict', 'go against, as of rules and laws'),\n", " ('run afoul', 'go against, as of rules and laws'),\n", - " ('contravene', 'go against, as of rules and laws'),\n", " ('infringe', 'go against, as of rules and laws')]},\n", " {'answer': 'confounded',\n", " 'hint': 'synonyms for confounded',\n", - " 'clues': [('fuddle',\n", + " 'clues': [('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('bedevil',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('discombobulate',\n", + " ('confound', 'mistake one thing for another'),\n", + " ('fuddle',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('fox',\n", + " ('throw',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('confuse', 'mistake one thing for another'),\n", - " ('throw',\n", + " ('fox',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('confound', 'mistake one thing for another')]},\n", + " ('bedevil',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n", " {'answer': 'confounding',\n", " 'hint': 'synonyms for confounding',\n", - " 'clues': [('fuddle',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('bedevil',\n", + " 'clues': [('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('discombobulate',\n", + " ('confound', 'mistake one thing for another'),\n", + " ('fuddle',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('fox',\n", + " ('throw',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('confuse', 'mistake one thing for another'),\n", - " ('throw',\n", + " ('fox',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('confound', 'mistake one thing for another')]},\n", + " ('bedevil',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n", " {'answer': 'confused',\n", " 'hint': 'synonyms for confused',\n", - " 'clues': [('disconcert', 'cause to feel embarrassment'),\n", - " ('discombobulate',\n", + " 'clues': [('mix up', 'assemble without order or sense'),\n", + " ('confuse', 'assemble without order or sense'),\n", + " ('fuddle',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('put off', 'cause to feel embarrassment'),\n", + " ('obnubilate', 'make unclear, indistinct, or blurred'),\n", + " ('jumble', 'assemble without order or sense'),\n", + " ('throw',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('confound', 'mistake one thing for another'),\n", " ('fox',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('befuddle',\n", + " ('bedevil',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('confuse', 'cause to feel embarrassment'),\n", - " ('put off', 'cause to feel embarrassment'),\n", - " ('confound',\n", + " ('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('obscure', 'make unclear, indistinct, or blurred'),\n", + " ('disconcert', 'cause to feel embarrassment'),\n", " ('flurry', 'cause to feel embarrassment'),\n", - " ('mix up', 'assemble without order or sense'),\n", - " ('jumble', 'assemble without order or sense'),\n", - " ('bedevil',\n", + " ('blur', 'make unclear, indistinct, or blurred')]},\n", + " {'answer': 'confusing',\n", + " 'hint': 'synonyms for confusing',\n", + " 'clues': [('mix up', 'assemble without order or sense'),\n", + " ('confuse', 'assemble without order or sense'),\n", + " ('fuddle',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('put off', 'cause to feel embarrassment'),\n", " ('obnubilate', 'make unclear, indistinct, or blurred'),\n", - " ('blur', 'make unclear, indistinct, or blurred'),\n", + " ('jumble', 'assemble without order or sense'),\n", " ('throw',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('obscure', 'make unclear, indistinct, or blurred')]},\n", - " {'answer': 'confusing',\n", - " 'hint': 'synonyms for confusing',\n", - " 'clues': [('disconcert', 'cause to feel embarrassment'),\n", - " ('discombobulate',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('confound', 'mistake one thing for another'),\n", " ('fox',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('befuddle',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('confuse', 'cause to feel embarrassment'),\n", - " ('put off', 'cause to feel embarrassment'),\n", - " ('confound',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('flurry', 'cause to feel embarrassment'),\n", - " ('mix up', 'assemble without order or sense'),\n", - " ('jumble', 'assemble without order or sense'),\n", " ('bedevil',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('obnubilate', 'make unclear, indistinct, or blurred'),\n", - " ('blur', 'make unclear, indistinct, or blurred'),\n", - " ('throw',\n", + " ('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('obscure', 'make unclear, indistinct, or blurred')]},\n", + " ('obscure', 'make unclear, indistinct, or blurred'),\n", + " ('disconcert', 'cause to feel embarrassment'),\n", + " ('flurry', 'cause to feel embarrassment'),\n", + " ('blur', 'make unclear, indistinct, or blurred')]},\n", " {'answer': 'congested',\n", " 'hint': 'synonyms for congested',\n", - " 'clues': [('back up', 'become or cause to become obstructed'),\n", + " 'clues': [('foul', 'become or cause to become obstructed'),\n", " ('clog up', 'become or cause to become obstructed'),\n", - " ('foul', 'become or cause to become obstructed'),\n", + " ('back up', 'become or cause to become obstructed'),\n", + " ('clog', 'become or cause to become obstructed'),\n", " ('choke off', 'become or cause to become obstructed'),\n", - " ('choke', 'become or cause to become obstructed'),\n", " ('congest', 'become or cause to become obstructed'),\n", - " ('clog', 'become or cause to become obstructed')]},\n", + " ('choke', 'become or cause to become obstructed')]},\n", " {'answer': 'conglomerate',\n", " 'hint': 'synonyms for conglomerate',\n", - " 'clues': [('gather', 'collect or gather'),\n", + " 'clues': [('pile up', 'collect or gather'),\n", + " ('gather', 'collect or gather'),\n", " ('cumulate', 'collect or gather'),\n", - " ('amass', 'collect or gather'),\n", - " ('pile up', 'collect or gather')]},\n", + " ('amass', 'collect or gather')]},\n", " {'answer': 'conjoined',\n", " 'hint': 'synonyms for conjoined',\n", - " 'clues': [('join', 'make contact or come together'),\n", + " 'clues': [('conjoin', 'take in marriage'),\n", " ('get hitched with', 'take in marriage'),\n", - " ('conjoin', 'take in marriage'),\n", - " ('wed', 'take in marriage'),\n", " ('espouse', 'take in marriage'),\n", " ('get married', 'take in marriage'),\n", - " ('hook up with', 'take in marriage'),\n", - " ('marry', 'take in marriage')]},\n", + " ('join', 'make contact or come together'),\n", + " ('marry', 'take in marriage'),\n", + " ('wed', 'take in marriage'),\n", + " ('hook up with', 'take in marriage')]},\n", " {'answer': 'connected',\n", " 'hint': 'synonyms for connected',\n", - " 'clues': [('relate', 'make a logical or causal connection'),\n", - " ('tie in', 'make a logical or causal connection'),\n", - " ('connect', 'make a logical or causal connection'),\n", + " 'clues': [('connect', 'land on or hit solidly'),\n", + " ('tie', 'connect, fasten, or put together two or more pieces'),\n", + " ('touch base', 'establish communication with someone'),\n", + " ('join', 'be or become joined or united or linked'),\n", + " ('plug in', 'plug into an outlet'),\n", " ('link up', 'connect, fasten, or put together two or more pieces'),\n", " ('colligate', 'make a logical or causal connection'),\n", - " ('tie', 'connect, fasten, or put together two or more pieces'),\n", + " ('unite', 'be or become joined or united or linked'),\n", " ('link', 'make a logical or causal connection'),\n", - " ('plug into', 'plug into an outlet'),\n", - " ('associate', 'make a logical or causal connection'),\n", + " ('tie in', 'make a logical or causal connection'),\n", + " ('relate', 'make a logical or causal connection'),\n", " ('get in touch', 'establish communication with someone'),\n", - " ('unite', 'be or become joined or united or linked'),\n", - " ('join', 'be or become joined or united or linked'),\n", - " ('touch base', 'establish communication with someone')]},\n", + " ('associate', 'make a logical or causal connection')]},\n", " {'answer': 'consecrate',\n", " 'hint': 'synonyms for consecrate',\n", " 'clues': [('hallow', 'render holy by means of religious rites'),\n", - " ('bless', 'render holy by means of religious rites'),\n", - " ('commit', 'give entirely to a specific person, activity, or cause'),\n", - " ('give', 'give entirely to a specific person, activity, or cause'),\n", - " ('ordinate', 'appoint to a clerical posts'),\n", - " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", - " ('vow', 'dedicate to a deity by a vow'),\n", " ('order', 'appoint to a clerical posts'),\n", " ('sanctify', 'render holy by means of religious rites'),\n", + " ('bless', 'render holy by means of religious rites'),\n", " ('ordain', 'appoint to a clerical posts'),\n", - " ('devote', 'give entirely to a specific person, activity, or cause')]},\n", + " ('vow', 'dedicate to a deity by a vow'),\n", + " ('ordinate', 'appoint to a clerical posts'),\n", + " ('devote', 'give entirely to a specific person, activity, or cause'),\n", + " ('give', 'give entirely to a specific person, activity, or cause'),\n", + " ('commit', 'give entirely to a specific person, activity, or cause'),\n", + " ('dedicate', 'give entirely to a specific person, activity, or cause')]},\n", " {'answer': 'consecrated',\n", " 'hint': 'synonyms for consecrated',\n", - " 'clues': [('hallow', 'render holy by means of religious rites'),\n", + " 'clues': [('consecrate', 'appoint to a clerical posts'),\n", + " ('hallow', 'render holy by means of religious rites'),\n", + " ('order', 'appoint to a clerical posts'),\n", + " ('sanctify', 'render holy by means of religious rites'),\n", " ('bless', 'render holy by means of religious rites'),\n", - " ('commit', 'give entirely to a specific person, activity, or cause'),\n", + " ('ordain', 'appoint to a clerical posts'),\n", + " ('vow', 'dedicate to a deity by a vow'),\n", " ('ordinate', 'appoint to a clerical posts'),\n", + " ('devote', 'give entirely to a specific person, activity, or cause'),\n", " ('give', 'give entirely to a specific person, activity, or cause'),\n", - " ('consecrate', 'appoint to a clerical posts'),\n", - " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", - " ('vow', 'dedicate to a deity by a vow'),\n", - " ('order', 'appoint to a clerical posts'),\n", - " ('ordain', 'appoint to a clerical posts'),\n", - " ('sanctify', 'render holy by means of religious rites'),\n", - " ('devote', 'give entirely to a specific person, activity, or cause')]},\n", + " ('commit', 'give entirely to a specific person, activity, or cause'),\n", + " ('dedicate', 'give entirely to a specific person, activity, or cause')]},\n", " {'answer': 'conserved',\n", " 'hint': 'synonyms for conserved',\n", " 'clues': [('husband', 'use cautiously and frugally'),\n", + " ('conserve', 'preserve with sugar'),\n", + " ('economize', 'use cautiously and frugally'),\n", " ('maintain',\n", " 'keep in safety and protect from harm, decay, loss, or destruction'),\n", - " ('conserve', 'use cautiously and frugally'),\n", - " ('economize', 'use cautiously and frugally'),\n", " ('preserve',\n", " 'keep in safety and protect from harm, decay, loss, or destruction'),\n", " ('keep up',\n", " 'keep in safety and protect from harm, decay, loss, or destruction')]},\n", " {'answer': 'considered',\n", " 'hint': 'synonyms for considered',\n", - " 'clues': [('look at', 'look at carefully; study mentally'),\n", - " ('deliberate', 'think about carefully; weigh'),\n", - " ('weigh', 'show consideration for; take into account'),\n", - " ('consider', 'think about carefully; weigh'),\n", - " ('view', 'look at carefully; study mentally'),\n", - " ('count', 'show consideration for; take into account'),\n", - " ('debate', 'think about carefully; weigh'),\n", + " 'clues': [('think', 'judge or regard; look upon; judge'),\n", + " ('consider', 'look at carefully; study mentally'),\n", " ('regard', 'deem to be'),\n", - " ('take', 'take into consideration for exemplifying purposes'),\n", - " ('moot', 'think about carefully; weigh'),\n", - " ('believe', 'judge or regard; look upon; judge'),\n", - " ('think', 'judge or regard; look upon; judge'),\n", - " ('turn over', 'think about carefully; weigh'),\n", - " ('study', 'give careful consideration to'),\n", + " ('look at', 'take into consideration for exemplifying purposes'),\n", " ('deal', 'take into consideration for exemplifying purposes'),\n", + " ('count', 'show consideration for; take into account'),\n", + " ('weigh', 'show consideration for; take into account'),\n", " ('conceive', 'judge or regard; look upon; judge'),\n", + " ('take', 'take into consideration for exemplifying purposes'),\n", + " ('deliberate', 'think about carefully; weigh'),\n", + " ('view', 'deem to be'),\n", " ('see', 'deem to be'),\n", - " ('reckon', 'deem to be')]},\n", + " ('reckon', 'deem to be'),\n", + " ('study', 'give careful consideration to'),\n", + " ('debate', 'think about carefully; weigh'),\n", + " ('turn over', 'think about carefully; weigh'),\n", + " ('moot', 'think about carefully; weigh'),\n", + " ('believe', 'judge or regard; look upon; judge')]},\n", " {'answer': 'consoling',\n", " 'hint': 'synonyms for consoling',\n", - " 'clues': [('soothe', 'give moral or emotional strength to'),\n", - " ('console', 'give moral or emotional strength to'),\n", - " ('solace', 'give moral or emotional strength to'),\n", - " ('comfort', 'give moral or emotional strength to')]},\n", + " 'clues': [('solace', 'give moral or emotional strength to'),\n", + " ('soothe', 'give moral or emotional strength to'),\n", + " ('comfort', 'give moral or emotional strength to'),\n", + " ('console', 'give moral or emotional strength to')]},\n", " {'answer': 'constituted',\n", " 'hint': 'synonyms for constituted',\n", - " 'clues': [('represent', 'form or compose'),\n", - " ('nominate', 'create and charge with a task or function'),\n", - " ('constitute', 'create and charge with a task or function'),\n", + " 'clues': [('make up', 'form or compose'),\n", + " ('appoint', 'create and charge with a task or function'),\n", + " ('constitute', 'form or compose'),\n", + " ('name', 'create and charge with a task or function'),\n", + " ('make', 'to compose or represent:'),\n", " ('institute', 'set up or lay the groundwork for'),\n", - " ('form', 'to compose or represent:'),\n", - " ('found', 'set up or lay the groundwork for'),\n", + " ('establish', 'set up or lay the groundwork for'),\n", + " ('comprise', 'form or compose'),\n", + " ('nominate', 'create and charge with a task or function'),\n", " ('plant', 'set up or lay the groundwork for'),\n", - " ('make', 'to compose or represent:'),\n", - " ('name', 'create and charge with a task or function'),\n", - " ('appoint', 'create and charge with a task or function'),\n", + " ('found', 'set up or lay the groundwork for'),\n", + " ('form', 'to compose or represent:'),\n", " ('be', 'form or compose'),\n", - " ('make up', 'form or compose'),\n", - " ('comprise', 'form or compose'),\n", - " ('establish', 'set up or lay the groundwork for')]},\n", + " ('represent', 'form or compose')]},\n", " {'answer': 'constrained',\n", " 'hint': 'synonyms for constrained',\n", - " 'clues': [('stiffen', 'restrict'),\n", - " ('restrain', 'hold back'),\n", + " 'clues': [('encumber', 'hold back'),\n", " ('constrain', 'restrict'),\n", - " ('tighten', 'restrict'),\n", + " ('restrain', 'hold back'),\n", " ('tighten up', 'restrict'),\n", - " ('cumber', 'hold back')]},\n", + " ('tighten', 'restrict'),\n", + " ('stiffen', 'restrict')]},\n", " {'answer': 'constraining',\n", " 'hint': 'synonyms for constraining',\n", - " 'clues': [('stiffen', 'restrict'),\n", - " ('restrain', 'hold back'),\n", + " 'clues': [('encumber', 'hold back'),\n", " ('constrain', 'restrict'),\n", - " ('tighten', 'restrict'),\n", + " ('restrain', 'hold back'),\n", " ('tighten up', 'restrict'),\n", - " ('cumber', 'hold back')]},\n", + " ('tighten', 'restrict'),\n", + " ('stiffen', 'restrict')]},\n", " {'answer': 'constricted',\n", " 'hint': 'synonyms for constricted',\n", - " 'clues': [('compress', 'squeeze or press together'),\n", - " ('compact', 'squeeze or press together'),\n", - " ('contract', 'squeeze or press together'),\n", + " 'clues': [('constrict', 'become tight or as if tight'),\n", + " ('squeeze', 'squeeze or press together'),\n", " ('constringe', 'become tight or as if tight'),\n", - " ('constrict', 'squeeze or press together'),\n", - " ('narrow', 'become tight or as if tight'),\n", + " ('compact', 'squeeze or press together'),\n", " ('press', 'squeeze or press together'),\n", - " ('squeeze', 'squeeze or press together')]},\n", + " ('compress', 'squeeze or press together'),\n", + " ('narrow', 'become tight or as if tight'),\n", + " ('contract', 'squeeze or press together')]},\n", " {'answer': 'constricting',\n", " 'hint': 'synonyms for constricting',\n", - " 'clues': [('compress', 'squeeze or press together'),\n", - " ('compact', 'squeeze or press together'),\n", - " ('contract', 'squeeze or press together'),\n", + " 'clues': [('constrict', 'become tight or as if tight'),\n", + " ('squeeze', 'squeeze or press together'),\n", " ('constringe', 'become tight or as if tight'),\n", - " ('constrict', 'squeeze or press together'),\n", - " ('narrow', 'become tight or as if tight'),\n", + " ('compact', 'squeeze or press together'),\n", " ('press', 'squeeze or press together'),\n", - " ('squeeze', 'squeeze or press together')]},\n", + " ('compress', 'squeeze or press together'),\n", + " ('narrow', 'become tight or as if tight'),\n", + " ('contract', 'squeeze or press together')]},\n", " {'answer': 'consuming',\n", " 'hint': 'synonyms for consuming',\n", - " 'clues': [('ware', 'spend extravagantly'),\n", - " ('consume', 'use up (resources or materials)'),\n", + " 'clues': [('wipe out', 'use up (resources or materials)'),\n", + " ('consume', 'engage fully'),\n", + " ('have', 'serve oneself to, or consume regularly'),\n", + " ('run through', 'use up (resources or materials)'),\n", + " ('eat', 'use up (resources or materials)'),\n", + " ('go through', 'eat immoderately'),\n", + " ('deplete', 'use up (resources or materials)'),\n", " ('devour', 'eat immoderately'),\n", + " ('squander', 'spend extravagantly'),\n", + " ('take in', 'serve oneself to, or consume regularly'),\n", " ('waste', 'spend extravagantly'),\n", - " ('use up', 'use up (resources or materials)'),\n", - " ('eat up', 'use up (resources or materials)'),\n", - " ('eat', 'use up (resources or materials)'),\n", - " ('wipe out', 'use up (resources or materials)'),\n", " ('exhaust', 'use up (resources or materials)'),\n", - " ('deplete', 'use up (resources or materials)'),\n", - " ('run through', 'use up (resources or materials)'),\n", - " ('down', 'eat immoderately'),\n", " ('ingest', 'serve oneself to, or consume regularly'),\n", - " ('take in', 'serve oneself to, or consume regularly'),\n", - " ('squander', 'spend extravagantly'),\n", + " ('use up', 'use up (resources or materials)'),\n", + " ('eat up', 'use up (resources or materials)'),\n", + " ('ware', 'spend extravagantly'),\n", " ('take', 'serve oneself to, or consume regularly'),\n", - " ('go through', 'eat immoderately'),\n", - " ('have', 'serve oneself to, or consume regularly')]},\n", + " ('down', 'eat immoderately')]},\n", " {'answer': 'contained',\n", " 'hint': 'synonyms for contained',\n", - " 'clues': [('contain',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('control',\n", + " 'clues': [('bear', 'contain or hold; have within'),\n", + " ('check',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('hold', 'be capable of holding or containing'),\n", - " ('stop',\n", + " ('contain',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", " ('comprise', 'include or contain; have as a component'),\n", + " ('hold', 'contain or hold; have within'),\n", + " ('curb',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('hold in',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('take', 'be capable of holding or containing'),\n", " ('turn back',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('incorporate', 'include or contain; have as a component'),\n", " ('arrest',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('check',\n", + " ('hold back',\n", " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('bear', 'contain or hold; have within'),\n", - " ('curb',\n", + " ('control',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('moderate',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('hold in',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('hold back',\n", - " 'hold back, as of a danger or an enemy; check the expansion or influence of'),\n", - " ('carry', 'contain or hold; have within')]},\n", + " ('carry', 'contain or hold; have within'),\n", + " ('incorporate', 'include or contain; have as a component'),\n", + " ('stop',\n", + " 'hold back, as of a danger or an enemy; check the expansion or influence of')]},\n", " {'answer': 'continued',\n", " 'hint': 'synonyms for continued',\n", - " 'clues': [('retain',\n", - " 'allow to remain in a place or position or maintain a property or feature'),\n", + " 'clues': [('go forward', 'move ahead; travel onward in time or space'),\n", + " ('continue', 'continue after an interruption'),\n", " ('proceed', 'move ahead; travel onward in time or space'),\n", - " ('continue', 'continue talking; he continued,'),\n", - " ('stay on', 'continue in a place, position, or situation'),\n", - " ('bear on',\n", - " 'keep or maintain in unaltered condition; cause to remain or last'),\n", - " ('go on', 'continue talking; he continued,'),\n", - " ('go along', 'continue a certain state, condition, or activity'),\n", - " ('uphold',\n", - " 'keep or maintain in unaltered condition; cause to remain or last'),\n", - " ('extend', 'span an interval of distance, space or time'),\n", - " ('keep', 'continue a certain state, condition, or activity'),\n", - " ('go forward', 'move ahead; travel onward in time or space'),\n", + " ('stay', 'continue in a place, position, or situation'),\n", + " ('keep on',\n", + " 'allow to remain in a place or position or maintain a property or feature'),\n", " ('remain', 'continue in a place, position, or situation'),\n", - " ('carry on', 'continue talking; he continued,'),\n", " ('persist in',\n", " 'do something repeatedly and showing no intention to stop'),\n", - " ('keep on',\n", - " 'allow to remain in a place or position or maintain a property or feature'),\n", - " ('stay', 'continue in a place, position, or situation'),\n", - " ('cover', 'span an interval of distance, space or time'),\n", + " ('carry on', 'continue talking; he continued,'),\n", " ('preserve',\n", - " 'keep or maintain in unaltered condition; cause to remain or last')]},\n", - " {'answer': 'continuing',\n", - " 'hint': 'synonyms for continuing',\n", - " 'clues': [('retain',\n", - " 'allow to remain in a place or position or maintain a property or feature'),\n", - " ('proceed', 'move ahead; travel onward in time or space'),\n", - " ('continue', 'continue talking; he continued,'),\n", - " ('stay on', 'continue in a place, position, or situation'),\n", + " 'keep or maintain in unaltered condition; cause to remain or last'),\n", " ('bear on',\n", " 'keep or maintain in unaltered condition; cause to remain or last'),\n", - " ('go on', 'continue talking; he continued,'),\n", - " ('go along', 'continue a certain state, condition, or activity'),\n", + " ('go on', 'continue a certain state, condition, or activity'),\n", + " ('extend', 'span an interval of distance, space or time'),\n", + " ('keep',\n", + " 'allow to remain in a place or position or maintain a property or feature'),\n", + " ('cover', 'span an interval of distance, space or time'),\n", + " ('retain',\n", + " 'allow to remain in a place or position or maintain a property or feature'),\n", " ('uphold',\n", " 'keep or maintain in unaltered condition; cause to remain or last'),\n", - " ('extend', 'span an interval of distance, space or time'),\n", - " ('keep', 'continue a certain state, condition, or activity'),\n", - " ('go forward', 'move ahead; travel onward in time or space'),\n", + " ('stay on', 'continue in a place, position, or situation'),\n", + " ('go along', 'continue a certain state, condition, or activity')]},\n", + " {'answer': 'continuing',\n", + " 'hint': 'synonyms for continuing',\n", + " 'clues': [('go forward', 'move ahead; travel onward in time or space'),\n", + " ('continue', 'continue after an interruption'),\n", + " ('proceed', 'move ahead; travel onward in time or space'),\n", + " ('stay', 'continue in a place, position, or situation'),\n", + " ('keep on',\n", + " 'allow to remain in a place or position or maintain a property or feature'),\n", " ('remain', 'continue in a place, position, or situation'),\n", - " ('carry on', 'continue talking; he continued,'),\n", " ('persist in',\n", " 'do something repeatedly and showing no intention to stop'),\n", - " ('keep on',\n", + " ('carry on', 'continue talking; he continued,'),\n", + " ('preserve',\n", + " 'keep or maintain in unaltered condition; cause to remain or last'),\n", + " ('bear on',\n", + " 'keep or maintain in unaltered condition; cause to remain or last'),\n", + " ('go on', 'continue a certain state, condition, or activity'),\n", + " ('extend', 'span an interval of distance, space or time'),\n", + " ('keep',\n", " 'allow to remain in a place or position or maintain a property or feature'),\n", - " ('stay', 'continue in a place, position, or situation'),\n", " ('cover', 'span an interval of distance, space or time'),\n", - " ('preserve',\n", - " 'keep or maintain in unaltered condition; cause to remain or last')]},\n", + " ('retain',\n", + " 'allow to remain in a place or position or maintain a property or feature'),\n", + " ('uphold',\n", + " 'keep or maintain in unaltered condition; cause to remain or last'),\n", + " ('stay on', 'continue in a place, position, or situation'),\n", + " ('go along', 'continue a certain state, condition, or activity')]},\n", " {'answer': 'contorted',\n", " 'hint': 'synonyms for contorted',\n", " 'clues': [('contort', 'twist and press out of shape'),\n", + " ('deform', 'twist and press out of shape'),\n", " ('wring', 'twist and press out of shape'),\n", - " ('distort', 'twist and press out of shape'),\n", - " ('deform', 'twist and press out of shape')]},\n", + " ('distort', 'twist and press out of shape')]},\n", " {'answer': 'contracted',\n", " 'hint': 'synonyms for contracted',\n", - " 'clues': [('contract', 'compress or concentrate'),\n", - " ('compress', 'squeeze or press together'),\n", - " ('reduce', 'reduce in scope while retaining essential elements'),\n", + " 'clues': [('contract', 'engage by written agreement'),\n", + " ('undertake', 'enter into a contractual arrangement'),\n", + " ('sign', 'engage by written agreement'),\n", + " ('condense', 'compress or concentrate'),\n", + " ('constrict', 'squeeze or press together'),\n", + " ('concentrate', 'compress or concentrate'),\n", + " ('cut', 'reduce in scope while retaining essential elements'),\n", " ('compact', 'squeeze or press together'),\n", " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", - " ('abridge', 'reduce in scope while retaining essential elements'),\n", + " ('press', 'squeeze or press together'),\n", + " ('sign up', 'engage by written agreement'),\n", + " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", " ('take', 'be stricken by an illness, fall victim to an illness'),\n", - " ('condense', 'compress or concentrate'),\n", " ('sign on', 'engage by written agreement'),\n", + " ('squeeze', 'squeeze or press together'),\n", + " ('narrow', 'make or become more narrow or restricted'),\n", " ('shrink', 'become smaller or draw together'),\n", " ('get', 'be stricken by an illness, fall victim to an illness'),\n", - " ('undertake', 'enter into a contractual arrangement'),\n", - " ('concentrate', 'compress or concentrate'),\n", - " ('press', 'squeeze or press together'),\n", - " ('cut', 'reduce in scope while retaining essential elements'),\n", - " ('squeeze', 'squeeze or press together'),\n", - " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", - " ('sign up', 'engage by written agreement'),\n", - " ('constrict', 'squeeze or press together'),\n", - " ('sign', 'engage by written agreement'),\n", - " ('shorten', 'reduce in scope while retaining essential elements'),\n", - " ('narrow', 'make or become more narrow or restricted')]},\n", + " ('abridge', 'reduce in scope while retaining essential elements'),\n", + " ('reduce', 'reduce in scope while retaining essential elements'),\n", + " ('compress', 'squeeze or press together'),\n", + " ('shorten', 'reduce in scope while retaining essential elements')]},\n", " {'answer': 'contributing',\n", " 'hint': 'synonyms for contributing',\n", - " 'clues': [('lend', 'bestow a quality on'),\n", - " ('lead', 'be conducive to'),\n", - " ('bestow', 'bestow a quality on'),\n", + " 'clues': [('impart', 'bestow a quality on'),\n", + " ('lend', 'bestow a quality on'),\n", " ('conduce', 'be conducive to'),\n", + " ('lead', 'be conducive to'),\n", + " ('contribute', 'provide'),\n", + " ('add', 'bestow a quality on'),\n", + " ('kick in', 'contribute to some cause'),\n", " ('chip in', 'contribute to some cause'),\n", " ('give', 'contribute to some cause'),\n", - " ('kick in', 'contribute to some cause'),\n", - " ('contribute', 'be conducive to'),\n", - " ('put up', 'provide'),\n", " ('bring', 'bestow a quality on'),\n", - " ('impart', 'bestow a quality on'),\n", - " ('add', 'bestow a quality on')]},\n", + " ('bestow', 'bestow a quality on'),\n", + " ('put up', 'provide')]},\n", " {'answer': 'contrived',\n", " 'hint': 'synonyms for contrived',\n", - " 'clues': [('contrive',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('formulate',\n", + " 'clues': [('throw', 'put or send forth'),\n", + " ('plan', 'make or work out a plan for; devise'),\n", + " ('project', 'make or work out a plan for; devise'),\n", + " ('invent',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('forge',\n", + " ('devise',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " ('contrive', 'make or work out a plan for; devise'),\n", " ('excogitate',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('project', 'make or work out a plan for; devise'),\n", " ('cast', 'put or send forth'),\n", - " ('design', 'make or work out a plan for; devise'),\n", - " ('throw', 'put or send forth'),\n", - " ('plan', 'make or work out a plan for; devise'),\n", - " ('invent',\n", + " ('forge',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('devise',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort')]},\n", + " ('formulate',\n", + " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " ('design', 'make or work out a plan for; devise')]},\n", " {'answer': 'controlled',\n", " 'hint': 'synonyms for controlled',\n", - " 'clues': [('verify',\n", - " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n", - " ('command', 'exercise authoritative control or power over'),\n", - " ('see to it',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('ascertain',\n", + " 'clues': [('ascertain',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('check',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('control',\n", " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n", - " ('see',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('contain',\n", + " ('verify',\n", + " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n", + " ('curb',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('manipulate',\n", - " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n", - " ('hold',\n", + " ('hold in',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('check',\n", + " ('master', 'have a firm understanding or knowledge of; be on top of'),\n", + " ('see',\n", " 'be careful or certain to do something; make certain of something'),\n", " ('assure',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('master', 'have a firm understanding or knowledge of; be on top of'),\n", - " ('curb',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('keep in line',\n", - " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n", - " ('moderate',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('hold in',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('ensure',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('contain',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('insure',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('operate', 'handle and cause to function')]},\n", - " {'answer': 'controlling',\n", - " 'hint': 'synonyms for controlling',\n", - " 'clues': [('verify',\n", - " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n", " ('command', 'exercise authoritative control or power over'),\n", + " ('hold',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('operate', 'handle and cause to function'),\n", " ('see to it',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('ascertain',\n", + " ('moderate',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('keep in line',\n", + " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n", + " ('manipulate',\n", + " \"control (others or oneself) or influence skillfully, usually to one's advantage\")]},\n", + " {'answer': 'controlling',\n", + " 'hint': 'synonyms for controlling',\n", + " 'clues': [('ascertain',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('check',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('control',\n", " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n", + " ('verify',\n", + " 'check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard'),\n", + " ('curb',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('hold in',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('master', 'have a firm understanding or knowledge of; be on top of'),\n", " ('see',\n", " 'be careful or certain to do something; make certain of something'),\n", + " ('assure',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('ensure',\n", + " 'be careful or certain to do something; make certain of something'),\n", " ('contain',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('manipulate',\n", - " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n", + " ('insure',\n", + " 'be careful or certain to do something; make certain of something'),\n", + " ('command', 'exercise authoritative control or power over'),\n", " ('hold',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('check',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('assure',\n", + " ('operate', 'handle and cause to function'),\n", + " ('see to it',\n", " 'be careful or certain to do something; make certain of something'),\n", - " ('master', 'have a firm understanding or knowledge of; be on top of'),\n", - " ('curb',\n", + " ('moderate',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", " ('keep in line',\n", " \"control (others or oneself) or influence skillfully, usually to one's advantage\"),\n", - " ('moderate',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('hold in',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('ensure',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('insure',\n", - " 'be careful or certain to do something; make certain of something'),\n", - " ('operate', 'handle and cause to function')]},\n", + " ('manipulate',\n", + " \"control (others or oneself) or influence skillfully, usually to one's advantage\")]},\n", " {'answer': 'converted',\n", " 'hint': 'synonyms for converted',\n", - " 'clues': [('commute',\n", + " 'clues': [('win over',\n", + " 'make (someone) agree, understand, or realize the truth or validity of something'),\n", + " ('convert',\n", + " 'make (someone) agree, understand, or realize the truth or validity of something'),\n", + " ('commute',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", - " ('convert', 'complete successfully'),\n", - " ('exchange',\n", + " ('change',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", - " ('win over',\n", - " 'make (someone) agree, understand, or realize the truth or validity of something'),\n", " ('change over',\n", " 'change from one system to another or to a new plan or policy'),\n", " ('convince',\n", " 'make (someone) agree, understand, or realize the truth or validity of something')]},\n", " {'answer': 'convolute',\n", " 'hint': 'synonyms for convolute',\n", - " 'clues': [('sophisticate',\n", - " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", - " ('twist',\n", + " 'clues': [('convolve', 'curl, wind, or twist together'),\n", + " ('sophisticate',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", " ('twist around',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", - " ('convolve', 'curl, wind, or twist together'),\n", + " ('twist',\n", + " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", " ('pervert',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive')]},\n", " {'answer': 'convoluted',\n", " 'hint': 'synonyms for convoluted',\n", - " 'clues': [('sophisticate',\n", + " 'clues': [('convolve', 'curl, wind, or twist together'),\n", + " ('sophisticate',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", - " ('convolute',\n", + " ('twist around',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", + " ('convolute', 'curl, wind, or twist together'),\n", " ('twist',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", - " ('twist around',\n", - " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive'),\n", - " ('convolve', 'curl, wind, or twist together'),\n", " ('pervert',\n", " 'practice sophistry; change the meaning of or be vague about in order to mislead or deceive')]},\n", " {'answer': 'cooked',\n", " 'hint': 'synonyms for cooked',\n", - " 'clues': [('misrepresent', 'tamper, with the purpose of deception'),\n", - " ('cook', 'prepare a hot meal'),\n", - " ('ready', 'prepare for eating by applying heat'),\n", - " ('fudge', 'tamper, with the purpose of deception'),\n", - " ('wangle', 'tamper, with the purpose of deception'),\n", - " ('falsify', 'tamper, with the purpose of deception'),\n", - " ('prepare', 'prepare for eating by applying heat'),\n", - " ('make', 'prepare for eating by applying heat'),\n", + " 'clues': [('cook',\n", + " 'transform and make suitable for consumption by heating'),\n", " ('fix', 'prepare for eating by applying heat'),\n", " ('manipulate', 'tamper, with the purpose of deception'),\n", - " ('fake', 'tamper, with the purpose of deception')]},\n", - " {'answer': 'correct',\n", - " 'hint': 'synonyms for correct',\n", - " 'clues': [('make up', 'adjust for'),\n", - " ('objurgate', 'censure severely'),\n", - " ('chasten', 'censure severely'),\n", - " ('chastise', 'censure severely'),\n", - " ('right', 'make right or correct'),\n", - " ('set',\n", - " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", + " ('falsify', 'tamper, with the purpose of deception'),\n", + " ('wangle', 'tamper, with the purpose of deception'),\n", + " ('fudge', 'tamper, with the purpose of deception'),\n", + " ('ready', 'prepare for eating by applying heat'),\n", + " ('prepare', 'prepare for eating by applying heat'),\n", + " ('fake', 'tamper, with the purpose of deception'),\n", + " ('misrepresent', 'tamper, with the purpose of deception'),\n", + " ('make', 'prepare for eating by applying heat')]},\n", + " {'answer': 'correct',\n", + " 'hint': 'synonyms for correct',\n", + " 'clues': [('slump', 'go down in value'),\n", " ('compensate', 'make reparations or amends for'),\n", - " ('even up', 'adjust for'),\n", + " ('rectify', 'make right or correct'),\n", + " ('objurgate', 'censure severely'),\n", " ('castigate', 'censure severely'),\n", - " ('redress', 'make reparations or amends for'),\n", + " ('right', 'make right or correct'),\n", + " ('make up', 'adjust for'),\n", " ('even out', 'adjust for'),\n", - " ('adjust',\n", + " ('even off', 'adjust for'),\n", + " ('set',\n", " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", " ('discipline', 'punish in order to gain control or enforce obedience'),\n", - " ('rectify', 'make right or correct'),\n", + " ('redress', 'make reparations or amends for'),\n", " ('sort out', 'punish in order to gain control or enforce obedience'),\n", - " ('counterbalance', 'adjust for'),\n", - " ('slump', 'go down in value'),\n", - " ('even off', 'adjust for'),\n", - " ('decline', 'go down in value')]},\n", - " {'answer': 'corrected',\n", - " 'hint': 'synonyms for corrected',\n", - " 'clues': [('make up', 'adjust for'),\n", - " ('objurgate', 'censure severely'),\n", + " ('even up', 'adjust for'),\n", " ('chasten', 'censure severely'),\n", " ('chastise', 'censure severely'),\n", - " ('correct', 'treat a defect'),\n", - " ('right', 'make right or correct'),\n", - " ('set',\n", + " ('decline', 'go down in value'),\n", + " ('adjust',\n", " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", + " ('counterbalance', 'adjust for')]},\n", + " {'answer': 'corrected',\n", + " 'hint': 'synonyms for corrected',\n", + " 'clues': [('slump', 'go down in value'),\n", " ('compensate', 'make reparations or amends for'),\n", - " ('even up', 'adjust for'),\n", + " ('correct', 'censure severely'),\n", + " ('rectify', 'make right or correct'),\n", + " ('objurgate', 'censure severely'),\n", " ('castigate', 'censure severely'),\n", - " ('redress', 'make reparations or amends for'),\n", + " ('right', 'make right or correct'),\n", + " ('make up', 'adjust for'),\n", " ('even out', 'adjust for'),\n", - " ('adjust',\n", + " ('even off', 'adjust for'),\n", + " ('set',\n", " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", - " ('rectify', 'make right or correct'),\n", - " ('sort out', 'punish in order to gain control or enforce obedience'),\n", - " ('counterbalance', 'adjust for'),\n", " ('discipline', 'punish in order to gain control or enforce obedience'),\n", - " ('even off', 'adjust for'),\n", + " ('redress', 'make reparations or amends for'),\n", + " ('sort out', 'punish in order to gain control or enforce obedience'),\n", + " ('even up', 'adjust for'),\n", + " ('chasten', 'censure severely'),\n", + " ('chastise', 'censure severely'),\n", " ('decline', 'go down in value'),\n", - " ('slump', 'go down in value')]},\n", + " ('adjust',\n", + " 'alter or regulate so as to achieve accuracy or conform to a standard'),\n", + " ('counterbalance', 'adjust for')]},\n", " {'answer': 'corresponding',\n", " 'hint': 'synonyms for corresponding',\n", - " 'clues': [('gibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('correspond', 'exchange messages'),\n", + " 'clues': [('stand for',\n", + " 'take the place of or be parallel or equivalent to'),\n", " ('match',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('tally',\n", + " ('fit',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('correspond', 'take the place of or be parallel or equivalent to'),\n", " ('equate', 'be equivalent or parallel, in mathematics'),\n", - " ('stand for', 'take the place of or be parallel or equivalent to'),\n", - " ('fit',\n", + " ('represent', 'take the place of or be parallel or equivalent to'),\n", + " ('tally',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('jibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('gibe',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('check',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('represent', 'take the place of or be parallel or equivalent to'),\n", " ('agree',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('jibe',\n", " 'be compatible, similar or consistent; coincide in their characteristics')]},\n", " {'answer': 'corrupt',\n", " 'hint': 'synonyms for corrupt',\n", " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", - " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('bribe', 'make illegal payments to in exchange for favors or influence'),\n", - " ('cloud', 'place under suspicion or cast doubt upon'),\n", - " ('defile', 'place under suspicion or cast doubt upon'),\n", - " ('spoil', 'alter from the original'),\n", + " ('taint', 'place under suspicion or cast doubt upon'),\n", " (\"grease one's palms\",\n", " 'make illegal payments to in exchange for favors or influence'),\n", + " ('spoil', 'alter from the original'),\n", " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", + " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", " ('buy', 'make illegal payments to in exchange for favors or influence'),\n", - " ('taint', 'place under suspicion or cast doubt upon'),\n", + " ('defile', 'place under suspicion or cast doubt upon'),\n", + " ('cloud', 'place under suspicion or cast doubt upon'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", " ('sully', 'place under suspicion or cast doubt upon'),\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'corrupted',\n", " 'hint': 'synonyms for corrupted',\n", - " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " 'clues': [(\"grease one's palms\",\n", + " 'make illegal payments to in exchange for favors or influence'),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('cloud', 'place under suspicion or cast doubt upon'),\n", + " ('sully', 'place under suspicion or cast doubt upon'),\n", + " ('buy', 'make illegal payments to in exchange for favors or influence'),\n", + " ('deprave', 'corrupt morally or by intemperance or sensuality'),\n", " ('bribe', 'make illegal payments to in exchange for favors or influence'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('spoil', 'alter from the original'),\n", " ('taint', 'place under suspicion or cast doubt upon'),\n", - " ('buy', 'make illegal payments to in exchange for favors or influence'),\n", - " ('sully', 'place under suspicion or cast doubt upon'),\n", - " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('debase', 'corrupt morally or by intemperance or sensuality'),\n", - " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('corrupt', 'alter from the original'),\n", + " ('spoil', 'alter from the original'),\n", " ('defile', 'place under suspicion or cast doubt upon'),\n", - " (\"grease one's palms\",\n", - " 'make illegal payments to in exchange for favors or influence'),\n", - " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", + " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", - " ('cloud', 'place under suspicion or cast doubt upon')]},\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'corrupting',\n", " 'hint': 'synonyms for corrupting',\n", - " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " 'clues': [(\"grease one's palms\",\n", + " 'make illegal payments to in exchange for favors or influence'),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('cloud', 'place under suspicion or cast doubt upon'),\n", + " ('sully', 'place under suspicion or cast doubt upon'),\n", + " ('buy', 'make illegal payments to in exchange for favors or influence'),\n", + " ('deprave', 'corrupt morally or by intemperance or sensuality'),\n", " ('bribe', 'make illegal payments to in exchange for favors or influence'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('spoil', 'alter from the original'),\n", " ('taint', 'place under suspicion or cast doubt upon'),\n", - " ('buy', 'make illegal payments to in exchange for favors or influence'),\n", - " ('sully', 'place under suspicion or cast doubt upon'),\n", - " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('debase', 'corrupt morally or by intemperance or sensuality'),\n", - " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('corrupt', 'alter from the original'),\n", + " ('spoil', 'alter from the original'),\n", " ('defile', 'place under suspicion or cast doubt upon'),\n", - " (\"grease one's palms\",\n", - " 'make illegal payments to in exchange for favors or influence'),\n", - " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", + " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", - " ('cloud', 'place under suspicion or cast doubt upon')]},\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'counterbalanced',\n", " 'hint': 'synonyms for counterbalanced',\n", - " 'clues': [('even up', 'adjust for'),\n", - " ('make up', 'adjust for'),\n", - " ('countervail', 'oppose and mitigate the effects of by contrary actions'),\n", - " ('neutralize', 'oppose and mitigate the effects of by contrary actions'),\n", - " ('even out', 'adjust for'),\n", - " ('counterbalance',\n", + " 'clues': [('counterbalance',\n", " 'oppose and mitigate the effects of by contrary actions'),\n", - " ('correct', 'adjust for'),\n", " ('oppose', 'contrast with equal weight or force'),\n", + " ('even up', 'adjust for'),\n", + " ('make up', 'adjust for'),\n", " ('compensate', 'adjust for'),\n", + " ('even out', 'adjust for'),\n", " ('even off', 'adjust for'),\n", - " ('counteract',\n", + " ('correct', 'adjust for'),\n", + " ('counteract', 'oppose and mitigate the effects of by contrary actions'),\n", + " ('neutralize', 'oppose and mitigate the effects of by contrary actions'),\n", + " ('countervail',\n", " 'oppose and mitigate the effects of by contrary actions')]},\n", " {'answer': 'coupled',\n", " 'hint': 'synonyms for coupled',\n", - " 'clues': [('couple', 'link together'),\n", - " ('partner off', 'form a pair or pairs'),\n", - " ('copulate', 'engage in sexual intercourse'),\n", + " 'clues': [('pair', 'form a pair or pairs'),\n", + " ('couple', 'bring two objects, ideas, or people together'),\n", + " ('mate', 'bring two objects, ideas, or people together'),\n", " ('match', 'bring two objects, ideas, or people together'),\n", " ('pair off', 'form a pair or pairs'),\n", + " ('twin', 'bring two objects, ideas, or people together'),\n", " ('couple on', 'link together'),\n", - " ('pair', 'form a pair or pairs'),\n", " ('couple up', 'link together'),\n", - " ('mate', 'engage in sexual intercourse'),\n", - " ('twin', 'bring two objects, ideas, or people together')]},\n", + " ('copulate', 'engage in sexual intercourse'),\n", + " ('partner off', 'form a pair or pairs')]},\n", " {'answer': 'covered',\n", " 'hint': 'synonyms for covered',\n", - " 'clues': [('cover',\n", - " 'to take an action to protect against future problems'),\n", - " ('plow', 'act on verbally or in some form of artistic expression'),\n", - " ('spread over', 'form a cover over'),\n", + " 'clues': [('cover', 'maintain a check on; especially by patrolling'),\n", + " ('cover up', 'hide from view or knowledge'),\n", " ('report',\n", " 'be responsible for reporting the details of, as in journalism'),\n", + " ('brood', 'sit on (eggs)'),\n", " ('comprehend',\n", " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", - " ('handle', 'act on verbally or in some form of artistic expression'),\n", - " ('pass over', 'travel across or pass over'),\n", + " ('hatch', 'sit on (eggs)'),\n", + " ('wrap up', 'clothe, as if for protection from the elements'),\n", " ('extend', 'span an interval of distance, space or time'),\n", - " ('continue', 'span an interval of distance, space or time'),\n", - " ('treat', 'act on verbally or in some form of artistic expression'),\n", - " ('encompass',\n", - " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", - " ('compensate',\n", - " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n", + " ('address', 'act on verbally or in some form of artistic expression'),\n", + " ('deal', 'act on verbally or in some form of artistic expression'),\n", + " ('shroud', 'cover as if with a shroud'),\n", + " ('pass over', 'travel across or pass over'),\n", " ('overlay', 'put something on top of something else'),\n", - " ('get over', 'travel across or pass over'),\n", - " ('hide', 'cover as if with a shroud'),\n", - " ('overcompensate',\n", - " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n", - " ('get across', 'travel across or pass over'),\n", + " ('handle', 'act on verbally or in some form of artistic expression'),\n", + " ('cut across', 'travel across or pass over'),\n", " ('track', 'travel across or pass over'),\n", + " ('traverse', 'travel across or pass over'),\n", + " ('embrace',\n", + " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", + " ('get over', 'travel across or pass over'),\n", " ('insure', 'protect by insurance'),\n", - " ('brood', 'sit on (eggs)'),\n", - " ('cover up', 'hide from view or knowledge'),\n", - " ('shroud', 'cover as if with a shroud'),\n", - " ('breed', 'copulate with a female, used especially of horses'),\n", - " ('underwrite', 'protect by insurance'),\n", - " ('address', 'act on verbally or in some form of artistic expression'),\n", " ('cross', 'travel across or pass over'),\n", + " ('continue', 'span an interval of distance, space or time'),\n", + " ('underwrite', 'protect by insurance'),\n", " ('cut through', 'travel across or pass over'),\n", - " ('traverse', 'travel across or pass over'),\n", - " ('deal', 'act on verbally or in some form of artistic expression'),\n", - " ('hatch', 'sit on (eggs)'),\n", " ('incubate', 'sit on (eggs)'),\n", - " ('embrace',\n", + " ('overcompensate',\n", + " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n", + " ('plow', 'act on verbally or in some form of artistic expression'),\n", + " ('treat', 'act on verbally or in some form of artistic expression'),\n", + " ('compensate',\n", + " 'make up for shortcomings or a feeling of inferiority by exaggerating good qualities'),\n", + " ('encompass',\n", " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", - " ('wrap up', 'clothe, as if for protection from the elements'),\n", - " ('cut across', 'travel across or pass over')]},\n", + " ('spread over', 'form a cover over'),\n", + " ('breed', 'copulate with a female, used especially of horses'),\n", + " ('hide', 'cover as if with a shroud'),\n", + " ('get across', 'travel across or pass over')]},\n", " {'answer': 'crabbed',\n", " 'hint': 'synonyms for crabbed',\n", - " 'clues': [('crab', 'scurry sideways like a crab'),\n", + " 'clues': [('bitch', 'complain'),\n", " ('squawk', 'complain'),\n", " ('holler', 'complain'),\n", - " ('bellyache', 'complain'),\n", - " ('grouse', 'complain'),\n", - " ('bitch', 'complain'),\n", " ('gripe', 'complain'),\n", - " ('beef', 'complain')]},\n", + " ('crab', 'complain'),\n", + " ('beef', 'complain'),\n", + " ('bellyache', 'complain'),\n", + " ('grouse', 'complain')]},\n", " {'answer': 'crack',\n", " 'hint': 'synonyms for crack',\n", - " 'clues': [('collapse', 'suffer a nervous breakdown'),\n", + " 'clues': [('break through', 'pass through (a barrier)'),\n", " ('crack up', 'suffer a nervous breakdown'),\n", " ('check', 'become fractured; break or crack on the surface only'),\n", - " ('break through', 'pass through (a barrier)'),\n", - " ('break up', 'suffer a nervous breakdown'),\n", " ('snap', 'make a sharp sound'),\n", - " ('break', 'become fractured; break or crack on the surface only')]},\n", + " ('break', 'become fractured; break or crack on the surface only'),\n", + " ('collapse', 'suffer a nervous breakdown'),\n", + " ('break up', 'suffer a nervous breakdown')]},\n", " {'answer': 'cracked',\n", " 'hint': 'synonyms for cracked',\n", - " 'clues': [('collapse', 'suffer a nervous breakdown'),\n", - " ('crack', 'break suddenly and abruptly, as under tension'),\n", - " ('snap', 'make a sharp sound'),\n", - " ('break', 'become fractured; break or crack on the surface only'),\n", + " 'clues': [('crack',\n", + " 'reduce (petroleum) to a simpler compound by cracking'),\n", " ('crack up', 'suffer a nervous breakdown'),\n", - " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('snap', 'break suddenly and abruptly, as under tension'),\n", " ('break through', 'pass through (a barrier)'),\n", - " ('break up', 'suffer a nervous breakdown')]},\n", + " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('break', 'become fractured; break or crack on the surface only'),\n", + " ('break up', 'suffer a nervous breakdown'),\n", + " ('collapse', 'suffer a nervous breakdown')]},\n", " {'answer': 'cracking',\n", " 'hint': 'synonyms for cracking',\n", - " 'clues': [('collapse', 'suffer a nervous breakdown'),\n", - " ('crack', 'break suddenly and abruptly, as under tension'),\n", - " ('snap', 'make a sharp sound'),\n", - " ('break', 'become fractured; break or crack on the surface only'),\n", + " 'clues': [('crack',\n", + " 'reduce (petroleum) to a simpler compound by cracking'),\n", " ('crack up', 'suffer a nervous breakdown'),\n", - " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('snap', 'break suddenly and abruptly, as under tension'),\n", " ('break through', 'pass through (a barrier)'),\n", - " ('break up', 'suffer a nervous breakdown')]},\n", + " ('check', 'become fractured; break or crack on the surface only'),\n", + " ('break', 'become fractured; break or crack on the surface only'),\n", + " ('break up', 'suffer a nervous breakdown'),\n", + " ('collapse', 'suffer a nervous breakdown')]},\n", " {'answer': 'cramped',\n", " 'hint': 'synonyms for cramped',\n", - " 'clues': [('cramp', 'affect with or as if with a cramp'),\n", + " 'clues': [('hamper', 'prevent the progress or free movement of'),\n", + " ('cramp', 'prevent the progress or free movement of'),\n", " ('strangle', 'prevent the progress or free movement of'),\n", - " ('halter', 'prevent the progress or free movement of'),\n", - " ('hamper', 'prevent the progress or free movement of')]},\n", + " ('halter', 'prevent the progress or free movement of')]},\n", " {'answer': 'crashing',\n", " 'hint': 'synonyms for crashing',\n", - " 'clues': [('crash', 'break violently or noisily; smash'),\n", - " ('barge in', 'enter uninvited; informal'),\n", - " ('go down', 'stop operating'),\n", - " ('break apart', 'break violently or noisily; smash'),\n", - " ('doss down', 'sleep in a convenient place'),\n", + " 'clues': [('doss down', 'sleep in a convenient place'),\n", " ('doss', 'sleep in a convenient place'),\n", + " ('crash', 'move violently as through a barrier'),\n", + " ('break apart', 'break violently or noisily; smash'),\n", + " ('dash', 'hurl or thrust violently'),\n", " ('ram', 'undergo damage or destruction on impact'),\n", " ('gate-crash', 'enter uninvited; informal'),\n", " ('break up', 'break violently or noisily; smash'),\n", - " ('dash', 'hurl or thrust violently')]},\n", + " ('go down', 'stop operating'),\n", + " ('barge in', 'enter uninvited; informal')]},\n", " {'answer': 'craved',\n", " 'hint': 'synonyms for craved',\n", - " 'clues': [('crave', 'have a craving, appetite, or great desire for'),\n", - " ('starve', 'have a craving, appetite, or great desire for'),\n", + " 'clues': [('hunger', 'have a craving, appetite, or great desire for'),\n", + " ('crave', 'plead or ask for earnestly'),\n", " ('thirst', 'have a craving, appetite, or great desire for'),\n", " ('lust', 'have a craving, appetite, or great desire for'),\n", - " ('hunger', 'have a craving, appetite, or great desire for')]},\n", + " ('starve', 'have a craving, appetite, or great desire for')]},\n", " {'answer': 'cringing',\n", " 'hint': 'synonyms for cringing',\n", - " 'clues': [('cringe', 'show submission or fear'),\n", - " ('flinch', 'draw back, as with fear or pain'),\n", - " ('creep', 'show submission or fear'),\n", - " ('grovel', 'show submission or fear'),\n", + " 'clues': [('quail', 'draw back, as with fear or pain'),\n", " ('funk', 'draw back, as with fear or pain'),\n", - " ('wince', 'draw back, as with fear or pain'),\n", - " ('squinch', 'draw back, as with fear or pain'),\n", + " ('recoil', 'draw back, as with fear or pain'),\n", + " ('fawn', 'show submission or fear'),\n", " ('cower', 'show submission or fear'),\n", - " ('crawl', 'show submission or fear'),\n", - " ('quail', 'draw back, as with fear or pain'),\n", + " ('cringe', 'draw back, as with fear or pain'),\n", + " ('wince', 'draw back, as with fear or pain'),\n", " ('shrink', 'draw back, as with fear or pain'),\n", - " ('recoil', 'draw back, as with fear or pain'),\n", - " ('fawn', 'show submission or fear')]},\n", + " ('flinch', 'draw back, as with fear or pain'),\n", + " ('squinch', 'draw back, as with fear or pain'),\n", + " ('creep', 'show submission or fear'),\n", + " ('grovel', 'show submission or fear'),\n", + " ('crawl', 'show submission or fear')]},\n", " {'answer': 'crinkled',\n", " 'hint': 'synonyms for crinkled',\n", - " 'clues': [('crease', 'become wrinkled or crumpled or creased'),\n", - " ('scrunch up',\n", - " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", - " ('scrunch',\n", + " 'clues': [('crinkle', 'become wrinkled or crumpled or creased'),\n", + " ('rumple', 'become wrinkled or crumpled or creased'),\n", + " ('crease',\n", " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", - " ('crumple', 'become wrinkled or crumpled or creased'),\n", - " ('crinkle',\n", + " ('scrunch up',\n", " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", " ('crisp',\n", " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", " ('ruckle',\n", + " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", + " ('scrunch',\n", " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in')]},\n", " {'answer': 'crisp',\n", " 'hint': 'synonyms for crisp',\n", - " 'clues': [('crinkle',\n", - " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", - " ('crispen', 'make brown and crisp by heating'),\n", + " 'clues': [('crispen', 'make brown and crisp by heating'),\n", " ('toast', 'make brown and crisp by heating'),\n", - " ('scrunch up',\n", - " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", - " ('scrunch',\n", - " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", " ('ruckle',\n", " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", + " ('wrinkle',\n", + " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", " ('crease',\n", + " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", + " ('scrunch',\n", + " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in'),\n", + " ('scrunch up',\n", " 'make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in')]},\n", " {'answer': 'cropped',\n", " 'hint': 'synonyms for cropped',\n", - " 'clues': [('crop', 'prepare for crops'),\n", - " ('clip', 'cultivate, tend, and cut back the growth of'),\n", - " ('prune', 'cultivate, tend, and cut back the growth of'),\n", - " ('cultivate', 'prepare for crops'),\n", - " ('pasture', 'let feed in a field or pasture or meadow'),\n", + " 'clues': [('dress', 'cultivate, tend, and cut back the growth of'),\n", + " ('graze', 'let feed in a field or pasture or meadow'),\n", " ('work', 'prepare for crops'),\n", - " ('lop', 'cultivate, tend, and cut back the growth of'),\n", - " ('cut back', 'cultivate, tend, and cut back the growth of'),\n", - " ('range', 'feed as in a meadow or pasture'),\n", - " ('dress', 'cultivate, tend, and cut back the growth of'),\n", - " ('graze', 'feed as in a meadow or pasture'),\n", + " ('pasture', 'feed as in a meadow or pasture'),\n", + " ('crop', 'cultivate, tend, and cut back the growth of'),\n", + " ('cultivate', 'prepare for crops'),\n", " ('snip', 'cultivate, tend, and cut back the growth of'),\n", + " ('trim', 'cultivate, tend, and cut back the growth of'),\n", + " ('prune', 'cultivate, tend, and cut back the growth of'),\n", + " ('range', 'feed as in a meadow or pasture'),\n", + " ('clip', 'cultivate, tend, and cut back the growth of'),\n", " ('browse', 'feed as in a meadow or pasture'),\n", - " ('trim', 'cultivate, tend, and cut back the growth of')]},\n", + " ('lop', 'cultivate, tend, and cut back the growth of'),\n", + " ('cut back', 'cultivate, tend, and cut back the growth of')]},\n", " {'answer': 'cross',\n", " 'hint': 'synonyms for cross',\n", - " 'clues': [('traverse',\n", - " 'to cover or extend over an area or time period; ,'),\n", - " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('get across', 'travel across or pass over'),\n", - " ('track', 'travel across or pass over'),\n", - " ('sweep', 'to cover or extend over an area or time period; ,'),\n", - " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('pass over', 'travel across or pass over'),\n", + " 'clues': [('get over', 'travel across or pass over'),\n", " ('intersect', 'meet at a point'),\n", - " ('interbreed',\n", - " 'breed animals or plants using parents of different races and varieties'),\n", - " ('hybridise',\n", - " 'breed animals or plants using parents of different races and varieties'),\n", " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('crossbreed',\n", " 'breed animals or plants using parents of different races and varieties'),\n", - " ('cover', 'travel across or pass over'),\n", - " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('get over', 'travel across or pass over'),\n", + " ('interbreed',\n", + " 'breed animals or plants using parents of different races and varieties'),\n", + " ('sweep', 'to cover or extend over an area or time period; ,'),\n", + " ('traverse', 'to cover or extend over an area or time period; ,'),\n", + " ('get across', 'travel across or pass over'),\n", + " ('hybridize',\n", + " 'breed animals or plants using parents of different races and varieties'),\n", + " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('cut through', 'travel across or pass over'),\n", - " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('span', 'to cover or extend over an area or time period; ,'),\n", + " ('cover', 'travel across or pass over'),\n", + " ('pass over', 'travel across or pass over'),\n", " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('cut across', 'travel across or pass over')]},\n", + " ('span', 'to cover or extend over an area or time period; ,'),\n", + " ('cut across', 'travel across or pass over'),\n", + " ('track', 'travel across or pass over'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of')]},\n", " {'answer': 'crossbred',\n", " 'hint': 'synonyms for crossbred',\n", - " 'clues': [('hybridize',\n", + " 'clues': [('cross',\n", " 'breed animals or plants using parents of different races and varieties'),\n", - " ('interbreed',\n", + " ('crossbreed',\n", " 'breed animals or plants using parents of different races and varieties'),\n", - " ('cross',\n", + " ('hybridise',\n", " 'breed animals or plants using parents of different races and varieties'),\n", - " ('crossbreed',\n", + " ('interbreed',\n", " 'breed animals or plants using parents of different races and varieties')]},\n", " {'answer': 'crossed',\n", " 'hint': 'synonyms for crossed',\n", - " 'clues': [('traverse',\n", - " 'to cover or extend over an area or time period; ,'),\n", - " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('get across', 'travel across or pass over'),\n", - " ('track', 'travel across or pass over'),\n", - " ('sweep', 'to cover or extend over an area or time period; ,'),\n", - " ('cross', 'fold so as to resemble a cross'),\n", - " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('pass over', 'travel across or pass over'),\n", + " 'clues': [('get over', 'travel across or pass over'),\n", + " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('intersect', 'meet at a point'),\n", - " ('interbreed',\n", - " 'breed animals or plants using parents of different races and varieties'),\n", - " ('hybridise',\n", - " 'breed animals or plants using parents of different races and varieties'),\n", " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('crossbreed',\n", " 'breed animals or plants using parents of different races and varieties'),\n", - " ('cover', 'travel across or pass over'),\n", + " ('interbreed',\n", + " 'breed animals or plants using parents of different races and varieties'),\n", + " ('sweep', 'to cover or extend over an area or time period; ,'),\n", + " ('traverse', 'to cover or extend over an area or time period; ,'),\n", + " ('hybridize',\n", + " 'breed animals or plants using parents of different races and varieties'),\n", + " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('cut through', 'travel across or pass over'),\n", - " ('get over', 'travel across or pass over'),\n", - " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('span', 'to cover or extend over an area or time period; ,'),\n", + " ('pass over', 'travel across or pass over'),\n", " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('cut across', 'travel across or pass over')]},\n", + " ('span', 'to cover or extend over an area or time period; ,'),\n", + " ('cut across', 'travel across or pass over'),\n", + " ('track', 'travel across or pass over'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('cover', 'travel across or pass over'),\n", + " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('get across', 'travel across or pass over')]},\n", " {'answer': 'crowded',\n", " 'hint': 'synonyms for crowded',\n", " 'clues': [('crowd', 'approach a certain age or speed'),\n", + " ('push', 'approach a certain age or speed'),\n", " ('crowd together', 'to gather together in large numbers'),\n", - " ('herd', 'cause to herd, drive, or crowd together'),\n", - " ('push', 'approach a certain age or speed')]},\n", + " ('herd', 'cause to herd, drive, or crowd together')]},\n", " {'answer': 'crumpled',\n", " 'hint': 'synonyms for crumpled',\n", - " 'clues': [('tumble', 'fall apart'),\n", - " ('buckle', 'fold or collapse'),\n", - " ('rumple', 'to gather something into small wrinkles or folds'),\n", - " ('crease', 'become wrinkled or crumpled or creased'),\n", - " ('knit', 'to gather something into small wrinkles or folds'),\n", - " ('crumble', 'fall apart'),\n", + " 'clues': [('crinkle', 'become wrinkled or crumpled or creased'),\n", + " ('rumple', 'become wrinkled or crumpled or creased'),\n", " ('collapse', 'fall apart'),\n", - " ('crinkle', 'become wrinkled or crumpled or creased'),\n", + " ('crumble', 'fall apart'),\n", + " ('break down', 'fall apart'),\n", " ('cockle', 'to gather something into small wrinkles or folds'),\n", + " ('buckle', 'fold or collapse'),\n", + " ('knit', 'to gather something into small wrinkles or folds'),\n", + " ('crease', 'become wrinkled or crumpled or creased'),\n", " ('pucker', 'to gather something into small wrinkles or folds'),\n", - " ('break down', 'fall apart')]},\n", + " ('tumble', 'fall apart')]},\n", " {'answer': 'crushed',\n", " 'hint': 'synonyms for crushed',\n", - " 'clues': [('break down', 'make ineffective'),\n", - " ('demolish', 'humiliate or depress completely'),\n", - " ('beat out', 'come out better in a competition, race, or conflict'),\n", + " 'clues': [('mash',\n", + " 'to compress with violence, out of natural shape or condition'),\n", + " ('squelch',\n", + " 'to compress with violence, out of natural shape or condition'),\n", + " ('vanquish', 'come out better in a competition, race, or conflict'),\n", " ('suppress',\n", " \"come down on or keep down by unjust use of one's authority\"),\n", - " ('squeeze',\n", - " 'to compress with violence, out of natural shape or condition'),\n", - " ('shell', 'come out better in a competition, race, or conflict'),\n", - " ('crush', 'come out better in a competition, race, or conflict'),\n", + " ('beat out', 'come out better in a competition, race, or conflict'),\n", " ('squash',\n", " 'to compress with violence, out of natural shape or condition'),\n", - " ('oppress', \"come down on or keep down by unjust use of one's authority\"),\n", - " ('mash', 'to compress with violence, out of natural shape or condition'),\n", - " ('trounce', 'come out better in a competition, race, or conflict'),\n", + " ('crush', 'to compress with violence, out of natural shape or condition'),\n", + " ('beat', 'come out better in a competition, race, or conflict'),\n", " ('jam', 'crush or bruise'),\n", - " ('squelch',\n", + " ('demolish', 'humiliate or depress completely'),\n", + " ('shell', 'come out better in a competition, race, or conflict'),\n", + " ('oppress', \"come down on or keep down by unjust use of one's authority\"),\n", + " ('break down', 'make ineffective'),\n", + " ('squeeze',\n", " 'to compress with violence, out of natural shape or condition'),\n", - " ('vanquish', 'come out better in a competition, race, or conflict'),\n", - " ('beat', 'come out better in a competition, race, or conflict')]},\n", + " ('trounce', 'come out better in a competition, race, or conflict')]},\n", " {'answer': 'crushing',\n", " 'hint': 'synonyms for crushing',\n", - " 'clues': [('break down', 'make ineffective'),\n", - " ('demolish', 'humiliate or depress completely'),\n", - " ('beat out', 'come out better in a competition, race, or conflict'),\n", + " 'clues': [('mash',\n", + " 'to compress with violence, out of natural shape or condition'),\n", + " ('squelch',\n", + " 'to compress with violence, out of natural shape or condition'),\n", + " ('vanquish', 'come out better in a competition, race, or conflict'),\n", " ('suppress',\n", " \"come down on or keep down by unjust use of one's authority\"),\n", - " ('squeeze',\n", - " 'to compress with violence, out of natural shape or condition'),\n", - " ('shell', 'come out better in a competition, race, or conflict'),\n", - " ('crush', 'come out better in a competition, race, or conflict'),\n", + " ('beat out', 'come out better in a competition, race, or conflict'),\n", " ('squash',\n", " 'to compress with violence, out of natural shape or condition'),\n", - " ('oppress', \"come down on or keep down by unjust use of one's authority\"),\n", - " ('mash', 'to compress with violence, out of natural shape or condition'),\n", - " ('trounce', 'come out better in a competition, race, or conflict'),\n", + " ('crush', 'to compress with violence, out of natural shape or condition'),\n", + " ('beat', 'come out better in a competition, race, or conflict'),\n", " ('jam', 'crush or bruise'),\n", - " ('squelch',\n", + " ('demolish', 'humiliate or depress completely'),\n", + " ('shell', 'come out better in a competition, race, or conflict'),\n", + " ('oppress', \"come down on or keep down by unjust use of one's authority\"),\n", + " ('break down', 'make ineffective'),\n", + " ('squeeze',\n", " 'to compress with violence, out of natural shape or condition'),\n", - " ('vanquish', 'come out better in a competition, race, or conflict'),\n", - " ('beat', 'come out better in a competition, race, or conflict')]},\n", + " ('trounce', 'come out better in a competition, race, or conflict')]},\n", " {'answer': 'crying',\n", " 'hint': 'synonyms for crying',\n", - " 'clues': [('scream', 'utter a sudden loud cry'),\n", - " ('shout out', 'utter a sudden loud cry'),\n", + " 'clues': [('cry', 'demand immediate action'),\n", " ('call', 'utter a sudden loud cry'),\n", - " ('cry', 'proclaim or announce in public'),\n", - " ('squall', 'utter a sudden loud cry'),\n", + " ('shout', 'utter aloud; often with surprise, horror, or joy'),\n", + " ('cry out', 'utter aloud; often with surprise, horror, or joy'),\n", + " ('outcry', 'utter aloud; often with surprise, horror, or joy'),\n", " ('hollo', 'utter a sudden loud cry'),\n", - " ('blazon out', 'proclaim or announce in public'),\n", - " ('call out', 'utter aloud; often with surprise, horror, or joy'),\n", - " ('shout', 'utter a sudden loud cry'),\n", - " ('yell', 'utter a sudden loud cry'),\n", - " ('holler', 'utter a sudden loud cry'),\n", " ('weep', 'shed tears because of sadness, rage, or pain'),\n", - " ('outcry', 'utter aloud; often with surprise, horror, or joy'),\n", + " ('squall', 'utter a sudden loud cry'),\n", + " ('yell', 'utter a sudden loud cry'),\n", + " ('call out', 'utter aloud; often with surprise, horror, or joy'),\n", + " ('shout out', 'utter a sudden loud cry'),\n", + " ('scream', 'utter a sudden loud cry'),\n", " ('exclaim', 'utter aloud; often with surprise, horror, or joy'),\n", - " ('cry out', 'utter aloud; often with surprise, horror, or joy')]},\n", + " ('blazon out', 'proclaim or announce in public'),\n", + " ('holler', 'utter a sudden loud cry')]},\n", " {'answer': 'crystalised',\n", " 'hint': 'synonyms for crystalised',\n", - " 'clues': [('crystalise',\n", - " 'cause to form crystals or assume crystalline form'),\n", - " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " 'clues': [('crystalise', 'assume crystalline form; become crystallized'),\n", " ('clear', 'make free from confusion or ambiguity; make clear'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", " ('effloresce', 'assume crystalline form; become crystallized'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'crystalized',\n", " 'hint': 'synonyms for crystalized',\n", - " 'clues': [('crystalise',\n", - " 'cause to form crystals or assume crystalline form'),\n", - " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " 'clues': [('crystalise', 'assume crystalline form; become crystallized'),\n", " ('clear', 'make free from confusion or ambiguity; make clear'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", " ('effloresce', 'assume crystalline form; become crystallized'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'crystallised',\n", " 'hint': 'synonyms for crystallised',\n", - " 'clues': [('crystalise',\n", - " 'cause to form crystals or assume crystalline form'),\n", - " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " 'clues': [('crystalize', 'cause to take on a definite and clear shape'),\n", " ('clear', 'make free from confusion or ambiguity; make clear'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'crystallized',\n", " 'hint': 'synonyms for crystallized',\n", - " 'clues': [('crystalise', 'cause to take on a definite and clear shape'),\n", - " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " 'clues': [('crystalise', 'assume crystalline form; become crystallized'),\n", " ('clear', 'make free from confusion or ambiguity; make clear'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", " ('effloresce', 'assume crystalline form; become crystallized'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear')]},\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'cultivated',\n", " 'hint': 'synonyms for cultivated',\n", - " 'clues': [('naturalize',\n", - " 'adapt (a wild plant or unclaimed land) to the environment'),\n", - " ('crop', 'prepare for crops'),\n", - " ('educate', 'teach or refine to be discriminative in taste or judgment'),\n", + " 'clues': [('train',\n", + " 'teach or refine to be discriminative in taste or judgment'),\n", " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n", - " ('tame', 'adapt (a wild plant or unclaimed land) to the environment'),\n", - " ('cultivate', 'prepare for crops'),\n", + " ('cultivate', 'foster the growth of'),\n", " ('work', 'prepare for crops'),\n", - " ('train', 'teach or refine to be discriminative in taste or judgment'),\n", - " ('domesticate',\n", + " ('educate', 'teach or refine to be discriminative in taste or judgment'),\n", + " ('tame', 'adapt (a wild plant or unclaimed land) to the environment'),\n", + " ('crop', 'prepare for crops'),\n", + " ('naturalize',\n", " 'adapt (a wild plant or unclaimed land) to the environment'),\n", - " ('school', 'teach or refine to be discriminative in taste or judgment')]},\n", + " ('school', 'teach or refine to be discriminative in taste or judgment'),\n", + " ('domesticate',\n", + " 'adapt (a wild plant or unclaimed land) to the environment')]},\n", " {'answer': 'curled',\n", " 'hint': 'synonyms for curled',\n", - " 'clues': [('draw in', \"shape one's body into a curl\"),\n", + " 'clues': [('kink', 'form a curl, curve, or kink'),\n", + " ('coil', 'wind around something in coils or loops'),\n", + " ('draw in', \"shape one's body into a curl\"),\n", " ('curl', 'play the Scottish game of curling'),\n", " ('curve', 'form a curl, curve, or kink'),\n", - " ('coil', 'wind around something in coils or loops'),\n", + " ('loop', 'wind around something in coils or loops'),\n", " ('curl up', \"shape one's body into a curl\"),\n", - " ('kink', 'form a curl, curve, or kink'),\n", - " ('wave', 'twist or roll into coils or ringlets'),\n", - " ('loop', 'wind around something in coils or loops')]},\n", + " ('wave', 'twist or roll into coils or ringlets')]},\n", " {'answer': 'curling',\n", " 'hint': 'synonyms for curling',\n", - " 'clues': [('draw in', \"shape one's body into a curl\"),\n", + " 'clues': [('kink', 'form a curl, curve, or kink'),\n", + " ('coil', 'wind around something in coils or loops'),\n", + " ('draw in', \"shape one's body into a curl\"),\n", " ('curl', 'play the Scottish game of curling'),\n", " ('curve', 'form a curl, curve, or kink'),\n", - " ('coil', 'wind around something in coils or loops'),\n", + " ('loop', 'wind around something in coils or loops'),\n", " ('curl up', \"shape one's body into a curl\"),\n", - " ('kink', 'form a curl, curve, or kink'),\n", - " ('wave', 'twist or roll into coils or ringlets'),\n", - " ('loop', 'wind around something in coils or loops')]},\n", + " ('wave', 'twist or roll into coils or ringlets')]},\n", " {'answer': 'cursed',\n", " 'hint': 'synonyms for cursed',\n", - " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n", - " ('imprecate', 'utter obscenities or profanities'),\n", - " ('beshrew', 'wish harm upon; invoke evil upon'),\n", - " ('anathemise', 'wish harm upon; invoke evil upon'),\n", + " 'clues': [('curse', 'exclude from a church or a religious community'),\n", " ('excommunicate', 'exclude from a church or a religious community'),\n", - " ('curse', 'utter obscenities or profanities'),\n", + " ('maledict', 'wish harm upon; invoke evil upon'),\n", " ('swear', 'utter obscenities or profanities'),\n", - " ('cuss', 'utter obscenities or profanities'),\n", - " ('damn', 'wish harm upon; invoke evil upon'),\n", " ('bedamn', 'wish harm upon; invoke evil upon'),\n", " ('unchurch', 'exclude from a church or a religious community'),\n", + " ('beshrew', 'wish harm upon; invoke evil upon'),\n", + " ('damn', 'wish harm upon; invoke evil upon'),\n", + " ('imprecate', 'wish harm upon; invoke evil upon'),\n", + " ('anathemise', 'wish harm upon; invoke evil upon'),\n", + " ('cuss', 'utter obscenities or profanities'),\n", " ('blaspheme', 'utter obscenities or profanities')]},\n", " {'answer': 'curst',\n", " 'hint': 'synonyms for curst',\n", - " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n", - " ('imprecate', 'utter obscenities or profanities'),\n", - " ('beshrew', 'wish harm upon; invoke evil upon'),\n", - " ('anathemise', 'wish harm upon; invoke evil upon'),\n", + " 'clues': [('curse', 'exclude from a church or a religious community'),\n", " ('excommunicate', 'exclude from a church or a religious community'),\n", - " ('curse', 'utter obscenities or profanities'),\n", + " ('maledict', 'wish harm upon; invoke evil upon'),\n", " ('swear', 'utter obscenities or profanities'),\n", - " ('cuss', 'utter obscenities or profanities'),\n", - " ('damn', 'wish harm upon; invoke evil upon'),\n", " ('bedamn', 'wish harm upon; invoke evil upon'),\n", " ('unchurch', 'exclude from a church or a religious community'),\n", + " ('beshrew', 'wish harm upon; invoke evil upon'),\n", + " ('damn', 'wish harm upon; invoke evil upon'),\n", + " ('imprecate', 'wish harm upon; invoke evil upon'),\n", + " ('anathemise', 'wish harm upon; invoke evil upon'),\n", + " ('cuss', 'utter obscenities or profanities'),\n", " ('blaspheme', 'utter obscenities or profanities')]},\n", " {'answer': 'curved',\n", " 'hint': 'synonyms for curved',\n", - " 'clues': [('twist', 'extend in curves and turns'),\n", - " ('slew', 'turn sharply; change direction abruptly'),\n", - " ('crook', 'bend or cause to bend'),\n", - " ('slue', 'turn sharply; change direction abruptly'),\n", + " 'clues': [('kink', 'form a curl, curve, or kink'),\n", " ('curve', 'form an arch or curve'),\n", + " ('slew', 'turn sharply; change direction abruptly'),\n", + " ('wind', 'extend in curves and turns'),\n", " ('sheer', 'turn sharply; change direction abruptly'),\n", - " ('arc', 'form an arch or curve'),\n", - " ('cut', 'turn sharply; change direction abruptly'),\n", - " ('kink', 'form a curl, curve, or kink'),\n", + " ('slue', 'turn sharply; change direction abruptly'),\n", + " ('arch', 'form an arch or curve'),\n", " ('swerve', 'turn sharply; change direction abruptly'),\n", + " ('twist', 'extend in curves and turns'),\n", " ('veer', 'turn sharply; change direction abruptly'),\n", " ('curl', 'form a curl, curve, or kink'),\n", - " ('wind', 'extend in curves and turns'),\n", - " ('trend', 'turn sharply; change direction abruptly')]},\n", + " ('cut', 'turn sharply; change direction abruptly'),\n", + " ('trend', 'turn sharply; change direction abruptly'),\n", + " ('crook', 'bend or cause to bend')]},\n", " {'answer': 'curving',\n", " 'hint': 'synonyms for curving',\n", - " 'clues': [('twist', 'extend in curves and turns'),\n", - " ('slew', 'turn sharply; change direction abruptly'),\n", - " ('crook', 'bend or cause to bend'),\n", - " ('slue', 'turn sharply; change direction abruptly'),\n", + " 'clues': [('kink', 'form a curl, curve, or kink'),\n", " ('curve', 'form an arch or curve'),\n", + " ('slew', 'turn sharply; change direction abruptly'),\n", + " ('wind', 'extend in curves and turns'),\n", " ('sheer', 'turn sharply; change direction abruptly'),\n", - " ('arc', 'form an arch or curve'),\n", - " ('cut', 'turn sharply; change direction abruptly'),\n", - " ('kink', 'form a curl, curve, or kink'),\n", + " ('slue', 'turn sharply; change direction abruptly'),\n", + " ('arch', 'form an arch or curve'),\n", " ('swerve', 'turn sharply; change direction abruptly'),\n", + " ('twist', 'extend in curves and turns'),\n", " ('veer', 'turn sharply; change direction abruptly'),\n", " ('curl', 'form a curl, curve, or kink'),\n", - " ('wind', 'extend in curves and turns'),\n", - " ('trend', 'turn sharply; change direction abruptly')]},\n", + " ('cut', 'turn sharply; change direction abruptly'),\n", + " ('trend', 'turn sharply; change direction abruptly'),\n", + " ('crook', 'bend or cause to bend')]},\n", " {'answer': 'cussed',\n", " 'hint': 'synonyms for cussed',\n", " 'clues': [('swear', 'utter obscenities or profanities'),\n", - " ('imprecate', 'utter obscenities or profanities'),\n", - " ('cuss', 'utter obscenities or profanities'),\n", " ('curse', 'utter obscenities or profanities'),\n", + " ('cuss', 'utter obscenities or profanities'),\n", + " ('imprecate', 'utter obscenities or profanities'),\n", " ('blaspheme', 'utter obscenities or profanities')]},\n", " {'answer': 'cut',\n", " 'hint': 'synonyms for cut',\n", - " 'clues': [('trend', 'turn sharply; change direction abruptly'),\n", - " ('switch off', 'cause to stop operating by disengaging a switch'),\n", - " ('reduce', 'reduce in scope while retaining essential elements'),\n", - " ('rationalise', 'weed out unwanted or unnecessary things'),\n", - " ('abridge', 'reduce in scope while retaining essential elements'),\n", - " ('make out', 'make out and issue'),\n", - " ('sheer', 'turn sharply; change direction abruptly'),\n", - " ('prune', 'weed out unwanted or unnecessary things'),\n", - " ('cut off', 'cease, stop'),\n", - " ('ignore', 'refuse to acknowledge'),\n", - " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", + " 'clues': [('skip', 'intentionally fail to attend'),\n", + " ('cut back', 'cut down on; make a reduction in'),\n", " ('write out', 'make out and issue'),\n", - " ('edit out', 'cut and assemble the components of'),\n", - " ('trim down', 'cut down on; make a reduction in'),\n", - " ('snub', 'refuse to acknowledge'),\n", - " ('issue', 'make out and issue'),\n", - " ('swerve', 'turn sharply; change direction abruptly'),\n", " ('turn off', 'cause to stop operating by disengaging a switch'),\n", - " ('trim back', 'cut down on; make a reduction in'),\n", - " ('geld', 'cut off the testicles (of male animals such as horses)'),\n", - " ('shorten', 'reduce in scope while retaining essential elements'),\n", - " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", " ('burn', 'create by duplicating data'),\n", - " ('skip', 'intentionally fail to attend'),\n", - " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", - " ('contract', 'reduce in scope while retaining essential elements'),\n", - " ('hack', 'be able to manage or manage successfully'),\n", " ('slew', 'turn sharply; change direction abruptly'),\n", + " ('issue', 'make out and issue'),\n", + " ('cut off', 'cease, stop'),\n", + " ('trim back', 'cut down on; make a reduction in'),\n", + " ('contract', 'reduce in scope while retaining essential elements'),\n", + " ('sheer', 'turn sharply; change direction abruptly'),\n", + " ('turn out', 'cause to stop operating by disengaging a switch'),\n", " ('cut down', 'cut down on; make a reduction in'),\n", - " ('slue', 'turn sharply; change direction abruptly'),\n", - " ('edit', 'cut and assemble the components of'),\n", - " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('make out', 'make out and issue'),\n", + " ('prune', 'weed out unwanted or unnecessary things'),\n", + " ('bring down', 'cut down on; make a reduction in'),\n", + " ('veer', 'turn sharply; change direction abruptly'),\n", + " ('rationalize', 'weed out unwanted or unnecessary things'),\n", + " ('edit out', 'cut and assemble the components of'),\n", + " ('hack', 'be able to manage or manage successfully'),\n", + " ('shorten', 'reduce in scope while retaining essential elements'),\n", + " ('edit', 'cut and assemble the components of'),\n", + " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('trim down', 'cut down on; make a reduction in'),\n", + " ('trend', 'turn sharply; change direction abruptly'),\n", + " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('switch off', 'cause to stop operating by disengaging a switch'),\n", + " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", " ('curve', 'turn sharply; change direction abruptly'),\n", + " ('disregard', 'refuse to acknowledge'),\n", + " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", " ('trim', 'cut down on; make a reduction in'),\n", - " ('bring down', 'cut down on; make a reduction in'),\n", + " ('slue', 'turn sharply; change direction abruptly'),\n", + " ('snub', 'refuse to acknowledge'),\n", + " ('swerve', 'turn sharply; change direction abruptly'),\n", + " ('geld', 'cut off the testicles (of male animals such as horses)'),\n", " ('tailor', 'style and tailor in a certain fashion'),\n", + " ('abridge', 'reduce in scope while retaining essential elements'),\n", + " ('ignore', 'refuse to acknowledge'),\n", " ('dilute', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('veer', 'turn sharply; change direction abruptly'),\n", - " ('turn out', 'cause to stop operating by disengaging a switch'),\n", - " ('cut back', 'cut down on; make a reduction in'),\n", - " ('disregard', 'refuse to acknowledge')]},\n", + " ('thin out', 'lessen the strength or flavor of a solution or mixture')]},\n", " {'answer': 'cut_off',\n", " 'hint': 'synonyms for cut off',\n", - " 'clues': [('knap', 'break a small piece off from'),\n", + " 'clues': [('cut', 'cease, stop'),\n", " ('disrupt', 'make a break in'),\n", - " ('cut out', 'cut off and stop'),\n", - " ('break off', 'break a small piece off from'),\n", + " ('break up', 'make a break in'),\n", " ('chip', 'break a small piece off from'),\n", " ('chop off', 'remove by or as if by cutting'),\n", - " ('break up', 'make a break in'),\n", + " ('knap', 'break a small piece off from'),\n", " ('interrupt', 'make a break in'),\n", - " ('cut', 'cease, stop'),\n", + " ('cut out', 'cut off and stop'),\n", + " ('lop off', 'remove by or as if by cutting'),\n", " ('amputate', 'remove surgically'),\n", - " ('lop off', 'remove by or as if by cutting')]},\n", + " ('break off', 'break a small piece off from')]},\n", " {'answer': 'cut_up',\n", " 'hint': 'synonyms for cut up',\n", - " 'clues': [('compartmentalise',\n", - " 'separate into isolated compartments or categories'),\n", - " ('hack', 'significantly cut up a manuscript'),\n", - " ('carve', 'cut to pieces'),\n", + " 'clues': [('mutilate', 'destroy or injure severely'),\n", + " ('compartmentalize', 'separate into isolated compartments or categories'),\n", " ('mangle', 'destroy or injure severely'),\n", - " ('mutilate', 'destroy or injure severely')]},\n", + " ('hack', 'significantly cut up a manuscript'),\n", + " ('carve', 'cut to pieces')]},\n", " {'answer': 'cutting',\n", " 'hint': 'synonyms for cutting',\n", - " 'clues': [('reduce', 'reduce in scope while retaining essential elements'),\n", - " ('cut', 'be able to manage or manage successfully'),\n", - " ('rationalise', 'weed out unwanted or unnecessary things'),\n", - " ('ignore', 'refuse to acknowledge'),\n", - " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", - " ('swerve', 'turn sharply; change direction abruptly'),\n", - " ('trim back', 'cut down on; make a reduction in'),\n", - " ('burn', 'create by duplicating data'),\n", - " ('skip', 'intentionally fail to attend'),\n", - " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", - " ('hack', 'be able to manage or manage successfully'),\n", - " ('cut down', 'cut down on; make a reduction in'),\n", - " ('edit', 'cut and assemble the components of'),\n", - " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('tailor', 'style and tailor in a certain fashion'),\n", - " ('veer', 'turn sharply; change direction abruptly'),\n", - " ('turn out', 'cause to stop operating by disengaging a switch'),\n", - " ('switch off', 'cause to stop operating by disengaging a switch'),\n", - " ('trend', 'turn sharply; change direction abruptly'),\n", - " ('abridge', 'reduce in scope while retaining essential elements'),\n", - " ('make out', 'make out and issue'),\n", + " 'clues': [('turn off', 'cause to stop operating by disengaging a switch'),\n", + " ('cut', 'make an incision or separation'),\n", + " ('slew', 'turn sharply; change direction abruptly'),\n", + " ('issue', 'make out and issue'),\n", + " ('contract', 'reduce in scope while retaining essential elements'),\n", " ('sheer', 'turn sharply; change direction abruptly'),\n", + " ('make out', 'make out and issue'),\n", " ('prune', 'weed out unwanted or unnecessary things'),\n", - " ('cut off', 'cease, stop'),\n", - " ('write out', 'make out and issue'),\n", + " ('rationalize', 'weed out unwanted or unnecessary things'),\n", " ('edit out', 'cut and assemble the components of'),\n", + " ('hack', 'be able to manage or manage successfully'),\n", + " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", " ('trim down', 'cut down on; make a reduction in'),\n", + " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('foreshorten', 'reduce in scope while retaining essential elements'),\n", + " ('curve', 'turn sharply; change direction abruptly'),\n", + " ('disregard', 'refuse to acknowledge'),\n", + " ('slue', 'turn sharply; change direction abruptly'),\n", " ('snub', 'refuse to acknowledge'),\n", - " ('issue', 'make out and issue'),\n", - " ('turn off', 'cause to stop operating by disengaging a switch'),\n", + " ('swerve', 'turn sharply; change direction abruptly'),\n", " ('geld', 'cut off the testicles (of male animals such as horses)'),\n", + " ('ignore', 'refuse to acknowledge'),\n", + " ('skip', 'intentionally fail to attend'),\n", + " ('cut back', 'cut down on; make a reduction in'),\n", + " ('write out', 'make out and issue'),\n", + " ('burn', 'create by duplicating data'),\n", + " ('cut off', 'cease, stop'),\n", + " ('trim back', 'cut down on; make a reduction in'),\n", + " ('turn out', 'cause to stop operating by disengaging a switch'),\n", + " ('cut down', 'cut down on; make a reduction in'),\n", + " ('bring down', 'cut down on; make a reduction in'),\n", + " ('veer', 'turn sharply; change direction abruptly'),\n", " ('shorten', 'reduce in scope while retaining essential elements'),\n", - " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('contract', 'reduce in scope while retaining essential elements'),\n", - " ('slew', 'turn sharply; change direction abruptly'),\n", - " ('slue', 'turn sharply; change direction abruptly'),\n", - " ('curve', 'turn sharply; change direction abruptly'),\n", + " ('edit', 'cut and assemble the components of'),\n", + " ('trend', 'turn sharply; change direction abruptly'),\n", + " ('switch off', 'cause to stop operating by disengaging a switch'),\n", + " ('abbreviate', 'reduce in scope while retaining essential elements'),\n", " ('trim', 'cut down on; make a reduction in'),\n", - " ('bring down', 'cut down on; make a reduction in'),\n", + " ('tailor', 'style and tailor in a certain fashion'),\n", + " ('abridge', 'reduce in scope while retaining essential elements'),\n", " ('dilute', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('cut back', 'cut down on; make a reduction in'),\n", - " ('disregard', 'refuse to acknowledge')]},\n", + " ('thin out', 'lessen the strength or flavor of a solution or mixture')]},\n", " {'answer': 'dabbled',\n", " 'hint': 'synonyms for dabbled',\n", - " 'clues': [('smatter', 'work with in an amateurish manner'),\n", - " ('dabble', 'play in or as if in water, as of small children'),\n", - " ('play around', 'work with in an amateurish manner'),\n", + " 'clues': [('dabble', 'dip a foot or hand briefly into a liquid'),\n", " ('splash around', 'play in or as if in water, as of small children'),\n", + " ('smatter', 'work with in an amateurish manner'),\n", + " ('play around', 'work with in an amateurish manner'),\n", " ('paddle', 'play in or as if in water, as of small children')]},\n", " {'answer': 'damn',\n", " 'hint': 'synonyms for damn',\n", - " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n", - " ('bedamn', 'wish harm upon; invoke evil upon'),\n", - " ('curse', 'wish harm upon; invoke evil upon'),\n", + " 'clues': [('curse', 'wish harm upon; invoke evil upon'),\n", " ('beshrew', 'wish harm upon; invoke evil upon'),\n", - " ('anathemise', 'wish harm upon; invoke evil upon'),\n", - " ('imprecate', 'wish harm upon; invoke evil upon')]},\n", + " ('imprecate', 'wish harm upon; invoke evil upon'),\n", + " ('maledict', 'wish harm upon; invoke evil upon'),\n", + " ('anathemize', 'wish harm upon; invoke evil upon'),\n", + " ('bedamn', 'wish harm upon; invoke evil upon')]},\n", " {'answer': 'damned',\n", " 'hint': 'synonyms for damned',\n", " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n", + " ('bedamn', 'wish harm upon; invoke evil upon'),\n", + " ('curse', 'wish harm upon; invoke evil upon'),\n", " ('beshrew', 'wish harm upon; invoke evil upon'),\n", - " ('anathemise', 'wish harm upon; invoke evil upon'),\n", - " ('imprecate', 'wish harm upon; invoke evil upon'),\n", " ('damn', 'wish harm upon; invoke evil upon'),\n", - " ('curse', 'wish harm upon; invoke evil upon'),\n", - " ('bedamn', 'wish harm upon; invoke evil upon')]},\n", + " ('imprecate', 'wish harm upon; invoke evil upon'),\n", + " ('anathemize', 'wish harm upon; invoke evil upon')]},\n", " {'answer': 'damning',\n", " 'hint': 'synonyms for damning',\n", " 'clues': [('maledict', 'wish harm upon; invoke evil upon'),\n", + " ('bedamn', 'wish harm upon; invoke evil upon'),\n", + " ('curse', 'wish harm upon; invoke evil upon'),\n", " ('beshrew', 'wish harm upon; invoke evil upon'),\n", - " ('anathemise', 'wish harm upon; invoke evil upon'),\n", - " ('imprecate', 'wish harm upon; invoke evil upon'),\n", " ('damn', 'wish harm upon; invoke evil upon'),\n", - " ('curse', 'wish harm upon; invoke evil upon'),\n", - " ('bedamn', 'wish harm upon; invoke evil upon')]},\n", + " ('imprecate', 'wish harm upon; invoke evil upon'),\n", + " ('anathemize', 'wish harm upon; invoke evil upon')]},\n", " {'answer': 'damp',\n", " 'hint': 'synonyms for damp',\n", - " 'clues': [('muffle', 'deaden (a sound or noise), especially by wrapping'),\n", + " 'clues': [('dampen', 'lessen in force or effect'),\n", + " ('deaden', 'make vague or obscure or make (an image) less visible'),\n", + " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n", + " ('tone down', 'deaden (a sound or noise), especially by wrapping'),\n", " ('break', 'lessen in force or effect'),\n", + " ('muffle', 'deaden (a sound or noise), especially by wrapping'),\n", " ('weaken', 'lessen in force or effect'),\n", - " ('soften', 'lessen in force or effect'),\n", - " ('deaden', 'make vague or obscure or make (an image) less visible'),\n", - " ('dampen', 'deaden (a sound or noise), especially by wrapping'),\n", " ('dull', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('tone down', 'deaden (a sound or noise), especially by wrapping')]},\n", + " ('soften', 'lessen in force or effect')]},\n", " {'answer': 'daring',\n", " 'hint': 'synonyms for daring',\n", - " 'clues': [('presume',\n", - " 'take upon oneself; act presumptuously, without permission'),\n", + " 'clues': [('dare', 'to be courageous enough to try or do something; ,'),\n", " ('make bold',\n", " 'take upon oneself; act presumptuously, without permission'),\n", - " ('dare', 'challenge'),\n", + " ('presume', 'take upon oneself; act presumptuously, without permission'),\n", " ('defy', 'challenge')]},\n", " {'answer': 'dashed',\n", " 'hint': 'synonyms for dashed',\n", " 'clues': [('daunt', 'cause to lose courage'),\n", + " ('dash', 'cause to lose courage'),\n", + " ('shoot', 'run or move very quickly or hastily'),\n", + " ('pall', 'cause to lose courage'),\n", + " ('flash', 'run or move very quickly or hastily'),\n", " ('dart', 'run or move very quickly or hastily'),\n", - " ('frighten off', 'cause to lose courage'),\n", " ('smash', 'break into pieces, as by striking or knocking over'),\n", - " ('crash', 'hurl or thrust violently'),\n", - " ('scare away', 'cause to lose courage'),\n", - " ('scud', 'run or move very quickly or hastily'),\n", - " ('dash', 'cause to lose courage'),\n", - " ('scare', 'cause to lose courage'),\n", " ('scoot', 'run or move very quickly or hastily'),\n", - " ('pall', 'cause to lose courage'),\n", " ('frighten away', 'cause to lose courage'),\n", + " ('scare away', 'cause to lose courage'),\n", + " ('scud', 'run or move very quickly or hastily'),\n", + " ('frighten off', 'cause to lose courage'),\n", " ('scare off', 'cause to lose courage'),\n", - " ('flash', 'run or move very quickly or hastily'),\n", - " ('shoot', 'run or move very quickly or hastily')]},\n", + " ('crash', 'hurl or thrust violently'),\n", + " ('scare', 'cause to lose courage')]},\n", " {'answer': 'dashing',\n", " 'hint': 'synonyms for dashing',\n", " 'clues': [('daunt', 'cause to lose courage'),\n", + " ('dash', 'cause to lose courage'),\n", + " ('shoot', 'run or move very quickly or hastily'),\n", + " ('pall', 'cause to lose courage'),\n", + " ('flash', 'run or move very quickly or hastily'),\n", " ('dart', 'run or move very quickly or hastily'),\n", - " ('frighten off', 'cause to lose courage'),\n", " ('smash', 'break into pieces, as by striking or knocking over'),\n", - " ('crash', 'hurl or thrust violently'),\n", - " ('scare away', 'cause to lose courage'),\n", - " ('scud', 'run or move very quickly or hastily'),\n", - " ('dash', 'cause to lose courage'),\n", - " ('scare', 'cause to lose courage'),\n", " ('scoot', 'run or move very quickly or hastily'),\n", - " ('pall', 'cause to lose courage'),\n", " ('frighten away', 'cause to lose courage'),\n", + " ('scare away', 'cause to lose courage'),\n", + " ('scud', 'run or move very quickly or hastily'),\n", + " ('frighten off', 'cause to lose courage'),\n", " ('scare off', 'cause to lose courage'),\n", - " ('flash', 'run or move very quickly or hastily'),\n", - " ('shoot', 'run or move very quickly or hastily')]},\n", + " ('crash', 'hurl or thrust violently'),\n", + " ('scare', 'cause to lose courage')]},\n", " {'answer': 'dated',\n", " 'hint': 'synonyms for dated',\n", - " 'clues': [('go out', 'date regularly; have a steady relationship with'),\n", - " ('date stamp', 'stamp with a date'),\n", - " ('date', 'go on a date with'),\n", + " 'clues': [('date', 'go on a date with'),\n", " ('go steady', 'date regularly; have a steady relationship with'),\n", - " ('see', 'date regularly; have a steady relationship with')]},\n", + " ('date stamp', 'stamp with a date'),\n", + " ('see', 'date regularly; have a steady relationship with'),\n", + " ('go out', 'date regularly; have a steady relationship with')]},\n", " {'answer': 'daunted',\n", " 'hint': 'synonyms for daunted',\n", - " 'clues': [('daunt', 'cause to lose courage'),\n", - " ('frighten off', 'cause to lose courage'),\n", - " ('pall', 'cause to lose courage'),\n", + " 'clues': [('frighten away', 'cause to lose courage'),\n", + " ('daunt', 'cause to lose courage'),\n", + " ('dash', 'cause to lose courage'),\n", " ('scare away', 'cause to lose courage'),\n", - " ('frighten away', 'cause to lose courage'),\n", + " ('frighten off', 'cause to lose courage'),\n", " ('scare off', 'cause to lose courage'),\n", - " ('dash', 'cause to lose courage'),\n", + " ('pall', 'cause to lose courage'),\n", " ('scare', 'cause to lose courage')]},\n", " {'answer': 'daunting',\n", " 'hint': 'synonyms for daunting',\n", - " 'clues': [('daunt', 'cause to lose courage'),\n", - " ('frighten off', 'cause to lose courage'),\n", - " ('pall', 'cause to lose courage'),\n", + " 'clues': [('frighten away', 'cause to lose courage'),\n", + " ('daunt', 'cause to lose courage'),\n", + " ('dash', 'cause to lose courage'),\n", " ('scare away', 'cause to lose courage'),\n", - " ('frighten away', 'cause to lose courage'),\n", + " ('frighten off', 'cause to lose courage'),\n", " ('scare off', 'cause to lose courage'),\n", - " ('dash', 'cause to lose courage'),\n", + " ('pall', 'cause to lose courage'),\n", " ('scare', 'cause to lose courage')]},\n", - " {'answer': 'dazed',\n", - " 'hint': 'synonyms for dazed',\n", - " 'clues': [('daze',\n", - " 'to cause someone to lose clear vision, especially from intense light'),\n", - " ('dazzle',\n", - " 'to cause someone to lose clear vision, especially from intense light'),\n", - " ('bedaze', 'overcome as with astonishment or disbelief'),\n", - " ('stun', 'overcome as with astonishment or disbelief')]},\n", " {'answer': 'deadened',\n", " 'hint': 'synonyms for deadened',\n", - " 'clues': [('deaden',\n", + " 'clues': [('blunt',\n", " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", + " ('deaden', 'make vapid or deprive of spirit'),\n", " ('damp', 'make vague or obscure or make (an image) less visible'),\n", - " ('dampen', 'make vague or obscure or make (an image) less visible'),\n", - " ('blunt',\n", - " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", " ('girdle',\n", - " 'cut a girdle around so as to kill by interrupting the circulation of water and nutrients')]},\n", + " 'cut a girdle around so as to kill by interrupting the circulation of water and nutrients'),\n", + " ('dampen', 'make vague or obscure or make (an image) less visible')]},\n", " {'answer': 'deadening',\n", " 'hint': 'synonyms for deadening',\n", - " 'clues': [('deaden',\n", + " 'clues': [('blunt',\n", " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", + " ('deaden', 'make vapid or deprive of spirit'),\n", " ('damp', 'make vague or obscure or make (an image) less visible'),\n", - " ('dampen', 'make vague or obscure or make (an image) less visible'),\n", - " ('blunt',\n", - " 'make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation'),\n", " ('girdle',\n", - " 'cut a girdle around so as to kill by interrupting the circulation of water and nutrients')]},\n", + " 'cut a girdle around so as to kill by interrupting the circulation of water and nutrients'),\n", + " ('dampen', 'make vague or obscure or make (an image) less visible')]},\n", " {'answer': 'debased',\n", " 'hint': 'synonyms for debased',\n", " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('load',\n", + " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('alloy', 'lower in value by increasing the base-metal content'),\n", " ('dilute',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('load',\n", - " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('debase',\n", - " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", + " ('alloy', 'lower in value by increasing the base-metal content'),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'lower in value by increasing the base-metal content'),\n", " ('adulterate',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", " ('stretch',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'debasing',\n", " 'hint': 'synonyms for debasing',\n", " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('load',\n", + " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('alloy', 'lower in value by increasing the base-metal content'),\n", " ('dilute',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('load',\n", - " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('debase',\n", - " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", + " ('alloy', 'lower in value by increasing the base-metal content'),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'lower in value by increasing the base-metal content'),\n", " ('adulterate',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", " ('stretch',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'debauched',\n", " 'hint': 'synonyms for debauched',\n", " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'decayed',\n", " 'hint': 'synonyms for decayed',\n", - " 'clues': [('decay', 'lose a stored charge, magnetic flux, or current'),\n", + " 'clues': [('decay', 'undergo decay or decomposition'),\n", " ('disintegrate', 'lose a stored charge, magnetic flux, or current'),\n", - " ('dilapidate', 'fall into decay or ruin'),\n", " ('decompose', 'lose a stored charge, magnetic flux, or current'),\n", - " ('crumble', 'fall into decay or ruin')]},\n", + " ('crumble', 'fall into decay or ruin'),\n", + " ('dilapidate', 'fall into decay or ruin')]},\n", " {'answer': 'deceased',\n", " 'hint': 'synonyms for deceased',\n", - " 'clues': [('drop dead',\n", + " 'clues': [('perish',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('decease',\n", + " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('give-up the ghost',\n", + " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " (\"cash in one's chips\",\n", + " ('conk',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('go',\n", + " ('die',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('choke',\n", + " ('croak',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('perish',\n", + " ('decease',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('kick the bucket',\n", + " ('expire',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('exit',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('expire',\n", + " (\"cash in one's chips\",\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('give-up the ghost',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die',\n", + " ('choke',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('conk',\n", + " ('go',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('croak',\n", + " ('pass',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pop off',\n", + " ('pass away',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life')]},\n", " {'answer': 'decided',\n", " 'hint': 'synonyms for decided',\n", - " 'clues': [('decide', 'reach, make, or come to a decision about something'),\n", - " ('resolve', 'bring to an end; settle conclusively'),\n", - " ('settle', 'bring to an end; settle conclusively'),\n", + " 'clues': [('resolve', 'bring to an end; settle conclusively'),\n", + " ('decide', 'reach, make, or come to a decision about something'),\n", " ('adjudicate', 'bring to an end; settle conclusively'),\n", - " ('determine', 'reach, make, or come to a decision about something'),\n", " (\"make up one's mind\",\n", - " 'reach, make, or come to a decision about something')]},\n", + " 'reach, make, or come to a decision about something'),\n", + " ('settle', 'bring to an end; settle conclusively'),\n", + " ('determine', 'reach, make, or come to a decision about something')]},\n", " {'answer': 'deciding',\n", " 'hint': 'synonyms for deciding',\n", - " 'clues': [('decide', 'reach, make, or come to a decision about something'),\n", - " ('resolve', 'bring to an end; settle conclusively'),\n", - " ('settle', 'bring to an end; settle conclusively'),\n", + " 'clues': [('resolve', 'bring to an end; settle conclusively'),\n", + " ('decide', 'reach, make, or come to a decision about something'),\n", " ('adjudicate', 'bring to an end; settle conclusively'),\n", - " ('determine', 'reach, make, or come to a decision about something'),\n", " (\"make up one's mind\",\n", - " 'reach, make, or come to a decision about something')]},\n", + " 'reach, make, or come to a decision about something'),\n", + " ('settle', 'bring to an end; settle conclusively'),\n", + " ('determine', 'reach, make, or come to a decision about something')]},\n", " {'answer': 'deciphered',\n", " 'hint': 'synonyms for deciphered',\n", - " 'clues': [('decrypt', 'convert code into ordinary language'),\n", - " ('decipher', 'convert code into ordinary language'),\n", - " ('trace', 'read with difficulty'),\n", - " ('decode', 'convert code into ordinary language')]},\n", + " 'clues': [('decipher', 'convert code into ordinary language'),\n", + " ('decrypt', 'convert code into ordinary language'),\n", + " ('decode', 'convert code into ordinary language'),\n", + " ('trace', 'read with difficulty')]},\n", " {'answer': 'declared',\n", " 'hint': 'synonyms for declared',\n", - " 'clues': [('declare', 'announce publicly or officially'),\n", - " ('announce', 'announce publicly or officially'),\n", + " 'clues': [('declare',\n", + " 'designate (a trump suit or no-trump) with the final bid of a hand'),\n", " ('adjudge', 'declare to be'),\n", + " ('announce', 'announce publicly or officially'),\n", " ('hold', 'declare to be')]},\n", " {'answer': 'decorated',\n", " 'hint': 'synonyms for decorated',\n", - " 'clues': [('adorn',\n", - " 'make more attractive by adding ornament, colour, etc.'),\n", + " 'clues': [('decorate', 'be beautiful to look at'),\n", + " ('adorn', 'make more attractive by adding ornament, colour, etc.'),\n", + " ('ornament', 'make more attractive by adding ornament, colour, etc.'),\n", " ('beautify', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('decorate', 'provide with decoration'),\n", - " ('grace', 'be beautiful to look at'),\n", " ('embellish', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('ornament', 'make more attractive by adding ornament, colour, etc.'),\n", - " ('deck', 'be beautiful to look at'),\n", - " ('dress', 'provide with decoration')]},\n", + " ('dress', 'provide with decoration'),\n", + " ('grace', 'make more attractive by adding ornament, colour, etc.'),\n", + " ('deck', 'be beautiful to look at')]},\n", " {'answer': 'decreased',\n", " 'hint': 'synonyms for decreased',\n", - " 'clues': [('lessen', 'make smaller'),\n", + " 'clues': [('decrease', 'decrease in size, extent, or range'),\n", " ('minify', 'make smaller'),\n", - " ('decrease', 'make smaller'),\n", + " ('lessen', 'decrease in size, extent, or range'),\n", " ('diminish', 'decrease in size, extent, or range'),\n", " ('fall', 'decrease in size, extent, or range')]},\n", " {'answer': 'decreasing',\n", " 'hint': 'synonyms for decreasing',\n", - " 'clues': [('lessen', 'make smaller'),\n", + " 'clues': [('decrease', 'decrease in size, extent, or range'),\n", " ('minify', 'make smaller'),\n", - " ('decrease', 'make smaller'),\n", + " ('lessen', 'decrease in size, extent, or range'),\n", " ('diminish', 'decrease in size, extent, or range'),\n", " ('fall', 'decrease in size, extent, or range')]},\n", " {'answer': 'dedicated',\n", " 'hint': 'synonyms for dedicated',\n", - " 'clues': [('dedicate',\n", + " 'clues': [('consecrate',\n", " 'give entirely to a specific person, activity, or cause'),\n", - " ('commit', 'give entirely to a specific person, activity, or cause'),\n", + " ('dedicate', 'inscribe or address by way of compliment'),\n", " ('devote', 'give entirely to a specific person, activity, or cause'),\n", - " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", - " ('give', 'give entirely to a specific person, activity, or cause')]},\n", + " ('give', 'give entirely to a specific person, activity, or cause'),\n", + " ('commit', 'give entirely to a specific person, activity, or cause')]},\n", " {'answer': 'deepening',\n", " 'hint': 'synonyms for deepening',\n", - " 'clues': [('deepen', 'become more intense'),\n", - " ('heighten', 'make more intense, stronger, or more marked; ,'),\n", + " 'clues': [('deepen', 'make more intense, stronger, or more marked; ,'),\n", + " ('intensify', 'become more intense'),\n", " ('compound', 'make more intense, stronger, or more marked; ,'),\n", - " ('change', 'become deeper in tone'),\n", - " ('intensify', 'make more intense, stronger, or more marked; ,')]},\n", + " ('heighten', 'make more intense, stronger, or more marked; ,'),\n", + " ('change', 'become deeper in tone')]},\n", " {'answer': 'defeated',\n", " 'hint': 'synonyms for defeated',\n", " 'clues': [('defeat', 'thwart the passage of'),\n", - " ('vote out', 'thwart the passage of'),\n", - " ('get the better of', 'win a victory over'),\n", + " ('vote down', 'thwart the passage of'),\n", " ('overcome', 'win a victory over'),\n", " ('shoot down', 'thwart the passage of'),\n", - " ('vote down', 'thwart the passage of'),\n", - " ('kill', 'thwart the passage of')]},\n", + " ('kill', 'thwart the passage of'),\n", + " ('vote out', 'thwart the passage of'),\n", + " ('get the better of', 'win a victory over')]},\n", " {'answer': 'defending',\n", " 'hint': 'synonyms for defending',\n", - " 'clues': [('maintain', 'state or assert'),\n", - " ('defend', 'fight against or resist strongly'),\n", - " ('represent', 'be the defense counsel for someone in a trial'),\n", + " 'clues': [('defend', 'protect or fight for as a champion'),\n", " ('fight down', 'fight against or resist strongly'),\n", - " ('support', 'argue or speak in defense of'),\n", " ('fend for', 'argue or speak in defense of'),\n", - " ('fight', 'fight against or resist strongly'),\n", - " ('oppose', 'fight against or resist strongly'),\n", + " ('support', 'argue or speak in defense of'),\n", + " ('hold', 'protect against a challenge or attack'),\n", " ('guard', 'protect against a challenge or attack'),\n", + " ('fight back', 'fight against or resist strongly'),\n", + " ('oppose', 'fight against or resist strongly'),\n", + " ('represent', 'be the defense counsel for someone in a trial'),\n", + " ('maintain', 'state or assert'),\n", " ('champion', 'protect or fight for as a champion'),\n", - " ('hold', 'protect against a challenge or attack'),\n", - " ('fight back', 'fight against or resist strongly')]},\n", + " ('fight', 'fight against or resist strongly')]},\n", " {'answer': 'defiled',\n", " 'hint': 'synonyms for defiled',\n", - " 'clues': [('maculate', 'spot, stain, or pollute'),\n", - " ('befoul', 'spot, stain, or pollute'),\n", - " ('tarnish',\n", + " 'clues': [('maculate',\n", " 'make dirty or spotty, as by exposure to air; also used metaphorically'),\n", " ('defile', 'spot, stain, or pollute'),\n", - " ('cloud', 'place under suspicion or cast doubt upon'),\n", + " ('taint', 'place under suspicion or cast doubt upon'),\n", + " ('foul', 'spot, stain, or pollute'),\n", " ('stain',\n", " 'make dirty or spotty, as by exposure to air; also used metaphorically'),\n", - " ('foul', 'spot, stain, or pollute'),\n", - " ('taint', 'place under suspicion or cast doubt upon'),\n", + " ('cloud', 'place under suspicion or cast doubt upon'),\n", + " ('befoul', 'spot, stain, or pollute'),\n", + " ('sully',\n", + " 'make dirty or spotty, as by exposure to air; also used metaphorically'),\n", " ('corrupt', 'place under suspicion or cast doubt upon'),\n", - " ('sully', 'place under suspicion or cast doubt upon')]},\n", + " ('tarnish',\n", + " 'make dirty or spotty, as by exposure to air; also used metaphorically')]},\n", " {'answer': 'defined',\n", " 'hint': 'synonyms for defined',\n", - " 'clues': [('specify', 'decide upon or fix definitely'),\n", + " 'clues': [('specify', 'determine the essential quality of'),\n", + " ('set', 'decide upon or fix definitely'),\n", " ('delineate', 'show the form or outline of'),\n", " ('define', 'determine the essential quality of'),\n", - " ('fix', 'decide upon or fix definitely'),\n", - " ('limit', 'decide upon or fix definitely'),\n", - " ('determine', 'decide upon or fix definitely'),\n", - " ('set', 'decide upon or fix definitely'),\n", + " ('delimit', 'determine the essential quality of'),\n", " ('delimitate', 'determine the essential quality of'),\n", - " ('delimit', 'determine the essential quality of')]},\n", + " ('determine', 'decide upon or fix definitely'),\n", + " ('limit', 'decide upon or fix definitely'),\n", + " ('fix', 'decide upon or fix definitely')]},\n", " {'answer': 'deformed',\n", " 'hint': 'synonyms for deformed',\n", - " 'clues': [('flex',\n", - " 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('deform', 'assume a different shape or form'),\n", - " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n", - " ('distort', 'alter the shape of (something) by stress'),\n", - " ('change form', 'assume a different shape or form'),\n", + " 'clues': [('deform', 'assume a different shape or form'),\n", + " ('wring', 'twist and press out of shape'),\n", + " ('flex', 'cause (a plastic object) to assume a crooked or angular form'),\n", + " ('bend', 'cause (a plastic object) to assume a crooked or angular form'),\n", " ('contort', 'twist and press out of shape'),\n", + " ('turn', 'cause (a plastic object) to assume a crooked or angular form'),\n", " ('twist', 'cause (a plastic object) to assume a crooked or angular form'),\n", " ('change shape', 'assume a different shape or form'),\n", - " ('bend', 'cause (a plastic object) to assume a crooked or angular form'),\n", + " ('distort', 'twist and press out of shape'),\n", " ('strain', 'alter the shape of (something) by stress'),\n", - " ('wring', 'twist and press out of shape')]},\n", + " ('change form', 'assume a different shape or form')]},\n", " {'answer': 'degraded',\n", " 'hint': 'synonyms for degraded',\n", - " 'clues': [('demean', 'reduce in worth or character, usually verbally'),\n", - " ('degrade', 'reduce in worth or character, usually verbally'),\n", - " ('disgrace', 'reduce in worth or character, usually verbally'),\n", + " 'clues': [('put down', 'reduce in worth or character, usually verbally'),\n", + " ('take down', 'reduce in worth or character, usually verbally'),\n", + " ('degrade', 'reduce the level of land, as by erosion'),\n", " ('cheapen', 'lower the grade of something; reduce its worth'),\n", - " ('put down', 'reduce in worth or character, usually verbally'),\n", - " ('take down', 'reduce in worth or character, usually verbally')]},\n", + " ('disgrace', 'reduce in worth or character, usually verbally'),\n", + " ('demean', 'reduce in worth or character, usually verbally')]},\n", " {'answer': 'degrading',\n", " 'hint': 'synonyms for degrading',\n", - " 'clues': [('demean', 'reduce in worth or character, usually verbally'),\n", - " ('degrade', 'reduce in worth or character, usually verbally'),\n", - " ('disgrace', 'reduce in worth or character, usually verbally'),\n", + " 'clues': [('put down', 'reduce in worth or character, usually verbally'),\n", + " ('take down', 'reduce in worth or character, usually verbally'),\n", + " ('degrade', 'reduce the level of land, as by erosion'),\n", " ('cheapen', 'lower the grade of something; reduce its worth'),\n", - " ('put down', 'reduce in worth or character, usually verbally'),\n", - " ('take down', 'reduce in worth or character, usually verbally')]},\n", + " ('disgrace', 'reduce in worth or character, usually verbally'),\n", + " ('demean', 'reduce in worth or character, usually verbally')]},\n", " {'answer': 'dejected',\n", " 'hint': 'synonyms for dejected',\n", - " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", - " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'delayed',\n", " 'hint': 'synonyms for delayed',\n", - " 'clues': [('detain', 'cause to be slowed down or delayed'),\n", - " ('delay', 'cause to be slowed down or delayed'),\n", - " ('check', 'slow the growth or development of'),\n", + " 'clues': [('delay', 'cause to be slowed down or delayed'),\n", + " ('detain', 'stop or halt'),\n", " ('retard', 'slow the growth or development of'),\n", - " ('hold up', 'cause to be slowed down or delayed'),\n", - " ('stay', 'stop or halt')]},\n", + " ('check', 'slow the growth or development of'),\n", + " ('stay', 'stop or halt'),\n", + " ('hold up', 'cause to be slowed down or delayed')]},\n", " {'answer': 'deliberate',\n", " 'hint': 'synonyms for deliberate',\n", - " 'clues': [('turn over', 'think about carefully; weigh'),\n", - " ('debate', 'think about carefully; weigh'),\n", - " ('consider', 'think about carefully; weigh'),\n", - " ('moot', 'think about carefully; weigh')]},\n", + " 'clues': [('consider', 'think about carefully; weigh'),\n", + " ('moot', 'think about carefully; weigh'),\n", + " ('debate', 'discuss the pros and cons of an issue'),\n", + " ('turn over', 'think about carefully; weigh')]},\n", " {'answer': 'delighted',\n", " 'hint': 'synonyms for delighted',\n", - " 'clues': [('ravish', 'hold spellbound'),\n", + " 'clues': [('enthral', 'hold spellbound'),\n", + " ('delight', 'give pleasure to or be pleasing to'),\n", " ('transport', 'hold spellbound'),\n", + " ('revel', 'take delight in'),\n", " ('enchant', 'hold spellbound'),\n", - " ('enthral', 'hold spellbound'),\n", - " ('enjoy', 'take delight in'),\n", - " ('delight', 'take delight in'),\n", - " ('please', 'give pleasure to or be pleasing to'),\n", " ('enrapture', 'hold spellbound'),\n", - " ('revel', 'take delight in')]},\n", + " ('ravish', 'hold spellbound'),\n", + " ('please', 'give pleasure to or be pleasing to'),\n", + " ('enjoy', 'take delight in')]},\n", " {'answer': 'delimited',\n", " 'hint': 'synonyms for delimited',\n", - " 'clues': [('define', 'determine the essential quality of'),\n", - " ('specify', 'determine the essential quality of'),\n", - " ('delimitate', 'determine the essential quality of'),\n", + " 'clues': [('specify', 'determine the essential quality of'),\n", + " ('define', 'determine the essential quality of'),\n", + " ('delimit', 'determine the essential quality of'),\n", " ('demarcate', 'set, mark, or draw the boundaries of something'),\n", + " ('delimitate', 'determine the essential quality of'),\n", " ('subtend', 'be opposite to; of angles and sides, in geometry'),\n", - " ('delineate', 'determine the essential quality of'),\n", - " ('delimit', 'be opposite to; of angles and sides, in geometry')]},\n", + " ('delineate', 'determine the essential quality of')]},\n", " {'answer': 'delineate',\n", " 'hint': 'synonyms for delineate',\n", - " 'clues': [('line', 'make a mark or lines on a surface'),\n", - " ('define', 'determine the essential quality of'),\n", - " ('describe', 'make a mark or lines on a surface'),\n", - " ('draw', 'make a mark or lines on a surface'),\n", - " ('specify', 'determine the essential quality of'),\n", - " ('limn', 'trace the shape of'),\n", - " ('delimitate', 'determine the essential quality of'),\n", + " 'clues': [('specify', 'determine the essential quality of'),\n", " ('trace', 'make a mark or lines on a surface'),\n", + " ('define', 'determine the essential quality of'),\n", " ('delimit', 'determine the essential quality of'),\n", - " ('outline', 'trace the shape of')]},\n", + " ('outline', 'trace the shape of'),\n", + " ('limn', 'trace the shape of'),\n", + " ('draw', 'make a mark or lines on a surface'),\n", + " ('describe', 'make a mark or lines on a surface'),\n", + " ('line', 'make a mark or lines on a surface'),\n", + " ('delimitate', 'determine the essential quality of')]},\n", " {'answer': 'delineated',\n", " 'hint': 'synonyms for delineated',\n", - " 'clues': [('line', 'make a mark or lines on a surface'),\n", + " 'clues': [('specify', 'determine the essential quality of'),\n", + " ('trace', 'make a mark or lines on a surface'),\n", " ('delineate', 'show the form or outline of'),\n", " ('define', 'determine the essential quality of'),\n", - " ('describe', 'make a mark or lines on a surface'),\n", - " ('draw', 'make a mark or lines on a surface'),\n", - " ('specify', 'determine the essential quality of'),\n", - " ('limn', 'trace the shape of'),\n", - " ('delimitate', 'determine the essential quality of'),\n", - " ('trace', 'make a mark or lines on a surface'),\n", " ('delimit', 'determine the essential quality of'),\n", - " ('outline', 'trace the shape of')]},\n", + " ('outline', 'trace the shape of'),\n", + " ('limn', 'trace the shape of'),\n", + " ('draw', 'make a mark or lines on a surface'),\n", + " ('describe', 'make a mark or lines on a surface'),\n", + " ('line', 'make a mark or lines on a surface'),\n", + " ('delimitate', 'determine the essential quality of')]},\n", " {'answer': 'demanding',\n", " 'hint': 'synonyms for demanding',\n", - " 'clues': [('need', 'require as useful, just, or proper'),\n", - " ('require', 'require as useful, just, or proper'),\n", - " ('take', 'require as useful, just, or proper'),\n", - " ('call for', 'require as useful, just, or proper'),\n", - " ('demand', 'lay legal claim to'),\n", - " ('ask', 'require as useful, just, or proper'),\n", - " ('necessitate', 'require as useful, just, or proper'),\n", + " 'clues': [('ask', 'require as useful, just, or proper'),\n", " ('involve', 'require as useful, just, or proper'),\n", + " ('demand', 'claim as due or just'),\n", + " ('exact', 'claim as due or just'),\n", + " ('need', 'require as useful, just, or proper'),\n", " ('postulate', 'require as useful, just, or proper'),\n", - " ('exact', 'claim as due or just')]},\n", + " ('necessitate', 'require as useful, just, or proper'),\n", + " ('require', 'require as useful, just, or proper'),\n", + " ('call for', 'require as useful, just, or proper'),\n", + " ('take', 'require as useful, just, or proper')]},\n", " {'answer': 'demeaning',\n", " 'hint': 'synonyms for demeaning',\n", - " 'clues': [('demean', 'reduce in worth or character, usually verbally'),\n", + " 'clues': [('put down', 'reduce in worth or character, usually verbally'),\n", + " ('take down', 'reduce in worth or character, usually verbally'),\n", " ('degrade', 'reduce in worth or character, usually verbally'),\n", " ('disgrace', 'reduce in worth or character, usually verbally'),\n", - " ('put down', 'reduce in worth or character, usually verbally'),\n", - " ('take down', 'reduce in worth or character, usually verbally')]},\n", + " ('demean', 'reduce in worth or character, usually verbally')]},\n", " {'answer': 'demolished',\n", " 'hint': 'synonyms for demolished',\n", " 'clues': [('pulverise', 'destroy completely'),\n", " ('demolish', 'humiliate or depress completely'),\n", - " ('destroy', 'defeat soundly'),\n", " ('crush', 'humiliate or depress completely'),\n", - " ('smash', 'humiliate or depress completely')]},\n", + " ('smash', 'humiliate or depress completely'),\n", + " ('destroy', 'defeat soundly')]},\n", " {'answer': 'demonstrated',\n", " 'hint': 'synonyms for demonstrated',\n", - " 'clues': [('attest',\n", + " 'clues': [('manifest',\n", + " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", + " ('demo', 'give an exhibition of to an interested audience'),\n", + " ('demonstrate', 'give an exhibition of to an interested audience'),\n", + " ('exhibit', 'give an exhibition of to an interested audience'),\n", + " ('certify',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", + " ('present', 'give an exhibition of to an interested audience'),\n", " ('shew',\n", " 'establish the validity of something, as by an example, explanation or experiment'),\n", + " ('march', 'march in protest; take part in a demonstration'),\n", + " ('show',\n", + " 'establish the validity of something, as by an example, explanation or experiment'),\n", " ('establish',\n", " 'establish the validity of something, as by an example, explanation or experiment'),\n", - " ('certify',\n", + " ('evidence',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('exhibit', 'give an exhibition of to an interested audience'),\n", - " ('manifest',\n", + " ('attest',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", " ('prove',\n", - " 'establish the validity of something, as by an example, explanation or experiment'),\n", - " ('show', 'give an exhibition of to an interested audience'),\n", - " ('demonstrate',\n", - " 'establish the validity of something, as by an example, explanation or experiment'),\n", - " ('present', 'give an exhibition of to an interested audience'),\n", - " ('march', 'march in protest; take part in a demonstration'),\n", - " ('demo', 'give an exhibition of to an interested audience'),\n", - " ('evidence',\n", - " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n", + " 'establish the validity of something, as by an example, explanation or experiment')]},\n", " {'answer': 'demoralised',\n", " 'hint': 'synonyms for demoralised',\n", - " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", - " ('demoralise', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\"),\n", - " ('debase', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", - " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", - " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'demoralising',\n", " 'hint': 'synonyms for demoralising',\n", - " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", - " ('demoralise', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\"),\n", - " ('debase', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", - " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", - " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'demoralized',\n", " 'hint': 'synonyms for demoralized',\n", - " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", - " ('demoralise', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\"),\n", - " ('debase', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", - " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", - " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'demoralizing',\n", " 'hint': 'synonyms for demoralizing',\n", - " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", - " ('demoralise', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", - " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\"),\n", - " ('debase', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", - " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", + " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", - " ('subvert', 'corrupt morally or by intemperance or sensuality')]},\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", + " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'denigrating',\n", " 'hint': 'synonyms for denigrating',\n", - " 'clues': [('slander',\n", + " 'clues': [('asperse',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", - " ('derogate', 'cause to seem less serious; play down'),\n", - " ('besmirch',\n", + " ('sully',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", - " ('minimize', 'cause to seem less serious; play down'),\n", - " ('smear',\n", + " ('denigrate',\n", + " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", + " ('belittle', 'cause to seem less serious; play down'),\n", + " ('calumniate',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", " ('defame',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", - " ('belittle', 'cause to seem less serious; play down'),\n", - " ('denigrate',\n", + " ('smirch',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", - " ('asperse',\n", + " ('slander',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", - " ('sully',\n", + " ('smear',\n", " 'charge falsely or with malicious intent; attack the good name and reputation of someone'),\n", - " ('calumniate',\n", - " 'charge falsely or with malicious intent; attack the good name and reputation of someone')]},\n", + " ('derogate', 'cause to seem less serious; play down'),\n", + " ('minimize', 'cause to seem less serious; play down')]},\n", " {'answer': 'departed',\n", " 'hint': 'synonyms for departed',\n", " 'clues': [('straggle', 'wander from a direct or straight course'),\n", - " ('vary', 'be at variance with; be out of line with'),\n", - " ('take off', 'leave'),\n", - " ('depart', 'leave'),\n", - " ('set forth', 'leave'),\n", + " ('set off', 'leave'),\n", + " ('deviate', 'be at variance with; be out of line with'),\n", + " ('leave', 'remove oneself from an association with or participation in'),\n", + " ('diverge', 'be at variance with; be out of line with'),\n", + " ('start out', 'leave'),\n", + " ('part', 'leave'),\n", + " ('depart', 'remove oneself from an association with or participation in'),\n", + " ('digress', 'wander from a direct or straight course'),\n", + " ('sidetrack', 'wander from a direct or straight course'),\n", " ('start', 'leave'),\n", " ('pull up stakes',\n", " 'remove oneself from an association with or participation in'),\n", - " ('deviate', 'be at variance with; be out of line with'),\n", - " ('diverge', 'be at variance with; be out of line with'),\n", - " ('set out', 'leave'),\n", + " ('go away', 'move away from a place into another direction'),\n", + " ('set forth', 'leave'),\n", " ('go', 'move away from a place into another direction'),\n", - " ('take leave', 'go away or leave'),\n", - " ('leave', 'remove oneself from an association with or participation in'),\n", - " ('digress', 'wander from a direct or straight course'),\n", - " ('set off', 'leave'),\n", " ('quit', 'go away or leave'),\n", - " ('part', 'leave'),\n", - " ('sidetrack', 'wander from a direct or straight course'),\n", - " ('start out', 'leave'),\n", - " ('go away', 'move away from a place into another direction')]},\n", + " ('set out', 'leave'),\n", + " ('vary', 'be at variance with; be out of line with'),\n", + " ('take off', 'leave'),\n", + " ('take leave', 'go away or leave')]},\n", " {'answer': 'depicted',\n", " 'hint': 'synonyms for depicted',\n", " 'clues': [('depict', 'show in, or as in, a picture'),\n", - " ('portray', 'make a portrait of'),\n", - " ('describe', 'give a description of'),\n", - " ('draw', 'give a description of'),\n", " ('show', 'show in, or as in, a picture'),\n", " ('render', 'show in, or as in, a picture'),\n", " ('picture', 'show in, or as in, a picture'),\n", - " ('limn', 'make a portrait of')]},\n", + " ('portray', 'make a portrait of'),\n", + " ('draw', 'give a description of'),\n", + " ('limn', 'make a portrait of'),\n", + " ('describe', 'give a description of')]},\n", " {'answer': 'depleted',\n", " 'hint': 'synonyms for depleted',\n", " 'clues': [('wipe out', 'use up (resources or materials)'),\n", - " ('consume', 'use up (resources or materials)'),\n", - " ('exhaust', 'use up (resources or materials)'),\n", - " ('deplete', 'use up (resources or materials)'),\n", " ('run through', 'use up (resources or materials)'),\n", - " ('use up', 'use up (resources or materials)'),\n", + " ('eat', 'use up (resources or materials)'),\n", " ('eat up', 'use up (resources or materials)'),\n", - " ('eat', 'use up (resources or materials)')]},\n", + " ('consume', 'use up (resources or materials)'),\n", + " ('deplete', 'use up (resources or materials)'),\n", + " ('exhaust', 'use up (resources or materials)'),\n", + " ('use up', 'use up (resources or materials)')]},\n", " {'answer': 'depraved',\n", " 'hint': 'synonyms for depraved',\n", " 'clues': [('deprave', 'corrupt morally or by intemperance or sensuality'),\n", + " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('debauch', 'corrupt morally or by intemperance or sensuality'),\n", - " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", " ('misdirect', 'corrupt morally or by intemperance or sensuality'),\n", - " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", + " ('corrupt', 'corrupt morally or by intemperance or sensuality'),\n", " ('pervert', 'corrupt morally or by intemperance or sensuality'),\n", - " ('demoralise', 'corrupt morally or by intemperance or sensuality'),\n", " ('profane', 'corrupt morally or by intemperance or sensuality'),\n", + " ('vitiate', 'corrupt morally or by intemperance or sensuality'),\n", " ('subvert', 'corrupt morally or by intemperance or sensuality'),\n", " ('debase', 'corrupt morally or by intemperance or sensuality')]},\n", " {'answer': 'depreciating',\n", " 'hint': 'synonyms for depreciating',\n", - " 'clues': [('depreciate', 'lower the value of something'),\n", + " 'clues': [('depreciate', 'lose in value'),\n", " ('undervalue', 'lose in value'),\n", - " ('devalue', 'lose in value'),\n", + " ('devaluate', 'lose in value'),\n", " ('vilipend', 'belittle')]},\n", " {'answer': 'depressed',\n", " 'hint': 'synonyms for depressed',\n", - " 'clues': [('depress', 'press down'),\n", - " ('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('press down', 'press down'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", - " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", " ('deject', \"lower someone's spirits; make downhearted\"),\n", - " ('lower', 'cause to drop or sink')]},\n", + " ('depress', 'lessen the activity or force of'),\n", + " ('lower', 'cause to drop or sink'),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('press down', 'press down'),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'depressing',\n", " 'hint': 'synonyms for depressing',\n", - " 'clues': [('depress', 'press down'),\n", - " ('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('press down', 'press down'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", - " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", " ('deject', \"lower someone's spirits; make downhearted\"),\n", - " ('lower', 'cause to drop or sink')]},\n", + " ('depress', 'lessen the activity or force of'),\n", + " ('lower', 'cause to drop or sink'),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('press down', 'press down'),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'deprived',\n", " 'hint': 'synonyms for deprived',\n", - " 'clues': [('deprive', 'take away'),\n", - " ('divest', 'take away possessions from someone'),\n", + " 'clues': [('strip', 'take away possessions from someone'),\n", " ('impoverish', 'take away'),\n", - " ('strip', 'take away possessions from someone')]},\n", + " ('deprive', 'keep from having, keeping, or obtaining'),\n", + " ('divest', 'take away possessions from someone')]},\n", " {'answer': 'deranged',\n", " 'hint': 'synonyms for deranged',\n", - " 'clues': [('perturb', 'throw into great confusion or disorder'),\n", - " ('derange', 'throw into great confusion or disorder'),\n", - " ('unbalance',\n", + " 'clues': [('derange',\n", " 'derange mentally, throw out of mental balance; make insane'),\n", - " ('throw out of kilter', 'throw into great confusion or disorder')]},\n", + " ('perturb', 'throw into great confusion or disorder'),\n", + " ('throw out of kilter', 'throw into great confusion or disorder'),\n", + " ('unbalance',\n", + " 'derange mentally, throw out of mental balance; make insane')]},\n", " {'answer': 'derived',\n", " 'hint': 'synonyms for derived',\n", - " 'clues': [('deduce', 'reason by deduction; establish by deduction'),\n", - " ('descend',\n", - " 'come from; be connected by a relationship of blood, for example'),\n", - " ('derive', 'come from'),\n", - " ('gain', 'obtain'),\n", + " 'clues': [('derive', 'obtain'),\n", " ('infer', 'reason by deduction; establish by deduction'),\n", + " ('gain', 'obtain'),\n", + " ('deduce', 'reason by deduction; establish by deduction'),\n", " ('deduct', 'reason by deduction; establish by deduction'),\n", " ('come',\n", + " 'come from; be connected by a relationship of blood, for example'),\n", + " ('descend',\n", " 'come from; be connected by a relationship of blood, for example')]},\n", " {'answer': 'descending',\n", " 'hint': 'synonyms for descending',\n", - " 'clues': [('condescend',\n", - " \"do something that one considers to be below one's dignity\"),\n", + " 'clues': [('descend',\n", + " 'move downward and lower, but not necessarily all the way'),\n", + " ('fall', 'come as if by falling'),\n", " ('go down', 'move downward and lower, but not necessarily all the way'),\n", - " ('descend',\n", - " 'come from; be connected by a relationship of blood, for example'),\n", - " ('come down', 'move downward and lower, but not necessarily all the way'),\n", - " ('deign', \"do something that one considers to be below one's dignity\"),\n", - " ('fall', 'move downward and lower, but not necessarily all the way'),\n", - " ('settle', 'come as if by falling'),\n", " ('derive',\n", " 'come from; be connected by a relationship of blood, for example'),\n", + " ('settle', 'come as if by falling'),\n", " ('come',\n", - " 'come from; be connected by a relationship of blood, for example')]},\n", + " 'come from; be connected by a relationship of blood, for example'),\n", + " ('deign', \"do something that one considers to be below one's dignity\"),\n", + " ('condescend',\n", + " \"do something that one considers to be below one's dignity\"),\n", + " ('come down',\n", + " 'move downward and lower, but not necessarily all the way')]},\n", " {'answer': 'described',\n", " 'hint': 'synonyms for described',\n", - " 'clues': [('line', 'make a mark or lines on a surface'),\n", - " ('describe', 'to give an account or representation of in words'),\n", - " ('draw', 'give a description of'),\n", - " ('account', 'to give an account or representation of in words'),\n", - " ('depict', 'give a description of'),\n", - " ('delineate', 'make a mark or lines on a surface'),\n", - " ('name', 'identify as in botany or biology, for example'),\n", - " ('distinguish', 'identify as in botany or biology, for example'),\n", + " 'clues': [('account', 'to give an account or representation of in words'),\n", " ('key', 'identify as in botany or biology, for example'),\n", " ('trace', 'make a mark or lines on a surface'),\n", - " ('key out', 'identify as in botany or biology, for example'),\n", + " ('discover', 'identify as in botany or biology, for example'),\n", + " ('depict', 'give a description of'),\n", + " ('delineate', 'make a mark or lines on a surface'),\n", + " ('describe', 'identify as in botany or biology, for example'),\n", " ('identify', 'identify as in botany or biology, for example'),\n", + " ('draw', 'make a mark or lines on a surface'),\n", + " ('line', 'make a mark or lines on a surface'),\n", " ('report', 'to give an account or representation of in words'),\n", - " ('discover', 'identify as in botany or biology, for example')]},\n", + " ('distinguish', 'identify as in botany or biology, for example'),\n", + " ('key out', 'identify as in botany or biology, for example'),\n", + " ('name', 'identify as in botany or biology, for example')]},\n", " {'answer': 'desecrated',\n", " 'hint': 'synonyms for desecrated',\n", - " 'clues': [('desecrate',\n", + " 'clues': [('unhallow',\n", " 'remove the consecration from a person or an object'),\n", - " ('outrage', 'violate the sacred character of a place or language'),\n", - " ('violate', 'violate the sacred character of a place or language'),\n", + " ('deconsecrate', 'remove the consecration from a person or an object'),\n", " ('profane', 'violate the sacred character of a place or language'),\n", - " ('unhallow', 'remove the consecration from a person or an object')]},\n", + " ('violate', 'violate the sacred character of a place or language'),\n", + " ('outrage', 'violate the sacred character of a place or language')]},\n", " {'answer': 'deserted',\n", " 'hint': 'synonyms for deserted',\n", - " 'clues': [('desolate',\n", + " 'clues': [('abandon',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", - " ('desert', 'leave behind'),\n", - " ('abandon',\n", + " ('desert',\n", + " 'desert (a cause, a country or an army), often in order to join the opposing cause, country, or army'),\n", + " ('forsake',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", " ('defect',\n", " 'desert (a cause, a country or an army), often in order to join the opposing cause, country, or army'),\n", - " ('forsake',\n", + " ('desolate',\n", " 'leave someone who needs or counts on you; leave in the lurch')]},\n", " {'answer': 'designate',\n", " 'hint': 'synonyms for designate',\n", - " 'clues': [('denominate', 'assign a name or title to'),\n", - " ('depute',\n", - " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", + " 'clues': [('intend', 'design or destine'),\n", " ('indicate',\n", " 'indicate a place, direction, person, or thing; either spatially or figuratively'),\n", - " ('doom', 'decree or designate beforehand'),\n", - " ('destine', 'design or destine'),\n", - " ('assign',\n", - " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", " ('point',\n", " 'indicate a place, direction, person, or thing; either spatially or figuratively'),\n", - " ('fate', 'decree or designate beforehand'),\n", + " ('assign',\n", + " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", + " ('destine', 'design or destine'),\n", + " ('denominate', 'assign a name or title to'),\n", + " ('depute',\n", + " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", " ('specify', 'design or destine'),\n", - " ('intend', 'design or destine'),\n", + " ('show',\n", + " 'indicate a place, direction, person, or thing; either spatially or figuratively'),\n", " ('delegate',\n", " 'give an assignment to (a person) to a post, or assign a task to (a person)'),\n", - " ('show',\n", - " 'indicate a place, direction, person, or thing; either spatially or figuratively')]},\n", + " ('fate', 'decree or designate beforehand'),\n", + " ('doom', 'decree or designate beforehand')]},\n", " {'answer': 'designed',\n", " 'hint': 'synonyms for designed',\n", " 'clues': [('design',\n", - " 'create the design for; create or execute in an artistic or highly skilled manner'),\n", - " ('plan', 'make a design of; plan out in systematic, often graphic form'),\n", + " 'make a design of; plan out in systematic, often graphic form'),\n", + " ('plan', 'make or work out a plan for; devise'),\n", " ('project', 'make or work out a plan for; devise'),\n", " ('contrive', 'make or work out a plan for; devise')]},\n", " {'answer': 'designing',\n", " 'hint': 'synonyms for designing',\n", " 'clues': [('design',\n", - " 'create the design for; create or execute in an artistic or highly skilled manner'),\n", - " ('plan', 'make a design of; plan out in systematic, often graphic form'),\n", + " 'make a design of; plan out in systematic, often graphic form'),\n", + " ('plan', 'make or work out a plan for; devise'),\n", " ('project', 'make or work out a plan for; devise'),\n", " ('contrive', 'make or work out a plan for; devise')]},\n", " {'answer': 'desired',\n", " 'hint': 'synonyms for desired',\n", - " 'clues': [('hope', 'expect and wish'),\n", - " ('desire', 'expect and wish'),\n", + " 'clues': [('desire', 'express a desire for'),\n", + " ('trust', 'expect and wish'),\n", " ('want', 'feel or have a desire for; want strongly'),\n", - " ('trust', 'expect and wish')]},\n", + " ('hope', 'expect and wish')]},\n", " {'answer': 'desolate',\n", " 'hint': 'synonyms for desolate',\n", - " 'clues': [('scourge', 'cause extensive destruction or ruin utterly'),\n", - " ('ravage', 'cause extensive destruction or ruin utterly'),\n", - " ('forsake',\n", + " 'clues': [('depopulate', 'reduce in population'),\n", + " ('devastate', 'cause extensive destruction or ruin utterly'),\n", + " ('desert',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", - " ('depopulate', 'reduce in population'),\n", " ('abandon',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", - " ('waste', 'cause extensive destruction or ruin utterly'),\n", - " ('desert',\n", + " ('forsake',\n", " 'leave someone who needs or counts on you; leave in the lurch'),\n", - " ('devastate', 'cause extensive destruction or ruin utterly'),\n", - " ('lay waste to', 'cause extensive destruction or ruin utterly')]},\n", + " ('scourge', 'cause extensive destruction or ruin utterly'),\n", + " ('ravage', 'cause extensive destruction or ruin utterly'),\n", + " ('lay waste to', 'cause extensive destruction or ruin utterly'),\n", + " ('waste', 'cause extensive destruction or ruin utterly')]},\n", " {'answer': 'despised',\n", " 'hint': 'synonyms for despised',\n", - " 'clues': [('scorn', 'look down on with disdain'),\n", + " 'clues': [('disdain', 'look down on with disdain'),\n", + " ('contemn', 'look down on with disdain'),\n", " ('despise', 'look down on with disdain'),\n", - " ('disdain', 'look down on with disdain'),\n", - " ('contemn', 'look down on with disdain')]},\n", + " ('scorn', 'look down on with disdain')]},\n", " {'answer': 'despoiled',\n", " 'hint': 'synonyms for despoiled',\n", - " 'clues': [('plunder', 'steal goods; take as spoils'),\n", - " ('loot', 'steal goods; take as spoils'),\n", - " ('spoil', 'destroy and strip of its possession'),\n", - " ('reave', 'steal goods; take as spoils'),\n", + " 'clues': [('loot', 'steal goods; take as spoils'),\n", + " ('violate', 'destroy and strip of its possession'),\n", + " ('strip', 'steal goods; take as spoils'),\n", + " ('plunder', 'steal goods; take as spoils'),\n", + " ('ransack', 'steal goods; take as spoils'),\n", + " ('rape', 'destroy and strip of its possession'),\n", " ('despoil', 'steal goods; take as spoils'),\n", + " ('reave', 'steal goods; take as spoils'),\n", " ('rifle', 'steal goods; take as spoils'),\n", - " ('rape', 'destroy and strip of its possession'),\n", - " ('foray', 'steal goods; take as spoils'),\n", - " ('strip', 'steal goods; take as spoils'),\n", - " ('violate', 'destroy and strip of its possession'),\n", + " ('spoil', 'destroy and strip of its possession'),\n", " ('pillage', 'steal goods; take as spoils'),\n", - " ('ransack', 'steal goods; take as spoils')]},\n", + " ('foray', 'steal goods; take as spoils')]},\n", " {'answer': 'destined',\n", " 'hint': 'synonyms for destined',\n", - " 'clues': [('doom', 'decree or designate beforehand'),\n", + " 'clues': [('intend', 'design or destine'),\n", " ('destine', 'design or destine'),\n", - " ('fate', 'decree or designate beforehand'),\n", - " ('designate', 'decree or designate beforehand'),\n", + " ('designate', 'design or destine'),\n", " ('specify', 'design or destine'),\n", - " ('intend', 'design or destine')]},\n", + " ('fate', 'decree or designate beforehand'),\n", + " ('doom', 'decree or designate beforehand')]},\n", " {'answer': 'destroyed',\n", " 'hint': 'synonyms for destroyed',\n", - " 'clues': [('destruct',\n", - " 'do away with, cause the destruction or undoing of'),\n", - " ('destroy', 'put (an animal) to death'),\n", + " 'clues': [('destroy', 'do away with, cause the destruction or undoing of'),\n", + " ('destruct', 'do away with, cause the destruction or undoing of'),\n", " ('ruin', 'destroy completely; damage irreparably'),\n", - " ('demolish', 'defeat soundly'),\n", - " ('put down', 'put (an animal) to death')]},\n", + " ('put down', 'put (an animal) to death'),\n", + " ('demolish', 'defeat soundly')]},\n", " {'answer': 'detected',\n", " 'hint': 'synonyms for detected',\n", - " 'clues': [('observe',\n", + " 'clues': [('discover',\n", " 'discover or determine the existence, presence, or fact of'),\n", - " ('discover', 'discover or determine the existence, presence, or fact of'),\n", + " ('observe', 'discover or determine the existence, presence, or fact of'),\n", + " ('detect', 'discover or determine the existence, presence, or fact of'),\n", " ('find', 'discover or determine the existence, presence, or fact of'),\n", - " ('notice', 'discover or determine the existence, presence, or fact of'),\n", - " ('detect', 'discover or determine the existence, presence, or fact of')]},\n", + " ('notice', 'discover or determine the existence, presence, or fact of')]},\n", " {'answer': 'determined',\n", " 'hint': 'synonyms for determined',\n", - " 'clues': [('fix', 'decide upon or fix definitely'),\n", - " ('determine',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('regulate', 'shape or influence; give direction to'),\n", + " 'clues': [('determine', 'fix conclusively or authoritatively'),\n", + " ('ascertain',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('set', 'decide upon or fix definitely'),\n", " ('square up', 'settle conclusively; come to terms'),\n", + " ('mold', 'shape or influence; give direction to'),\n", " ('check',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('find out',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('regulate', 'shape or influence; give direction to'),\n", + " ('specify', 'decide upon or fix definitely'),\n", + " ('decide', 'reach, make, or come to a decision about something'),\n", + " ('square off', 'settle conclusively; come to terms'),\n", " ('watch',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " (\"make up one's mind\",\n", - " 'reach, make, or come to a decision about something'),\n", - " ('find',\n", - " 'establish after a calculation, investigation, experiment, survey, or study'),\n", - " ('mold', 'shape or influence; give direction to'),\n", + " ('fix', 'decide upon or fix definitely'),\n", + " ('influence', 'shape or influence; give direction to'),\n", + " ('see',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", " ('shape', 'shape or influence; give direction to'),\n", - " ('ascertain',\n", + " ('find out',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('find',\n", " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('settle', 'settle conclusively; come to terms'),\n", + " (\"make up one's mind\",\n", + " 'reach, make, or come to a decision about something'),\n", " ('learn',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('specify', 'decide upon or fix definitely'),\n", - " ('decide', 'reach, make, or come to a decision about something'),\n", - " ('see',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('limit', 'decide upon or fix definitely'),\n", - " ('settle', 'settle conclusively; come to terms'),\n", - " ('set', 'decide upon or fix definitely'),\n", - " ('square off', 'settle conclusively; come to terms'),\n", - " ('influence', 'shape or influence; give direction to'),\n", - " ('define', 'decide upon or fix definitely')]},\n", + " ('define', 'decide upon or fix definitely'),\n", + " ('limit', 'decide upon or fix definitely')]},\n", " {'answer': 'determining',\n", " 'hint': 'synonyms for determining',\n", - " 'clues': [('fix', 'decide upon or fix definitely'),\n", - " ('determine',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('regulate', 'shape or influence; give direction to'),\n", + " 'clues': [('determine', 'fix conclusively or authoritatively'),\n", + " ('ascertain',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('set', 'decide upon or fix definitely'),\n", " ('square up', 'settle conclusively; come to terms'),\n", + " ('mold', 'shape or influence; give direction to'),\n", " ('check',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('find out',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", + " ('regulate', 'shape or influence; give direction to'),\n", + " ('specify', 'decide upon or fix definitely'),\n", + " ('decide', 'reach, make, or come to a decision about something'),\n", + " ('square off', 'settle conclusively; come to terms'),\n", " ('watch',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " (\"make up one's mind\",\n", - " 'reach, make, or come to a decision about something'),\n", - " ('find',\n", - " 'establish after a calculation, investigation, experiment, survey, or study'),\n", - " ('mold', 'shape or influence; give direction to'),\n", + " ('fix', 'decide upon or fix definitely'),\n", + " ('influence', 'shape or influence; give direction to'),\n", + " ('see',\n", + " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", " ('shape', 'shape or influence; give direction to'),\n", - " ('ascertain',\n", + " ('find out',\n", " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('find',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", + " ('settle', 'settle conclusively; come to terms'),\n", + " (\"make up one's mind\",\n", + " 'reach, make, or come to a decision about something'),\n", " ('learn',\n", " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('specify', 'decide upon or fix definitely'),\n", - " ('decide', 'reach, make, or come to a decision about something'),\n", - " ('see',\n", - " 'find out, learn, or determine with certainty, usually by making an inquiry or other effort'),\n", - " ('limit', 'decide upon or fix definitely'),\n", - " ('settle', 'settle conclusively; come to terms'),\n", - " ('set', 'decide upon or fix definitely'),\n", - " ('square off', 'settle conclusively; come to terms'),\n", - " ('influence', 'shape or influence; give direction to'),\n", - " ('define', 'decide upon or fix definitely')]},\n", + " ('define', 'decide upon or fix definitely'),\n", + " ('limit', 'decide upon or fix definitely')]},\n", " {'answer': 'devastating',\n", " 'hint': 'synonyms for devastating',\n", - " 'clues': [('devastate', 'overwhelm or overpower'),\n", - " ('waste', 'cause extensive destruction or ruin utterly'),\n", - " ('ravage', 'cause extensive destruction or ruin utterly'),\n", + " 'clues': [('lay waste to', 'cause extensive destruction or ruin utterly'),\n", " ('scourge', 'cause extensive destruction or ruin utterly'),\n", + " ('devastate', 'overwhelm or overpower'),\n", " ('desolate', 'cause extensive destruction or ruin utterly'),\n", - " ('lay waste to', 'cause extensive destruction or ruin utterly')]},\n", + " ('ravage', 'cause extensive destruction or ruin utterly'),\n", + " ('waste', 'cause extensive destruction or ruin utterly')]},\n", " {'answer': 'developed',\n", " 'hint': 'synonyms for developed',\n", - " 'clues': [('arise', 'come into existence; take on form or shape'),\n", - " ('build up', 'change the use of and make available or usable'),\n", - " ('develop', 'become technologically advanced'),\n", - " ('break', 'happen'),\n", - " ('produce',\n", + " 'clues': [('grow',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('recrudesce', 'happen'),\n", - " ('evolve', 'work out'),\n", - " ('originate', 'come into existence; take on form or shape'),\n", - " ('spring up', 'come into existence; take on form or shape'),\n", " ('acquire',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('grow',\n", - " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('germinate', 'work out'),\n", - " ('explicate', 'elaborate, as of theories and hypotheses'),\n", + " ('build up', 'change the use of and make available or usable'),\n", + " ('develop',\n", + " 'elaborate by the unfolding of a musical idea and by the working out of the rhythmic and harmonic changes in the theme'),\n", + " ('originate', 'come into existence; take on form or shape'),\n", + " ('modernize', 'become technologically advanced'),\n", " ('uprise', 'come into existence; take on form or shape'),\n", " ('make grow',\n", " 'cause to grow and differentiate in ways conforming to its natural development'),\n", + " ('germinate', 'work out'),\n", + " ('evolve', 'gain through experience'),\n", + " ('get',\n", + " 'come to have or undergo a change of (physical features and attributes)'),\n", + " ('arise', 'come into existence; take on form or shape'),\n", " ('prepare', 'create by training and teaching'),\n", - " ('modernise', 'become technologically advanced'),\n", + " ('educate', 'create by training and teaching'),\n", " ('train', 'create by training and teaching'),\n", - " ('formulate', 'elaborate, as of theories and hypotheses'),\n", - " ('get',\n", + " ('break', 'happen'),\n", + " ('recrudesce', 'happen'),\n", + " ('explicate', 'elaborate, as of theories and hypotheses'),\n", + " ('produce',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('educate', 'create by training and teaching')]},\n", + " ('formulate', 'elaborate, as of theories and hypotheses'),\n", + " ('spring up', 'come into existence; take on form or shape')]},\n", " {'answer': 'developing',\n", " 'hint': 'synonyms for developing',\n", - " 'clues': [('arise', 'come into existence; take on form or shape'),\n", - " ('build up', 'change the use of and make available or usable'),\n", - " ('develop', 'become technologically advanced'),\n", - " ('break', 'happen'),\n", - " ('produce',\n", + " 'clues': [('grow',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('recrudesce', 'happen'),\n", - " ('evolve', 'work out'),\n", - " ('originate', 'come into existence; take on form or shape'),\n", - " ('spring up', 'come into existence; take on form or shape'),\n", " ('acquire',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('grow',\n", - " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('germinate', 'work out'),\n", - " ('explicate', 'elaborate, as of theories and hypotheses'),\n", + " ('build up', 'change the use of and make available or usable'),\n", + " ('develop',\n", + " 'elaborate by the unfolding of a musical idea and by the working out of the rhythmic and harmonic changes in the theme'),\n", + " ('originate', 'come into existence; take on form or shape'),\n", + " ('modernize', 'become technologically advanced'),\n", " ('uprise', 'come into existence; take on form or shape'),\n", " ('make grow',\n", " 'cause to grow and differentiate in ways conforming to its natural development'),\n", + " ('germinate', 'work out'),\n", + " ('evolve', 'gain through experience'),\n", + " ('get',\n", + " 'come to have or undergo a change of (physical features and attributes)'),\n", + " ('arise', 'come into existence; take on form or shape'),\n", " ('prepare', 'create by training and teaching'),\n", - " ('modernise', 'become technologically advanced'),\n", + " ('educate', 'create by training and teaching'),\n", " ('train', 'create by training and teaching'),\n", - " ('formulate', 'elaborate, as of theories and hypotheses'),\n", - " ('get',\n", + " ('break', 'happen'),\n", + " ('recrudesce', 'happen'),\n", + " ('explicate', 'elaborate, as of theories and hypotheses'),\n", + " ('produce',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('educate', 'create by training and teaching')]},\n", + " ('formulate', 'elaborate, as of theories and hypotheses'),\n", + " ('spring up', 'come into existence; take on form or shape')]},\n", " {'answer': 'deviate',\n", " 'hint': 'synonyms for deviate',\n", - " 'clues': [('diverge', 'be at variance with; be out of line with'),\n", + " 'clues': [('depart', 'be at variance with; be out of line with'),\n", " ('vary', 'be at variance with; be out of line with'),\n", - " ('depart', 'be at variance with; be out of line with'),\n", + " ('diverge', 'be at variance with; be out of line with'),\n", " ('divert', 'turn aside; turn away from')]},\n", " {'answer': 'devoted',\n", " 'hint': 'synonyms for devoted',\n", - " 'clues': [('consecrate',\n", - " 'give entirely to a specific person, activity, or cause'),\n", - " ('devote', 'dedicate'),\n", + " 'clues': [('devote', 'dedicate'),\n", + " ('give', 'dedicate'),\n", + " ('pay', 'dedicate'),\n", + " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", " ('commit', 'give entirely to a specific person, activity, or cause'),\n", - " ('give', 'give entirely to a specific person, activity, or cause'),\n", - " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", - " ('pay', 'dedicate')]},\n", + " ('dedicate', 'give entirely to a specific person, activity, or cause')]},\n", " {'answer': 'devouring',\n", " 'hint': 'synonyms for devouring',\n", - " 'clues': [('devour', 'eat greedily'),\n", + " 'clues': [('raven', 'eat greedily'),\n", + " ('go through', 'eat immoderately'),\n", " ('guttle', 'eat greedily'),\n", - " ('down', 'eat immoderately'),\n", - " ('raven', 'eat greedily'),\n", + " ('devour', 'destroy completely'),\n", " ('pig', 'eat greedily'),\n", - " ('go through', 'eat immoderately'),\n", - " ('consume', 'eat immoderately')]},\n", + " ('consume', 'eat immoderately'),\n", + " ('down', 'eat immoderately')]},\n", " {'answer': 'differentiated',\n", " 'hint': 'synonyms for differentiated',\n", - " 'clues': [('speciate',\n", - " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n", - " ('severalise', 'mark as different'),\n", - " ('specialize',\n", - " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n", + " 'clues': [('differentiate', 'calculate a derivative; take the derivative'),\n", " ('secern', 'mark as different'),\n", - " ('tell apart', 'mark as different'),\n", " ('distinguish', 'mark as different'),\n", - " ('differentiate',\n", + " ('severalise', 'mark as different'),\n", + " ('specialize',\n", " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n", - " ('tell', 'mark as different'),\n", " ('separate', 'mark as different'),\n", + " ('tell', 'mark as different'),\n", " ('secernate', 'mark as different'),\n", + " ('speciate',\n", + " 'evolve so as to lead to a new species or develop in a way most suited to the environment'),\n", + " ('tell apart', 'mark as different'),\n", " ('mark',\n", " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense')]},\n", " {'answer': 'diffuse',\n", " 'hint': 'synonyms for diffuse',\n", - " 'clues': [('propagate', 'cause to become widely known'),\n", - " ('spread out', 'move outward'),\n", - " ('permeate', 'spread or diffuse through'),\n", - " ('disseminate', 'cause to become widely known'),\n", + " 'clues': [('pass around', 'cause to become widely known'),\n", " ('penetrate', 'spread or diffuse through'),\n", - " ('distribute', 'cause to become widely known'),\n", - " ('circulate', 'cause to become widely known'),\n", - " ('imbue', 'spread or diffuse through'),\n", + " ('propagate', 'cause to become widely known'),\n", " ('circularize', 'cause to become widely known'),\n", + " ('imbue', 'spread or diffuse through'),\n", + " ('permeate', 'spread or diffuse through'),\n", + " ('distribute', 'cause to become widely known'),\n", " ('pervade', 'spread or diffuse through'),\n", + " ('disseminate', 'cause to become widely known'),\n", + " ('spread', 'move outward'),\n", + " ('riddle', 'spread or diffuse through'),\n", + " ('spread out', 'move outward'),\n", " ('broadcast', 'cause to become widely known'),\n", + " ('fan out', 'move outward'),\n", " ('interpenetrate', 'spread or diffuse through'),\n", - " ('pass around', 'cause to become widely known'),\n", - " ('spread', 'cause to become widely known'),\n", " ('disperse', 'cause to become widely known'),\n", - " ('fan out', 'move outward'),\n", - " ('riddle', 'spread or diffuse through')]},\n", + " ('circulate', 'cause to become widely known')]},\n", " {'answer': 'diffused',\n", " 'hint': 'synonyms for diffused',\n", - " 'clues': [('propagate', 'cause to become widely known'),\n", - " ('spread out', 'move outward'),\n", - " ('diffuse', 'cause to become widely known'),\n", - " ('permeate', 'spread or diffuse through'),\n", - " ('riddle', 'spread or diffuse through'),\n", - " ('disseminate', 'cause to become widely known'),\n", + " 'clues': [('pass around', 'cause to become widely known'),\n", " ('penetrate', 'spread or diffuse through'),\n", - " ('distribute', 'cause to become widely known'),\n", - " ('circulate', 'cause to become widely known'),\n", - " ('imbue', 'spread or diffuse through'),\n", + " ('propagate', 'cause to become widely known'),\n", " ('circularize', 'cause to become widely known'),\n", + " ('imbue', 'spread or diffuse through'),\n", + " ('permeate', 'spread or diffuse through'),\n", + " ('diffuse', 'move outward'),\n", + " ('distribute', 'cause to become widely known'),\n", " ('pervade', 'spread or diffuse through'),\n", + " ('disseminate', 'cause to become widely known'),\n", + " ('spread', 'move outward'),\n", + " ('riddle', 'spread or diffuse through'),\n", + " ('spread out', 'move outward'),\n", " ('broadcast', 'cause to become widely known'),\n", + " ('fan out', 'move outward'),\n", " ('interpenetrate', 'spread or diffuse through'),\n", - " ('pass around', 'cause to become widely known'),\n", - " ('spread', 'cause to become widely known'),\n", " ('disperse', 'cause to become widely known'),\n", - " ('fan out', 'move outward')]},\n", + " ('circulate', 'cause to become widely known')]},\n", " {'answer': 'diffusing',\n", " 'hint': 'synonyms for diffusing',\n", - " 'clues': [('propagate', 'cause to become widely known'),\n", - " ('spread out', 'move outward'),\n", - " ('diffuse', 'cause to become widely known'),\n", - " ('permeate', 'spread or diffuse through'),\n", - " ('riddle', 'spread or diffuse through'),\n", - " ('disseminate', 'cause to become widely known'),\n", + " 'clues': [('pass around', 'cause to become widely known'),\n", " ('penetrate', 'spread or diffuse through'),\n", - " ('distribute', 'cause to become widely known'),\n", - " ('circulate', 'cause to become widely known'),\n", - " ('imbue', 'spread or diffuse through'),\n", + " ('propagate', 'cause to become widely known'),\n", " ('circularize', 'cause to become widely known'),\n", + " ('imbue', 'spread or diffuse through'),\n", + " ('permeate', 'spread or diffuse through'),\n", + " ('diffuse', 'move outward'),\n", + " ('distribute', 'cause to become widely known'),\n", " ('pervade', 'spread or diffuse through'),\n", + " ('disseminate', 'cause to become widely known'),\n", + " ('spread', 'move outward'),\n", + " ('riddle', 'spread or diffuse through'),\n", + " ('spread out', 'move outward'),\n", " ('broadcast', 'cause to become widely known'),\n", + " ('fan out', 'move outward'),\n", " ('interpenetrate', 'spread or diffuse through'),\n", - " ('pass around', 'cause to become widely known'),\n", - " ('spread', 'cause to become widely known'),\n", " ('disperse', 'cause to become widely known'),\n", - " ('fan out', 'move outward')]},\n", + " ('circulate', 'cause to become widely known')]},\n", " {'answer': 'dilute',\n", " 'hint': 'synonyms for dilute',\n", - " 'clues': [('cut',\n", - " 'lessen the strength or flavor of a solution or mixture'),\n", - " ('load',\n", + " 'clues': [('load',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n", " ('debase',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n", " ('adulterate',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", " ('stretch',\n", - " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n", + " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('cut', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('thin out', 'lessen the strength or flavor of a solution or mixture')]},\n", " {'answer': 'diluted',\n", " 'hint': 'synonyms for diluted',\n", - " 'clues': [('cut',\n", - " 'lessen the strength or flavor of a solution or mixture'),\n", - " ('dilute', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('load',\n", + " 'clues': [('load',\n", + " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('dilute',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", " ('debase',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", - " ('reduce', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", - " ('thin out', 'lessen the strength or flavor of a solution or mixture'),\n", " ('adulterate',\n", " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('thin', 'lessen the strength or flavor of a solution or mixture'),\n", " ('stretch',\n", - " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones')]},\n", + " 'corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones'),\n", + " ('cut', 'lessen the strength or flavor of a solution or mixture'),\n", + " ('thin out', 'lessen the strength or flavor of a solution or mixture')]},\n", " {'answer': 'dim',\n", " 'hint': 'synonyms for dim',\n", " 'clues': [('blind', 'make dim by comparison or conceal'),\n", @@ -14077,539 +14091,538 @@ " ('blur', 'become vague or indistinct')]},\n", " {'answer': 'diminished',\n", " 'hint': 'synonyms for diminished',\n", - " 'clues': [('belittle', 'lessen the authority, dignity, or reputation of'),\n", + " 'clues': [('decrease', 'decrease in size, extent, or range'),\n", " ('diminish', 'lessen the authority, dignity, or reputation of'),\n", + " ('belittle', 'lessen the authority, dignity, or reputation of'),\n", " ('lessen', 'decrease in size, extent, or range'),\n", - " ('fall', 'decrease in size, extent, or range'),\n", - " ('decrease', 'decrease in size, extent, or range')]},\n", + " ('fall', 'decrease in size, extent, or range')]},\n", " {'answer': 'diminishing',\n", " 'hint': 'synonyms for diminishing',\n", - " 'clues': [('belittle', 'lessen the authority, dignity, or reputation of'),\n", + " 'clues': [('decrease', 'decrease in size, extent, or range'),\n", " ('diminish', 'lessen the authority, dignity, or reputation of'),\n", + " ('belittle', 'lessen the authority, dignity, or reputation of'),\n", " ('lessen', 'decrease in size, extent, or range'),\n", - " ('fall', 'decrease in size, extent, or range'),\n", - " ('decrease', 'decrease in size, extent, or range')]},\n", + " ('fall', 'decrease in size, extent, or range')]},\n", " {'answer': 'dimmed',\n", " 'hint': 'synonyms for dimmed',\n", " 'clues': [('slur', 'become vague or indistinct'),\n", - " ('dim', 'make dim or lusterless'),\n", - " ('dip', \"switch (a car's headlights) from a higher to a lower beam\"),\n", " ('blur', 'become vague or indistinct'),\n", + " ('dim', \"switch (a car's headlights) from a higher to a lower beam\"),\n", + " ('dip', \"switch (a car's headlights) from a higher to a lower beam\"),\n", " ('blind', 'make dim by comparison or conceal')]},\n", " {'answer': 'dipped',\n", " 'hint': 'synonyms for dipped',\n", - " 'clues': [('dip', 'lower briefly'),\n", + " 'clues': [('dip', 'take a small amount from'),\n", + " ('duck', 'dip into a liquid'),\n", + " ('dim', \"switch (a car's headlights) from a higher to a lower beam\"),\n", " ('douse', 'dip into a liquid'),\n", + " ('souse',\n", + " 'immerse briefly into a liquid so as to wet, coat, or saturate'),\n", " ('plunge',\n", " 'immerse briefly into a liquid so as to wet, coat, or saturate'),\n", " ('sink', 'appear to move downward'),\n", - " ('dunk', 'dip into a liquid while eating'),\n", - " ('souse',\n", - " 'immerse briefly into a liquid so as to wet, coat, or saturate'),\n", - " ('duck', 'dip into a liquid'),\n", - " ('dim', \"switch (a car's headlights) from a higher to a lower beam\")]},\n", + " ('dunk', 'dip into a liquid while eating')]},\n", " {'answer': 'direct',\n", " 'hint': 'synonyms for direct',\n", - " 'clues': [('address', 'put an address on (an envelope)'),\n", - " ('aim',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", - " ('organise', 'plan and direct (a complex undertaking)'),\n", - " ('channelize',\n", + " 'clues': [('lead', 'lead, as in the performance of a composition'),\n", + " ('send', 'cause to go somewhere'),\n", + " ('steer', 'direct the course; determine the direction of travelling'),\n", + " ('place', 'intend (something) to move towards a certain goal'),\n", + " ('take', 'take somebody somewhere'),\n", + " ('point', 'direct the course; determine the direction of travelling'),\n", + " ('conduct', 'lead, as in the performance of a composition'),\n", + " ('organize', 'plan and direct (a complex undertaking)'),\n", + " ('channelise',\n", " 'direct the course; determine the direction of travelling'),\n", + " ('address', 'put an address on (an envelope)'),\n", + " ('orchestrate', 'plan and direct (a complex undertaking)'),\n", + " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", " ('engineer', 'plan and direct (a complex undertaking)'),\n", - " ('steer', 'direct the course; determine the direction of travelling'),\n", + " ('take aim',\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('target', 'intend (something) to move towards a certain goal'),\n", + " ('head', 'direct the course; determine the direction of travelling'),\n", " ('mastermind', 'plan and direct (a complex undertaking)'),\n", + " ('guide', 'direct the course; determine the direction of travelling'),\n", " ('calculate',\n", " 'specifically design a product, event, or activity for a certain public'),\n", - " ('place', 'intend (something) to move towards a certain goal'),\n", - " ('maneuver', 'direct the course; determine the direction of travelling'),\n", - " ('take',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", - " ('guide', 'take somebody somewhere'),\n", " ('train',\n", " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", - " ('target', 'intend (something) to move towards a certain goal'),\n", - " ('point', 'direct the course; determine the direction of travelling'),\n", - " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n", - " ('send', 'cause to go somewhere'),\n", - " ('take aim',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", - " ('conduct', 'lead, as in the performance of a composition'),\n", - " ('orchestrate', 'plan and direct (a complex undertaking)'),\n", - " ('head', 'direct the course; determine the direction of travelling'),\n", - " ('lead', 'take somebody somewhere')]},\n", + " ('aim', 'intend (something) to move towards a certain goal')]},\n", " {'answer': 'directed',\n", " 'hint': 'synonyms for directed',\n", - " 'clues': [('address', 'put an address on (an envelope)'),\n", - " ('organise', 'plan and direct (a complex undertaking)'),\n", - " ('channelize',\n", - " 'direct the course; determine the direction of travelling'),\n", - " ('direct', 'give directions to; point somebody into a certain direction'),\n", - " ('mastermind', 'plan and direct (a complex undertaking)'),\n", - " ('aim',\n", - " 'specifically design a product, event, or activity for a certain public'),\n", + " 'clues': [('lead', 'lead, as in the performance of a composition'),\n", + " ('direct',\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('send', 'cause to go somewhere'),\n", " ('place', 'intend (something) to move towards a certain goal'),\n", - " ('target', 'intend (something) to move towards a certain goal'),\n", - " ('point', 'direct the course; determine the direction of travelling'),\n", " ('take', 'take somebody somewhere'),\n", - " ('take aim',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('channelise',\n", + " 'direct the course; determine the direction of travelling'),\n", + " ('orchestrate', 'plan and direct (a complex undertaking)'),\n", " ('conduct', 'take somebody somewhere'),\n", " ('head', 'direct the course; determine the direction of travelling'),\n", - " ('lead', 'take somebody somewhere'),\n", - " ('engineer', 'plan and direct (a complex undertaking)'),\n", + " ('maneuver', 'direct the course; determine the direction of travelling'),\n", + " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n", + " ('point', 'intend (something) to move towards a certain goal'),\n", + " ('take aim',\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('aim',\n", + " 'specifically design a product, event, or activity for a certain public'),\n", " ('steer', 'direct the course; determine the direction of travelling'),\n", + " ('organize', 'plan and direct (a complex undertaking)'),\n", + " ('address', 'put an address on (an envelope)'),\n", + " ('engineer', 'plan and direct (a complex undertaking)'),\n", + " ('target', 'intend (something) to move towards a certain goal'),\n", + " ('mastermind', 'plan and direct (a complex undertaking)'),\n", + " ('guide', 'direct the course; determine the direction of travelling'),\n", " ('calculate',\n", " 'specifically design a product, event, or activity for a certain public'),\n", - " ('guide', 'take somebody somewhere'),\n", " ('train',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", - " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", - " ('send', 'cause to go somewhere'),\n", - " ('orchestrate', 'plan and direct (a complex undertaking)')]},\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards')]},\n", " {'answer': 'directing',\n", " 'hint': 'synonyms for directing',\n", - " 'clues': [('address', 'put an address on (an envelope)'),\n", - " ('organise', 'plan and direct (a complex undertaking)'),\n", - " ('channelize',\n", - " 'direct the course; determine the direction of travelling'),\n", - " ('direct', 'give directions to; point somebody into a certain direction'),\n", - " ('mastermind', 'plan and direct (a complex undertaking)'),\n", - " ('aim',\n", - " 'specifically design a product, event, or activity for a certain public'),\n", + " 'clues': [('lead', 'lead, as in the performance of a composition'),\n", + " ('direct',\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('send', 'cause to go somewhere'),\n", " ('place', 'intend (something) to move towards a certain goal'),\n", - " ('target', 'intend (something) to move towards a certain goal'),\n", - " ('point', 'direct the course; determine the direction of travelling'),\n", " ('take', 'take somebody somewhere'),\n", - " ('take aim',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('channelise',\n", + " 'direct the course; determine the direction of travelling'),\n", + " ('orchestrate', 'plan and direct (a complex undertaking)'),\n", " ('conduct', 'take somebody somewhere'),\n", " ('head', 'direct the course; determine the direction of travelling'),\n", - " ('lead', 'take somebody somewhere'),\n", - " ('engineer', 'plan and direct (a complex undertaking)'),\n", + " ('maneuver', 'direct the course; determine the direction of travelling'),\n", + " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n", + " ('point', 'intend (something) to move towards a certain goal'),\n", + " ('take aim',\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", + " ('aim',\n", + " 'specifically design a product, event, or activity for a certain public'),\n", " ('steer', 'direct the course; determine the direction of travelling'),\n", + " ('organize', 'plan and direct (a complex undertaking)'),\n", + " ('address', 'put an address on (an envelope)'),\n", + " ('engineer', 'plan and direct (a complex undertaking)'),\n", + " ('target', 'intend (something) to move towards a certain goal'),\n", + " ('mastermind', 'plan and direct (a complex undertaking)'),\n", + " ('guide', 'direct the course; determine the direction of travelling'),\n", " ('calculate',\n", " 'specifically design a product, event, or activity for a certain public'),\n", - " ('guide', 'take somebody somewhere'),\n", " ('train',\n", - " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards'),\n", - " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", - " ('send', 'cause to go somewhere'),\n", - " ('orchestrate', 'plan and direct (a complex undertaking)')]},\n", + " 'point or cause to go (blows, weapons, or objects such as photographic equipment) towards')]},\n", " {'answer': 'dirty',\n", " 'hint': 'synonyms for dirty',\n", - " 'clues': [('soil', 'make soiled, filthy, or dirty'),\n", + " 'clues': [('colly', 'make soiled, filthy, or dirty'),\n", + " ('grime', 'make soiled, filthy, or dirty'),\n", + " ('soil', 'make soiled, filthy, or dirty'),\n", " ('begrime', 'make soiled, filthy, or dirty'),\n", - " ('bemire', 'make soiled, filthy, or dirty'),\n", - " ('colly', 'make soiled, filthy, or dirty'),\n", - " ('grime', 'make soiled, filthy, or dirty')]},\n", + " ('bemire', 'make soiled, filthy, or dirty')]},\n", " {'answer': 'disabled',\n", " 'hint': 'synonyms for disabled',\n", - " 'clues': [('handicap', 'injure permanently'),\n", - " ('incapacitate', 'make unable to perform a certain action'),\n", - " ('disenable', 'make unable to perform a certain action'),\n", + " 'clues': [('disable', 'make unable to perform a certain action'),\n", + " ('incapacitate', 'injure permanently'),\n", + " ('handicap', 'injure permanently'),\n", " ('invalid', 'injure permanently')]},\n", " {'answer': 'disabling',\n", " 'hint': 'synonyms for disabling',\n", - " 'clues': [('handicap', 'injure permanently'),\n", - " ('incapacitate', 'make unable to perform a certain action'),\n", - " ('disenable', 'make unable to perform a certain action'),\n", + " 'clues': [('disable', 'make unable to perform a certain action'),\n", + " ('incapacitate', 'injure permanently'),\n", + " ('handicap', 'injure permanently'),\n", " ('invalid', 'injure permanently')]},\n", " {'answer': 'disaffected',\n", " 'hint': 'synonyms for disaffected',\n", - " 'clues': [('alienate',\n", + " 'clues': [('disaffect',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", - " ('disaffect',\n", + " ('alien',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", " ('estrange',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", - " ('alien',\n", + " ('alienate',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n", " {'answer': 'discarded',\n", " 'hint': 'synonyms for discarded',\n", - " 'clues': [('fling', 'throw or cast away'),\n", + " 'clues': [('chuck out', 'throw or cast away'),\n", + " ('dispose', 'throw or cast away'),\n", + " ('cast away', 'throw or cast away'),\n", + " ('throw out', 'throw or cast away'),\n", " ('toss', 'throw or cast away'),\n", - " ('discard', 'throw or cast away'),\n", " ('cast out', 'throw or cast away'),\n", + " ('put away', 'throw or cast away'),\n", + " ('fling', 'throw or cast away'),\n", + " ('throw away', 'throw or cast away'),\n", " ('cast aside', 'throw or cast away'),\n", - " ('throw out', 'throw or cast away'),\n", - " ('toss out', 'throw or cast away'),\n", - " ('chuck out', 'throw or cast away'),\n", " ('toss away', 'throw or cast away'),\n", - " ('dispose', 'throw or cast away'),\n", - " ('throw away', 'throw or cast away'),\n", - " ('cast away', 'throw or cast away'),\n", - " ('put away', 'throw or cast away')]},\n", + " ('discard', 'throw or cast away'),\n", + " ('toss out', 'throw or cast away')]},\n", " {'answer': 'discerning',\n", " 'hint': 'synonyms for discerning',\n", - " 'clues': [('recognize', 'detect with the senses'),\n", - " ('make out', 'detect with the senses'),\n", - " ('spot', 'detect with the senses'),\n", + " 'clues': [('make out', 'detect with the senses'),\n", " ('discern', 'detect with the senses'),\n", + " ('spot', 'detect with the senses'),\n", " ('distinguish', 'detect with the senses'),\n", - " ('tell apart', 'detect with the senses'),\n", - " ('pick out', 'detect with the senses')]},\n", + " ('recognise', 'detect with the senses'),\n", + " ('pick out', 'detect with the senses'),\n", + " ('tell apart', 'detect with the senses')]},\n", " {'answer': 'discharged',\n", " 'hint': 'synonyms for discharged',\n", - " 'clues': [('acquit', 'pronounce not guilty of criminal charges'),\n", - " ('discharge', 'leave or unload'),\n", - " ('drop', 'leave or unload'),\n", - " ('exonerate', 'pronounce not guilty of criminal charges'),\n", - " ('assoil', 'pronounce not guilty of criminal charges'),\n", - " ('set down', 'leave or unload'),\n", - " ('empty', 'become empty or void of its content'),\n", - " ('exhaust', 'eliminate (a substance)'),\n", - " ('expel', 'eliminate (a substance)'),\n", + " 'clues': [('discharge', 'become empty or void of its content'),\n", + " ('go off', 'go off or discharge'),\n", " ('unload', 'leave or unload'),\n", + " ('dispatch', 'complete or carry out'),\n", + " ('clear', 'pronounce not guilty of criminal charges'),\n", " ('muster out', 'release from military service'),\n", - " ('drop off', 'leave or unload'),\n", - " ('release', 'eliminate (a substance)'),\n", - " ('fire', 'go off or discharge'),\n", " ('complete', 'complete or carry out'),\n", + " ('exhaust', 'eliminate (a substance)'),\n", + " ('set down', 'leave or unload'),\n", + " ('eject', 'eliminate (a substance)'),\n", " ('put down', 'leave or unload'),\n", - " ('dispatch', 'complete or carry out'),\n", + " ('fire', 'cause to go off'),\n", + " ('release', 'eliminate (a substance)'),\n", + " ('assoil', 'pronounce not guilty of criminal charges'),\n", + " ('exonerate', 'pronounce not guilty of criminal charges'),\n", + " ('drop', 'leave or unload'),\n", + " ('drop off', 'leave or unload'),\n", + " ('empty', 'become empty or void of its content'),\n", " ('exculpate', 'pronounce not guilty of criminal charges'),\n", - " ('clear', 'pronounce not guilty of criminal charges'),\n", - " ('go off', 'go off or discharge'),\n", - " ('free', 'free from obligations or duties'),\n", - " ('eject', 'eliminate (a substance)')]},\n", + " ('expel', 'eliminate (a substance)'),\n", + " ('acquit', 'pronounce not guilty of criminal charges'),\n", + " ('free', 'free from obligations or duties')]},\n", " {'answer': 'disciplined',\n", " 'hint': 'synonyms for disciplined',\n", - " 'clues': [('check',\n", + " 'clues': [('condition',\n", + " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", + " ('train',\n", " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", " ('correct', 'punish in order to gain control or enforce obedience'),\n", " ('sort out', 'punish in order to gain control or enforce obedience'),\n", - " ('discipline', 'punish in order to gain control or enforce obedience'),\n", - " ('train',\n", + " ('check',\n", " \"develop (children's) behavior by instruction and practice; especially to teach self-control\"),\n", - " ('condition',\n", + " ('discipline',\n", " \"develop (children's) behavior by instruction and practice; especially to teach self-control\")]},\n", " {'answer': 'disclosed',\n", " 'hint': 'synonyms for disclosed',\n", - " 'clues': [('let out',\n", + " 'clues': [('expose',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", " ('break',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('give away',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('disclose', 'disclose to view as by removing a cover'),\n", " ('unwrap',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('discover',\n", + " ('bring out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", " ('divulge',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('give away',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('let on',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('disclose',\n", + " ('reveal',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('bring out',\n", + " ('let out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('reveal',\n", + " ('let on',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('expose',\n", + " ('discover',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n", " {'answer': 'discombobulated',\n", " 'hint': 'synonyms for discombobulated',\n", - " 'clues': [('fuddle',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('bedevil',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " 'clues': [('throw', 'cause to be confused emotionally'),\n", " ('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('throw', 'cause to be confused emotionally'),\n", " ('bemuse', 'cause to be confused emotionally'),\n", - " ('fox',\n", + " ('confound',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('bewilder', 'cause to be confused emotionally'),\n", - " ('confound',\n", + " ('fuddle',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('confuse',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('fox',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('bedevil',\n", " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n", " {'answer': 'discomfited',\n", " 'hint': 'synonyms for discomfited',\n", - " 'clues': [('upset', \"cause to lose one's composure\"),\n", - " ('discomfit', \"cause to lose one's composure\"),\n", - " ('discompose', \"cause to lose one's composure\"),\n", + " 'clues': [('discomfit', \"cause to lose one's composure\"),\n", + " ('upset', \"cause to lose one's composure\"),\n", + " ('untune', \"cause to lose one's composure\"),\n", " ('disconcert', \"cause to lose one's composure\"),\n", - " ('untune', \"cause to lose one's composure\")]},\n", + " ('discompose', \"cause to lose one's composure\")]},\n", " {'answer': 'discomposed',\n", " 'hint': 'synonyms for discomposed',\n", - " 'clues': [('upset', \"cause to lose one's composure\"),\n", - " ('discomfit', \"cause to lose one's composure\"),\n", - " ('discompose', \"cause to lose one's composure\"),\n", + " 'clues': [('discomfit', \"cause to lose one's composure\"),\n", + " ('upset', \"cause to lose one's composure\"),\n", + " ('untune', \"cause to lose one's composure\"),\n", " ('disconcert', \"cause to lose one's composure\"),\n", - " ('untune', \"cause to lose one's composure\")]},\n", + " ('discompose', \"cause to lose one's composure\")]},\n", " {'answer': 'disconcerted',\n", " 'hint': 'synonyms for disconcerted',\n", - " 'clues': [('disconcert', 'cause to feel embarrassment'),\n", - " ('upset', \"cause to lose one's composure\"),\n", - " ('discomfit', \"cause to lose one's composure\"),\n", - " ('untune', \"cause to lose one's composure\"),\n", - " ('discompose', \"cause to lose one's composure\"),\n", + " 'clues': [('upset', \"cause to lose one's composure\"),\n", " ('confuse', 'cause to feel embarrassment'),\n", " ('put off', 'cause to feel embarrassment'),\n", - " ('flurry', 'cause to feel embarrassment')]},\n", - " {'answer': 'disconcerting',\n", - " 'hint': 'synonyms for disconcerting',\n", - " 'clues': [('disconcert', 'cause to feel embarrassment'),\n", - " ('upset', \"cause to lose one's composure\"),\n", + " ('disconcert', 'cause to feel embarrassment'),\n", " ('discomfit', \"cause to lose one's composure\"),\n", " ('untune', \"cause to lose one's composure\"),\n", - " ('discompose', \"cause to lose one's composure\"),\n", + " ('flurry', 'cause to feel embarrassment'),\n", + " ('discompose', \"cause to lose one's composure\")]},\n", + " {'answer': 'disconcerting',\n", + " 'hint': 'synonyms for disconcerting',\n", + " 'clues': [('upset', \"cause to lose one's composure\"),\n", " ('confuse', 'cause to feel embarrassment'),\n", " ('put off', 'cause to feel embarrassment'),\n", - " ('flurry', 'cause to feel embarrassment')]},\n", + " ('disconcert', 'cause to feel embarrassment'),\n", + " ('discomfit', \"cause to lose one's composure\"),\n", + " ('untune', \"cause to lose one's composure\"),\n", + " ('flurry', 'cause to feel embarrassment'),\n", + " ('discompose', \"cause to lose one's composure\")]},\n", " {'answer': 'discontinued',\n", " 'hint': 'synonyms for discontinued',\n", - " 'clues': [('discontinue', 'prevent completion'),\n", + " 'clues': [('discontinue', 'come to or be at an end'),\n", + " ('break off', 'prevent completion'),\n", " ('cease', 'put an end to a state or an activity'),\n", " ('stop', 'prevent completion'),\n", " ('give up', 'put an end to a state or an activity'),\n", - " ('break off', 'prevent completion'),\n", - " ('quit', 'put an end to a state or an activity'),\n", + " ('lay off', 'put an end to a state or an activity'),\n", " ('break', 'prevent completion'),\n", - " ('lay off', 'put an end to a state or an activity')]},\n", + " ('quit', 'put an end to a state or an activity')]},\n", " {'answer': 'discouraged',\n", " 'hint': 'synonyms for discouraged',\n", - " 'clues': [('monish', \"admonish or counsel in terms of someone's behavior\"),\n", - " ('discourage', \"admonish or counsel in terms of someone's behavior\"),\n", - " ('deter', 'try to prevent; show opposition to'),\n", + " 'clues': [('deter', 'try to prevent; show opposition to'),\n", + " ('admonish', \"admonish or counsel in terms of someone's behavior\"),\n", + " ('discourage',\n", + " 'deprive of courage or hope; take away hope from; cause to feel discouraged'),\n", " ('warn', \"admonish or counsel in terms of someone's behavior\")]},\n", " {'answer': 'discouraging',\n", " 'hint': 'synonyms for discouraging',\n", - " 'clues': [('monish', \"admonish or counsel in terms of someone's behavior\"),\n", - " ('discourage', \"admonish or counsel in terms of someone's behavior\"),\n", - " ('deter', 'try to prevent; show opposition to'),\n", + " 'clues': [('deter', 'try to prevent; show opposition to'),\n", + " ('admonish', \"admonish or counsel in terms of someone's behavior\"),\n", + " ('discourage',\n", + " 'deprive of courage or hope; take away hope from; cause to feel discouraged'),\n", " ('warn', \"admonish or counsel in terms of someone's behavior\")]},\n", " {'answer': 'discovered',\n", " 'hint': 'synonyms for discovered',\n", - " 'clues': [('distinguish', 'identify as in botany or biology, for example'),\n", - " ('attain', 'find unexpectedly'),\n", - " ('discover', 'find unexpectedly'),\n", - " ('hear', 'get to know or become aware of, usually accidentally'),\n", - " ('get wind', 'get to know or become aware of, usually accidentally'),\n", - " ('pick up', 'get to know or become aware of, usually accidentally'),\n", - " ('get a line', 'get to know or become aware of, usually accidentally'),\n", - " ('find out', 'get to know or become aware of, usually accidentally'),\n", - " ('let out',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('fall upon', 'find unexpectedly'),\n", - " ('get word', 'get to know or become aware of, usually accidentally'),\n", - " ('key', 'identify as in botany or biology, for example'),\n", - " ('notice', 'discover or determine the existence, presence, or fact of'),\n", + " 'clues': [('key', 'identify as in botany or biology, for example'),\n", " ('find', 'make a discovery, make a new finding'),\n", - " ('let on',\n", + " ('reveal',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('identify', 'identify as in botany or biology, for example'),\n", - " ('light upon', 'find unexpectedly'),\n", - " ('disclose',\n", + " ('divulge',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('detect', 'discover or determine the existence, presence, or fact of'),\n", - " ('name', 'identify as in botany or biology, for example'),\n", - " ('observe', 'discover or determine the existence, presence, or fact of'),\n", - " ('chance upon', 'find unexpectedly'),\n", + " ('discover', 'discover or determine the existence, presence, or fact of'),\n", " ('come across', 'find unexpectedly'),\n", + " ('disclose',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('let on',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('distinguish', 'identify as in botany or biology, for example'),\n", " ('key out', 'identify as in botany or biology, for example'),\n", - " ('describe', 'identify as in botany or biology, for example'),\n", - " ('unwrap',\n", + " ('get word', 'get to know or become aware of, usually accidentally'),\n", + " ('identify', 'identify as in botany or biology, for example'),\n", + " ('observe', 'discover or determine the existence, presence, or fact of'),\n", + " ('pick up', 'get to know or become aware of, usually accidentally'),\n", + " ('chance on', 'find unexpectedly'),\n", + " ('let out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('see', 'get to know or become aware of, usually accidentally'),\n", - " ('come upon', 'find unexpectedly'),\n", - " ('happen upon', 'find unexpectedly'),\n", - " ('learn', 'get to know or become aware of, usually accidentally'),\n", + " ('name', 'identify as in botany or biology, for example'),\n", + " ('light upon', 'find unexpectedly'),\n", + " ('find out', 'get to know or become aware of, usually accidentally'),\n", + " ('fall upon', 'find unexpectedly'),\n", " ('expose',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", " ('break',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('divulge',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", " ('give away',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('unwrap',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('detect', 'discover or determine the existence, presence, or fact of'),\n", + " ('get a line', 'get to know or become aware of, usually accidentally'),\n", + " ('come upon', 'find unexpectedly'),\n", + " ('happen upon', 'find unexpectedly'),\n", + " ('get wind', 'get to know or become aware of, usually accidentally'),\n", + " ('attain', 'find unexpectedly'),\n", + " ('describe', 'identify as in botany or biology, for example'),\n", + " ('see', 'get to know or become aware of, usually accidentally'),\n", " ('bring out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('strike', 'find unexpectedly'),\n", - " ('reveal',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n", + " ('hear', 'get to know or become aware of, usually accidentally'),\n", + " ('notice', 'discover or determine the existence, presence, or fact of'),\n", + " ('learn', 'get to know or become aware of, usually accidentally'),\n", + " ('strike', 'find unexpectedly')]},\n", " {'answer': 'discriminating',\n", " 'hint': 'synonyms for discriminating',\n", " 'clues': [('know apart', 'recognize or perceive the difference'),\n", - " ('single out', 'treat differently on the basis of sex or race'),\n", " ('discriminate', 'recognize or perceive the difference'),\n", - " ('separate', 'treat differently on the basis of sex or race')]},\n", + " ('separate', 'treat differently on the basis of sex or race'),\n", + " ('single out', 'treat differently on the basis of sex or race')]},\n", " {'answer': 'disentangled',\n", " 'hint': 'synonyms for disentangled',\n", - " 'clues': [('disentangle', 'release from entanglement of difficulty'),\n", + " 'clues': [('disentangle', 'separate the tangles of'),\n", + " ('extricate', 'release from entanglement of difficulty'),\n", + " ('comb out', 'smoothen and neaten with or as with a comb'),\n", " ('comb', 'smoothen and neaten with or as with a comb'),\n", " ('unwind', 'separate the tangles of'),\n", + " ('disencumber', 'release from entanglement of difficulty'),\n", " ('disinvolve', 'free from involvement or entanglement'),\n", - " ('unsnarl', 'extricate from entanglement'),\n", - " ('untangle', 'release from entanglement of difficulty'),\n", " ('disembroil', 'free from involvement or entanglement'),\n", - " ('comb out', 'smoothen and neaten with or as with a comb'),\n", - " ('disencumber', 'release from entanglement of difficulty'),\n", - " ('extricate', 'release from entanglement of difficulty'),\n", - " ('straighten out', 'extricate from entanglement')]},\n", + " ('straighten out', 'extricate from entanglement'),\n", + " ('untangle', 'release from entanglement of difficulty'),\n", + " ('unsnarl', 'extricate from entanglement')]},\n", " {'answer': 'disgraced',\n", " 'hint': 'synonyms for disgraced',\n", " 'clues': [('shame', 'bring shame or dishonor upon'),\n", - " ('disgrace', 'bring shame or dishonor upon'),\n", - " ('demean', 'reduce in worth or character, usually verbally'),\n", - " ('degrade', 'reduce in worth or character, usually verbally'),\n", " ('dishonor', 'bring shame or dishonor upon'),\n", + " ('attaint', 'bring shame or dishonor upon'),\n", + " ('degrade', 'reduce in worth or character, usually verbally'),\n", + " ('disgrace', 'bring shame or dishonor upon'),\n", " ('put down', 'reduce in worth or character, usually verbally'),\n", " ('discredit', 'damage the reputation of'),\n", " ('take down', 'reduce in worth or character, usually verbally'),\n", - " ('attaint', 'bring shame or dishonor upon')]},\n", + " ('demean', 'reduce in worth or character, usually verbally')]},\n", " {'answer': 'disgusted',\n", " 'hint': 'synonyms for disgusted',\n", - " 'clues': [('churn up', 'cause aversion in; offend the moral sense of'),\n", + " 'clues': [('gross out', 'fill with distaste'),\n", + " ('churn up', 'cause aversion in; offend the moral sense of'),\n", + " ('disgust', 'cause aversion in; offend the moral sense of'),\n", + " ('repel', 'fill with distaste'),\n", " ('revolt', 'fill with distaste'),\n", - " ('nauseate', 'cause aversion in; offend the moral sense of'),\n", - " ('gross out', 'fill with distaste'),\n", - " ('disgust', 'fill with distaste'),\n", " ('sicken', 'cause aversion in; offend the moral sense of'),\n", - " ('repel', 'fill with distaste')]},\n", + " ('nauseate', 'cause aversion in; offend the moral sense of')]},\n", " {'answer': 'disgusting',\n", " 'hint': 'synonyms for disgusting',\n", - " 'clues': [('churn up', 'cause aversion in; offend the moral sense of'),\n", + " 'clues': [('gross out', 'fill with distaste'),\n", + " ('churn up', 'cause aversion in; offend the moral sense of'),\n", + " ('disgust', 'cause aversion in; offend the moral sense of'),\n", + " ('repel', 'fill with distaste'),\n", " ('revolt', 'fill with distaste'),\n", - " ('nauseate', 'cause aversion in; offend the moral sense of'),\n", - " ('gross out', 'fill with distaste'),\n", - " ('disgust', 'fill with distaste'),\n", " ('sicken', 'cause aversion in; offend the moral sense of'),\n", - " ('repel', 'fill with distaste')]},\n", + " ('nauseate', 'cause aversion in; offend the moral sense of')]},\n", " {'answer': 'dished',\n", " 'hint': 'synonyms for dished',\n", - " 'clues': [('serve up', 'provide (usually but not necessarily food)'),\n", - " ('dish', 'make concave; shape like a dish'),\n", + " 'clues': [('dish', 'make concave; shape like a dish'),\n", " ('dish out', 'provide (usually but not necessarily food)'),\n", + " ('dish up', 'provide (usually but not necessarily food)'),\n", " ('serve', 'provide (usually but not necessarily food)'),\n", - " ('dish up', 'provide (usually but not necessarily food)')]},\n", + " ('serve up', 'provide (usually but not necessarily food)')]},\n", " {'answer': 'dishonored',\n", " 'hint': 'synonyms for dishonored',\n", - " 'clues': [('shame', 'bring shame or dishonor upon'),\n", - " ('disgrace', 'bring shame or dishonor upon'),\n", - " ('dishonor', 'bring shame or dishonor upon'),\n", - " ('rape', 'force (someone) to have sex against their will'),\n", + " 'clues': [('assault', 'force (someone) to have sex against their will'),\n", + " ('shame', 'bring shame or dishonor upon'),\n", + " ('dishonour', 'force (someone) to have sex against their will'),\n", " ('violate', 'force (someone) to have sex against their will'),\n", - " ('ravish', 'force (someone) to have sex against their will'),\n", - " ('assault', 'force (someone) to have sex against their will'),\n", + " ('attaint', 'bring shame or dishonor upon'),\n", + " ('rape', 'force (someone) to have sex against their will'),\n", " ('outrage', 'force (someone) to have sex against their will'),\n", - " ('attaint', 'bring shame or dishonor upon')]},\n", + " ('disgrace', 'bring shame or dishonor upon'),\n", + " ('ravish', 'force (someone) to have sex against their will')]},\n", " {'answer': 'disjoint',\n", " 'hint': 'synonyms for disjoint',\n", - " 'clues': [('dissociate', 'part; cease or break association with'),\n", - " ('divorce', 'part; cease or break association with'),\n", + " 'clues': [('disunite', 'part; cease or break association with'),\n", " ('disjoin',\n", " 'make disjoint, separated, or disconnected; undo the joining of'),\n", - " ('disunite', 'part; cease or break association with'),\n", - " ('disarticulate', 'separate at the joints')]},\n", + " ('disarticulate', 'separate at the joints'),\n", + " ('dissociate', 'part; cease or break association with'),\n", + " ('divorce', 'part; cease or break association with')]},\n", " {'answer': 'disjointed',\n", " 'hint': 'synonyms for disjointed',\n", - " 'clues': [('disjoint', 'separate at the joints'),\n", - " ('disassociate', 'part; cease or break association with'),\n", - " ('disunite', 'part; cease or break association with'),\n", + " 'clues': [('disunite', 'part; cease or break association with'),\n", + " ('disjoint', 'separate at the joints'),\n", " ('disarticulate', 'separate at the joints'),\n", + " ('dissociate', 'part; cease or break association with'),\n", " ('divorce', 'part; cease or break association with')]},\n", " {'answer': 'dislocated',\n", " 'hint': 'synonyms for dislocated',\n", - " 'clues': [('slip', 'move out of position'),\n", - " ('dislocate', 'put out of its usual place, position, or relationship'),\n", - " ('splay', 'move out of position'),\n", - " ('luxate', 'move out of position')]},\n", + " 'clues': [('dislocate', 'move out of position'),\n", + " ('luxate', 'move out of position'),\n", + " ('slip', 'move out of position'),\n", + " ('splay', 'move out of position')]},\n", " {'answer': 'dismantled',\n", " 'hint': 'synonyms for dismantled',\n", - " 'clues': [('take down', 'tear down so as to make flat with the ground'),\n", - " ('take apart', 'take apart into its constituent pieces'),\n", - " ('raze', 'tear down so as to make flat with the ground'),\n", - " ('pull down', 'tear down so as to make flat with the ground'),\n", + " 'clues': [('raze', 'tear down so as to make flat with the ground'),\n", " ('dismantle', 'take apart into its constituent pieces'),\n", - " ('break up', 'take apart into its constituent pieces'),\n", - " ('break apart', 'take apart into its constituent pieces'),\n", - " ('disassemble', 'take apart into its constituent pieces'),\n", " ('level', 'tear down so as to make flat with the ground'),\n", + " ('break up', 'take apart into its constituent pieces'),\n", " ('tear down', 'tear down so as to make flat with the ground'),\n", + " ('break apart', 'take apart into its constituent pieces'),\n", " ('strip', 'take off or remove'),\n", - " ('rase', 'tear down so as to make flat with the ground')]},\n", + " ('take apart', 'take apart into its constituent pieces'),\n", + " ('take down', 'tear down so as to make flat with the ground'),\n", + " ('disassemble', 'take apart into its constituent pieces'),\n", + " ('rase', 'tear down so as to make flat with the ground'),\n", + " ('pull down', 'tear down so as to make flat with the ground')]},\n", " {'answer': 'dismayed',\n", " 'hint': 'synonyms for dismayed',\n", - " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", + " ('deject', \"lower someone's spirits; make downhearted\"),\n", " ('appal',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", " ('horrify',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", " ('alarm',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", - " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'dismaying',\n", " 'hint': 'synonyms for dismaying',\n", - " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", + " ('deject', \"lower someone's spirits; make downhearted\"),\n", " ('appal',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", " ('horrify',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", " ('alarm',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", - " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'dismissed',\n", " 'hint': 'synonyms for dismissed',\n", - " 'clues': [('send packing', 'stop associating with'),\n", - " ('disregard', 'bar from attention or consideration'),\n", - " ('fire',\n", - " 'terminate the employment of; discharge from an office or position'),\n", + " 'clues': [('drop', 'stop associating with'),\n", + " ('dismiss', 'cease to consider; put out of judicial consideration'),\n", + " ('dissolve', 'declare void'),\n", + " ('push aside', 'bar from attention or consideration'),\n", + " ('ignore', 'bar from attention or consideration'),\n", " ('terminate',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('usher out',\n", - " \"end one's encounter with somebody by causing or permitting the person to leave\"),\n", - " ('dismiss',\n", - " \"end one's encounter with somebody by causing or permitting the person to leave\"),\n", - " ('push aside', 'bar from attention or consideration'),\n", - " ('force out',\n", + " ('give the axe',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('can',\n", + " ('discount', 'bar from attention or consideration'),\n", + " ('sack',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('give notice',\n", + " ('send packing', 'stop associating with'),\n", + " ('throw out', 'cease to consider; put out of judicial consideration'),\n", + " ('fire',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('displace',\n", + " ('send away', 'stop associating with'),\n", + " ('give the sack',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('ignore', 'bar from attention or consideration'),\n", - " ('sack',\n", + " ('can',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('brush off', 'bar from attention or consideration'),\n", - " ('send away',\n", + " ('disregard', 'bar from attention or consideration'),\n", + " ('force out',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('dissolve', 'declare void'),\n", - " ('throw out', 'cease to consider; put out of judicial consideration'),\n", - " ('discount', 'bar from attention or consideration'),\n", - " ('give the sack',\n", + " ('displace',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('give the axe',\n", + " ('brush off', 'bar from attention or consideration'),\n", + " ('give notice',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('drop', 'stop associating with')]},\n", + " ('usher out',\n", + " \"end one's encounter with somebody by causing or permitting the person to leave\")]},\n", " {'answer': 'disobliging',\n", " 'hint': 'synonyms for disobliging',\n", - " 'clues': [('trouble', 'to cause inconvenience or discomfort to'),\n", + " 'clues': [('inconvenience', 'to cause inconvenience or discomfort to'),\n", " ('put out', 'to cause inconvenience or discomfort to'),\n", " ('incommode', 'to cause inconvenience or discomfort to'),\n", " ('disoblige', 'to cause inconvenience or discomfort to'),\n", - " ('inconvenience', 'to cause inconvenience or discomfort to'),\n", - " ('bother', 'to cause inconvenience or discomfort to'),\n", - " ('discommode', 'to cause inconvenience or discomfort to')]},\n", + " ('trouble', 'to cause inconvenience or discomfort to'),\n", + " ('discommode', 'to cause inconvenience or discomfort to'),\n", + " ('bother', 'to cause inconvenience or discomfort to')]},\n", " {'answer': 'disordered',\n", " 'hint': 'synonyms for disordered',\n", - " 'clues': [('unhinge',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('distract',\n", + " 'clues': [('trouble',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('disorder', 'bring disorder to'),\n", " ('disquiet',\n", @@ -14617,2611 +14630,2607 @@ " ('disarray', 'bring disorder to'),\n", " ('cark',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('trouble',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('perturb',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('distract',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('unhinge',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n", " {'answer': 'dispensed',\n", " 'hint': 'synonyms for dispensed',\n", - " 'clues': [('administer', 'administer or bestow, as in small portions'),\n", + " 'clues': [('parcel out', 'administer or bestow, as in small portions'),\n", + " ('deal out', 'administer or bestow, as in small portions'),\n", + " ('administer', 'give or apply (medications)'),\n", + " ('lot', 'administer or bestow, as in small portions'),\n", " ('dish out', 'administer or bestow, as in small portions'),\n", - " ('deal', 'administer or bestow, as in small portions'),\n", + " ('dispense', 'give or apply (medications)'),\n", + " ('shell out', 'administer or bestow, as in small portions'),\n", " ('allot', 'administer or bestow, as in small portions'),\n", - " ('dispense', 'grant a dispensation; grant an exemption'),\n", - " ('distribute', 'administer or bestow, as in small portions'),\n", + " ('deal', 'administer or bestow, as in small portions'),\n", " ('dole out', 'administer or bestow, as in small portions'),\n", - " ('parcel out', 'administer or bestow, as in small portions'),\n", " ('mete out', 'administer or bestow, as in small portions'),\n", - " ('lot', 'administer or bestow, as in small portions'),\n", - " ('shell out', 'administer or bestow, as in small portions'),\n", - " ('deal out', 'administer or bestow, as in small portions')]},\n", + " ('distribute', 'administer or bestow, as in small portions')]},\n", " {'answer': 'dispersed',\n", " 'hint': 'synonyms for dispersed',\n", - " 'clues': [('propagate', 'cause to become widely known'),\n", - " ('diffuse', 'cause to become widely known'),\n", - " ('break up', 'to cause to separate and go in different directions'),\n", - " ('disseminate', 'cause to become widely known'),\n", + " 'clues': [('scatter', 'cause to separate'),\n", + " ('pass around', 'cause to become widely known'),\n", " ('disperse', 'separate (light) into spectral rays'),\n", - " ('scatter', 'distribute loosely'),\n", - " ('sprinkle', 'distribute loosely'),\n", - " ('dissipate', 'to cause to separate and go in different directions'),\n", - " ('distribute', 'cause to become widely known'),\n", + " ('dissipate', 'move away from each other'),\n", + " ('propagate', 'cause to become widely known'),\n", + " ('dispel', 'to cause to separate and go in different directions'),\n", + " ('circularize', 'cause to become widely known'),\n", + " ('dust', 'distribute loosely'),\n", + " ('break up', 'cause to separate'),\n", " ('spread out', 'move away from each other'),\n", - " ('circulate', 'cause to become widely known'),\n", + " ('distribute', 'cause to become widely known'),\n", + " ('diffuse', 'cause to become widely known'),\n", " ('dot', 'distribute loosely'),\n", - " ('circularize', 'cause to become widely known'),\n", - " ('dispel', 'to cause to separate and go in different directions'),\n", - " ('pass around', 'cause to become widely known'),\n", + " ('disseminate', 'cause to become widely known'),\n", + " ('broadcast', 'cause to become widely known'),\n", " ('spread', 'cause to become widely known'),\n", - " ('dust', 'distribute loosely'),\n", - " ('broadcast', 'cause to become widely known')]},\n", + " ('sprinkle', 'distribute loosely'),\n", + " ('circulate', 'cause to become widely known')]},\n", " {'answer': 'dispirited',\n", " 'hint': 'synonyms for dispirited',\n", - " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", - " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'dispiriting',\n", " 'hint': 'synonyms for dispiriting',\n", - " 'clues': [('demoralise', \"lower someone's spirits; make downhearted\"),\n", - " ('dismay', \"lower someone's spirits; make downhearted\"),\n", - " ('cast down', \"lower someone's spirits; make downhearted\"),\n", - " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", - " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " 'clues': [('dismay', \"lower someone's spirits; make downhearted\"),\n", " ('deject', \"lower someone's spirits; make downhearted\"),\n", + " ('get down', \"lower someone's spirits; make downhearted\"),\n", + " ('dispirit', \"lower someone's spirits; make downhearted\"),\n", + " ('cast down', \"lower someone's spirits; make downhearted\"),\n", + " ('demoralize', \"lower someone's spirits; make downhearted\"),\n", " ('depress', \"lower someone's spirits; make downhearted\")]},\n", " {'answer': 'disposed',\n", " 'hint': 'synonyms for disposed',\n", - " 'clues': [('toss', 'throw or cast away'),\n", - " ('dispose',\n", - " 'make receptive or willing towards an action or attitude or belief'),\n", + " 'clues': [('chuck out', 'throw or cast away'),\n", + " ('cast away', 'throw or cast away'),\n", + " ('throw out', 'throw or cast away'),\n", + " ('dispose', 'give, sell, or transfer to another'),\n", " ('cast out', 'throw or cast away'),\n", + " ('put away', 'throw or cast away'),\n", + " ('throw away', 'throw or cast away'),\n", " ('cast aside', 'throw or cast away'),\n", - " ('chuck out', 'throw or cast away'),\n", " ('toss away', 'throw or cast away'),\n", - " ('throw away', 'throw or cast away'),\n", - " ('fling', 'throw or cast away'),\n", - " ('discard', 'throw or cast away'),\n", - " ('qualify', 'make fit or prepared'),\n", - " ('throw out', 'throw or cast away'),\n", - " ('toss out', 'throw or cast away'),\n", + " ('toss', 'throw or cast away'),\n", " ('incline',\n", " 'make receptive or willing towards an action or attitude or belief'),\n", - " ('cast away', 'throw or cast away'),\n", - " ('put away', 'throw or cast away')]},\n", + " ('toss out', 'throw or cast away'),\n", + " ('qualify', 'make fit or prepared'),\n", + " ('fling', 'throw or cast away'),\n", + " ('discard', 'throw or cast away')]},\n", " {'answer': 'disputed',\n", " 'hint': 'synonyms for disputed',\n", - " 'clues': [('dispute', 'take exception to'),\n", - " ('challenge', 'take exception to'),\n", - " ('argufy', 'have a disagreement over something'),\n", - " ('altercate', 'have a disagreement over something'),\n", - " ('scrap', 'have a disagreement over something'),\n", + " 'clues': [('argufy', 'have a disagreement over something'),\n", + " ('dispute', 'have a disagreement over something'),\n", + " ('quarrel', 'have a disagreement over something'),\n", " ('gainsay', 'take exception to'),\n", - " ('quarrel', 'have a disagreement over something')]},\n", + " ('scrap', 'have a disagreement over something'),\n", + " ('challenge', 'take exception to'),\n", + " ('altercate', 'have a disagreement over something')]},\n", " {'answer': 'disquieted',\n", " 'hint': 'synonyms for disquieted',\n", " 'clues': [('unhinge',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('cark',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('trouble',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('perturb',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('disquiet',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('distract',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('perturb',\n", + " ('cark',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('disorder',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('disquiet',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n", " {'answer': 'disquieting',\n", " 'hint': 'synonyms for disquieting',\n", " 'clues': [('unhinge',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('cark',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('trouble',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('perturb',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('disquiet',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('distract',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('perturb',\n", + " ('cark',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('disorder',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('disquiet',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n", " {'answer': 'disregarded',\n", " 'hint': 'synonyms for disregarded',\n", - " 'clues': [('ignore', 'bar from attention or consideration'),\n", - " ('brush aside', 'bar from attention or consideration'),\n", - " ('cut', 'refuse to acknowledge'),\n", + " 'clues': [('neglect', 'give little or no attention to'),\n", " ('snub', 'refuse to acknowledge'),\n", " ('disregard', 'bar from attention or consideration'),\n", - " ('neglect', 'give little or no attention to'),\n", - " ('brush off', 'bar from attention or consideration'),\n", + " ('cut', 'refuse to acknowledge'),\n", + " ('ignore', 'bar from attention or consideration'),\n", + " ('push aside', 'bar from attention or consideration'),\n", " ('discount', 'bar from attention or consideration'),\n", - " ('dismiss', 'bar from attention or consideration')]},\n", + " ('dismiss', 'bar from attention or consideration'),\n", + " ('brush off', 'bar from attention or consideration')]},\n", " {'answer': 'disrupted',\n", " 'hint': 'synonyms for disrupted',\n", - " 'clues': [('break up', 'make a break in'),\n", - " ('interrupt', \"interfere in someone else's activity\"),\n", - " ('disrupt', \"interfere in someone else's activity\"),\n", - " ('cut off', 'make a break in')]},\n", + " 'clues': [('interrupt', 'make a break in'),\n", + " ('disrupt', 'make a break in'),\n", + " ('cut off', 'make a break in'),\n", + " ('break up', 'make a break in')]},\n", " {'answer': 'dissected',\n", " 'hint': 'synonyms for dissected',\n", - " 'clues': [('analyze',\n", - " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", - " ('take apart',\n", + " 'clues': [('analyse',\n", " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", " ('break down',\n", " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", - " ('dissect', 'cut open or cut apart')]},\n", + " ('dissect',\n", + " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features'),\n", + " ('take apart',\n", + " 'make a mathematical, chemical, or grammatical analysis of; break down into components or essential features')]},\n", " {'answer': 'dissenting',\n", " 'hint': 'synonyms for dissenting',\n", - " 'clues': [('protest', 'express opposition through action or words'),\n", + " 'clues': [('dissent', 'express opposition through action or words'),\n", " ('take issue', 'be of different opinions'),\n", - " ('dissent', 'express opposition through action or words'),\n", - " ('disagree', 'be of different opinions'),\n", " ('resist', 'express opposition through action or words'),\n", + " ('disagree', 'be of different opinions'),\n", + " ('protest', 'express opposition through action or words'),\n", " ('differ', 'be of different opinions')]},\n", " {'answer': 'dissipated',\n", " 'hint': 'synonyms for dissipated',\n", - " 'clues': [('disperse',\n", - " 'to cause to separate and go in different directions'),\n", - " ('scatter', 'to cause to separate and go in different directions'),\n", - " ('dispel', 'to cause to separate and go in different directions'),\n", + " 'clues': [('fritter', 'spend frivolously and unwisely'),\n", " ('fool away', 'spend frivolously and unwisely'),\n", - " ('break up', 'to cause to separate and go in different directions'),\n", - " ('dissipate', 'spend frivolously and unwisely'),\n", - " ('shoot', 'spend frivolously and unwisely'),\n", - " ('fritter', 'spend frivolously and unwisely'),\n", - " ('frivol away', 'spend frivolously and unwisely'),\n", " ('spread out', 'move away from each other'),\n", + " ('dissipate', 'move away from each other'),\n", + " ('shoot', 'spend frivolously and unwisely'),\n", + " ('dispel', 'to cause to separate and go in different directions'),\n", + " ('break up', 'to cause to separate and go in different directions'),\n", + " ('fritter away', 'spend frivolously and unwisely'),\n", " ('fool', 'spend frivolously and unwisely'),\n", - " ('fritter away', 'spend frivolously and unwisely')]},\n", + " ('scatter', 'to cause to separate and go in different directions'),\n", + " ('disperse', 'move away from each other'),\n", + " ('frivol away', 'spend frivolously and unwisely')]},\n", " {'answer': 'dissolved',\n", " 'hint': 'synonyms for dissolved',\n", - " 'clues': [('dissolve', 'become or cause to become soft or liquid'),\n", + " 'clues': [('resolve', 'cause to go into a solution'),\n", + " ('dissolve', 'declare void'),\n", + " ('break up', 'cause to go into a solution'),\n", + " ('disband', 'stop functioning or cohering as a unit'),\n", + " ('fade away', 'become weaker'),\n", " ('unthaw', 'become or cause to become soft or liquid'),\n", - " ('unfreeze', 'become or cause to become soft or liquid'),\n", - " ('break up', 'come to an end'),\n", " ('thaw', 'become or cause to become soft or liquid'),\n", - " ('resolve', 'cause to go into a solution'),\n", + " ('dethaw', 'become or cause to become soft or liquid'),\n", " ('fade out', 'become weaker'),\n", " ('dismiss', 'declare void'),\n", - " ('melt', 'become or cause to become soft or liquid'),\n", - " ('dethaw', 'become or cause to become soft or liquid'),\n", - " ('fade away', 'become weaker'),\n", - " ('disband', 'stop functioning or cohering as a unit')]},\n", + " ('unfreeze', 'become or cause to become soft or liquid'),\n", + " ('melt', 'become or cause to become soft or liquid')]},\n", " {'answer': 'distinguished',\n", " 'hint': 'synonyms for distinguished',\n", - " 'clues': [('distinguish',\n", + " 'clues': [('make out', 'detect with the senses'),\n", + " ('key', 'identify as in botany or biology, for example'),\n", + " ('differentiate',\n", " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense'),\n", + " ('secern', 'mark as different'),\n", + " ('distinguish', 'mark as different'),\n", " ('severalise', 'mark as different'),\n", - " ('name', 'identify as in botany or biology, for example'),\n", + " ('spot', 'detect with the senses'),\n", + " ('tell apart', 'mark as different'),\n", " ('signalize', 'make conspicuous or noteworthy'),\n", + " ('separate', 'mark as different'),\n", + " ('recognise', 'detect with the senses'),\n", + " ('discover', 'identify as in botany or biology, for example'),\n", " ('key out', 'identify as in botany or biology, for example'),\n", - " ('describe', 'identify as in botany or biology, for example'),\n", - " ('make out', 'detect with the senses'),\n", - " ('secern', 'mark as different'),\n", - " ('tell apart', 'mark as different'),\n", - " ('discern', 'detect with the senses'),\n", " ('tell', 'mark as different'),\n", - " ('differentiate',\n", - " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense'),\n", - " ('pick out', 'detect with the senses'),\n", - " ('separate', 'mark as different'),\n", - " ('recognize', 'detect with the senses'),\n", " ('secernate', 'mark as different'),\n", - " ('key', 'identify as in botany or biology, for example'),\n", - " ('spot', 'detect with the senses'),\n", + " ('discern', 'detect with the senses'),\n", + " ('describe', 'identify as in botany or biology, for example'),\n", + " ('identify', 'identify as in botany or biology, for example'),\n", " ('mark',\n", " 'be a distinctive feature, attribute, or trait; sometimes in a very positive sense'),\n", - " ('identify', 'identify as in botany or biology, for example'),\n", - " ('discover', 'identify as in botany or biology, for example')]},\n", + " ('name', 'identify as in botany or biology, for example'),\n", + " ('pick out', 'detect with the senses')]},\n", " {'answer': 'distorted',\n", " 'hint': 'synonyms for distorted',\n", - " 'clues': [('distort',\n", - " 'make false by mutilation or addition; as of a message or story'),\n", - " ('twist', 'form into a spiral shape'),\n", - " ('color', 'affect as in thought or feeling'),\n", + " 'clues': [('distort', 'affect as in thought or feeling'),\n", " ('tinge', 'affect as in thought or feeling'),\n", - " ('contort', 'twist and press out of shape'),\n", - " ('wring', 'twist and press out of shape'),\n", - " ('deform', 'alter the shape of (something) by stress'),\n", + " ('color', 'affect as in thought or feeling'),\n", " ('warp',\n", " 'make false by mutilation or addition; as of a message or story'),\n", + " ('wring', 'twist and press out of shape'),\n", + " ('contort', 'twist and press out of shape'),\n", + " ('deform', 'twist and press out of shape'),\n", + " ('twine', 'form into a spiral shape'),\n", " ('garble',\n", " 'make false by mutilation or addition; as of a message or story'),\n", - " ('twine', 'form into a spiral shape'),\n", + " ('twist', 'form into a spiral shape'),\n", " ('strain', 'alter the shape of (something) by stress'),\n", " ('falsify',\n", " 'make false by mutilation or addition; as of a message or story')]},\n", " {'answer': 'distracted',\n", " 'hint': 'synonyms for distracted',\n", - " 'clues': [('unhinge',\n", - " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('distract', \"draw someone's attention away from something\"),\n", - " ('disorder',\n", + " 'clues': [('trouble',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('disquiet',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", " ('cark',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('trouble',\n", + " ('disorder',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", - " ('deflect', \"draw someone's attention away from something\"),\n", + " ('distract', \"draw someone's attention away from something\"),\n", " ('perturb',\n", + " 'disturb in mind or make uneasy or cause to be worried or alarmed'),\n", + " ('deflect', \"draw someone's attention away from something\"),\n", + " ('unhinge',\n", " 'disturb in mind or make uneasy or cause to be worried or alarmed')]},\n", " {'answer': 'distributed',\n", " 'hint': 'synonyms for distributed',\n", - " 'clues': [('propagate', 'cause to become widely known'),\n", - " ('distribute', 'be mathematically distributive'),\n", + " 'clues': [('distribute', 'give to several people'),\n", + " ('pass around', 'cause to become widely known'),\n", + " ('dish out', 'administer or bestow, as in small portions'),\n", + " ('propagate', 'cause to become widely known'),\n", " ('dispense', 'administer or bestow, as in small portions'),\n", - " ('circulate', 'cause to become widely known'),\n", " ('shell out', 'administer or bestow, as in small portions'),\n", - " ('circularize', 'cause to become widely known'),\n", - " ('administer', 'administer or bestow, as in small portions'),\n", - " ('dish out', 'administer or bestow, as in small portions'),\n", - " ('deal', 'administer or bestow, as in small portions'),\n", - " ('allot', 'administer or bestow, as in small portions'),\n", - " ('give out', 'give to several people'),\n", - " ('spread', 'cause to become widely known'),\n", - " ('parcel out', 'administer or bestow, as in small portions'),\n", - " ('hand out', 'give to several people'),\n", + " ('circulate', 'cause be distributed'),\n", " ('mete out', 'administer or bestow, as in small portions'),\n", + " ('deal out', 'administer or bestow, as in small portions'),\n", " ('diffuse', 'cause to become widely known'),\n", " ('disseminate', 'cause to become widely known'),\n", - " ('pass around', 'cause be distributed'),\n", " ('stagger', 'to arrange in a systematic order'),\n", - " ('deal out', 'administer or bestow, as in small portions'),\n", - " ('pass on', 'cause be distributed'),\n", - " ('dole out', 'administer or bestow, as in small portions'),\n", - " ('lot', 'administer or bestow, as in small portions'),\n", + " ('spread', 'distribute or disperse widely'),\n", " ('broadcast', 'cause to become widely known'),\n", + " ('give out', 'give to several people'),\n", + " ('deal', 'administer or bestow, as in small portions'),\n", + " ('lot', 'administer or bestow, as in small portions'),\n", + " ('circularize', 'cause to become widely known'),\n", + " ('allot', 'administer or bestow, as in small portions'),\n", + " ('dole out', 'administer or bestow, as in small portions'),\n", + " ('hand out', 'give to several people'),\n", + " ('parcel out', 'administer or bestow, as in small portions'),\n", + " ('administer', 'administer or bestow, as in small portions'),\n", + " ('pass on', 'cause be distributed'),\n", " ('pass out', 'give to several people')]},\n", " {'answer': 'disturbed',\n", " 'hint': 'synonyms for disturbed',\n", - " 'clues': [('agitate', 'change the arrangement or position of'),\n", + " 'clues': [('disturb', 'change the arrangement or position of'),\n", + " ('stir up', 'change the arrangement or position of'),\n", " ('interrupt', 'destroy the peace or tranquility of'),\n", - " ('commove', 'change the arrangement or position of'),\n", - " ('raise up', 'change the arrangement or position of'),\n", " ('vex', 'change the arrangement or position of'),\n", - " ('disturb', 'destroy the peace or tranquility of'),\n", " ('shake up', 'change the arrangement or position of'),\n", + " ('agitate', 'change the arrangement or position of'),\n", " ('upset', 'move deeply'),\n", - " ('stir up', 'change the arrangement or position of'),\n", " ('touch', 'tamper with'),\n", - " ('trouble', 'move deeply')]},\n", + " ('commove', 'change the arrangement or position of'),\n", + " ('trouble', 'move deeply'),\n", + " ('raise up', 'change the arrangement or position of')]},\n", " {'answer': 'disturbing',\n", " 'hint': 'synonyms for disturbing',\n", - " 'clues': [('agitate', 'change the arrangement or position of'),\n", + " 'clues': [('disturb', 'change the arrangement or position of'),\n", + " ('stir up', 'change the arrangement or position of'),\n", " ('interrupt', 'destroy the peace or tranquility of'),\n", - " ('commove', 'change the arrangement or position of'),\n", - " ('raise up', 'change the arrangement or position of'),\n", " ('vex', 'change the arrangement or position of'),\n", - " ('disturb', 'destroy the peace or tranquility of'),\n", " ('shake up', 'change the arrangement or position of'),\n", + " ('agitate', 'change the arrangement or position of'),\n", " ('upset', 'move deeply'),\n", - " ('stir up', 'change the arrangement or position of'),\n", " ('touch', 'tamper with'),\n", - " ('trouble', 'move deeply')]},\n", + " ('commove', 'change the arrangement or position of'),\n", + " ('trouble', 'move deeply'),\n", + " ('raise up', 'change the arrangement or position of')]},\n", " {'answer': 'disunited',\n", " 'hint': 'synonyms for disunited',\n", - " 'clues': [('disassociate', 'part; cease or break association with'),\n", - " ('disunite', 'part; cease or break association with'),\n", - " ('separate', 'force, take, or pull apart'),\n", + " 'clues': [('disunite', 'part; cease or break association with'),\n", " ('disjoint', 'part; cease or break association with'),\n", - " ('part', 'force, take, or pull apart'),\n", + " ('separate', 'force, take, or pull apart'),\n", " ('divide', 'force, take, or pull apart'),\n", + " ('part', 'force, take, or pull apart'),\n", + " ('dissociate', 'part; cease or break association with'),\n", " ('divorce', 'part; cease or break association with')]},\n", " {'answer': 'diverging',\n", " 'hint': 'synonyms for diverging',\n", - " 'clues': [('diverge', 'be at variance with; be out of line with'),\n", - " ('deviate', 'be at variance with; be out of line with'),\n", + " 'clues': [('diverge', 'move or draw apart'),\n", " ('vary', 'be at variance with; be out of line with'),\n", + " ('deviate', 'be at variance with; be out of line with'),\n", " ('depart', 'be at variance with; be out of line with')]},\n", " {'answer': 'diversified',\n", " 'hint': 'synonyms for diversified',\n", - " 'clues': [('radiate',\n", + " 'clues': [('diversify',\n", " 'spread into new habitats and produce variety or variegate'),\n", " ('branch out', 'vary in order to spread risk or to expand'),\n", - " ('broaden', 'vary in order to spread risk or to expand'),\n", - " ('diversify', 'make (more) diverse')]},\n", + " ('radiate', 'spread into new habitats and produce variety or variegate'),\n", + " ('broaden', 'vary in order to spread risk or to expand')]},\n", " {'answer': 'diverted',\n", " 'hint': 'synonyms for diverted',\n", " 'clues': [('deviate', 'turn aside; turn away from'),\n", - " ('divert',\n", - " 'send on a course or in a direction different from the planned or intended one'),\n", + " ('disport', 'occupy in an agreeable, entertaining or pleasant fashion'),\n", + " ('divert', 'turn aside; turn away from'),\n", " ('hive off',\n", " 'withdraw (money) and move into a different location, often secretly and with dishonest intentions'),\n", - " ('amuse', 'occupy in an agreeable, entertaining or pleasant fashion'),\n", - " ('disport', 'occupy in an agreeable, entertaining or pleasant fashion')]},\n", + " ('amuse', 'occupy in an agreeable, entertaining or pleasant fashion')]},\n", " {'answer': 'diverting',\n", " 'hint': 'synonyms for diverting',\n", " 'clues': [('deviate', 'turn aside; turn away from'),\n", - " ('divert',\n", - " 'send on a course or in a direction different from the planned or intended one'),\n", + " ('disport', 'occupy in an agreeable, entertaining or pleasant fashion'),\n", + " ('divert', 'turn aside; turn away from'),\n", " ('hive off',\n", " 'withdraw (money) and move into a different location, often secretly and with dishonest intentions'),\n", - " ('amuse', 'occupy in an agreeable, entertaining or pleasant fashion'),\n", - " ('disport', 'occupy in an agreeable, entertaining or pleasant fashion')]},\n", + " ('amuse', 'occupy in an agreeable, entertaining or pleasant fashion')]},\n", " {'answer': 'divided',\n", " 'hint': 'synonyms for divided',\n", - " 'clues': [('separate', 'force, take, or pull apart'),\n", + " 'clues': [('divide', 'force, take, or pull apart'),\n", + " ('split', 'separate into parts or portions'),\n", + " ('disunite', 'force, take, or pull apart'),\n", " ('part', 'force, take, or pull apart'),\n", " ('dissever', 'separate into parts or portions'),\n", - " ('divide', 'force, take, or pull apart'),\n", - " ('carve up', 'separate into parts or portions'),\n", + " ('separate', 'come apart'),\n", " ('split up', 'separate into parts or portions'),\n", - " ('disunite', 'force, take, or pull apart'),\n", - " ('split', 'separate into parts or portions'),\n", - " ('fraction', 'perform a division')]},\n", + " ('fraction', 'perform a division'),\n", + " ('carve up', 'separate into parts or portions')]},\n", " {'answer': 'divorced',\n", " 'hint': 'synonyms for divorced',\n", - " 'clues': [('dissociate', 'part; cease or break association with'),\n", - " ('divorce', 'part; cease or break association with'),\n", - " ('disunite', 'part; cease or break association with'),\n", + " 'clues': [('disunite', 'part; cease or break association with'),\n", " ('disjoint', 'part; cease or break association with'),\n", - " ('split up', 'get a divorce; formally terminate a marriage')]},\n", + " ('split up', 'get a divorce; formally terminate a marriage'),\n", + " ('dissociate', 'part; cease or break association with'),\n", + " ('divorce', 'get a divorce; formally terminate a marriage')]},\n", " {'answer': 'doddering',\n", " 'hint': 'synonyms for doddering',\n", - " 'clues': [('toddle', 'walk unsteadily'),\n", + " 'clues': [('coggle', 'walk unsteadily'),\n", " ('paddle', 'walk unsteadily'),\n", - " ('coggle', 'walk unsteadily'),\n", - " ('waddle', 'walk unsteadily'),\n", + " ('toddle', 'walk unsteadily'),\n", " ('dodder', 'walk unsteadily'),\n", - " ('totter', 'walk unsteadily')]},\n", + " ('totter', 'walk unsteadily'),\n", + " ('waddle', 'walk unsteadily')]},\n", " {'answer': 'dogged',\n", " 'hint': 'synonyms for dogged',\n", - " 'clues': [('track', 'go after with the intent to catch'),\n", - " ('give chase', 'go after with the intent to catch'),\n", - " ('tail', 'go after with the intent to catch'),\n", - " ('chase', 'go after with the intent to catch'),\n", - " ('go after', 'go after with the intent to catch'),\n", + " 'clues': [('give chase', 'go after with the intent to catch'),\n", + " ('trail', 'go after with the intent to catch'),\n", " ('dog', 'go after with the intent to catch'),\n", + " ('chase', 'go after with the intent to catch'),\n", + " ('chase after', 'go after with the intent to catch'),\n", + " ('track', 'go after with the intent to catch'),\n", " ('tag', 'go after with the intent to catch'),\n", - " ('chase after', 'go after with the intent to catch')]},\n", + " ('go after', 'go after with the intent to catch')]},\n", " {'answer': 'dogging',\n", " 'hint': 'synonyms for dogging',\n", - " 'clues': [('track', 'go after with the intent to catch'),\n", - " ('give chase', 'go after with the intent to catch'),\n", - " ('tail', 'go after with the intent to catch'),\n", - " ('chase', 'go after with the intent to catch'),\n", - " ('go after', 'go after with the intent to catch'),\n", + " 'clues': [('give chase', 'go after with the intent to catch'),\n", + " ('trail', 'go after with the intent to catch'),\n", " ('dog', 'go after with the intent to catch'),\n", + " ('chase', 'go after with the intent to catch'),\n", + " ('chase after', 'go after with the intent to catch'),\n", + " ('track', 'go after with the intent to catch'),\n", " ('tag', 'go after with the intent to catch'),\n", - " ('chase after', 'go after with the intent to catch')]},\n", + " ('go after', 'go after with the intent to catch')]},\n", " {'answer': 'domesticated',\n", " 'hint': 'synonyms for domesticated',\n", - " 'clues': [('naturalize',\n", + " 'clues': [('reclaim',\n", + " 'overcome the wildness of; make docile and tractable'),\n", + " ('domesticise', 'overcome the wildness of; make docile and tractable'),\n", + " ('cultivate',\n", " 'adapt (a wild plant or unclaimed land) to the environment'),\n", - " ('domesticize', 'overcome the wildness of; make docile and tractable'),\n", - " ('reclaim', 'overcome the wildness of; make docile and tractable'),\n", " ('tame', 'adapt (a wild plant or unclaimed land) to the environment'),\n", - " ('domesticate',\n", + " ('naturalize',\n", " 'adapt (a wild plant or unclaimed land) to the environment'),\n", - " ('cultivate',\n", + " ('domesticate',\n", " 'adapt (a wild plant or unclaimed land) to the environment')]},\n", " {'answer': 'dominated',\n", " 'hint': 'synonyms for dominated',\n", - " 'clues': [('dominate', 'be in control'),\n", + " 'clues': [('dominate',\n", + " 'be larger in number, quantity, power, status or importance'),\n", + " ('reign', 'be larger in number, quantity, power, status or importance'),\n", " ('overlook', 'look down on'),\n", - " ('eclipse', 'be greater in significance than'),\n", - " ('overtop', 'look down on'),\n", + " ('command', 'look down on'),\n", + " ('prevail', 'be larger in number, quantity, power, status or importance'),\n", + " ('overshadow', 'be greater in significance than'),\n", " ('predominate',\n", " 'be larger in number, quantity, power, status or importance'),\n", + " ('eclipse', 'be greater in significance than'),\n", + " ('overtop', 'look down on'),\n", " ('rule', 'be larger in number, quantity, power, status or importance'),\n", - " ('master', 'have dominance or the power to defeat over'),\n", - " ('prevail', 'be larger in number, quantity, power, status or importance'),\n", - " ('reign', 'be larger in number, quantity, power, status or importance'),\n", - " ('overshadow', 'be greater in significance than'),\n", - " ('command', 'look down on')]},\n", + " ('master', 'have dominance or the power to defeat over')]},\n", " {'answer': 'dominating',\n", " 'hint': 'synonyms for dominating',\n", - " 'clues': [('dominate', 'be in control'),\n", + " 'clues': [('dominate',\n", + " 'be larger in number, quantity, power, status or importance'),\n", + " ('reign', 'be larger in number, quantity, power, status or importance'),\n", " ('overlook', 'look down on'),\n", - " ('eclipse', 'be greater in significance than'),\n", - " ('overtop', 'look down on'),\n", + " ('command', 'look down on'),\n", + " ('prevail', 'be larger in number, quantity, power, status or importance'),\n", + " ('overshadow', 'be greater in significance than'),\n", " ('predominate',\n", " 'be larger in number, quantity, power, status or importance'),\n", + " ('eclipse', 'be greater in significance than'),\n", + " ('overtop', 'look down on'),\n", " ('rule', 'be larger in number, quantity, power, status or importance'),\n", - " ('master', 'have dominance or the power to defeat over'),\n", - " ('prevail', 'be larger in number, quantity, power, status or importance'),\n", - " ('reign', 'be larger in number, quantity, power, status or importance'),\n", - " ('overshadow', 'be greater in significance than'),\n", - " ('command', 'look down on')]},\n", + " ('master', 'have dominance or the power to defeat over')]},\n", " {'answer': 'done',\n", " 'hint': 'synonyms for done',\n", - " 'clues': [('do',\n", - " 'give rise to; cause to happen or occur, not always intentionally'),\n", - " ('coiffe', 'arrange attractively'),\n", - " ('make',\n", - " 'give rise to; cause to happen or occur, not always intentionally'),\n", - " ('practise', 'carry out or practice; as of jobs and professions'),\n", + " 'clues': [('manage', 'carry on or function'),\n", + " ('come', 'proceed or get along'),\n", + " ('serve', 'be sufficient; be adequate, either in quality or quantity'),\n", + " ('do', 'carry out or practice; as of jobs and professions'),\n", + " ('make', 'create or design, often in a certain way'),\n", " ('set', 'arrange attractively'),\n", - " ('serve', 'spend time in prison or in a labor camp'),\n", - " ('behave',\n", + " ('perform', 'carry out or perform an action'),\n", + " ('act',\n", " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n", - " ('dress', 'arrange attractively'),\n", + " ('execute', 'carry out or perform an action'),\n", " ('exercise', 'carry out or practice; as of jobs and professions'),\n", - " ('cause',\n", - " 'give rise to; cause to happen or occur, not always intentionally'),\n", " ('get along', 'proceed or get along'),\n", - " ('coif', 'arrange attractively'),\n", + " ('practice', 'carry out or practice; as of jobs and professions'),\n", + " ('coiffure', 'arrange attractively'),\n", " ('make out', 'proceed or get along'),\n", - " ('fare', 'proceed or get along'),\n", - " ('come', 'proceed or get along'),\n", - " ('act',\n", - " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n", - " ('execute', 'carry out or perform an action'),\n", - " ('perform', 'carry out or perform an action'),\n", - " ('answer', 'be sufficient; be adequate, either in quality or quantity'),\n", - " ('manage', 'carry on or function'),\n", + " ('coif', 'arrange attractively'),\n", + " ('cause',\n", + " 'give rise to; cause to happen or occur, not always intentionally'),\n", + " ('dress', 'arrange attractively'),\n", + " ('arrange', 'arrange attractively'),\n", " ('suffice', 'be sufficient; be adequate, either in quality or quantity'),\n", - " ('arrange', 'arrange attractively')]},\n", + " ('behave',\n", + " 'behave in a certain manner; show a certain behavior; conduct or comport oneself'),\n", + " ('fare', 'proceed or get along'),\n", + " ('answer', 'be sufficient; be adequate, either in quality or quantity')]},\n", " {'answer': 'doomed',\n", " 'hint': 'synonyms for doomed',\n", - " 'clues': [('fate', 'decree or designate beforehand'),\n", - " ('doom', 'pronounce a sentence on (somebody) in a court of law'),\n", - " ('designate', 'decree or designate beforehand'),\n", - " ('sentence', 'pronounce a sentence on (somebody) in a court of law'),\n", + " 'clues': [('doom', 'make certain of the failure or destruction of'),\n", " ('condemn', 'pronounce a sentence on (somebody) in a court of law'),\n", - " ('destine', 'decree or designate beforehand')]},\n", + " ('destine', 'decree or designate beforehand'),\n", + " ('sentence', 'pronounce a sentence on (somebody) in a court of law'),\n", + " ('designate', 'decree or designate beforehand'),\n", + " ('fate', 'decree or designate beforehand')]},\n", " {'answer': 'doting',\n", " 'hint': 'synonyms for doting',\n", - " 'clues': [('dot', 'mark with a dot'),\n", + " 'clues': [('disperse', 'distribute loosely'),\n", + " ('dote', 'shower with love; show excessive affection for'),\n", " ('constellate', 'scatter or intersperse like dots or studs'),\n", - " ('stud', 'scatter or intersperse like dots or studs'),\n", - " ('scatter', 'distribute loosely'),\n", " ('sprinkle', 'distribute loosely'),\n", - " ('disperse', 'distribute loosely'),\n", + " ('scatter', 'distribute loosely'),\n", + " ('stud', 'scatter or intersperse like dots or studs'),\n", " ('dust', 'distribute loosely')]},\n", " {'answer': 'dotted',\n", " 'hint': 'synonyms for dotted',\n", - " 'clues': [('dot', 'mark with a dot'),\n", + " 'clues': [('disperse', 'distribute loosely'),\n", + " ('dot', 'scatter or intersperse like dots or studs'),\n", " ('constellate', 'scatter or intersperse like dots or studs'),\n", - " ('stud', 'scatter or intersperse like dots or studs'),\n", - " ('scatter', 'distribute loosely'),\n", " ('sprinkle', 'distribute loosely'),\n", - " ('disperse', 'distribute loosely'),\n", + " ('scatter', 'distribute loosely'),\n", + " ('stud', 'scatter or intersperse like dots or studs'),\n", " ('dust', 'distribute loosely')]},\n", " {'answer': 'double',\n", " 'hint': 'synonyms for double',\n", - " 'clues': [('double over',\n", - " 'bend over or curl up, usually with laughter or pain'),\n", - " ('double up', 'bend over or curl up, usually with laughter or pain'),\n", - " ('duplicate', 'make or do or perform again'),\n", + " 'clues': [('duplicate', 'increase twofold'),\n", + " ('replicate', 'make or do or perform again'),\n", + " ('double over', 'bend over or curl up, usually with laughter or pain'),\n", " ('repeat', 'make or do or perform again'),\n", - " ('replicate', 'make or do or perform again')]},\n", + " ('double up', 'bend over or curl up, usually with laughter or pain')]},\n", " {'answer': 'doubled',\n", " 'hint': 'synonyms for doubled',\n", - " 'clues': [('double over',\n", - " 'bend over or curl up, usually with laughter or pain'),\n", - " ('double', 'do double duty; serve two purposes or have two functions'),\n", + " 'clues': [('double', 'bridge: make a demand for (a card or suit)'),\n", + " ('replicate', 'make or do or perform again'),\n", " ('repeat', 'make or do or perform again'),\n", - " ('reduplicate', 'make or do or perform again'),\n", + " ('duplicate', 'make or do or perform again'),\n", + " ('double over', 'bend over or curl up, usually with laughter or pain'),\n", " ('double up', 'bend over or curl up, usually with laughter or pain')]},\n", " {'answer': 'down',\n", " 'hint': 'synonyms for down',\n", - " 'clues': [('kill', 'drink down entirely'),\n", - " ('pop', 'drink down entirely'),\n", - " ('cut down', 'cause to come or go down'),\n", - " ('devour', 'eat immoderately'),\n", - " ('drink down', 'drink down entirely'),\n", + " 'clues': [('polish', 'improve or perfect by pruning or polishing'),\n", + " ('pull down', 'cause to come or go down'),\n", + " ('toss off', 'drink down entirely'),\n", " ('fine-tune', 'improve or perfect by pruning or polishing'),\n", + " ('go through', 'eat immoderately'),\n", + " ('knock down', 'cause to come or go down'),\n", + " ('devour', 'eat immoderately'),\n", + " ('cut down', 'cause to come or go down'),\n", " ('shoot down', 'shoot at and force to come down'),\n", + " ('consume', 'eat immoderately'),\n", + " ('belt down', 'drink down entirely'),\n", " ('land', 'shoot at and force to come down'),\n", + " ('kill', 'drink down entirely'),\n", + " ('drink down', 'drink down entirely'),\n", " ('refine', 'improve or perfect by pruning or polishing'),\n", " ('push down', 'cause to come or go down'),\n", - " ('belt down', 'drink down entirely'),\n", - " ('polish', 'improve or perfect by pruning or polishing'),\n", - " ('knock down', 'cause to come or go down'),\n", - " ('pour down', 'drink down entirely'),\n", - " ('toss off', 'drink down entirely'),\n", - " ('go through', 'eat immoderately'),\n", - " ('pull down', 'cause to come or go down'),\n", - " ('consume', 'eat immoderately')]},\n", + " ('pop', 'drink down entirely'),\n", + " ('pour down', 'drink down entirely')]},\n", " {'answer': 'dragging',\n", " 'hint': 'synonyms for dragging',\n", - " 'clues': [('drag', 'move slowly and as if with great effort'),\n", - " ('puff', 'suck in or take (air)'),\n", + " 'clues': [('drag', 'to lag or linger behind'),\n", + " ('scuff', 'walk without lifting the feet'),\n", " ('hale', 'draw slowly or heavily'),\n", - " ('haul', 'draw slowly or heavily'),\n", - " ('get behind', 'to lag or linger behind'),\n", - " ('drop back', 'to lag or linger behind'),\n", - " ('tangle',\n", + " ('sweep',\n", " 'force into some kind of situation, condition, or course of action'),\n", + " ('drop back', 'to lag or linger behind'),\n", " ('sweep up',\n", " 'force into some kind of situation, condition, or course of action'),\n", + " ('hang back', 'to lag or linger behind'),\n", " ('drag in',\n", " 'force into some kind of situation, condition, or course of action'),\n", - " ('embroil',\n", - " 'force into some kind of situation, condition, or course of action'),\n", - " ('draw', 'suck in or take (air)'),\n", - " ('trail', 'to lag or linger behind'),\n", + " ('get behind', 'to lag or linger behind'),\n", " ('dredge',\n", " 'search (as the bottom of a body of water) for something valuable or lost'),\n", - " ('cart', 'draw slowly or heavily'),\n", " ('drop behind', 'to lag or linger behind'),\n", - " ('hang back', 'to lag or linger behind'),\n", + " ('embroil',\n", + " 'force into some kind of situation, condition, or course of action'),\n", + " ('haul', 'draw slowly or heavily'),\n", + " ('trail', 'to lag or linger behind'),\n", + " ('draw', 'suck in or take (air)'),\n", + " ('puff', 'suck in or take (air)'),\n", + " ('tangle',\n", + " 'force into some kind of situation, condition, or course of action'),\n", " ('drag out', 'proceed for an extended period of time'),\n", - " ('scuff', 'walk without lifting the feet'),\n", - " ('sweep',\n", - " 'force into some kind of situation, condition, or course of action')]},\n", + " ('cart', 'draw slowly or heavily')]},\n", " {'answer': 'drained',\n", " 'hint': 'synonyms for drained',\n", - " 'clues': [('drain', 'empty of liquid; drain the liquid from'),\n", - " ('debilitate', 'make weak'),\n", - " ('run out', 'flow off gradually'),\n", - " ('enfeeble', 'make weak')]},\n", + " 'clues': [('run out', 'flow off gradually'),\n", + " ('drain', 'make weak'),\n", + " ('enfeeble', 'make weak'),\n", + " ('debilitate', 'make weak')]},\n", " {'answer': 'draining',\n", " 'hint': 'synonyms for draining',\n", - " 'clues': [('drain', 'empty of liquid; drain the liquid from'),\n", - " ('debilitate', 'make weak'),\n", - " ('run out', 'flow off gradually'),\n", - " ('enfeeble', 'make weak')]},\n", + " 'clues': [('run out', 'flow off gradually'),\n", + " ('drain', 'make weak'),\n", + " ('enfeeble', 'make weak'),\n", + " ('debilitate', 'make weak')]},\n", " {'answer': 'draped',\n", " 'hint': 'synonyms for draped',\n", " 'clues': [('drape', 'arrange in a particular way'),\n", " ('clothe', 'cover as if with clothing'),\n", - " ('robe', 'cover as if with clothing'),\n", - " ('cloak', 'cover as if with clothing')]},\n", + " ('cloak', 'cover as if with clothing'),\n", + " ('robe', 'cover as if with clothing')]},\n", " {'answer': 'drawn',\n", " 'hint': 'synonyms for drawn',\n", - " 'clues': [('line', 'make a mark or lines on a surface'),\n", - " ('draw', 'move or go steadily or gradually'),\n", - " ('puff', 'suck in or take (air)'),\n", - " ('take up', 'take in, also metaphorically'),\n", - " ('run', 'pass over, across, or through'),\n", - " ('thread', 'thread on or as if on a string'),\n", - " ('reap', 'get or derive'),\n", + " 'clues': [('draw',\n", + " 'elicit responses, such as objections, criticism, applause, etc.'),\n", " ('draw and quarter',\n", " 'pull (a person) apart with four horses tied to his extremities, so as to execute him'),\n", - " ('draw off', 'remove (a commodity) from (a supply source)'),\n", - " ('depict', 'give a description of'),\n", - " ('pull', 'cause to move by pulling'),\n", - " ('pull out',\n", - " 'bring, take, or pull out of a container or from under a cover'),\n", - " ('attract',\n", - " 'direct toward itself or oneself by means of some psychological power or physical attributes'),\n", - " ('take out',\n", - " 'bring, take, or pull out of a container or from under a cover'),\n", - " ('pass', 'pass over, across, or through'),\n", + " ('tie', 'finish a game with an equal number of points, goals, etc.'),\n", + " ('make', 'make, formulate, or derive in the mind'),\n", " ('guide', 'pass over, across, or through'),\n", - " ('get out',\n", - " 'bring, take, or pull out of a container or from under a cover'),\n", - " ('withdraw', 'remove (a commodity) from (a supply source)'),\n", + " ('pull', 'cause to move by pulling'),\n", " ('absorb', 'take in, also metaphorically'),\n", - " ('quarter',\n", - " 'pull (a person) apart with four horses tied to his extremities, so as to execute him'),\n", - " ('imbibe', 'take in, also metaphorically'),\n", - " ('suck', 'take in, also metaphorically'),\n", + " ('delineate', 'make a mark or lines on a surface'),\n", + " ('describe', 'give a description of'),\n", + " ('trace', 'make a mark or lines on a surface'),\n", + " ('soak up', 'take in, also metaphorically'),\n", + " ('take up', 'take in, also metaphorically'),\n", + " ('reap', 'get or derive'),\n", + " ('pass', 'pass over, across, or through'),\n", + " ('eviscerate', 'remove the entrails of'),\n", " ('drag', 'suck in or take (air)'),\n", - " ('describe', 'make a mark or lines on a surface'),\n", - " ('make', 'make, formulate, or derive in the mind'),\n", - " ('get', 'earn or achieve a base by being walked by the pitcher'),\n", + " ('line', 'make a mark or lines on a surface'),\n", + " ('imbibe', 'take in, also metaphorically'),\n", + " ('thread', 'thread on or as if on a string'),\n", " ('draw in',\n", " 'direct toward itself or oneself by means of some psychological power or physical attributes'),\n", - " ('pull back', \"stretch back a bowstring (on an archer's bow)\"),\n", - " ('force', 'cause to move by pulling'),\n", - " ('soak up', 'take in, also metaphorically'),\n", - " ('take in', 'take in, also metaphorically'),\n", + " ('withdraw', 'remove (a commodity) from (a supply source)'),\n", + " ('get', 'earn or achieve a base by being walked by the pitcher'),\n", + " ('disembowel', 'remove the entrails of'),\n", " ('pull in',\n", " 'direct toward itself or oneself by means of some psychological power or physical attributes'),\n", - " ('sop up', 'take in, also metaphorically'),\n", - " ('disembowel', 'remove the entrails of'),\n", - " ('delineate', 'make a mark or lines on a surface'),\n", - " ('cast', 'choose at random'),\n", - " ('suck up', 'take in, also metaphorically'),\n", - " ('eviscerate', 'remove the entrails of'),\n", - " ('string', 'thread on or as if on a string'),\n", - " ('trace', 'make a mark or lines on a surface'),\n", - " ('tie', 'finish a game with an equal number of points, goals, etc.')]},\n", + " ('force', 'cause to move by pulling'),\n", + " ('take out', 'take liquid out of a container or well'),\n", + " ('draw off', 'remove (a commodity) from (a supply source)'),\n", + " ('take in', 'take in, also metaphorically'),\n", + " ('get out',\n", + " 'bring, take, or pull out of a container or from under a cover'),\n", + " ('run', 'pass over, across, or through'),\n", + " ('suck', 'take in, also metaphorically'),\n", + " ('depict', 'give a description of'),\n", + " ('string', 'thread on or as if on a string'),\n", + " ('pull back', \"stretch back a bowstring (on an archer's bow)\"),\n", + " ('suck up', 'take in, also metaphorically'),\n", + " ('cast', 'choose at random'),\n", + " ('puff', 'suck in or take (air)'),\n", + " ('sop up', 'take in, also metaphorically'),\n", + " ('quarter',\n", + " 'pull (a person) apart with four horses tied to his extremities, so as to execute him'),\n", + " ('pull out',\n", + " 'bring, take, or pull out of a container or from under a cover'),\n", + " ('attract',\n", + " 'direct toward itself or oneself by means of some psychological power or physical attributes')]},\n", " {'answer': 'dreamed',\n", " 'hint': 'synonyms for dreamed',\n", " 'clues': [('woolgather', 'have a daydream; indulge in a fantasy'),\n", - " ('dream', 'experience while sleeping'),\n", " ('stargaze', 'have a daydream; indulge in a fantasy'),\n", + " ('dream', 'experience while sleeping'),\n", " ('daydream', 'have a daydream; indulge in a fantasy')]},\n", " {'answer': 'drenched',\n", " 'hint': 'synonyms for drenched',\n", - " 'clues': [('dowse', 'cover with liquid; pour liquid onto'),\n", - " ('sop', 'cover with liquid; pour liquid onto'),\n", + " 'clues': [('drench', 'force to drink'),\n", + " ('souse', 'cover with liquid; pour liquid onto'),\n", " ('swamp', 'drench or submerge or be drenched or submerged'),\n", + " ('dowse', 'cover with liquid; pour liquid onto'),\n", + " ('sop', 'cover with liquid; pour liquid onto'),\n", " ('douse', 'cover with liquid; pour liquid onto'),\n", - " ('drench', 'drench or submerge or be drenched or submerged'),\n", - " ('souse', 'cover with liquid; pour liquid onto'),\n", - " ('imbrue', 'permeate or impregnate'),\n", - " ('soak', 'cover with liquid; pour liquid onto')]},\n", + " ('soak', 'cover with liquid; pour liquid onto'),\n", + " ('imbrue', 'permeate or impregnate')]},\n", " {'answer': 'dress',\n", " 'hint': 'synonyms for dress',\n", - " 'clues': [('coiffe', 'arrange attractively'),\n", - " ('decorate', 'provide with decoration'),\n", - " ('clip', 'cultivate, tend, and cut back the growth of'),\n", - " ('enclothe', 'provide with clothes or put clothes on'),\n", + " 'clues': [('coiffure', 'arrange attractively'),\n", + " ('fit out', 'provide with clothes or put clothes on'),\n", + " ('get dressed', 'put on clothes'),\n", + " ('plume', 'dress or groom with elaborate care'),\n", + " ('primp', 'dress or groom with elaborate care'),\n", + " ('crop', 'cultivate, tend, and cut back the growth of'),\n", + " ('snip', 'cultivate, tend, and cut back the growth of'),\n", + " ('trim', 'cultivate, tend, and cut back the growth of'),\n", + " ('dress up', 'dress in a certain manner'),\n", + " ('coif', 'arrange attractively'),\n", " ('prune', 'cultivate, tend, and cut back the growth of'),\n", + " ('enclothe', 'provide with clothes or put clothes on'),\n", + " ('preen', 'dress or groom with elaborate care'),\n", + " ('dress out', 'kill and prepare for market or consumption'),\n", + " ('arrange', 'arrange attractively'),\n", + " ('groom', 'give a neat appearance to'),\n", + " ('curry', 'give a neat appearance to'),\n", " ('do', 'arrange attractively'),\n", + " ('garb', 'provide with clothes or put clothes on'),\n", " ('habilitate', 'provide with clothes or put clothes on'),\n", + " ('decorate', 'provide with decoration'),\n", + " ('set', 'arrange attractively'),\n", + " ('garment', 'provide with clothes or put clothes on'),\n", + " ('clip', 'cultivate, tend, and cut back the growth of'),\n", + " ('garnish', 'decorate (food), as with parsley or other ornamental foods'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", " ('lop', 'cultivate, tend, and cut back the growth of'),\n", - " ('fit out', 'provide with clothes or put clothes on'),\n", " ('cut back', 'cultivate, tend, and cut back the growth of'),\n", - " ('groom', 'give a neat appearance to'),\n", - " ('primp', 'dress or groom with elaborate care'),\n", - " ('garnish', 'decorate (food), as with parsley or other ornamental foods'),\n", - " ('curry', 'give a neat appearance to'),\n", - " ('set', 'arrange attractively'),\n", - " ('preen', 'dress or groom with elaborate care'),\n", + " ('apparel', 'provide with clothes or put clothes on'),\n", " ('line up', 'arrange in ranks'),\n", + " ('tog', 'provide with clothes or put clothes on')]},\n", + " {'answer': 'dressed',\n", + " 'hint': 'synonyms for dressed',\n", + " 'clues': [('dress', 'cultivate, tend, and cut back the growth of'),\n", + " ('fit out', 'provide with clothes or put clothes on'),\n", + " ('get dressed', 'put on clothes'),\n", + " ('primp', 'dress or groom with elaborate care'),\n", + " ('crop', 'cultivate, tend, and cut back the growth of'),\n", " ('dress up', 'dress in a certain manner'),\n", " ('dress out', 'kill and prepare for market or consumption'),\n", - " ('raiment', 'provide with clothes or put clothes on'),\n", - " ('plume', 'dress or groom with elaborate care'),\n", + " ('groom', 'give a neat appearance to'),\n", + " ('do', 'arrange attractively'),\n", " ('garb', 'provide with clothes or put clothes on'),\n", + " ('set', 'arrange attractively'),\n", " ('garment', 'provide with clothes or put clothes on'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", + " ('apparel', 'provide with clothes or put clothes on'),\n", " ('tog', 'provide with clothes or put clothes on'),\n", - " ('arrange', 'arrange attractively'),\n", - " ('get dressed', 'put on clothes'),\n", - " ('crop', 'cultivate, tend, and cut back the growth of'),\n", + " ('coiffure', 'arrange attractively'),\n", + " ('plume', 'dress or groom with elaborate care'),\n", " ('snip', 'cultivate, tend, and cut back the growth of'),\n", - " ('coif', 'arrange attractively'),\n", " ('trim', 'cultivate, tend, and cut back the growth of'),\n", - " ('apparel', 'provide with clothes or put clothes on')]},\n", - " {'answer': 'dressed',\n", - " 'hint': 'synonyms for dressed',\n", - " 'clues': [('coiffe', 'arrange attractively'),\n", - " ('clip', 'cultivate, tend, and cut back the growth of'),\n", - " ('habilitate', 'provide with clothes or put clothes on'),\n", - " ('lop', 'cultivate, tend, and cut back the growth of'),\n", - " ('fit out', 'provide with clothes or put clothes on'),\n", - " ('set', 'arrange attractively'),\n", - " ('primp', 'dress or groom with elaborate care'),\n", - " ('garnish', 'decorate (food), as with parsley or other ornamental foods'),\n", - " ('dress', 'arrange attractively'),\n", - " ('preen', 'dress or groom with elaborate care'),\n", - " ('raiment', 'provide with clothes or put clothes on'),\n", - " ('plume', 'dress or groom with elaborate care'),\n", - " ('garment', 'provide with clothes or put clothes on'),\n", - " ('tog', 'provide with clothes or put clothes on'),\n", - " ('get dressed', 'put on clothes'),\n", - " ('crop', 'cultivate, tend, and cut back the growth of'),\n", " ('coif', 'arrange attractively'),\n", - " ('trim', 'decorate (food), as with parsley or other ornamental foods'),\n", - " ('decorate', 'provide with decoration'),\n", " ('prune', 'cultivate, tend, and cut back the growth of'),\n", " ('enclothe', 'provide with clothes or put clothes on'),\n", - " ('do', 'arrange attractively'),\n", - " ('groom', 'give a neat appearance to'),\n", - " ('cut back', 'cultivate, tend, and cut back the growth of'),\n", - " ('curry', 'give a neat appearance to'),\n", - " ('line up', 'arrange in ranks'),\n", - " ('dress up', 'dress in a certain manner'),\n", - " ('dress out', 'kill and prepare for market or consumption'),\n", - " ('garb', 'provide with clothes or put clothes on'),\n", - " ('snip', 'cultivate, tend, and cut back the growth of'),\n", + " ('preen', 'dress or groom with elaborate care'),\n", " ('arrange', 'arrange attractively'),\n", - " ('apparel', 'provide with clothes or put clothes on')]},\n", + " ('curry', 'give a neat appearance to'),\n", + " ('habilitate', 'provide with clothes or put clothes on'),\n", + " ('decorate', 'provide with decoration'),\n", + " ('clip', 'cultivate, tend, and cut back the growth of'),\n", + " ('garnish', 'decorate (food), as with parsley or other ornamental foods'),\n", + " ('lop', 'cultivate, tend, and cut back the growth of'),\n", + " ('cut back', 'cultivate, tend, and cut back the growth of'),\n", + " ('line up', 'arrange in ranks')]},\n", " {'answer': 'drifting',\n", " 'hint': 'synonyms for drifting',\n", - " 'clues': [('cast',\n", - " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('be adrift', 'be in motion due to some air or water current'),\n", + " 'clues': [('stray', 'wander from a direct course or at random'),\n", " ('vagabond',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('drift',\n", - " 'be piled up in banks or heaps by the force of wind or a current'),\n", - " ('ramble',\n", - " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('swan',\n", + " ('wander',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", + " ('drift', 'be in motion due to some air or water current'),\n", " ('float', 'be in motion due to some air or water current'),\n", - " ('roll',\n", + " ('cast',\n", + " 'move about aimlessly or without any destination, often in search of food or employment'),\n", + " ('err', 'wander from a direct course or at random'),\n", + " ('be adrift', 'be in motion due to some air or water current'),\n", + " ('ramble',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", " ('range',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", " ('tramp',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('wander',\n", - " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('blow', 'be in motion due to some air or water current'),\n", - " ('rove',\n", + " ('roll',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('stray',\n", + " ('swan',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('freewheel', 'live unhurriedly, irresponsibly, or freely'),\n", " ('roam',\n", " 'move about aimlessly or without any destination, often in search of food or employment'),\n", - " ('err', 'wander from a direct course or at random')]},\n", + " ('blow', 'be in motion due to some air or water current'),\n", + " ('freewheel', 'live unhurriedly, irresponsibly, or freely'),\n", + " ('rove',\n", + " 'move about aimlessly or without any destination, often in search of food or employment')]},\n", " {'answer': 'drilled',\n", " 'hint': 'synonyms for drilled',\n", " 'clues': [('drill',\n", " 'make a hole, especially with a pointed power or hand tool'),\n", " ('practice', 'learn by repetition'),\n", - " ('bore', 'make a hole, especially with a pointed power or hand tool'),\n", - " ('exercise', 'learn by repetition')]},\n", + " ('exercise', 'learn by repetition'),\n", + " ('bore', 'make a hole, especially with a pointed power or hand tool')]},\n", " {'answer': 'driven',\n", " 'hint': 'synonyms for driven',\n", - " 'clues': [('motor', 'travel or be transported in a vehicle'),\n", - " ('push', 'strive and make an effort to reach a goal'),\n", - " ('drive', 'strike with a driver, as in teeing off'),\n", - " ('ride', 'have certain properties when driven'),\n", - " ('force',\n", - " 'force into or from an action or state, either physically or metaphorically'),\n", - " ('repulse', 'cause to move back by force or influence'),\n", + " 'clues': [('labor', 'strive and make an effort to reach a goal'),\n", + " ('drive', 'proceed along in a vehicle'),\n", " ('ram',\n", " 'force into or from an action or state, either physically or metaphorically'),\n", - " ('beat back', 'cause to move back by force or influence'),\n", - " ('aim', 'move into a desired direction of discourse'),\n", + " ('repel', 'cause to move back by force or influence'),\n", + " ('take', 'proceed along in a vehicle'),\n", + " ('repulse', 'cause to move back by force or influence'),\n", + " ('push back', 'cause to move back by force or influence'),\n", " ('force back', 'cause to move back by force or influence'),\n", - " ('labour', 'strive and make an effort to reach a goal'),\n", + " ('aim', 'move into a desired direction of discourse'),\n", " ('get', 'move into a desired direction of discourse'),\n", - " ('take', 'proceed along in a vehicle'),\n", + " ('force',\n", + " 'force into or from an action or state, either physically or metaphorically'),\n", + " ('beat back', 'cause to move back by force or influence'),\n", " ('tug', 'strive and make an effort to reach a goal'),\n", - " ('repel', 'cause to move back by force or influence'),\n", - " ('push back', 'cause to move back by force or influence')]},\n", - " {'answer': 'driving',\n", - " 'hint': 'synonyms for driving',\n", - " 'clues': [('motor', 'travel or be transported in a vehicle'),\n", " ('push', 'strive and make an effort to reach a goal'),\n", - " ('drive', 'strike with a driver, as in teeing off'),\n", " ('ride', 'have certain properties when driven'),\n", - " ('force',\n", - " 'force into or from an action or state, either physically or metaphorically'),\n", - " ('repulse', 'cause to move back by force or influence'),\n", + " ('motor', 'travel or be transported in a vehicle')]},\n", + " {'answer': 'driving',\n", + " 'hint': 'synonyms for driving',\n", + " 'clues': [('labor', 'strive and make an effort to reach a goal'),\n", + " ('drive', 'proceed along in a vehicle'),\n", " ('ram',\n", " 'force into or from an action or state, either physically or metaphorically'),\n", - " ('beat back', 'cause to move back by force or influence'),\n", - " ('aim', 'move into a desired direction of discourse'),\n", + " ('repel', 'cause to move back by force or influence'),\n", + " ('take', 'proceed along in a vehicle'),\n", + " ('repulse', 'cause to move back by force or influence'),\n", + " ('push back', 'cause to move back by force or influence'),\n", " ('force back', 'cause to move back by force or influence'),\n", - " ('labour', 'strive and make an effort to reach a goal'),\n", + " ('aim', 'move into a desired direction of discourse'),\n", " ('get', 'move into a desired direction of discourse'),\n", - " ('take', 'proceed along in a vehicle'),\n", + " ('force',\n", + " 'force into or from an action or state, either physically or metaphorically'),\n", + " ('beat back', 'cause to move back by force or influence'),\n", " ('tug', 'strive and make an effort to reach a goal'),\n", - " ('repel', 'cause to move back by force or influence'),\n", - " ('push back', 'cause to move back by force or influence')]},\n", + " ('push', 'strive and make an effort to reach a goal'),\n", + " ('ride', 'have certain properties when driven'),\n", + " ('motor', 'travel or be transported in a vehicle')]},\n", " {'answer': 'drooping',\n", " 'hint': 'synonyms for drooping',\n", - " 'clues': [('droop', 'hang loosely or laxly'),\n", - " ('swag',\n", - " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n", - " ('loll', 'hang loosely or laxly'),\n", + " 'clues': [('loll', 'hang loosely or laxly'),\n", " ('wilt', 'become limp'),\n", + " ('sag',\n", + " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n", + " ('droop', 'become limp'),\n", " ('flag',\n", " 'droop, sink, or settle from or as if from pressure or loss of tautness')]},\n", " {'answer': 'dropping',\n", " 'hint': 'synonyms for dropping',\n", - " 'clues': [('dangle', 'hang freely'),\n", - " ('throw', 'get rid of'),\n", - " ('throw off', 'get rid of'),\n", - " ('overlook', 'leave undone or leave out'),\n", - " ('drop', 'go down in value'),\n", - " ('overleap', 'leave undone or leave out'),\n", - " ('cut down', 'cause to fall by or as if by delivering a blow'),\n", - " ('fell', 'cause to fall by or as if by delivering a blow'),\n", - " ('expend', 'pay out'),\n", - " ('set down', 'leave or unload'),\n", - " ('dribble', 'let or cause to fall in drops'),\n", - " ('shed', 'get rid of'),\n", - " ('unload', 'leave or unload'),\n", - " ('flatten', 'lower the pitch of (musical notes)'),\n", - " ('neglect', 'leave undone or leave out'),\n", - " ('shake off', 'get rid of'),\n", - " ('omit', 'leave undone or leave out'),\n", + " 'clues': [('dribble', 'let or cause to fall in drops'),\n", + " ('deteriorate', 'grow worse'),\n", " ('drop down', 'fall or descend to a lower place or level'),\n", - " ('devolve', 'grow worse'),\n", + " ('drop', 'stop associating with'),\n", + " ('spend', 'pay out'),\n", " ('cast', 'get rid of'),\n", " ('pretermit', 'leave undone or leave out'),\n", - " ('leave out', 'leave undone or leave out'),\n", + " ('set down', 'leave or unload'),\n", + " ('knock off', 'stop pursuing or acting'),\n", + " ('miss', 'leave undone or leave out'),\n", " ('sink', 'fall or descend to a lower place or level'),\n", - " ('send packing', 'stop associating with'),\n", + " ('send away', 'stop associating with'),\n", + " ('neglect', 'leave undone or leave out'),\n", + " ('shed', 'get rid of'),\n", + " ('overleap', 'leave undone or leave out'),\n", + " ('leave out', 'leave undone or leave out'),\n", " ('cast off', 'get rid of'),\n", - " ('discharge', 'leave or unload'),\n", - " ('throw away', 'get rid of'),\n", + " ('throw', 'get rid of'),\n", + " ('shake off', 'get rid of'),\n", + " ('unload', 'leave or unload'),\n", " ('degenerate', 'grow worse'),\n", + " ('dangle', 'hang freely'),\n", + " ('throw off', 'get rid of'),\n", + " ('discharge', 'leave or unload'),\n", + " ('put down', 'leave or unload'),\n", " ('drip', 'let or cause to fall in drops'),\n", - " ('miss', 'leave undone or leave out'),\n", + " ('send packing', 'stop associating with'),\n", + " ('overlook', 'leave undone or leave out'),\n", + " ('expend', 'pay out'),\n", + " ('omit', 'leave undone or leave out'),\n", + " ('swing', 'hang freely'),\n", " ('drop off', 'leave or unload'),\n", + " ('fell', 'cause to fall by or as if by delivering a blow'),\n", " ('strike down', 'cause to fall by or as if by delivering a blow'),\n", - " ('deteriorate', 'grow worse'),\n", - " ('dismiss', 'stop associating with'),\n", - " ('swing', 'hang freely'),\n", - " ('send away', 'stop associating with'),\n", - " ('spend', 'pay out'),\n", - " ('knock off', 'stop pursuing or acting')]},\n", + " ('flatten', 'lower the pitch of (musical notes)'),\n", + " ('throw away', 'get rid of'),\n", + " ('devolve', 'grow worse'),\n", + " ('dismiss', 'stop associating with')]},\n", " {'answer': 'drudging',\n", " 'hint': 'synonyms for drudging',\n", - " 'clues': [('grind', 'work hard'),\n", - " ('drudge', 'work hard'),\n", + " 'clues': [('fag', 'work hard'),\n", " ('travail', 'work hard'),\n", - " ('fag', 'work hard'),\n", - " ('moil', 'work hard'),\n", - " ('labor', 'work hard'),\n", + " ('grind', 'work hard'),\n", + " ('dig', 'work hard'),\n", + " ('drudge', 'work hard'),\n", " ('toil', 'work hard'),\n", - " ('dig', 'work hard')]},\n", + " ('labor', 'work hard'),\n", + " ('moil', 'work hard')]},\n", " {'answer': 'drunk',\n", " 'hint': 'synonyms for drunk',\n", - " 'clues': [('pledge', 'propose a toast to'),\n", - " ('drink', 'drink excessive amounts of alcohol; be an alcoholic'),\n", - " ('imbibe', 'take in liquids'),\n", - " ('booze', 'consume alcohol'),\n", - " ('salute', 'propose a toast to'),\n", - " ('wassail', 'propose a toast to'),\n", + " 'clues': [('imbibe', 'take in liquids'),\n", + " ('drink', 'take in liquids'),\n", + " ('tope', 'drink excessive amounts of alcohol; be an alcoholic'),\n", + " ('pledge', 'propose a toast to'),\n", " ('drink in', 'be fascinated or spell-bound by; pay close attention to'),\n", " ('fuddle', 'consume alcohol'),\n", - " ('tope', 'drink excessive amounts of alcohol; be an alcoholic'),\n", - " ('toast', 'propose a toast to')]},\n", + " ('toast', 'propose a toast to'),\n", + " ('salute', 'propose a toast to'),\n", + " ('booze', 'consume alcohol'),\n", + " ('wassail', 'propose a toast to')]},\n", " {'answer': 'dull',\n", " 'hint': 'synonyms for dull',\n", - " 'clues': [('muffle', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('damp', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('blunt', 'make dull or blunt'),\n", + " 'clues': [('blunt', 'make numb or insensitive'),\n", " ('dampen', 'deaden (a sound or noise), especially by wrapping'),\n", " ('pall', 'become less interesting or attractive'),\n", " ('benumb', 'make numb or insensitive'),\n", " ('numb', 'make numb or insensitive'),\n", + " ('damp', 'deaden (a sound or noise), especially by wrapping'),\n", + " ('tone down', 'deaden (a sound or noise), especially by wrapping'),\n", " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('tone down', 'deaden (a sound or noise), especially by wrapping')]},\n", + " ('muffle', 'deaden (a sound or noise), especially by wrapping')]},\n", " {'answer': 'dulled',\n", " 'hint': 'synonyms for dulled',\n", - " 'clues': [('muffle', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('dull', 'make less lively or vigorous'),\n", - " ('damp', 'deaden (a sound or noise), especially by wrapping'),\n", + " 'clues': [('dull', 'make numb or insensitive'),\n", + " ('blunt', 'make numb or insensitive'),\n", " ('dampen', 'deaden (a sound or noise), especially by wrapping'),\n", - " ('blunt', 'make dull or blunt'),\n", " ('pall', 'become less interesting or attractive'),\n", " ('benumb', 'make numb or insensitive'),\n", - " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n", " ('numb', 'make numb or insensitive'),\n", - " ('tone down', 'deaden (a sound or noise), especially by wrapping')]},\n", + " ('damp', 'deaden (a sound or noise), especially by wrapping'),\n", + " ('mute', 'deaden (a sound or noise), especially by wrapping'),\n", + " ('tone down', 'deaden (a sound or noise), especially by wrapping'),\n", + " ('muffle', 'deaden (a sound or noise), especially by wrapping')]},\n", " {'answer': 'dumbfounded',\n", " 'hint': 'synonyms for dumbfounded',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", - " ('get', 'be a mystery or bewildering to'),\n", + " 'clues': [('baffle', 'be a mystery or bewildering to'),\n", " ('beat', 'be a mystery or bewildering to'),\n", - " ('amaze', 'be a mystery or bewildering to'),\n", - " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", - " ('perplex', 'be a mystery or bewildering to'),\n", - " ('gravel', 'be a mystery or bewildering to'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", - " {'answer': 'dumbfounding',\n", - " 'hint': 'synonyms for dumbfounding',\n", - " 'clues': [('puzzle', 'be a mystery or bewildering to'),\n", + " ('flummox', 'be a mystery or bewildering to'),\n", " ('get', 'be a mystery or bewildering to'),\n", - " ('beat', 'be a mystery or bewildering to'),\n", - " ('amaze', 'be a mystery or bewildering to'),\n", " ('stupefy', 'be a mystery or bewildering to'),\n", - " ('baffle', 'be a mystery or bewildering to'),\n", - " ('dumbfound', 'be a mystery or bewildering to'),\n", - " ('pose', 'be a mystery or bewildering to'),\n", - " ('bewilder', 'be a mystery or bewildering to'),\n", " ('perplex', 'be a mystery or bewildering to'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", " ('gravel', 'be a mystery or bewildering to'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('amaze', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", + " {'answer': 'dumbfounding',\n", + " 'hint': 'synonyms for dumbfounding',\n", + " 'clues': [('baffle', 'be a mystery or bewildering to'),\n", + " ('beat', 'be a mystery or bewildering to'),\n", " ('mystify', 'be a mystery or bewildering to'),\n", + " ('pose', 'be a mystery or bewildering to'),\n", + " ('puzzle', 'be a mystery or bewildering to'),\n", " ('stick', 'be a mystery or bewildering to'),\n", - " ('nonplus', 'be a mystery or bewildering to'),\n", " ('vex', 'be a mystery or bewildering to'),\n", - " ('flummox', 'be a mystery or bewildering to')]},\n", + " ('flummox', 'be a mystery or bewildering to'),\n", + " ('get', 'be a mystery or bewildering to'),\n", + " ('stupefy', 'be a mystery or bewildering to'),\n", + " ('perplex', 'be a mystery or bewildering to'),\n", + " ('dumbfound', 'be a mystery or bewildering to'),\n", + " ('gravel', 'be a mystery or bewildering to'),\n", + " ('bewilder', 'be a mystery or bewildering to'),\n", + " ('amaze', 'be a mystery or bewildering to'),\n", + " ('nonplus', 'be a mystery or bewildering to')]},\n", " {'answer': 'dun',\n", " 'hint': 'synonyms for dun',\n", - " 'clues': [('rag', 'treat cruelly'),\n", + " 'clues': [('frustrate', 'treat cruelly'),\n", " ('bedevil', 'treat cruelly'),\n", " ('torment', 'treat cruelly'),\n", - " ('crucify', 'treat cruelly'),\n", - " ('frustrate', 'treat cruelly')]},\n", + " ('rag', 'treat cruelly'),\n", + " ('crucify', 'treat cruelly')]},\n", " {'answer': 'duplicate',\n", " 'hint': 'synonyms for duplicate',\n", - " 'clues': [('double', 'make or do or perform again'),\n", + " 'clues': [('replicate', 'make or do or perform again'),\n", " ('twin', 'duplicate or match'),\n", - " ('parallel', 'duplicate or match'),\n", + " ('double', 'make or do or perform again'),\n", " ('repeat', 'make or do or perform again'),\n", - " ('replicate', 'make or do or perform again')]},\n", + " ('parallel', 'duplicate or match')]},\n", " {'answer': 'dying',\n", " 'hint': 'synonyms for dying',\n", - " 'clues': [('decease',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die', 'feel indifferent towards'),\n", - " ('go',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('become flat', 'lose sparkle or bouquet'),\n", - " ('choke',\n", + " 'clues': [('die', 'suffer or face the pain of death'),\n", + " ('die out', 'cut or shape with a die'),\n", + " ('perish',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('break', 'stop operating or functioning'),\n", - " ('exit',\n", + " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('conk out', 'stop operating or functioning'),\n", - " ('croak',\n", + " ('conk',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('go bad', 'stop operating or functioning'),\n", - " ('drop dead',\n", + " ('decease',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('give way', 'stop operating or functioning'),\n", - " ('give-up the ghost',\n", + " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('go', 'stop operating or functioning'),\n", " (\"cash in one's chips\",\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pall', 'lose sparkle or bouquet'),\n", - " ('perish',\n", + " ('give out', 'stop operating or functioning'),\n", + " ('give-up the ghost',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('snuff it',\n", + " ('break down', 'stop operating or functioning'),\n", + " ('pall', 'lose sparkle or bouquet'),\n", + " ('pass away',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('buy the farm',\n", + " ('break', 'stop operating or functioning'),\n", + " ('become flat', 'lose sparkle or bouquet'),\n", + " ('go bad', 'stop operating or functioning'),\n", + " ('croak',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass',\n", + " ('conk out', 'stop operating or functioning'),\n", + " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('expire',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die out', 'cut or shape with a die'),\n", + " ('exit',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('give way', 'stop operating or functioning'),\n", " ('fail', 'stop operating or functioning'),\n", - " ('conk',\n", + " ('choke',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pop off',\n", + " ('pass',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life')]},\n", " {'answer': 'earned',\n", " 'hint': 'synonyms for earned',\n", - " 'clues': [('bring in',\n", + " 'clues': [('pull in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('clear',\n", + " ('realize',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", " ('garner', \"acquire or deserve by one's efforts or actions\"),\n", - " ('earn', \"acquire or deserve by one's efforts or actions\"),\n", - " ('pull in',\n", - " 'earn on some commercial or business transaction; earn as salary or wages'),\n", " ('make',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('take in',\n", + " ('bring in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", - " ('realize',\n", + " ('clear',\n", + " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('earn',\n", + " 'earn on some commercial or business transaction; earn as salary or wages'),\n", + " ('take in',\n", " 'earn on some commercial or business transaction; earn as salary or wages'),\n", " ('gain',\n", " 'earn on some commercial or business transaction; earn as salary or wages')]},\n", " {'answer': 'eased',\n", " 'hint': 'synonyms for eased',\n", " 'clues': [('ease', 'lessen pain or discomfort; alleviate'),\n", + " ('relieve', 'lessen the intensity of or calm'),\n", " ('facilitate', 'make easier'),\n", " ('still', 'lessen the intensity of or calm'),\n", - " ('alleviate', 'make easier'),\n", - " ('allay', 'lessen the intensity of or calm'),\n", " ('comfort', 'lessen pain or discomfort; alleviate'),\n", - " ('relieve', 'lessen the intensity of or calm')]},\n", + " ('allay', 'lessen the intensity of or calm'),\n", + " ('alleviate', 'make easier')]},\n", " {'answer': 'echoing',\n", " 'hint': 'synonyms for echoing',\n", - " 'clues': [('echo', 'call to mind'),\n", - " ('recall', 'call to mind'),\n", + " 'clues': [('echo', 'ring or echo with sound'),\n", " ('reverberate', 'ring or echo with sound'),\n", - " ('repeat', 'to say again or imitate'),\n", " ('ring', 'ring or echo with sound'),\n", - " ('resound', 'ring or echo with sound')]},\n", + " ('resound', 'ring or echo with sound'),\n", + " ('repeat', 'to say again or imitate'),\n", + " ('recall', 'call to mind')]},\n", " {'answer': 'edged',\n", " 'hint': 'synonyms for edged',\n", - " 'clues': [('adjoin', 'lie adjacent to another or share a boundary'),\n", + " 'clues': [('inch', 'advance slowly, as if by inches'),\n", + " ('edge', 'advance slowly, as if by inches'),\n", + " ('butt on', 'lie adjacent to another or share a boundary'),\n", " ('abut', 'lie adjacent to another or share a boundary'),\n", - " ('butt against', 'lie adjacent to another or share a boundary'),\n", " ('march', 'lie adjacent to another or share a boundary'),\n", - " ('edge', 'provide with an edge'),\n", + " ('border', 'lie adjacent to another or share a boundary'),\n", + " ('butt against', 'lie adjacent to another or share a boundary'),\n", " ('butt', 'lie adjacent to another or share a boundary'),\n", - " ('border', 'provide with a border or edge'),\n", - " ('butt on', 'lie adjacent to another or share a boundary'),\n", - " ('inch', 'advance slowly, as if by inches')]},\n", + " ('adjoin', 'lie adjacent to another or share a boundary')]},\n", " {'answer': 'edited',\n", " 'hint': 'synonyms for edited',\n", " 'clues': [('edit', 'cut or eliminate'),\n", " ('delete', 'cut or eliminate'),\n", + " ('edit out', 'cut and assemble the components of'),\n", " ('redact',\n", " 'prepare for publication or presentation by correcting, revising, or adapting'),\n", - " ('cut', 'cut and assemble the components of'),\n", " ('blue-pencil', 'cut or eliminate'),\n", - " ('edit out', 'cut and assemble the components of')]},\n", + " ('cut', 'cut and assemble the components of')]},\n", " {'answer': 'educated',\n", " 'hint': 'synonyms for educated',\n", - " 'clues': [('educate',\n", + " 'clues': [('train',\n", " 'teach or refine to be discriminative in taste or judgment'),\n", " ('civilise', 'teach or refine to be discriminative in taste or judgment'),\n", - " ('train', 'create by training and teaching'),\n", - " ('school', 'teach or refine to be discriminative in taste or judgment'),\n", + " ('educate', 'give an education to'),\n", + " ('prepare', 'create by training and teaching'),\n", + " ('develop', 'create by training and teaching'),\n", " ('cultivate',\n", " 'teach or refine to be discriminative in taste or judgment'),\n", - " ('develop', 'create by training and teaching'),\n", - " ('prepare', 'create by training and teaching')]},\n", + " ('school', 'teach or refine to be discriminative in taste or judgment')]},\n", " {'answer': 'effervescing',\n", " 'hint': 'synonyms for effervescing',\n", - " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n", + " 'clues': [('froth', 'become bubbly or frothy or foaming'),\n", + " ('sparkle', 'become bubbly or frothy or foaming'),\n", + " ('form bubbles', 'become bubbly or frothy or foaming'),\n", " ('fizz', 'become bubbly or frothy or foaming'),\n", - " ('froth', 'become bubbly or frothy or foaming'),\n", " ('effervesce', 'become bubbly or frothy or foaming'),\n", - " ('sparkle', 'become bubbly or frothy or foaming'),\n", " ('foam', 'become bubbly or frothy or foaming')]},\n", " {'answer': 'elaborate',\n", " 'hint': 'synonyms for elaborate',\n", - " 'clues': [('expatiate',\n", + " 'clues': [('expound',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('rarify', 'make more complex, intricate, or richer'),\n", - " ('enlarge',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('lucubrate',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('expand',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('work out', 'work out in detail'),\n", - " ('flesh out',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('complicate', 'make more complex, intricate, or richer'),\n", " ('exposit',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('expound',\n", + " ('expatiate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('enlarge',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('dilate',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('refine', 'make more complex, intricate, or richer')]},\n", + " ('complicate', 'make more complex, intricate, or richer'),\n", + " ('flesh out',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('refine', 'make more complex, intricate, or richer'),\n", + " ('work out', 'work out in detail'),\n", + " ('lucubrate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing')]},\n", " {'answer': 'elaborated',\n", " 'hint': 'synonyms for elaborated',\n", - " 'clues': [('elaborate', 'make more complex, intricate, or richer'),\n", - " ('expatiate',\n", + " 'clues': [('elaborate',\n", + " 'produce from basic elements or sources; change into a more developed product'),\n", + " ('expound',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('rarify', 'make more complex, intricate, or richer'),\n", - " ('enlarge',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('lucubrate',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('expand',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('work out', 'work out in detail'),\n", - " ('flesh out',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('complicate', 'make more complex, intricate, or richer'),\n", " ('exposit',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('expound',\n", + " ('expatiate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('enlarge',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('dilate',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('refine', 'make more complex, intricate, or richer')]},\n", + " ('complicate', 'make more complex, intricate, or richer'),\n", + " ('flesh out',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('refine', 'make more complex, intricate, or richer'),\n", + " ('work out', 'work out in detail'),\n", + " ('lucubrate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing')]},\n", " {'answer': 'elapsed',\n", " 'hint': 'synonyms for elapsed',\n", - " 'clues': [('slide by', 'pass by'),\n", - " ('go by', 'pass by'),\n", - " ('go along', 'pass by'),\n", - " ('elapse', 'pass by'),\n", + " 'clues': [('elapse', 'pass by'),\n", " ('slip away', 'pass by'),\n", + " ('go by', 'pass by'),\n", " ('slip by', 'pass by'),\n", + " ('go along', 'pass by'),\n", + " ('glide by', 'pass by'),\n", " ('pass', 'pass by')]},\n", " {'answer': 'elated',\n", " 'hint': 'synonyms for elated',\n", - " 'clues': [('pick up', 'fill with high spirits; fill with optimism'),\n", + " 'clues': [('intoxicate', 'fill with high spirits; fill with optimism'),\n", " ('lift up', 'fill with high spirits; fill with optimism'),\n", - " ('uplift', 'fill with high spirits; fill with optimism'),\n", - " ('intoxicate', 'fill with high spirits; fill with optimism'),\n", - " ('elate', 'fill with high spirits; fill with optimism')]},\n", + " ('elate', 'fill with high spirits; fill with optimism'),\n", + " ('pick up', 'fill with high spirits; fill with optimism'),\n", + " ('uplift', 'fill with high spirits; fill with optimism')]},\n", " {'answer': 'elating',\n", " 'hint': 'synonyms for elating',\n", - " 'clues': [('pick up', 'fill with high spirits; fill with optimism'),\n", + " 'clues': [('intoxicate', 'fill with high spirits; fill with optimism'),\n", " ('lift up', 'fill with high spirits; fill with optimism'),\n", - " ('uplift', 'fill with high spirits; fill with optimism'),\n", - " ('intoxicate', 'fill with high spirits; fill with optimism'),\n", - " ('elate', 'fill with high spirits; fill with optimism')]},\n", + " ('elate', 'fill with high spirits; fill with optimism'),\n", + " ('pick up', 'fill with high spirits; fill with optimism'),\n", + " ('uplift', 'fill with high spirits; fill with optimism')]},\n", " {'answer': 'elevated',\n", " 'hint': 'synonyms for elevated',\n", - " 'clues': [('raise', 'raise from a lower to a higher position'),\n", - " ('bring up', 'raise from a lower to a higher position'),\n", + " 'clues': [('upgrade',\n", + " 'give a promotion to or assign to a higher position'),\n", + " ('raise', 'raise in rank or condition'),\n", " ('kick upstairs', 'give a promotion to or assign to a higher position'),\n", - " ('lift', 'raise in rank or condition'),\n", - " ('elevate', 'raise in rank or condition'),\n", + " ('elevate', 'give a promotion to or assign to a higher position'),\n", " ('get up', 'raise from a lower to a higher position'),\n", - " ('upgrade', 'give a promotion to or assign to a higher position'),\n", - " ('advance', 'give a promotion to or assign to a higher position'),\n", - " ('promote', 'give a promotion to or assign to a higher position')]},\n", + " ('lift', 'raise from a lower to a higher position'),\n", + " ('bring up', 'raise from a lower to a higher position'),\n", + " ('promote', 'give a promotion to or assign to a higher position'),\n", + " ('advance', 'give a promotion to or assign to a higher position')]},\n", " {'answer': 'elicited',\n", " 'hint': 'synonyms for elicited',\n", " 'clues': [('draw out', 'deduce (a principle) or construe (a meaning)'),\n", - " ('raise', 'call forth (emotions, feelings, and responses)'),\n", - " ('elicit', 'deduce (a principle) or construe (a meaning)'),\n", - " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", - " ('fire', 'call forth (emotions, feelings, and responses)'),\n", - " ('kindle', 'call forth (emotions, feelings, and responses)'),\n", " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('elicit', 'derive by reason'),\n", + " ('raise', 'call forth (emotions, feelings, and responses)'),\n", + " ('enkindle', 'call forth (emotions, feelings, and responses)'),\n", " ('educe', 'deduce (a principle) or construe (a meaning)'),\n", + " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", " ('extract', 'deduce (a principle) or construe (a meaning)'),\n", + " ('fire', 'call forth (emotions, feelings, and responses)'),\n", " ('arouse', 'call forth (emotions, feelings, and responses)')]},\n", " {'answer': 'embarrassed',\n", " 'hint': 'synonyms for embarrassed',\n", - " 'clues': [('abash',\n", - " 'cause to be embarrassed; cause to feel self-conscious'),\n", + " 'clues': [('hinder',\n", + " 'hinder or prevent the progress or accomplishment of'),\n", " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n", + " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block', 'hinder or prevent the progress or accomplishment of'),\n", + " ('abash', 'cause to be embarrassed; cause to feel self-conscious'),\n", " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", - " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n", - " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block', 'hinder or prevent the progress or accomplishment of'),\n", - " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n", + " ('stymy', 'hinder or prevent the progress or accomplishment of')]},\n", " {'answer': 'embarrassing',\n", " 'hint': 'synonyms for embarrassing',\n", - " 'clues': [('abash',\n", - " 'cause to be embarrassed; cause to feel self-conscious'),\n", + " 'clues': [('hinder',\n", + " 'hinder or prevent the progress or accomplishment of'),\n", " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n", + " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block', 'hinder or prevent the progress or accomplishment of'),\n", + " ('abash', 'cause to be embarrassed; cause to feel self-conscious'),\n", " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", - " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n", - " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block', 'hinder or prevent the progress or accomplishment of'),\n", - " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n", + " ('stymy', 'hinder or prevent the progress or accomplishment of')]},\n", " {'answer': 'embedded',\n", " 'hint': 'synonyms for embedded',\n", - " 'clues': [('imbed', 'fix or set securely or deeply'),\n", - " ('engraft', 'fix or set securely or deeply'),\n", - " ('embed',\n", - " 'attach to, as a journalist to a military unit when reporting on a war'),\n", - " ('plant', 'fix or set securely or deeply'),\n", - " ('implant', 'fix or set securely or deeply')]},\n", + " 'clues': [('plant', 'fix or set securely or deeply'),\n", + " ('implant', 'fix or set securely or deeply'),\n", + " ('imbed', 'fix or set securely or deeply'),\n", + " ('embed', 'fix or set securely or deeply'),\n", + " ('engraft', 'fix or set securely or deeply')]},\n", " {'answer': 'embezzled',\n", " 'hint': 'synonyms for embezzled',\n", " 'clues': [('defalcate',\n", " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n", + " ('misappropriate',\n", + " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n", " ('malversate',\n", " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n", " ('peculate',\n", " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n", " ('embezzle',\n", - " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\"),\n", - " ('misappropriate',\n", " \"appropriate (as property entrusted to one's care) fraudulently to one's own use\")]},\n", " {'answer': 'embodied',\n", " 'hint': 'synonyms for embodied',\n", - " 'clues': [('be', 'represent, as of a character on stage'),\n", - " ('embody', 'represent or express something abstract in tangible form'),\n", - " ('personify', 'represent, as of a character on stage'),\n", + " 'clues': [('embody', 'represent, as of a character on stage'),\n", " ('substantiate', 'represent in bodily form'),\n", - " ('incarnate', 'represent in bodily form'),\n", - " ('body forth', 'represent in bodily form')]},\n", + " ('personify', 'represent, as of a character on stage'),\n", + " ('be', 'represent, as of a character on stage'),\n", + " ('body forth', 'represent in bodily form'),\n", + " ('incarnate', 'represent in bodily form')]},\n", " {'answer': 'emboldened',\n", " 'hint': 'synonyms for emboldened',\n", - " 'clues': [('recreate', 'give encouragement to'),\n", - " ('embolden', 'give encouragement to'),\n", + " 'clues': [('embolden', 'give encouragement to'),\n", + " ('hearten', 'give encouragement to'),\n", " ('cheer', 'give encouragement to'),\n", - " ('hearten', 'give encouragement to')]},\n", + " ('recreate', 'give encouragement to')]},\n", " {'answer': 'embroiled',\n", " 'hint': 'synonyms for embroiled',\n", - " 'clues': [('embroil',\n", - " 'force into some kind of situation, condition, or course of action'),\n", - " ('tangle',\n", - " 'force into some kind of situation, condition, or course of action'),\n", - " ('sweep up',\n", + " 'clues': [('drag in',\n", " 'force into some kind of situation, condition, or course of action'),\n", " ('drag',\n", " 'force into some kind of situation, condition, or course of action'),\n", - " ('drag in',\n", + " ('tangle',\n", " 'force into some kind of situation, condition, or course of action'),\n", " ('sweep',\n", + " 'force into some kind of situation, condition, or course of action'),\n", + " ('embroil',\n", + " 'force into some kind of situation, condition, or course of action'),\n", + " ('sweep up',\n", " 'force into some kind of situation, condition, or course of action')]},\n", " {'answer': 'emerging',\n", " 'hint': 'synonyms for emerging',\n", - " 'clues': [('emerge', 'become known or apparent'),\n", + " 'clues': [('emerge', 'come out into view, as from concealment'),\n", " ('issue', 'come out of'),\n", - " ('come forth', 'come out of'),\n", - " ('come out', 'come out of'),\n", " ('egress', 'come out of'),\n", - " ('go forth', 'come out of')]},\n", + " ('come forth', 'happen or occur as a result of something'),\n", + " ('go forth', 'come out of'),\n", + " ('come out', 'come out of')]},\n", " {'answer': 'emphasised',\n", " 'hint': 'synonyms for emphasised',\n", - " 'clues': [('emphasize', 'give extra weight to (a communication)'),\n", + " 'clues': [('accent', 'to stress, single out as important'),\n", + " ('emphasize', 'to stress, single out as important'),\n", + " ('stress', 'to stress, single out as important'),\n", " ('underline', 'give extra weight to (a communication)'),\n", " ('punctuate', 'to stress, single out as important'),\n", " ('underscore', 'give extra weight to (a communication)'),\n", - " ('accentuate', 'to stress, single out as important'),\n", - " ('accent', 'to stress, single out as important'),\n", - " ('stress', 'to stress, single out as important')]},\n", + " ('accentuate', 'to stress, single out as important')]},\n", " {'answer': 'emphasized',\n", " 'hint': 'synonyms for emphasized',\n", - " 'clues': [('emphasize', 'to stress, single out as important'),\n", + " 'clues': [('accent', 'to stress, single out as important'),\n", + " ('emphasize', 'to stress, single out as important'),\n", + " ('stress', 'to stress, single out as important'),\n", " ('underline', 'give extra weight to (a communication)'),\n", " ('punctuate', 'to stress, single out as important'),\n", " ('underscore', 'give extra weight to (a communication)'),\n", - " ('accentuate', 'to stress, single out as important'),\n", - " ('accent', 'to stress, single out as important'),\n", - " ('stress', 'to stress, single out as important')]},\n", + " ('accentuate', 'to stress, single out as important')]},\n", " {'answer': 'employed',\n", " 'hint': 'synonyms for employed',\n", - " 'clues': [('apply',\n", - " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", - " ('hire', 'engage or hire for work'),\n", - " ('utilise',\n", - " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", + " 'clues': [('engage', 'engage or hire for work'),\n", " ('employ',\n", " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", - " ('engage', 'engage or hire for work'),\n", " ('use',\n", + " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", + " ('utilize',\n", + " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose'),\n", + " ('hire', 'engage or hire for work'),\n", + " ('apply',\n", " 'put into service; make work or employ for a particular purpose or for its inherent or natural purpose')]},\n", " {'answer': 'empowered',\n", " 'hint': 'synonyms for empowered',\n", - " 'clues': [('endue', 'give qualities or abilities to'),\n", - " ('empower', 'give qualities or abilities to'),\n", + " 'clues': [('empower', 'give qualities or abilities to'),\n", " ('authorize', 'give or delegate power or authority to'),\n", - " ('invest', 'give qualities or abilities to'),\n", " ('gift', 'give qualities or abilities to'),\n", " ('endow', 'give qualities or abilities to'),\n", - " ('indue', 'give qualities or abilities to')]},\n", + " ('endue', 'give qualities or abilities to'),\n", + " ('indue', 'give qualities or abilities to'),\n", + " ('invest', 'give qualities or abilities to')]},\n", " {'answer': 'empty',\n", " 'hint': 'synonyms for empty',\n", - " 'clues': [('abandon', 'leave behind empty; move out of'),\n", - " ('evacuate', 'excrete or discharge from the body'),\n", + " 'clues': [('discharge', 'become empty or void of its content'),\n", + " ('vacate', 'leave behind empty; move out of'),\n", " ('void', 'excrete or discharge from the body'),\n", - " ('discharge', 'become empty or void of its content')]},\n", + " ('abandon', 'leave behind empty; move out of')]},\n", " {'answer': 'enamored',\n", " 'hint': 'synonyms for enamored',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", " ('bewitch', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", " ('enamour', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored')]},\n", + " ('charm', 'attract; cause to be enamored'),\n", + " ('becharm', 'attract; cause to be enamored')]},\n", " {'answer': 'enchanted',\n", " 'hint': 'synonyms for enchanted',\n", - " 'clues': [('ravish', 'hold spellbound'),\n", + " 'clues': [('enthral', 'hold spellbound'),\n", " ('transport', 'hold spellbound'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('bewitch',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", - " ('fascinate', 'attract; cause to be enamored'),\n", - " ('beguile', 'attract; cause to be enamored'),\n", - " ('capture', 'attract; cause to be enamored'),\n", " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('hex',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enthral', 'hold spellbound'),\n", + " ('enchant', 'hold spellbound'),\n", " ('enrapture', 'hold spellbound'),\n", - " ('delight', 'hold spellbound'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", " ('glamour',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('ravish', 'hold spellbound'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('hex',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('jinx',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('witch',\n", - " 'cast a spell over someone or something; put a hex on someone or something')]},\n", - " {'answer': 'enchanting',\n", - " 'hint': 'synonyms for enchanting',\n", - " 'clues': [('ravish', 'hold spellbound'),\n", - " ('transport', 'hold spellbound'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", - " ('bewitch',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", - " ('fascinate', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('delight', 'hold spellbound'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", + " ('charm', 'attract; cause to be enamored')]},\n", + " {'answer': 'enchanting',\n", + " 'hint': 'synonyms for enchanting',\n", + " 'clues': [('enthral', 'hold spellbound'),\n", + " ('transport', 'hold spellbound'),\n", " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('hex',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enthral', 'hold spellbound'),\n", + " ('enchant', 'hold spellbound'),\n", " ('enrapture', 'hold spellbound'),\n", - " ('delight', 'hold spellbound'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", " ('glamour',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('charm', 'attract; cause to be enamored'),\n", - " ('jinx',\n", + " ('ravish', 'hold spellbound'),\n", + " ('becharm', 'attract; cause to be enamored'),\n", + " ('hex',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('jinx',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('witch',\n", - " 'cast a spell over someone or something; put a hex on someone or something')]},\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('delight', 'hold spellbound'),\n", + " ('trance', 'attract; cause to be enamored'),\n", + " ('beguile', 'attract; cause to be enamored'),\n", + " ('capture', 'attract; cause to be enamored'),\n", + " ('charm', 'attract; cause to be enamored')]},\n", " {'answer': 'enclosed',\n", " 'hint': 'synonyms for enclosed',\n", - " 'clues': [('introduce', 'introduce'),\n", - " ('enclose', 'surround completely'),\n", - " ('enwrap', 'enclose or enfold completely with or as if with a covering'),\n", - " ('insert', 'introduce'),\n", + " 'clues': [('insert', 'introduce'),\n", + " ('put in', 'introduce'),\n", " ('enfold', 'enclose or enfold completely with or as if with a covering'),\n", - " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n", - " ('close in', 'surround completely'),\n", - " ('stick in', 'introduce'),\n", " ('envelop', 'enclose or enfold completely with or as if with a covering'),\n", - " ('confine', 'close in; darkness enclosed him\"'),\n", + " ('hold in', 'close in; darkness enclosed him\"'),\n", " ('shut in', 'surround completely'),\n", - " ('put in', 'introduce'),\n", - " ('hold in', 'close in; darkness enclosed him\"')]},\n", + " ('introduce', 'introduce'),\n", + " ('enwrap', 'enclose or enfold completely with or as if with a covering'),\n", + " ('confine', 'close in; darkness enclosed him\"'),\n", + " ('inclose', 'surround completely'),\n", + " ('stick in', 'introduce'),\n", + " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n", + " ('close in', 'surround completely')]},\n", " {'answer': 'encompassing',\n", " 'hint': 'synonyms for encompassing',\n", " 'clues': [('cover',\n", " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", - " ('comprehend',\n", - " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", " ('embrace',\n", " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", " ('encompass',\n", + " \"include in scope; include as part of something broader; have as one's sphere or territory\"),\n", + " ('comprehend',\n", " \"include in scope; include as part of something broader; have as one's sphere or territory\")]},\n", " {'answer': 'encouraged',\n", " 'hint': 'synonyms for encouraged',\n", - " 'clues': [('boost', 'contribute to the progress or growth of'),\n", - " ('encourage', 'spur on'),\n", - " ('promote', 'contribute to the progress or growth of'),\n", + " 'clues': [('encourage',\n", + " 'inspire with confidence; give hope or courage to'),\n", + " ('boost', 'contribute to the progress or growth of'),\n", " ('advance', 'contribute to the progress or growth of'),\n", + " ('promote', 'contribute to the progress or growth of'),\n", " ('further', 'contribute to the progress or growth of')]},\n", " {'answer': 'encouraging',\n", " 'hint': 'synonyms for encouraging',\n", - " 'clues': [('boost', 'contribute to the progress or growth of'),\n", - " ('encourage', 'spur on'),\n", - " ('promote', 'contribute to the progress or growth of'),\n", + " 'clues': [('encourage',\n", + " 'inspire with confidence; give hope or courage to'),\n", + " ('boost', 'contribute to the progress or growth of'),\n", " ('advance', 'contribute to the progress or growth of'),\n", + " ('promote', 'contribute to the progress or growth of'),\n", " ('further', 'contribute to the progress or growth of')]},\n", " {'answer': 'encroaching',\n", " 'hint': 'synonyms for encroaching',\n", " 'clues': [('encroach', 'impinge or infringe upon'),\n", - " ('impinge', 'impinge or infringe upon'),\n", - " ('trench', 'impinge or infringe upon'),\n", - " ('infringe', 'advance beyond the usual limit')]},\n", + " ('infringe', 'advance beyond the usual limit'),\n", + " ('impinge', 'advance beyond the usual limit'),\n", + " ('entrench', 'impinge or infringe upon')]},\n", " {'answer': 'endangered',\n", " 'hint': 'synonyms for endangered',\n", - " 'clues': [('endanger', 'pose a threat to; present a danger to'),\n", - " ('peril', 'pose a threat to; present a danger to'),\n", - " ('jeopardize', 'pose a threat to; present a danger to'),\n", + " 'clues': [('imperil', 'pose a threat to; present a danger to'),\n", + " ('scupper', 'put in a dangerous, disadvantageous, or difficult position'),\n", + " ('menace', 'pose a threat to; present a danger to'),\n", " ('threaten', 'pose a threat to; present a danger to'),\n", + " ('peril', 'pose a threat to; present a danger to'),\n", + " ('jeopardise', 'pose a threat to; present a danger to'),\n", " ('queer', 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('menace', 'pose a threat to; present a danger to'),\n", - " ('expose', 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('scupper', 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('imperil', 'pose a threat to; present a danger to')]},\n", + " ('endanger',\n", + " 'put in a dangerous, disadvantageous, or difficult position'),\n", + " ('expose',\n", + " 'put in a dangerous, disadvantageous, or difficult position')]},\n", " {'answer': 'ended',\n", " 'hint': 'synonyms for ended',\n", - " 'clues': [('end',\n", + " 'clues': [('stop',\n", " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", - " ('terminate', 'be the end of; be the last or concluding part of'),\n", + " ('end', 'be the end of; be the last or concluding part of'),\n", + " ('terminate', 'bring to an end or halt'),\n", " ('cease',\n", " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", " ('finish',\n", - " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", - " ('stop',\n", " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical')]},\n", " {'answer': 'endowed',\n", " 'hint': 'synonyms for endowed',\n", - " 'clues': [('endue', 'give qualities or abilities to'),\n", - " ('empower', 'give qualities or abilities to'),\n", - " ('dower', 'furnish with an endowment'),\n", - " ('invest', 'give qualities or abilities to'),\n", + " 'clues': [('empower', 'give qualities or abilities to'),\n", + " ('endow', 'furnish with an endowment'),\n", " ('indue', 'give qualities or abilities to'),\n", - " ('endow', 'give qualities or abilities to'),\n", - " ('gift', 'give qualities or abilities to')]},\n", + " ('invest', 'give qualities or abilities to'),\n", + " ('gift', 'give qualities or abilities to'),\n", + " ('dower', 'furnish with an endowment'),\n", + " ('endue', 'give qualities or abilities to')]},\n", " {'answer': 'enduring',\n", " 'hint': 'synonyms for enduring',\n", - " 'clues': [('hold out', 'continue to live through hardship or adversity'),\n", - " ('suffer', 'put up with something or somebody unpleasant'),\n", - " ('brave', 'face and withstand with courage'),\n", - " ('endure', 'undergo or be subjected to'),\n", - " ('tolerate', 'put up with something or somebody unpleasant'),\n", - " ('brave out', 'face and withstand with courage'),\n", - " ('persist', 'continue to exist'),\n", - " ('weather', 'face and withstand with courage'),\n", + " 'clues': [('tolerate', 'put up with something or somebody unpleasant'),\n", + " ('endure', 'put up with something or somebody unpleasant'),\n", + " ('hold up', 'continue to live through hardship or adversity'),\n", " ('run', 'continue to exist'),\n", " ('live', 'continue to live through hardship or adversity'),\n", + " ('last', 'persist for a specified period of time'),\n", + " ('abide', 'put up with something or somebody unpleasant'),\n", + " ('survive', 'continue to live through hardship or adversity'),\n", + " ('put up', 'put up with something or somebody unpleasant'),\n", " ('support', 'put up with something or somebody unpleasant'),\n", - " ('hold up', 'continue to live through hardship or adversity'),\n", - " ('stomach', 'put up with something or somebody unpleasant'),\n", " ('live on', 'continue to live through hardship or adversity'),\n", - " ('brook', 'put up with something or somebody unpleasant'),\n", - " ('stand', 'put up with something or somebody unpleasant'),\n", - " ('go', 'continue to live through hardship or adversity'),\n", " ('bear', 'put up with something or somebody unpleasant'),\n", + " ('brave', 'face and withstand with courage'),\n", " ('stick out', 'put up with something or somebody unpleasant'),\n", - " ('wear', 'last and be usable'),\n", - " ('die hard', 'continue to exist'),\n", - " ('abide', 'put up with something or somebody unpleasant'),\n", - " ('last', 'continue to live through hardship or adversity'),\n", + " ('go', 'continue to live through hardship or adversity'),\n", + " ('suffer', 'put up with something or somebody unpleasant'),\n", + " ('hold out', 'last and be usable'),\n", + " ('persist', 'continue to exist'),\n", " ('prevail', 'continue to exist'),\n", - " ('survive', 'continue to live through hardship or adversity'),\n", - " ('put up', 'put up with something or somebody unpleasant'),\n", - " ('digest', 'put up with something or somebody unpleasant')]},\n", + " ('die hard', 'continue to exist'),\n", + " ('stand', 'put up with something or somebody unpleasant'),\n", + " ('brave out', 'face and withstand with courage'),\n", + " ('wear', 'last and be usable'),\n", + " ('digest', 'put up with something or somebody unpleasant'),\n", + " ('weather', 'face and withstand with courage'),\n", + " ('brook', 'put up with something or somebody unpleasant'),\n", + " ('stomach', 'put up with something or somebody unpleasant')]},\n", " {'answer': 'energising',\n", " 'hint': 'synonyms for energising',\n", " 'clues': [('energize', 'cause to be alert and energetic'),\n", + " ('brace', 'cause to be alert and energetic'),\n", + " ('excite', 'raise to a higher energy level'),\n", " ('arouse', 'cause to be alert and energetic'),\n", " ('perk up', 'cause to be alert and energetic'),\n", - " ('stimulate', 'cause to be alert and energetic'),\n", - " ('excite', 'raise to a higher energy level'),\n", - " ('brace', 'cause to be alert and energetic')]},\n", + " ('stimulate', 'cause to be alert and energetic')]},\n", " {'answer': 'energizing',\n", " 'hint': 'synonyms for energizing',\n", " 'clues': [('energize', 'cause to be alert and energetic'),\n", - " ('arouse', 'cause to be alert and energetic'),\n", - " ('perk up', 'cause to be alert and energetic'),\n", - " ('stimulate', 'cause to be alert and energetic'),\n", " ('excite', 'raise to a higher energy level'),\n", - " ('brace', 'cause to be alert and energetic')]},\n", + " ('perk up', 'cause to be alert and energetic'),\n", + " ('arouse', 'cause to be alert and energetic'),\n", + " ('brace', 'cause to be alert and energetic'),\n", + " ('stimulate', 'cause to be alert and energetic')]},\n", " {'answer': 'enervated',\n", " 'hint': 'synonyms for enervated',\n", - " 'clues': [('enervate', 'weaken mentally or morally'),\n", - " ('unsettle', 'disturb the composure of'),\n", + " 'clues': [('faze', 'disturb the composure of'),\n", " ('unnerve', 'disturb the composure of'),\n", - " ('faze', 'disturb the composure of')]},\n", + " ('enervate', 'weaken mentally or morally'),\n", + " ('unsettle', 'disturb the composure of')]},\n", " {'answer': 'enervating',\n", " 'hint': 'synonyms for enervating',\n", - " 'clues': [('enervate', 'weaken mentally or morally'),\n", - " ('unsettle', 'disturb the composure of'),\n", + " 'clues': [('faze', 'disturb the composure of'),\n", " ('unnerve', 'disturb the composure of'),\n", - " ('faze', 'disturb the composure of')]},\n", + " ('enervate', 'weaken mentally or morally'),\n", + " ('unsettle', 'disturb the composure of')]},\n", " {'answer': 'enforced',\n", " 'hint': 'synonyms for enforced',\n", - " 'clues': [('enforce', 'ensure observance of laws and rules'),\n", + " 'clues': [('apply', 'ensure observance of laws and rules'),\n", + " ('enforce', 'ensure observance of laws and rules'),\n", " ('impose', 'compel to behave in a certain way'),\n", - " ('apply', 'ensure observance of laws and rules'),\n", " ('implement', 'ensure observance of laws and rules')]},\n", " {'answer': 'engaged',\n", " 'hint': 'synonyms for engaged',\n", - " 'clues': [('absorb', \"consume all of one's attention or time\"),\n", - " ('engage', 'carry out or participate in an activity; be involved in'),\n", - " ('pursue', 'carry out or participate in an activity; be involved in'),\n", - " ('employ', 'engage or hire for work'),\n", + " 'clues': [('pursue',\n", + " 'carry out or participate in an activity; be involved in'),\n", + " ('engage', 'engage or hire for work'),\n", + " ('prosecute', 'carry out or participate in an activity; be involved in'),\n", " ('rent', 'engage for service under a term of contract'),\n", + " ('operate', 'keep engaged'),\n", " ('hire', 'engage for service under a term of contract'),\n", - " ('engross', \"consume all of one's attention or time\"),\n", " ('plight', 'give to in marriage'),\n", + " ('take', 'engage for service under a term of contract'),\n", + " ('employ', 'engage or hire for work'),\n", + " ('engross', \"consume all of one's attention or time\"),\n", + " ('lease', 'engage for service under a term of contract'),\n", " ('affiance', 'give to in marriage'),\n", - " ('prosecute', 'carry out or participate in an activity; be involved in'),\n", - " ('betroth', 'give to in marriage'),\n", + " ('absorb', \"consume all of one's attention or time\"),\n", " ('enlist', 'hire for work or assistance'),\n", - " ('wage', 'carry on (wars, battles, or campaigns)'),\n", + " ('lock', 'keep engaged'),\n", " ('charter', 'engage for service under a term of contract'),\n", - " ('occupy', \"consume all of one's attention or time\"),\n", + " ('betroth', 'give to in marriage'),\n", " ('mesh', 'keep engaged'),\n", - " ('lease', 'engage for service under a term of contract'),\n", - " ('operate', 'keep engaged'),\n", - " ('lock', 'keep engaged'),\n", - " ('take', 'engage for service under a term of contract')]},\n", + " ('occupy', \"consume all of one's attention or time\"),\n", + " ('wage', 'carry on (wars, battles, or campaigns)')]},\n", " {'answer': 'engaging',\n", " 'hint': 'synonyms for engaging',\n", - " 'clues': [('absorb', \"consume all of one's attention or time\"),\n", - " ('engage', 'carry out or participate in an activity; be involved in'),\n", - " ('pursue', 'carry out or participate in an activity; be involved in'),\n", - " ('employ', 'engage or hire for work'),\n", + " 'clues': [('pursue',\n", + " 'carry out or participate in an activity; be involved in'),\n", + " ('engage', 'engage or hire for work'),\n", + " ('prosecute', 'carry out or participate in an activity; be involved in'),\n", " ('rent', 'engage for service under a term of contract'),\n", + " ('operate', 'keep engaged'),\n", " ('hire', 'engage for service under a term of contract'),\n", - " ('engross', \"consume all of one's attention or time\"),\n", " ('plight', 'give to in marriage'),\n", + " ('take', 'engage for service under a term of contract'),\n", + " ('employ', 'engage or hire for work'),\n", + " ('engross', \"consume all of one's attention or time\"),\n", + " ('lease', 'engage for service under a term of contract'),\n", " ('affiance', 'give to in marriage'),\n", - " ('prosecute', 'carry out or participate in an activity; be involved in'),\n", - " ('betroth', 'give to in marriage'),\n", + " ('absorb', \"consume all of one's attention or time\"),\n", " ('enlist', 'hire for work or assistance'),\n", - " ('wage', 'carry on (wars, battles, or campaigns)'),\n", + " ('lock', 'keep engaged'),\n", " ('charter', 'engage for service under a term of contract'),\n", - " ('occupy', \"consume all of one's attention or time\"),\n", + " ('betroth', 'give to in marriage'),\n", " ('mesh', 'keep engaged'),\n", - " ('lease', 'engage for service under a term of contract'),\n", - " ('operate', 'keep engaged'),\n", - " ('lock', 'keep engaged'),\n", - " ('take', 'engage for service under a term of contract')]},\n", + " ('occupy', \"consume all of one's attention or time\"),\n", + " ('wage', 'carry on (wars, battles, or campaigns)')]},\n", " {'answer': 'engorged',\n", " 'hint': 'synonyms for engorged',\n", " 'clues': [('englut', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('glut', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('engorge', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('stuff', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('satiate', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('gourmandize', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('gorge', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('gormandize', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('overindulge', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('overgorge', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('ingurgitate', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('overeat', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('overindulge', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('glut', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('pig out', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('binge', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('scarf out', 'overeat or eat immodestly; make a pig of oneself')]},\n", + " ('gorge', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('satiate', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('scarf out', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('overeat', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('binge', 'overeat or eat immodestly; make a pig of oneself')]},\n", " {'answer': 'engraved',\n", " 'hint': 'synonyms for engraved',\n", - " 'clues': [('grave', 'carve, cut, or etch into a material or surface'),\n", - " ('engrave', 'carve or cut a design or letters into'),\n", - " ('etch', 'carve or cut a design or letters into'),\n", + " 'clues': [('etch', 'carve or cut a design or letters into'),\n", + " ('grave', 'carve, cut, or etch into a material or surface'),\n", + " ('engrave',\n", + " 'carve or cut into a block used for printing or print from such a block'),\n", " ('inscribe', 'carve, cut, or etch into a material or surface'),\n", " ('scratch', 'carve, cut, or etch into a material or surface')]},\n", " {'answer': 'engrossed',\n", " 'hint': 'synonyms for engrossed',\n", - " 'clues': [('absorb', \"consume all of one's attention or time\"),\n", - " ('engage', \"consume all of one's attention or time\"),\n", - " ('engulf', 'devote (oneself) fully to'),\n", - " ('plunge', 'devote (oneself) fully to'),\n", - " ('engross', 'devote (oneself) fully to'),\n", - " ('occupy', \"consume all of one's attention or time\"),\n", + " 'clues': [('steep', 'devote (oneself) fully to'),\n", + " ('absorb', \"consume all of one's attention or time\"),\n", " ('immerse', 'devote (oneself) fully to'),\n", + " ('plunge', 'devote (oneself) fully to'),\n", + " ('engulf', 'devote (oneself) fully to'),\n", " ('soak up', 'devote (oneself) fully to'),\n", - " ('steep', 'devote (oneself) fully to')]},\n", + " ('engage', \"consume all of one's attention or time\"),\n", + " ('engross', \"consume all of one's attention or time\"),\n", + " ('occupy', \"consume all of one's attention or time\")]},\n", " {'answer': 'engrossing',\n", " 'hint': 'synonyms for engrossing',\n", - " 'clues': [('absorb', \"consume all of one's attention or time\"),\n", - " ('engage', \"consume all of one's attention or time\"),\n", - " ('engulf', 'devote (oneself) fully to'),\n", - " ('plunge', 'devote (oneself) fully to'),\n", - " ('engross', 'devote (oneself) fully to'),\n", - " ('occupy', \"consume all of one's attention or time\"),\n", + " 'clues': [('steep', 'devote (oneself) fully to'),\n", + " ('absorb', \"consume all of one's attention or time\"),\n", " ('immerse', 'devote (oneself) fully to'),\n", + " ('plunge', 'devote (oneself) fully to'),\n", + " ('engulf', 'devote (oneself) fully to'),\n", " ('soak up', 'devote (oneself) fully to'),\n", - " ('steep', 'devote (oneself) fully to')]},\n", + " ('engage', \"consume all of one's attention or time\"),\n", + " ('engross', \"consume all of one's attention or time\"),\n", + " ('occupy', \"consume all of one's attention or time\")]},\n", " {'answer': 'enkindled',\n", " 'hint': 'synonyms for enkindled',\n", - " 'clues': [('raise', 'call forth (emotions, feelings, and responses)'),\n", - " ('kindle', 'cause to start burning'),\n", + " 'clues': [('enkindle', 'cause to start burning'),\n", + " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", " ('conflagrate', 'cause to start burning'),\n", - " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('raise', 'call forth (emotions, feelings, and responses)'),\n", " ('fire', 'call forth (emotions, feelings, and responses)'),\n", - " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", - " ('arouse', 'call forth (emotions, feelings, and responses)'),\n", + " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", " ('elicit', 'call forth (emotions, feelings, and responses)'),\n", - " ('inflame', 'cause to start burning')]},\n", + " ('inflame', 'cause to start burning'),\n", + " ('arouse', 'call forth (emotions, feelings, and responses)')]},\n", " {'answer': 'enlarged',\n", " 'hint': 'synonyms for enlarged',\n", - " 'clues': [('magnify', 'make large'),\n", + " 'clues': [('expound',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('enlarge', 'make large'),\n", " ('elaborate',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('expatiate',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('lucubrate',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('expand',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('blow up', 'make large'),\n", - " ('flesh out',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('exposit',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('expound',\n", + " ('expatiate',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('dilate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('blow up', 'make large'),\n", + " ('flesh out',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('magnify', 'make large'),\n", + " ('lucubrate',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing')]},\n", " {'answer': 'enlightened',\n", " 'hint': 'synonyms for enlightened',\n", - " 'clues': [('straighten out',\n", - " 'make free from confusion or ambiguity; make clear'),\n", - " ('irradiate', 'give spiritual insight to; in religion'),\n", + " 'clues': [('clear', 'make free from confusion or ambiguity; make clear'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear', 'make free from confusion or ambiguity; make clear'),\n", - " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", - " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('edify', 'make understand'),\n", + " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", + " ('irradiate', 'give spiritual insight to; in religion'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", + " ('crystalise', 'make free from confusion or ambiguity; make clear'),\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'enlightening',\n", " 'hint': 'synonyms for enlightening',\n", - " 'clues': [('straighten out',\n", - " 'make free from confusion or ambiguity; make clear'),\n", - " ('irradiate', 'give spiritual insight to; in religion'),\n", + " 'clues': [('clear', 'make free from confusion or ambiguity; make clear'),\n", + " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear', 'make free from confusion or ambiguity; make clear'),\n", - " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", - " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('edify', 'make understand'),\n", + " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", + " ('irradiate', 'give spiritual insight to; in religion'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('illuminate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", + " ('crystalise', 'make free from confusion or ambiguity; make clear'),\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'enlivened',\n", " 'hint': 'synonyms for enlivened',\n", - " 'clues': [('liven', 'make lively'),\n", + " 'clues': [('inspire', 'heighten or intensify'),\n", + " ('liven up', 'make lively'),\n", + " ('enliven', 'make lively'),\n", + " ('invigorate', 'make lively'),\n", + " ('liven', 'make lively'),\n", " ('animate', 'make lively'),\n", - " ('invigorate', 'heighten or intensify'),\n", - " ('enliven', 'heighten or intensify'),\n", - " ('exalt', 'heighten or intensify'),\n", - " ('inspire', 'heighten or intensify'),\n", - " ('liven up', 'make lively')]},\n", + " ('exalt', 'heighten or intensify')]},\n", " {'answer': 'enlivening',\n", " 'hint': 'synonyms for enlivening',\n", - " 'clues': [('liven', 'make lively'),\n", + " 'clues': [('inspire', 'heighten or intensify'),\n", + " ('liven up', 'make lively'),\n", + " ('enliven', 'make lively'),\n", + " ('invigorate', 'make lively'),\n", + " ('liven', 'make lively'),\n", " ('animate', 'make lively'),\n", - " ('invigorate', 'heighten or intensify'),\n", - " ('enliven', 'heighten or intensify'),\n", - " ('exalt', 'heighten or intensify'),\n", - " ('inspire', 'heighten or intensify'),\n", - " ('liven up', 'make lively')]},\n", + " ('exalt', 'heighten or intensify')]},\n", " {'answer': 'ennobling',\n", " 'hint': 'synonyms for ennobling',\n", " 'clues': [('dignify', 'confer dignity or honor upon'),\n", + " ('gentle',\n", + " 'give a title to someone; make someone a member of the nobility'),\n", " ('ennoble', 'confer dignity or honor upon'),\n", " ('entitle',\n", - " 'give a title to someone; make someone a member of the nobility'),\n", - " ('gentle',\n", " 'give a title to someone; make someone a member of the nobility')]},\n", " {'answer': 'enraptured',\n", " 'hint': 'synonyms for enraptured',\n", - " 'clues': [('ravish', 'hold spellbound'),\n", + " 'clues': [('enthral', 'hold spellbound'),\n", " ('transport', 'hold spellbound'),\n", + " ('delight', 'hold spellbound'),\n", + " ('ravish', 'hold spellbound'),\n", " ('enchant', 'hold spellbound'),\n", - " ('enthral', 'hold spellbound'),\n", - " ('enrapture', 'hold spellbound'),\n", - " ('delight', 'hold spellbound')]},\n", + " ('enrapture', 'hold spellbound')]},\n", " {'answer': 'entangled',\n", " 'hint': 'synonyms for entangled',\n", - " 'clues': [('snarl', 'twist together or entwine into a confusing mass'),\n", - " ('tangle', 'twist together or entwine into a confusing mass'),\n", + " 'clues': [('entangle', 'twist together or entwine into a confusing mass'),\n", + " ('mat', 'twist together or entwine into a confusing mass'),\n", " ('mire', 'entrap'),\n", - " ('mat', 'twist together or entwine into a confusing mass')]},\n", + " ('snarl', 'twist together or entwine into a confusing mass')]},\n", " {'answer': 'entertained',\n", " 'hint': 'synonyms for entertained',\n", " 'clues': [('nurse', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('hold', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('entertain', 'take into consideration, have in view'),\n", " ('think of', 'take into consideration, have in view'),\n", - " ('toy with', 'take into consideration, have in view'),\n", " ('harbor', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('flirt with', 'take into consideration, have in view'),\n", - " ('think about', 'take into consideration, have in view')]},\n", + " ('hold', 'maintain (a theory, thoughts, or feelings)'),\n", + " ('entertain', 'provide entertainment for'),\n", + " ('think about', 'take into consideration, have in view'),\n", + " ('toy with', 'take into consideration, have in view'),\n", + " ('flirt with', 'take into consideration, have in view')]},\n", " {'answer': 'entertaining',\n", " 'hint': 'synonyms for entertaining',\n", " 'clues': [('nurse', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('hold', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('entertain', 'take into consideration, have in view'),\n", " ('think of', 'take into consideration, have in view'),\n", - " ('toy with', 'take into consideration, have in view'),\n", " ('harbor', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('flirt with', 'take into consideration, have in view'),\n", - " ('think about', 'take into consideration, have in view')]},\n", + " ('hold', 'maintain (a theory, thoughts, or feelings)'),\n", + " ('entertain', 'provide entertainment for'),\n", + " ('think about', 'take into consideration, have in view'),\n", + " ('toy with', 'take into consideration, have in view'),\n", + " ('flirt with', 'take into consideration, have in view')]},\n", " {'answer': 'enthralled',\n", " 'hint': 'synonyms for enthralled',\n", - " 'clues': [('ravish', 'hold spellbound'),\n", + " 'clues': [('enthral', 'hold spellbound'),\n", " ('transport', 'hold spellbound'),\n", " ('enchant', 'hold spellbound'),\n", - " ('enthral', 'hold spellbound'),\n", " ('enrapture', 'hold spellbound'),\n", - " ('delight', 'hold spellbound')]},\n", + " ('delight', 'hold spellbound'),\n", + " ('ravish', 'hold spellbound')]},\n", " {'answer': 'enthralling',\n", " 'hint': 'synonyms for enthralling',\n", - " 'clues': [('ravish', 'hold spellbound'),\n", + " 'clues': [('enthral', 'hold spellbound'),\n", " ('transport', 'hold spellbound'),\n", " ('enchant', 'hold spellbound'),\n", - " ('enthral', 'hold spellbound'),\n", " ('enrapture', 'hold spellbound'),\n", - " ('delight', 'hold spellbound')]},\n", + " ('delight', 'hold spellbound'),\n", + " ('ravish', 'hold spellbound')]},\n", " {'answer': 'entitled',\n", " 'hint': 'synonyms for entitled',\n", - " 'clues': [('ennoble',\n", - " 'give a title to someone; make someone a member of the nobility'),\n", - " ('entitle',\n", + " 'clues': [('gentle',\n", " 'give a title to someone; make someone a member of the nobility'),\n", + " ('entitle', 'give the right to'),\n", " ('title', 'give a title to'),\n", - " ('gentle',\n", + " ('ennoble',\n", " 'give a title to someone; make someone a member of the nobility')]},\n", " {'answer': 'entranced',\n", " 'hint': 'synonyms for entranced',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('spellbind', 'put into a trance'),\n", + " ('catch', 'attract; cause to be enamored'),\n", + " ('entrance', 'put into a trance'),\n", " ('bewitch', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", " ('enamour', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", - " ('spellbind', 'put into a trance'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored')]},\n", + " ('charm', 'attract; cause to be enamored'),\n", + " ('becharm', 'attract; cause to be enamored')]},\n", " {'answer': 'entrancing',\n", " 'hint': 'synonyms for entrancing',\n", - " 'clues': [('trance', 'attract; cause to be enamored'),\n", + " 'clues': [('spellbind', 'put into a trance'),\n", + " ('catch', 'attract; cause to be enamored'),\n", + " ('entrance', 'put into a trance'),\n", " ('bewitch', 'attract; cause to be enamored'),\n", - " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", " ('enamour', 'attract; cause to be enamored'),\n", " ('fascinate', 'attract; cause to be enamored'),\n", - " ('charm', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", - " ('spellbind', 'put into a trance'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored')]},\n", + " ('charm', 'attract; cause to be enamored'),\n", + " ('becharm', 'attract; cause to be enamored')]},\n", " {'answer': 'entrenched',\n", " 'hint': 'synonyms for entrenched',\n", - " 'clues': [('encroach', 'impinge or infringe upon'),\n", - " ('entrench', 'occupy a trench or secured area'),\n", - " ('impinge', 'impinge or infringe upon'),\n", - " ('dig in', 'occupy a trench or secured area')]},\n", + " 'clues': [('entrench', 'occupy a trench or secured area'),\n", + " ('encroach', 'impinge or infringe upon'),\n", + " ('dig in', 'occupy a trench or secured area'),\n", + " ('impinge', 'impinge or infringe upon')]},\n", " {'answer': 'enveloping',\n", " 'hint': 'synonyms for enveloping',\n", - " 'clues': [('enwrap',\n", + " 'clues': [('wrap',\n", " 'enclose or enfold completely with or as if with a covering'),\n", - " ('enclose', 'enclose or enfold completely with or as if with a covering'),\n", " ('enfold', 'enclose or enfold completely with or as if with a covering'),\n", - " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n", - " ('envelop',\n", + " ('enclose', 'enclose or enfold completely with or as if with a covering'),\n", + " ('envelop', 'enclose or enfold completely with or as if with a covering'),\n", + " ('enwrap',\n", " 'enclose or enfold completely with or as if with a covering')]},\n", " {'answer': 'envisioned',\n", " 'hint': 'synonyms for envisioned',\n", - " 'clues': [('fancy', \"imagine; conceive of; see in one's mind\"),\n", + " 'clues': [('see', \"imagine; conceive of; see in one's mind\"),\n", + " ('foresee', 'picture to oneself; imagine possible'),\n", " ('envision', 'picture to oneself; imagine possible'),\n", - " ('see', \"imagine; conceive of; see in one's mind\"),\n", - " ('image', \"imagine; conceive of; see in one's mind\"),\n", + " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", " ('figure', \"imagine; conceive of; see in one's mind\"),\n", + " ('picture', \"imagine; conceive of; see in one's mind\"),\n", " ('project', \"imagine; conceive of; see in one's mind\"),\n", - " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", - " ('foresee', 'picture to oneself; imagine possible'),\n", - " ('picture', \"imagine; conceive of; see in one's mind\")]},\n", + " ('image', \"imagine; conceive of; see in one's mind\"),\n", + " ('fancy', \"imagine; conceive of; see in one's mind\")]},\n", " {'answer': 'enwrapped',\n", " 'hint': 'synonyms for enwrapped',\n", - " 'clues': [('enwrap',\n", + " 'clues': [('wrap',\n", " 'enclose or enfold completely with or as if with a covering'),\n", - " ('enclose', 'enclose or enfold completely with or as if with a covering'),\n", " ('enfold', 'enclose or enfold completely with or as if with a covering'),\n", - " ('wrap', 'enclose or enfold completely with or as if with a covering'),\n", - " ('envelop',\n", + " ('enclose', 'enclose or enfold completely with or as if with a covering'),\n", + " ('envelop', 'enclose or enfold completely with or as if with a covering'),\n", + " ('enwrap',\n", " 'enclose or enfold completely with or as if with a covering')]},\n", " {'answer': 'equal',\n", " 'hint': 'synonyms for equal',\n", - " 'clues': [('match', 'be equal to in quality or ability'),\n", + " 'clues': [('touch', 'be equal to in quality or ability'),\n", " ('be', 'be identical or equivalent to'),\n", - " ('touch', 'be equal to in quality or ability'),\n", - " ('equalise', 'make equal, uniform, corresponding, or matching'),\n", " ('rival', 'be equal to in quality or ability'),\n", + " ('match', 'make equal, uniform, corresponding, or matching'),\n", + " ('equalise', 'make equal, uniform, corresponding, or matching'),\n", " ('equate', 'make equal, uniform, corresponding, or matching')]},\n", " {'answer': 'equipped',\n", " 'hint': 'synonyms for equipped',\n", - " 'clues': [('outfit',\n", + " 'clues': [('fit out',\n", " 'provide with (something) usually for a specific purpose'),\n", - " ('fit out', 'provide with (something) usually for a specific purpose'),\n", + " ('outfit', 'provide with (something) usually for a specific purpose'),\n", " ('equip', 'provide with (something) usually for a specific purpose'),\n", " ('fit', 'provide with (something) usually for a specific purpose')]},\n", " {'answer': 'erect',\n", " 'hint': 'synonyms for erect',\n", " 'clues': [('raise', 'construct, build, or erect'),\n", - " ('set up', 'construct, build, or erect'),\n", - " ('rear', 'cause to rise up'),\n", - " ('put up', 'construct, build, or erect')]},\n", + " ('rear', 'construct, build, or erect'),\n", + " ('put up', 'construct, build, or erect'),\n", + " ('set up', 'construct, build, or erect')]},\n", " {'answer': 'eroded',\n", " 'hint': 'synonyms for eroded',\n", " 'clues': [('gnaw at', 'become ground down or deteriorate'),\n", - " ('wear away', 'become ground down or deteriorate'),\n", - " ('erode', 'remove soil or rock'),\n", - " ('fret', 'remove soil or rock'),\n", " ('eat at', 'become ground down or deteriorate'),\n", + " ('erode', 'become ground down or deteriorate'),\n", " ('gnaw', 'become ground down or deteriorate'),\n", + " ('wear away', 'become ground down or deteriorate'),\n", + " ('fret', 'remove soil or rock'),\n", " ('eat away', 'remove soil or rock')]},\n", " {'answer': 'erring',\n", " 'hint': 'synonyms for erring',\n", - " 'clues': [('slip', 'to make a mistake or be incorrect'),\n", + " 'clues': [('mistake', 'to make a mistake or be incorrect'),\n", + " ('err', 'to make a mistake or be incorrect'),\n", + " ('stray', 'wander from a direct course or at random'),\n", " ('drift', 'wander from a direct course or at random'),\n", - " ('mistake', 'to make a mistake or be incorrect'),\n", - " ('err', 'wander from a direct course or at random'),\n", - " ('stray', 'wander from a direct course or at random')]},\n", + " ('slip', 'to make a mistake or be incorrect')]},\n", " {'answer': 'escaped',\n", " 'hint': 'synonyms for escaped',\n", - " 'clues': [('get away', 'run away from confinement'),\n", - " ('escape', 'issue or leak, as from a small opening'),\n", - " ('hightail it', \"flee; take to one's heels; cut and run\"),\n", - " ('get out',\n", + " 'clues': [('lam', \"flee; take to one's heels; cut and run\"),\n", + " ('escape', 'fail to experience'),\n", + " ('turn tail', \"flee; take to one's heels; cut and run\"),\n", + " ('take to the woods', \"flee; take to one's heels; cut and run\"),\n", + " ('scat', \"flee; take to one's heels; cut and run\"),\n", + " ('get by',\n", " 'escape potentially unpleasant consequences; get away with a forbidden action'),\n", - " ('lam', \"flee; take to one's heels; cut and run\"),\n", - " ('scarper', \"flee; take to one's heels; cut and run\"),\n", " ('break loose', 'run away from confinement'),\n", - " ('break away', \"flee; take to one's heels; cut and run\"),\n", - " ('miss', 'fail to experience'),\n", - " ('take to the woods', \"flee; take to one's heels; cut and run\"),\n", " ('bunk', \"flee; take to one's heels; cut and run\"),\n", - " ('turn tail', \"flee; take to one's heels; cut and run\"),\n", " ('get off',\n", " 'escape potentially unpleasant consequences; get away with a forbidden action'),\n", - " ('elude', 'be incomprehensible to; escape understanding by'),\n", " ('fly the coop', \"flee; take to one's heels; cut and run\"),\n", - " ('get by',\n", + " ('get away', 'run away from confinement'),\n", + " ('scarper', \"flee; take to one's heels; cut and run\"),\n", + " ('head for the hills', \"flee; take to one's heels; cut and run\"),\n", + " ('break away', \"flee; take to one's heels; cut and run\"),\n", + " ('get out',\n", " 'escape potentially unpleasant consequences; get away with a forbidden action'),\n", " ('run', \"flee; take to one's heels; cut and run\"),\n", - " ('head for the hills', \"flee; take to one's heels; cut and run\"),\n", - " ('scat', \"flee; take to one's heels; cut and run\"),\n", - " ('run away', \"flee; take to one's heels; cut and run\")]},\n", + " ('hightail it', \"flee; take to one's heels; cut and run\"),\n", + " ('run away', \"flee; take to one's heels; cut and run\"),\n", + " ('elude', 'be incomprehensible to; escape understanding by'),\n", + " ('miss', 'fail to experience')]},\n", " {'answer': 'established',\n", " 'hint': 'synonyms for established',\n", - " 'clues': [('shew',\n", - " 'establish the validity of something, as by an example, explanation or experiment'),\n", - " ('set up', 'place'),\n", - " ('base', 'use as a basis for; found on'),\n", + " 'clues': [('build', 'build or establish something abstract'),\n", " ('make', 'institute, enact, or establish'),\n", - " ('give', 'bring about'),\n", - " ('found', 'set up or lay the groundwork for'),\n", - " ('establish', 'build or establish something abstract'),\n", - " ('prove',\n", + " ('institute', 'set up or lay the groundwork for'),\n", + " ('establish', 'set up or lay the groundwork for'),\n", + " ('shew',\n", " 'establish the validity of something, as by an example, explanation or experiment'),\n", - " ('build', 'build or establish something abstract'),\n", - " ('launch', 'set up or found'),\n", - " ('install', 'place'),\n", + " ('plant', 'set up or lay the groundwork for'),\n", + " ('give', 'bring about'),\n", " ('show',\n", " 'establish the validity of something, as by an example, explanation or experiment'),\n", - " ('institute', 'set up or lay the groundwork for'),\n", " ('ground', 'use as a basis for; found on'),\n", - " ('plant', 'set up or lay the groundwork for'),\n", - " ('constitute', 'set up or lay the groundwork for'),\n", + " ('set up', 'set up or found'),\n", + " ('base', 'use as a basis for; found on'),\n", + " ('instal', 'place'),\n", " ('lay down', 'institute, enact, or establish'),\n", + " ('found', 'set up or lay the groundwork for'),\n", + " ('launch', 'set up or found'),\n", " ('demonstrate',\n", - " 'establish the validity of something, as by an example, explanation or experiment')]},\n", + " 'establish the validity of something, as by an example, explanation or experiment'),\n", + " ('prove',\n", + " 'establish the validity of something, as by an example, explanation or experiment'),\n", + " ('constitute', 'set up or lay the groundwork for')]},\n", " {'answer': 'esteemed',\n", " 'hint': 'synonyms for esteemed',\n", - " 'clues': [('prize', 'regard highly; think much of'),\n", - " ('prise', 'regard highly; think much of'),\n", - " ('esteem', 'look on as or consider'),\n", - " ('look upon', 'look on as or consider'),\n", - " ('think of', 'look on as or consider'),\n", + " 'clues': [('repute', 'look on as or consider'),\n", + " ('esteem', 'regard highly; think much of'),\n", " ('respect', 'regard highly; think much of'),\n", - " ('repute', 'look on as or consider'),\n", + " ('think of', 'look on as or consider'),\n", + " ('regard as', 'look on as or consider'),\n", + " ('look on', 'look on as or consider'),\n", " ('take to be', 'look on as or consider'),\n", - " ('value', 'regard highly; think much of'),\n", - " ('regard as', 'look on as or consider')]},\n", + " ('prize', 'regard highly; think much of'),\n", + " ('prise', 'regard highly; think much of'),\n", + " ('value', 'regard highly; think much of')]},\n", " {'answer': 'estranged',\n", " 'hint': 'synonyms for estranged',\n", - " 'clues': [('alienate',\n", - " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", - " ('estrange',\n", - " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", + " 'clues': [('estrange',\n", + " 'remove from customary environment or associations'),\n", " ('disaffect',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", + " ('alienate',\n", + " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", " ('alien',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n", " {'answer': 'estranging',\n", " 'hint': 'synonyms for estranging',\n", - " 'clues': [('alienate',\n", - " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", - " ('estrange',\n", - " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", + " 'clues': [('estrange',\n", + " 'remove from customary environment or associations'),\n", " ('disaffect',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", + " ('alienate',\n", + " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'),\n", " ('alien',\n", " 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness')]},\n", " {'answer': 'evaporated',\n", " 'hint': 'synonyms for evaporated',\n", - " 'clues': [('evaporate', 'become less intense and fade away gradually'),\n", - " ('vaporise', 'cause to change into a vapor'),\n", + " 'clues': [('vaporise', 'cause to change into a vapor'),\n", " ('disappear', 'become less intense and fade away gradually'),\n", + " ('evaporate', 'change into a vapor'),\n", " ('melt', 'become less intense and fade away gradually')]},\n", " {'answer': 'evidenced',\n", " 'hint': 'synonyms for evidenced',\n", - " 'clues': [('tell', 'give evidence'),\n", - " ('prove', 'provide evidence for'),\n", - " ('certify',\n", + " 'clues': [('manifest',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('testify', 'provide evidence for'),\n", - " ('manifest',\n", + " ('bear witness', 'provide evidence for'),\n", + " ('certify',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('show', 'provide evidence for'),\n", " ('evidence', 'provide evidence for'),\n", + " ('prove', 'provide evidence for'),\n", + " ('testify', 'provide evidence for'),\n", " ('demonstrate',\n", " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", - " ('bear witness', 'provide evidence for'),\n", " ('attest',\n", - " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\")]},\n", + " \"provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes\"),\n", + " ('show', 'provide evidence for'),\n", + " ('tell', 'give evidence')]},\n", " {'answer': 'evoked',\n", " 'hint': 'synonyms for evoked',\n", - " 'clues': [('draw out', 'deduce (a principle) or construe (a meaning)'),\n", + " 'clues': [('call forth', 'evoke or provoke to appear or occur'),\n", " ('raise', 'call forth (emotions, feelings, and responses)'),\n", - " ('elicit', 'deduce (a principle) or construe (a meaning)'),\n", - " ('arouse',\n", - " 'summon into action or bring into existence, often as if by magic'),\n", - " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", - " ('stir',\n", - " 'summon into action or bring into existence, often as if by magic'),\n", - " ('fire', 'call forth (emotions, feelings, and responses)'),\n", - " ('educe', 'deduce (a principle) or construe (a meaning)'),\n", - " ('extract', 'deduce (a principle) or construe (a meaning)'),\n", - " ('call forth', 'evoke or provoke to appear or occur'),\n", - " ('conjure',\n", + " ('invoke',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('put forward',\n", + " ('enkindle', 'call forth (emotions, feelings, and responses)'),\n", + " ('call down',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('invoke',\n", + " ('conjure up',\n", " 'summon into action or bring into existence, often as if by magic'),\n", " ('bring up',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('conjure up',\n", + " ('extract', 'deduce (a principle) or construe (a meaning)'),\n", + " ('stir',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('paint a picture', 'call to mind'),\n", - " ('kindle', 'call forth (emotions, feelings, and responses)'),\n", - " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('put forward',\n", + " 'summon into action or bring into existence, often as if by magic'),\n", + " ('provoke', 'evoke or provoke to appear or occur'),\n", + " ('arouse', 'call forth (emotions, feelings, and responses)'),\n", + " ('draw out', 'deduce (a principle) or construe (a meaning)'),\n", + " ('evoke', 'evoke or provoke to appear or occur'),\n", + " ('educe', 'deduce (a principle) or construe (a meaning)'),\n", + " ('suggest', 'call to mind'),\n", " ('kick up', 'evoke or provoke to appear or occur'),\n", - " ('call down',\n", + " ('conjure',\n", " 'summon into action or bring into existence, often as if by magic'),\n", - " ('suggest', 'call to mind')]},\n", + " ('elicit', 'call forth (emotions, feelings, and responses)'),\n", + " ('paint a picture', 'call to mind'),\n", + " ('fire', 'call forth (emotions, feelings, and responses)')]},\n", " {'answer': 'exacerbating',\n", " 'hint': 'synonyms for exacerbating',\n", - " 'clues': [('aggravate', 'exasperate or irritate'),\n", + " 'clues': [('exasperate', 'make worse'),\n", " ('exacerbate', 'exasperate or irritate'),\n", - " ('exasperate', 'exasperate or irritate'),\n", - " ('worsen', 'make worse')]},\n", + " ('worsen', 'make worse'),\n", + " ('aggravate', 'exasperate or irritate')]},\n", " {'answer': 'exacting',\n", " 'hint': 'synonyms for exacting',\n", " 'clues': [('demand', 'claim as due or just'),\n", " ('claim',\n", " 'take as an undesirable consequence of some event or state of affairs'),\n", - " ('exact',\n", - " 'take as an undesirable consequence of some event or state of affairs'),\n", " ('take',\n", + " 'take as an undesirable consequence of some event or state of affairs'),\n", + " ('exact',\n", " 'take as an undesirable consequence of some event or state of affairs')]},\n", " {'answer': 'exaggerated',\n", " 'hint': 'synonyms for exaggerated',\n", - " 'clues': [('hyperbolise', 'to enlarge beyond bounds or the truth'),\n", - " ('amplify', 'to enlarge beyond bounds or the truth'),\n", + " 'clues': [('amplify', 'to enlarge beyond bounds or the truth'),\n", + " ('hyperbolize', 'to enlarge beyond bounds or the truth'),\n", " ('overdraw', 'to enlarge beyond bounds or the truth'),\n", - " ('exaggerate', 'do something to an excessive degree'),\n", + " ('exaggerate', 'to enlarge beyond bounds or the truth'),\n", " ('overdo', 'do something to an excessive degree'),\n", " ('magnify', 'to enlarge beyond bounds or the truth'),\n", " ('overstate', 'to enlarge beyond bounds or the truth')]},\n", " {'answer': 'exalted',\n", " 'hint': 'synonyms for exalted',\n", - " 'clues': [('laud', 'praise, glorify, or honor'),\n", - " ('glorify', 'praise, glorify, or honor'),\n", - " ('beatify', 'fill with sublime emotion'),\n", - " ('invigorate', 'heighten or intensify'),\n", + " 'clues': [('inspire', 'heighten or intensify'),\n", " ('exalt', 'praise, glorify, or honor'),\n", - " ('extol', 'praise, glorify, or honor'),\n", - " ('enliven', 'heighten or intensify'),\n", + " ('laud', 'praise, glorify, or honor'),\n", " ('thrill', 'fill with sublime emotion'),\n", + " ('extol', 'praise, glorify, or honor'),\n", + " ('beatify', 'fill with sublime emotion'),\n", + " ('proclaim', 'praise, glorify, or honor'),\n", + " ('invigorate', 'heighten or intensify'),\n", " ('tickle pink', 'fill with sublime emotion'),\n", + " ('glorify', 'praise, glorify, or honor'),\n", " ('exhilarate', 'fill with sublime emotion'),\n", - " ('proclaim', 'praise, glorify, or honor'),\n", - " ('inspire', 'heighten or intensify'),\n", " ('inebriate', 'fill with sublime emotion'),\n", + " ('enliven', 'heighten or intensify'),\n", " ('animate', 'heighten or intensify')]},\n", " {'answer': 'exalting',\n", " 'hint': 'synonyms for exalting',\n", - " 'clues': [('laud', 'praise, glorify, or honor'),\n", - " ('glorify', 'praise, glorify, or honor'),\n", - " ('beatify', 'fill with sublime emotion'),\n", - " ('invigorate', 'heighten or intensify'),\n", + " 'clues': [('inspire', 'heighten or intensify'),\n", " ('exalt', 'praise, glorify, or honor'),\n", - " ('extol', 'praise, glorify, or honor'),\n", - " ('enliven', 'heighten or intensify'),\n", + " ('laud', 'praise, glorify, or honor'),\n", " ('thrill', 'fill with sublime emotion'),\n", + " ('extol', 'praise, glorify, or honor'),\n", + " ('beatify', 'fill with sublime emotion'),\n", + " ('proclaim', 'praise, glorify, or honor'),\n", + " ('invigorate', 'heighten or intensify'),\n", " ('tickle pink', 'fill with sublime emotion'),\n", + " ('glorify', 'praise, glorify, or honor'),\n", " ('exhilarate', 'fill with sublime emotion'),\n", - " ('proclaim', 'praise, glorify, or honor'),\n", - " ('inspire', 'heighten or intensify'),\n", " ('inebriate', 'fill with sublime emotion'),\n", + " ('enliven', 'heighten or intensify'),\n", " ('animate', 'heighten or intensify')]},\n", " {'answer': 'exasperated',\n", " 'hint': 'synonyms for exasperated',\n", - " 'clues': [('aggravate', 'exasperate or irritate'),\n", - " ('worsen', 'make worse'),\n", + " 'clues': [('exasperate', 'make worse'),\n", + " ('infuriate', 'make furious'),\n", + " ('exacerbate', 'make worse'),\n", " ('incense', 'make furious'),\n", - " ('exacerbate', 'exasperate or irritate'),\n", - " ('exasperate', 'exasperate or irritate'),\n", - " ('infuriate', 'make furious')]},\n", + " ('aggravate', 'make worse'),\n", + " ('worsen', 'make worse')]},\n", " {'answer': 'exasperating',\n", " 'hint': 'synonyms for exasperating',\n", - " 'clues': [('aggravate', 'exasperate or irritate'),\n", - " ('worsen', 'make worse'),\n", + " 'clues': [('exasperate', 'make worse'),\n", + " ('infuriate', 'make furious'),\n", + " ('exacerbate', 'make worse'),\n", " ('incense', 'make furious'),\n", - " ('exacerbate', 'exasperate or irritate'),\n", - " ('exasperate', 'exasperate or irritate'),\n", - " ('infuriate', 'make furious')]},\n", + " ('aggravate', 'make worse'),\n", + " ('worsen', 'make worse')]},\n", " {'answer': 'exceeding',\n", " 'hint': 'synonyms for exceeding',\n", - " 'clues': [('outstrip', 'be or do something to a greater degree'),\n", - " ('transcend', 'be superior or better than some standard'),\n", - " ('surpass', 'be or do something to a greater degree'),\n", - " ('overstep', 'be superior or better than some standard'),\n", - " ('exceed', 'be greater in scope or size than some standard'),\n", - " ('pass', 'be superior or better than some standard'),\n", - " ('outperform', 'be or do something to a greater degree'),\n", - " ('outmatch', 'be or do something to a greater degree'),\n", - " ('outgo', 'be or do something to a greater degree'),\n", + " 'clues': [('transcend', 'be superior or better than some standard'),\n", + " ('outstrip', 'be or do something to a greater degree'),\n", " ('outdo', 'be or do something to a greater degree'),\n", + " ('exceed', 'be or do something to a greater degree'),\n", + " ('outperform', 'be or do something to a greater degree'),\n", " ('surmount', 'be or do something to a greater degree'),\n", + " ('pass', 'be superior or better than some standard'),\n", + " ('go past', 'be superior or better than some standard'),\n", + " ('outgo', 'be or do something to a greater degree'),\n", " ('top', 'be superior or better than some standard'),\n", - " ('go past', 'be superior or better than some standard')]},\n", + " ('overstep', 'be superior or better than some standard'),\n", + " ('outmatch', 'be or do something to a greater degree'),\n", + " ('surpass', 'be or do something to a greater degree')]},\n", " {'answer': 'exchanged',\n", " 'hint': 'synonyms for exchanged',\n", - " 'clues': [('substitute',\n", + " 'clues': [('exchange',\n", + " 'put in the place of another; switch seemingly equivalent items'),\n", + " ('interchange',\n", " 'put in the place of another; switch seemingly equivalent items'),\n", " ('commute',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", " ('convert',\n", " 'exchange or replace with another, usually of the same kind or category'),\n", - " ('exchange',\n", - " 'hand over one and receive another, approximately equivalent'),\n", " ('switch', 'change over, change around, as to a new order or sequence'),\n", - " ('interchange',\n", + " ('switch over',\n", + " 'change over, change around, as to a new order or sequence'),\n", + " ('substitute',\n", " 'put in the place of another; switch seemingly equivalent items'),\n", " ('replace',\n", - " 'put in the place of another; switch seemingly equivalent items'),\n", - " ('switch over',\n", - " 'change over, change around, as to a new order or sequence')]},\n", + " 'put in the place of another; switch seemingly equivalent items')]},\n", " {'answer': 'excited',\n", " 'hint': 'synonyms for excited',\n", - " 'clues': [('stimulate', 'stir feelings in'),\n", - " ('excite', 'stir feelings in'),\n", - " ('shake', 'stir the feelings, emotions, or peace of'),\n", + " 'clues': [('excite', 'stir feelings in'),\n", + " ('commove', 'cause to be agitated, excited, or roused'),\n", + " ('arouse', 'stimulate sexually'),\n", " ('shake up', 'stir the feelings, emotions, or peace of'),\n", + " ('shake', 'stir the feelings, emotions, or peace of'),\n", + " ('stimulate', 'stir the feelings, emotions, or peace of'),\n", " ('charge', 'cause to be agitated, excited, or roused'),\n", - " ('stir', 'stir the feelings, emotions, or peace of'),\n", - " ('wind up', 'stimulate sexually'),\n", " ('turn on', 'cause to be agitated, excited, or roused'),\n", - " ('charge up', 'cause to be agitated, excited, or roused'),\n", - " ('rouse', 'cause to be agitated, excited, or roused'),\n", " ('agitate', 'cause to be agitated, excited, or roused'),\n", - " ('energise', 'raise to a higher energy level'),\n", - " ('commove', 'cause to be agitated, excited, or roused'),\n", - " ('sex', 'stimulate sexually')]},\n", + " ('stir', 'stir the feelings, emotions, or peace of'),\n", + " ('energize', 'raise to a higher energy level'),\n", + " ('charge up', 'cause to be agitated, excited, or roused'),\n", + " ('sex', 'stimulate sexually'),\n", + " ('wind up', 'stimulate sexually')]},\n", " {'answer': 'exciting',\n", " 'hint': 'synonyms for exciting',\n", - " 'clues': [('stimulate', 'stir feelings in'),\n", - " ('excite', 'stir feelings in'),\n", - " ('shake', 'stir the feelings, emotions, or peace of'),\n", + " 'clues': [('excite', 'stir feelings in'),\n", + " ('commove', 'cause to be agitated, excited, or roused'),\n", + " ('arouse', 'stimulate sexually'),\n", " ('shake up', 'stir the feelings, emotions, or peace of'),\n", + " ('shake', 'stir the feelings, emotions, or peace of'),\n", + " ('stimulate', 'stir the feelings, emotions, or peace of'),\n", " ('charge', 'cause to be agitated, excited, or roused'),\n", - " ('stir', 'stir the feelings, emotions, or peace of'),\n", - " ('wind up', 'stimulate sexually'),\n", " ('turn on', 'cause to be agitated, excited, or roused'),\n", - " ('charge up', 'cause to be agitated, excited, or roused'),\n", - " ('rouse', 'cause to be agitated, excited, or roused'),\n", " ('agitate', 'cause to be agitated, excited, or roused'),\n", - " ('energise', 'raise to a higher energy level'),\n", - " ('commove', 'cause to be agitated, excited, or roused'),\n", - " ('sex', 'stimulate sexually')]},\n", + " ('stir', 'stir the feelings, emotions, or peace of'),\n", + " ('energize', 'raise to a higher energy level'),\n", + " ('charge up', 'cause to be agitated, excited, or roused'),\n", + " ('sex', 'stimulate sexually'),\n", + " ('wind up', 'stimulate sexually')]},\n", " {'answer': 'excruciating',\n", " 'hint': 'synonyms for excruciating',\n", - " 'clues': [('excruciate', 'subject to torture'),\n", - " ('torment', 'torment emotionally or mentally'),\n", - " ('rack', 'torment emotionally or mentally'),\n", - " ('torture', 'subject to torture')]},\n", + " 'clues': [('torment', 'torment emotionally or mentally'),\n", + " ('excruciate', 'subject to torture'),\n", + " ('torture', 'subject to torture'),\n", + " ('rack', 'torment emotionally or mentally')]},\n", " {'answer': 'exculpated',\n", " 'hint': 'synonyms for exculpated',\n", " 'clues': [('assoil', 'pronounce not guilty of criminal charges'),\n", " ('exculpate', 'pronounce not guilty of criminal charges'),\n", " ('acquit', 'pronounce not guilty of criminal charges'),\n", + " ('exonerate', 'pronounce not guilty of criminal charges'),\n", " ('clear', 'pronounce not guilty of criminal charges'),\n", - " ('discharge', 'pronounce not guilty of criminal charges'),\n", - " ('exonerate', 'pronounce not guilty of criminal charges')]},\n", + " ('discharge', 'pronounce not guilty of criminal charges')]},\n", " {'answer': 'excused',\n", " 'hint': 'synonyms for excused',\n", - " 'clues': [('rationalise',\n", - " 'defend, explain, clear away, or make excuses for by reasoning'),\n", - " ('excuse', 'grant exemption or release to'),\n", - " ('exempt', 'grant exemption or release to'),\n", - " ('apologize',\n", - " 'defend, explain, clear away, or make excuses for by reasoning'),\n", - " ('justify',\n", - " 'defend, explain, clear away, or make excuses for by reasoning'),\n", - " ('beg off', 'ask for permission to be released from an engagement'),\n", + " 'clues': [('beg off',\n", + " 'ask for permission to be released from an engagement'),\n", + " ('excuse', 'serve as a reason or cause or justification of'),\n", + " ('let off', 'grant exemption or release to'),\n", " ('condone', 'excuse, overlook, or make allowances for; be lenient with'),\n", " ('pardon', 'accept an excuse for'),\n", + " ('exempt', 'grant exemption or release to'),\n", " ('relieve', 'grant exemption or release to'),\n", " ('explain', 'serve as a reason or cause or justification of'),\n", - " ('let off', 'grant exemption or release to')]},\n", + " ('apologise',\n", + " 'defend, explain, clear away, or make excuses for by reasoning'),\n", + " ('rationalise',\n", + " 'defend, explain, clear away, or make excuses for by reasoning'),\n", + " ('justify',\n", + " 'defend, explain, clear away, or make excuses for by reasoning')]},\n", " {'answer': 'executed',\n", " 'hint': 'synonyms for executed',\n", - " 'clues': [('execute', 'carry out or perform an action'),\n", - " ('perform', 'carry out or perform an action'),\n", + " 'clues': [('carry out', 'put in effect'),\n", + " ('action', 'put in effect'),\n", + " ('accomplish', 'put in effect'),\n", " ('fulfil', 'put in effect'),\n", - " ('run', 'carry out a process or program, as on a computer or a machine'),\n", - " ('do', 'carry out or perform an action'),\n", " ('carry through', 'put in effect'),\n", - " ('accomplish', 'put in effect'),\n", + " ('execute',\n", + " 'carry out a process or program, as on a computer or a machine'),\n", + " ('perform', 'carry out or perform an action'),\n", + " ('run', 'carry out a process or program, as on a computer or a machine'),\n", " ('put to death', 'kill as a means of socially sanctioned punishment'),\n", - " ('action', 'put in effect'),\n", - " ('carry out', 'put in effect')]},\n", + " ('do', 'carry out or perform an action')]},\n", " {'answer': 'exemplifying',\n", " 'hint': 'synonyms for exemplifying',\n", - " 'clues': [('represent', 'be characteristic of'),\n", + " 'clues': [('exemplify', 'be characteristic of'),\n", + " ('illustrate', 'clarify by giving an example of'),\n", " ('instance', 'clarify by giving an example of'),\n", - " ('exemplify', 'clarify by giving an example of'),\n", - " ('illustrate', 'clarify by giving an example of')]},\n", + " ('represent', 'be characteristic of')]},\n", " {'answer': 'exempt',\n", " 'hint': 'synonyms for exempt',\n", - " 'clues': [('free',\n", - " 'grant relief or an exemption from a rule or requirement to'),\n", + " 'clues': [('excuse', 'grant exemption or release to'),\n", " ('relieve', 'grant relief or an exemption from a rule or requirement to'),\n", - " ('excuse', 'grant exemption or release to'),\n", + " ('free', 'grant relief or an exemption from a rule or requirement to'),\n", " ('let off', 'grant exemption or release to')]},\n", " {'answer': 'exhausted',\n", " 'hint': 'synonyms for exhausted',\n", - " 'clues': [('tucker out', 'wear out completely'),\n", + " 'clues': [('wipe out', 'use up (resources or materials)'),\n", + " ('run through', 'use up (resources or materials)'),\n", " ('exhaust', 'wear out completely'),\n", - " ('consume', 'use up (resources or materials)'),\n", - " ('sap', 'deplete'),\n", + " ('eat', 'use up (resources or materials)'),\n", + " ('deplete', 'use up (resources or materials)'),\n", + " ('tire', 'deplete'),\n", + " ('eject', 'eliminate (a substance)'),\n", + " ('use up', 'use up (resources or materials)'),\n", + " ('release', 'eliminate (a substance)'),\n", + " ('play out', 'deplete'),\n", " ('wash up', 'wear out completely'),\n", " ('eat up', 'use up (resources or materials)'),\n", - " ('use up', 'use up (resources or materials)'),\n", - " ('run down', 'deplete'),\n", + " ('consume', 'use up (resources or materials)'),\n", + " ('sap', 'deplete'),\n", " ('expel', 'eliminate (a substance)'),\n", - " ('beat', 'wear out completely'),\n", - " ('play out', 'deplete'),\n", - " ('wipe out', 'use up (resources or materials)'),\n", - " ('release', 'eliminate (a substance)'),\n", " ('tucker', 'wear out completely'),\n", - " ('deplete', 'use up (resources or materials)'),\n", - " ('run through', 'use up (resources or materials)'),\n", - " ('tire', 'deplete'),\n", - " ('discharge', 'eliminate (a substance)'),\n", - " ('eject', 'eliminate (a substance)')]},\n", + " ('run down', 'deplete'),\n", + " ('tucker out', 'wear out completely'),\n", + " ('discharge', 'eliminate (a substance)')]},\n", " {'answer': 'exhausting',\n", " 'hint': 'synonyms for exhausting',\n", - " 'clues': [('tucker out', 'wear out completely'),\n", + " 'clues': [('wipe out', 'use up (resources or materials)'),\n", + " ('run through', 'use up (resources or materials)'),\n", " ('exhaust', 'wear out completely'),\n", - " ('consume', 'use up (resources or materials)'),\n", - " ('sap', 'deplete'),\n", + " ('eat', 'use up (resources or materials)'),\n", + " ('deplete', 'use up (resources or materials)'),\n", + " ('tire', 'deplete'),\n", + " ('eject', 'eliminate (a substance)'),\n", + " ('use up', 'use up (resources or materials)'),\n", + " ('release', 'eliminate (a substance)'),\n", + " ('play out', 'deplete'),\n", " ('wash up', 'wear out completely'),\n", " ('eat up', 'use up (resources or materials)'),\n", - " ('use up', 'use up (resources or materials)'),\n", - " ('run down', 'deplete'),\n", + " ('consume', 'use up (resources or materials)'),\n", + " ('sap', 'deplete'),\n", " ('expel', 'eliminate (a substance)'),\n", - " ('beat', 'wear out completely'),\n", - " ('play out', 'deplete'),\n", - " ('wipe out', 'use up (resources or materials)'),\n", - " ('release', 'eliminate (a substance)'),\n", " ('tucker', 'wear out completely'),\n", - " ('deplete', 'use up (resources or materials)'),\n", - " ('run through', 'use up (resources or materials)'),\n", - " ('tire', 'deplete'),\n", - " ('discharge', 'eliminate (a substance)'),\n", - " ('eject', 'eliminate (a substance)')]},\n", + " ('run down', 'deplete'),\n", + " ('tucker out', 'wear out completely'),\n", + " ('discharge', 'eliminate (a substance)')]},\n", " {'answer': 'exhilarated',\n", " 'hint': 'synonyms for exhilarated',\n", - " 'clues': [('exalt', 'fill with sublime emotion'),\n", - " ('beatify', 'fill with sublime emotion'),\n", - " ('thrill', 'fill with sublime emotion'),\n", + " 'clues': [('thrill', 'fill with sublime emotion'),\n", " ('tickle pink', 'fill with sublime emotion'),\n", " ('exhilarate', 'fill with sublime emotion'),\n", - " ('inebriate', 'fill with sublime emotion')]},\n", + " ('inebriate', 'fill with sublime emotion'),\n", + " ('exalt', 'fill with sublime emotion'),\n", + " ('beatify', 'fill with sublime emotion')]},\n", " {'answer': 'exhilarating',\n", " 'hint': 'synonyms for exhilarating',\n", - " 'clues': [('exalt', 'fill with sublime emotion'),\n", - " ('beatify', 'fill with sublime emotion'),\n", - " ('thrill', 'fill with sublime emotion'),\n", + " 'clues': [('thrill', 'fill with sublime emotion'),\n", " ('tickle pink', 'fill with sublime emotion'),\n", " ('exhilarate', 'fill with sublime emotion'),\n", - " ('inebriate', 'fill with sublime emotion')]},\n", + " ('inebriate', 'fill with sublime emotion'),\n", + " ('exalt', 'fill with sublime emotion'),\n", + " ('beatify', 'fill with sublime emotion')]},\n", " {'answer': 'existing',\n", " 'hint': 'synonyms for existing',\n", - " 'clues': [('subsist', 'support oneself'),\n", - " ('survive', 'support oneself'),\n", + " 'clues': [('survive', 'support oneself'),\n", " ('exist', 'support oneself'),\n", " ('be', 'have an existence, be extant'),\n", + " ('subsist', 'support oneself'),\n", " ('live', 'support oneself')]},\n", " {'answer': 'exonerated',\n", " 'hint': 'synonyms for exonerated',\n", " 'clues': [('assoil', 'pronounce not guilty of criminal charges'),\n", " ('exculpate', 'pronounce not guilty of criminal charges'),\n", " ('acquit', 'pronounce not guilty of criminal charges'),\n", + " ('exonerate', 'pronounce not guilty of criminal charges'),\n", " ('clear', 'pronounce not guilty of criminal charges'),\n", - " ('discharge', 'pronounce not guilty of criminal charges'),\n", - " ('exonerate', 'pronounce not guilty of criminal charges')]},\n", + " ('discharge', 'pronounce not guilty of criminal charges')]},\n", " {'answer': 'expanded',\n", " 'hint': 'synonyms for expanded',\n", - " 'clues': [('spread out', 'extend in one or more directions'),\n", - " ('blow up', 'exaggerate or make bigger'),\n", - " ('elaborate',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('enlarge',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " 'clues': [('flourish', 'grow vigorously'),\n", " ('expand', 'make bigger or wider in size, volume, or quantity'),\n", - " ('exposit',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('expound',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('dilate',\n", - " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('amplify', 'exaggerate or make bigger'),\n", - " ('boom', 'grow vigorously'),\n", - " ('flourish', 'grow vigorously'),\n", " ('inflate', 'exaggerate or make bigger'),\n", - " ('expatiate',\n", + " ('exposit',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", " ('extend', 'expand the influence of'),\n", - " ('lucubrate',\n", + " ('enlarge',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('spread out', 'extend in one or more directions'),\n", " ('flesh out',\n", " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", - " ('thrive', 'grow vigorously')]},\n", + " ('lucubrate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('blow up', 'exaggerate or make bigger'),\n", + " ('elaborate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('thrive', 'grow vigorously'),\n", + " ('expatiate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('dilate',\n", + " 'add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing'),\n", + " ('amplify', 'exaggerate or make bigger'),\n", + " ('boom', 'grow vigorously')]},\n", " {'answer': 'expected',\n", " 'hint': 'synonyms for expected',\n", - " 'clues': [('expect', 'consider obligatory; request and expect'),\n", - " ('have a bun in the oven', 'be pregnant with'),\n", - " ('ask', 'consider obligatory; request and expect'),\n", - " ('await', 'look forward to the probable occurrence of'),\n", - " ('gestate', 'be pregnant with'),\n", + " 'clues': [('expect', 'regard something as probable or likely'),\n", + " ('anticipate', 'regard something as probable or likely'),\n", " ('require', 'consider obligatory; request and expect'),\n", " ('look', 'look forward to the probable occurrence of'),\n", - " ('bear', 'be pregnant with'),\n", + " ('await', 'look forward to the probable occurrence of'),\n", " ('carry', 'be pregnant with'),\n", - " ('anticipate', 'regard something as probable or likely')]},\n", + " ('ask', 'consider obligatory; request and expect'),\n", + " ('bear', 'be pregnant with'),\n", + " ('have a bun in the oven', 'be pregnant with'),\n", + " ('gestate', 'be pregnant with')]},\n", " {'answer': 'experienced',\n", " 'hint': 'synonyms for experienced',\n", - " 'clues': [('experience',\n", - " 'go through (mental or physical states or experiences)'),\n", - " ('get', 'go through (mental or physical states or experiences)'),\n", - " ('live',\n", + " 'clues': [('know',\n", " 'have firsthand knowledge of states, situations, emotions, or sensations'),\n", - " ('have', 'go through (mental or physical states or experiences)'),\n", + " ('feel',\n", + " 'undergo an emotional sensation or be in a particular state of mind'),\n", + " ('get', 'go through (mental or physical states or experiences)'),\n", " ('go through', 'go or live through'),\n", - " ('know',\n", - " 'have firsthand knowledge of states, situations, emotions, or sensations'),\n", + " ('experience',\n", + " 'undergo an emotional sensation or be in a particular state of mind'),\n", " ('receive', 'go through (mental or physical states or experiences)'),\n", + " ('have', 'undergo'),\n", " ('see', 'go or live through'),\n", - " ('feel',\n", - " 'undergo an emotional sensation or be in a particular state of mind')]},\n", + " ('live',\n", + " 'have firsthand knowledge of states, situations, emotions, or sensations')]},\n", " {'answer': 'expired',\n", " 'hint': 'synonyms for expired',\n", - " 'clues': [('drop dead',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('decease',\n", + " 'clues': [('perish',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('exhale', 'expel air'),\n", - " ('give-up the ghost',\n", + " ('breathe out', 'expel air'),\n", + " ('expire', 'lose validity'),\n", + " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " (\"cash in one's chips\",\n", + " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('go',\n", + " ('conk',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('choke',\n", + " ('die',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('perish',\n", + " ('croak',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('snuff it',\n", + " ('run out', 'lose validity'),\n", + " ('decease',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('kick the bucket',\n", + " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('buy the farm',\n", + " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass',\n", + " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('exit',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('expire',\n", + " (\"cash in one's chips\",\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('give-up the ghost',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die',\n", + " ('choke',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('breathe out', 'expel air'),\n", - " ('run out', 'lose validity'),\n", - " ('conk',\n", + " ('go',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('croak',\n", + " ('pass',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pop off',\n", + " ('pass away',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life')]},\n", " {'answer': 'exploded',\n", " 'hint': 'synonyms for exploded',\n", - " 'clues': [('set off', 'cause to burst with a violent release of energy'),\n", - " ('explode',\n", - " 'cause to burst as a result of air pressure; of stop consonants like /p/, /t/, and /k/'),\n", + " 'clues': [('explode', 'burst outward, usually with noise'),\n", + " ('burst forth', 'be unleashed; emerge with violence or noise'),\n", + " ('set off', 'cause to burst with a violent release of energy'),\n", + " ('irrupt', 'increase rapidly and in an uncontrolled manner'),\n", " ('detonate',\n", " 'burst and release energy as through a violent chemical or physical reaction'),\n", - " ('blow up', 'cause to burst with a violent release of energy'),\n", + " ('blow up',\n", + " 'burst and release energy as through a violent chemical or physical reaction'),\n", " ('burst', 'burst outward, usually with noise'),\n", - " ('irrupt', 'increase rapidly and in an uncontrolled manner'),\n", - " ('break loose', 'be unleashed; emerge with violence or noise'),\n", - " ('burst forth', 'be unleashed; emerge with violence or noise')]},\n", + " ('break loose', 'be unleashed; emerge with violence or noise')]},\n", " {'answer': 'exploited',\n", " 'hint': 'synonyms for exploited',\n", " 'clues': [('exploit', \"use or manipulate to one's advantage\"),\n", - " ('overwork', 'work excessively hard'),\n", + " ('tap', 'draw from; make good use of'),\n", " ('work', \"use or manipulate to one's advantage\"),\n", - " ('tap', 'draw from; make good use of')]},\n", + " ('overwork', 'work excessively hard')]},\n", " {'answer': 'exposed',\n", " 'hint': 'synonyms for exposed',\n", " 'clues': [('expose', 'abandon by leaving out in the open air'),\n", - " ('unwrap',\n", + " ('scupper', 'put in a dangerous, disadvantageous, or difficult position'),\n", + " ('exhibit', 'to show, make visible or apparent'),\n", + " ('break',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('peril', 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('display', 'to show, make visible or apparent'),\n", - " ('debunk',\n", - " 'expose while ridiculing; especially of pretentious or false claims and ideas'),\n", - " ('uncover', \"remove all or part of one's clothes to show one's body\"),\n", - " ('let out',\n", + " ('give away',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('display', 'to show, make visible or apparent'),\n", + " ('disclose', 'disclose to view as by removing a cover'),\n", " ('queer', 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('break',\n", + " ('peril', 'put in a dangerous, disadvantageous, or difficult position'),\n", + " ('unwrap',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('endanger',\n", - " 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('discover',\n", + " ('reveal',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", " ('divulge',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('give away',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('endanger',\n", + " 'put in a dangerous, disadvantageous, or difficult position'),\n", " ('let on',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('exhibit', 'to show, make visible or apparent'),\n", - " ('disclose',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('debunk',\n", + " 'expose while ridiculing; especially of pretentious or false claims and ideas'),\n", " ('bring out',\n", " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", - " ('scupper', 'put in a dangerous, disadvantageous, or difficult position'),\n", - " ('reveal',\n", - " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret')]},\n", + " ('discover',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('let out',\n", + " 'make known to the public information that was previously known only to a few people or that was meant to be kept a secret'),\n", + " ('uncover', \"remove all or part of one's clothes to show one's body\")]},\n", " {'answer': 'express',\n", " 'hint': 'synonyms for express',\n", - " 'clues': [('convey', 'serve as a means for expressing something'),\n", - " ('extract', 'obtain from a substance, as by mechanical action'),\n", - " ('press out', 'obtain from a substance, as by mechanical action'),\n", - " ('show', 'give expression to'),\n", - " ('carry', 'serve as a means for expressing something'),\n", + " 'clues': [('press out',\n", + " 'obtain from a substance, as by mechanical action'),\n", " ('verbalize',\n", " 'articulate; either verbally or with a cry, shout, or noise'),\n", - " ('state', 'indicate through a symbol, formula, etc.'),\n", " ('give tongue to',\n", " 'articulate; either verbally or with a cry, shout, or noise'),\n", + " ('convey', 'serve as a means for expressing something'),\n", + " ('utter', 'articulate; either verbally or with a cry, shout, or noise'),\n", + " ('show', 'give expression to'),\n", + " ('extract', 'obtain from a substance, as by mechanical action'),\n", " ('evince', 'give expression to'),\n", - " ('utter', 'articulate; either verbally or with a cry, shout, or noise')]},\n", + " ('state', 'indicate through a symbol, formula, etc.'),\n", + " ('carry', 'serve as a means for expressing something')]},\n", " {'answer': 'expressed',\n", " 'hint': 'synonyms for expressed',\n", - " 'clues': [('utter',\n", - " 'articulate; either verbally or with a cry, shout, or noise'),\n", - " ('express', 'serve as a means for expressing something'),\n", - " ('convey', 'serve as a means for expressing something'),\n", - " ('extract', 'obtain from a substance, as by mechanical action'),\n", + " 'clues': [('express', 'obtain from a substance, as by mechanical action'),\n", " ('press out', 'obtain from a substance, as by mechanical action'),\n", - " ('show', 'give expression to'),\n", - " ('carry', 'serve as a means for expressing something'),\n", " ('verbalize',\n", " 'articulate; either verbally or with a cry, shout, or noise'),\n", - " ('state', 'indicate through a symbol, formula, etc.'),\n", " ('give tongue to',\n", " 'articulate; either verbally or with a cry, shout, or noise'),\n", - " ('evince', 'give expression to')]},\n", + " ('convey', 'serve as a means for expressing something'),\n", + " ('utter', 'articulate; either verbally or with a cry, shout, or noise'),\n", + " ('show', 'give expression to'),\n", + " ('extract', 'obtain from a substance, as by mechanical action'),\n", + " ('evince', 'give expression to'),\n", + " ('state', 'indicate through a symbol, formula, etc.'),\n", + " ('carry', 'serve as a means for expressing something')]},\n", " {'answer': 'expurgated',\n", " 'hint': 'synonyms for expurgated',\n", - " 'clues': [('castrate',\n", + " 'clues': [('bowdlerise',\n", " 'edit by omitting or modifying parts considered indelicate'),\n", - " ('bowdlerise',\n", - " 'edit by omitting or modifying parts considered indelicate'),\n", - " ('shorten', 'edit by omitting or modifying parts considered indelicate'),\n", + " ('castrate', 'edit by omitting or modifying parts considered indelicate'),\n", " ('expurgate',\n", + " 'edit by omitting or modifying parts considered indelicate'),\n", + " ('shorten',\n", " 'edit by omitting or modifying parts considered indelicate')]},\n", " {'answer': 'extended',\n", " 'hint': 'synonyms for extended',\n", - " 'clues': [('prolong', 'lengthen in time; cause to be or last longer'),\n", - " ('extend', 'reach outward in space'),\n", - " ('stretch', 'extend or stretch out to a greater or the full length'),\n", - " ('stretch out', 'thrust or extend out'),\n", - " ('hold out', 'thrust or extend out'),\n", - " ('expand', 'expand the influence of'),\n", + " 'clues': [('extend', 'reach outward in space'),\n", + " ('reach out', 'reach outward in space'),\n", + " ('carry', 'continue or extend'),\n", + " ('exsert', 'thrust or extend out'),\n", " ('poke out', 'reach outward in space'),\n", + " ('cover', 'span an interval of distance, space or time'),\n", + " ('go',\n", + " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", " ('broaden', 'extend in scope or range or area'),\n", - " ('run',\n", + " ('pass',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('continue', 'span an interval of distance, space or time'),\n", - " ('unfold', 'extend or stretch out to a greater or the full length'),\n", - " ('offer', 'make available; provide'),\n", - " ('carry', 'continue or extend'),\n", - " ('stretch forth', 'thrust or extend out'),\n", - " ('widen', 'extend in scope or range or area'),\n", " ('lead',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('protract', 'lengthen in time; cause to be or last longer'),\n", - " ('pass',\n", - " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('gallop', 'cause to move at full gallop'),\n", - " ('reach out', 'reach outward in space'),\n", - " ('draw out', 'lengthen in time; cause to be or last longer'),\n", + " ('stretch forth', 'thrust or extend out'),\n", " ('strain', 'use to the utmost; exert vigorously or to full capacity'),\n", - " ('exsert', 'thrust or extend out'),\n", + " ('stretch out', 'thrust or extend out'),\n", + " ('expand', 'expand the influence of'),\n", + " ('offer', 'offer verbally'),\n", + " ('hold out', 'thrust or extend out'),\n", + " ('stretch', 'extend or stretch out to a greater or the full length'),\n", + " ('widen', 'extend in scope or range or area'),\n", + " ('gallop', 'cause to move at full gallop'),\n", + " ('continue', 'span an interval of distance, space or time'),\n", + " ('protract', 'lengthen in time; cause to be or last longer'),\n", " ('put out', 'thrust or extend out'),\n", - " ('cover', 'span an interval of distance, space or time'),\n", - " ('go',\n", - " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point')]},\n", + " ('prolong', 'lengthen in time; cause to be or last longer'),\n", + " ('unfold', 'extend or stretch out to a greater or the full length'),\n", + " ('run',\n", + " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", + " ('draw out', 'lengthen in time; cause to be or last longer')]},\n", " {'answer': 'exterminated',\n", " 'hint': 'synonyms for exterminated',\n", - " 'clues': [('extirpate', 'destroy completely, as if down to the roots'),\n", + " 'clues': [('uproot', 'destroy completely, as if down to the roots'),\n", " ('eradicate', 'destroy completely, as if down to the roots'),\n", - " ('root out', 'destroy completely, as if down to the roots'),\n", - " ('uproot', 'destroy completely, as if down to the roots'),\n", " ('exterminate', 'destroy completely, as if down to the roots'),\n", + " ('extirpate', 'destroy completely, as if down to the roots'),\n", + " ('root out', 'destroy completely, as if down to the roots'),\n", " ('kill off', 'kill en masse; kill on a large scale; kill many')]},\n", " {'answer': 'extinguished',\n", " 'hint': 'synonyms for extinguished',\n", - " 'clues': [('quench', 'put out, as of fires, flames, or lights'),\n", - " ('do away with', 'terminate, end, or take out'),\n", - " ('decimate', 'kill in large numbers'),\n", - " ('wipe out', 'kill in large numbers'),\n", - " ('stub out', 'extinguish by crushing'),\n", + " 'clues': [('do away with', 'terminate, end, or take out'),\n", " ('eradicate', 'kill in large numbers'),\n", - " ('eliminate', 'kill in large numbers'),\n", - " ('extinguish', 'put out, as of fires, flames, or lights'),\n", - " ('snuff out', 'put an end to; kill'),\n", - " ('annihilate', 'kill in large numbers'),\n", + " ('press out', 'extinguish by crushing'),\n", " ('carry off', 'kill in large numbers'),\n", " ('get rid of', 'terminate, end, or take out'),\n", - " ('crush out', 'extinguish by crushing'),\n", - " ('press out', 'extinguish by crushing'),\n", - " ('blow out', 'put out, as of fires, flames, or lights')]},\n", + " ('extinguish', 'put an end to; kill'),\n", + " ('snuff out', 'put an end to; kill'),\n", + " ('decimate', 'kill in large numbers'),\n", + " ('quench', 'put out, as of fires, flames, or lights'),\n", + " ('eliminate', 'kill in large numbers'),\n", + " ('annihilate', 'kill in large numbers'),\n", + " ('blow out', 'put out, as of fires, flames, or lights'),\n", + " ('wipe out', 'kill in large numbers'),\n", + " ('stub out', 'extinguish by crushing'),\n", + " ('crush out', 'extinguish by crushing')]},\n", " {'answer': 'exulting',\n", " 'hint': 'synonyms for exulting',\n", - " 'clues': [('rejoice', 'to express great joy'),\n", - " ('exult', 'to express great joy'),\n", - " ('triumph', 'to express great joy'),\n", - " ('jump for joy', 'feel extreme happiness or elation'),\n", - " ('exuberate', 'to express great joy'),\n", + " 'clues': [('exult', 'to express great joy'),\n", " ('be on cloud nine', 'feel extreme happiness or elation'),\n", + " ('jump for joy', 'feel extreme happiness or elation'),\n", + " ('triumph', 'to express great joy'),\n", + " ('walk on air', 'feel extreme happiness or elation'),\n", " ('jubilate', 'to express great joy'),\n", - " ('walk on air', 'feel extreme happiness or elation')]},\n", + " ('exuberate', 'to express great joy'),\n", + " ('rejoice', 'to express great joy')]},\n", " {'answer': 'fabricated',\n", " 'hint': 'synonyms for fabricated',\n", - " 'clues': [('manufacture', 'make up something artificial or untrue'),\n", - " ('cook up', 'make up something artificial or untrue'),\n", - " ('make up', 'make up something artificial or untrue'),\n", - " ('fabricate',\n", + " 'clues': [('make up', 'make up something artificial or untrue'),\n", + " ('fabricate', 'make up something artificial or untrue'),\n", + " ('manufacture',\n", " 'put together out of artificial or natural components or parts; ; ; He manufactured a popular cereal\"'),\n", " ('construct',\n", " 'put together out of artificial or natural components or parts; ; ; He manufactured a popular cereal\"'),\n", - " ('invent', 'make up something artificial or untrue')]},\n", + " ('invent', 'make up something artificial or untrue'),\n", + " ('cook up', 'make up something artificial or untrue')]},\n", " {'answer': 'faced',\n", " 'hint': 'synonyms for faced',\n", - " 'clues': [('face', 'deal with (something unpleasant) head on'),\n", - " ('look',\n", - " 'be oriented in a certain direction, often with respect to another reference point; be opposite to'),\n", + " 'clues': [('face', 'oppose, as in hostility or a competition'),\n", + " ('confront',\n", + " 'present somebody with something, usually to accuse or criticize'),\n", " ('present',\n", " 'present somebody with something, usually to accuse or criticize'),\n", - " ('confront', 'deal with (something unpleasant) head on'),\n", - " ('face up', 'deal with (something unpleasant) head on'),\n", " ('front',\n", + " 'be oriented in a certain direction, often with respect to another reference point; be opposite to'),\n", + " ('face up', 'deal with (something unpleasant) head on'),\n", + " ('look',\n", " 'be oriented in a certain direction, often with respect to another reference point; be opposite to')]},\n", " {'answer': 'faded',\n", " 'hint': 'synonyms for faded',\n", - " 'clues': [('pass off', 'disappear gradually'),\n", - " ('fleet', 'disappear gradually'),\n", - " ('evanesce', 'disappear gradually'),\n", - " ('languish', 'become feeble'),\n", - " ('fade',\n", - " 'become less clearly visible or distinguishable; disappear gradually or seemingly'),\n", - " ('pass', 'disappear gradually'),\n", - " ('blow over', 'disappear gradually'),\n", + " 'clues': [('wither', 'lose freshness, vigor, or vitality'),\n", + " ('fade', 'disappear gradually'),\n", " ('melt',\n", " 'become less clearly visible or distinguishable; disappear gradually or seemingly'),\n", - " ('wither', 'lose freshness, vigor, or vitality')]},\n", + " ('pass', 'disappear gradually'),\n", + " ('languish', 'become feeble'),\n", + " ('fleet', 'disappear gradually'),\n", + " ('evanesce', 'disappear gradually'),\n", + " ('pass off', 'disappear gradually'),\n", + " ('blow over', 'disappear gradually')]},\n", " {'answer': 'fagged',\n", " 'hint': 'synonyms for fagged',\n", - " 'clues': [('wear upon',\n", - " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('grind', 'work hard'),\n", - " ('drudge', 'work hard'),\n", - " ('outwear',\n", - " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('fag', 'work hard'),\n", - " ('tire',\n", + " 'clues': [('tire',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('fag out',\n", + " ('weary',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('labor', 'work hard'),\n", - " ('moil', 'work hard'),\n", - " ('fatigue',\n", + " ('wear upon',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", " ('wear out',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('weary',\n", + " ('outwear',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('tire out',\n", + " ('fag out',\n", + " 'exhaust or get tired through overuse or great strain or stress'),\n", + " ('toil', 'work hard'),\n", + " ('moil', 'work hard'),\n", + " ('labour', 'work hard'),\n", + " ('fag', 'act as a servant for older boys, in British public schools'),\n", + " ('wear down',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", " ('travail', 'work hard'),\n", " ('jade',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('wear down',\n", + " ('grind', 'work hard'),\n", + " ('dig', 'work hard'),\n", + " ('fatigue',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('toil', 'work hard'),\n", - " ('dig', 'work hard')]},\n", + " ('drudge', 'work hard'),\n", + " ('tire out',\n", + " 'exhaust or get tired through overuse or great strain or stress')]},\n", " {'answer': 'failing',\n", " 'hint': 'synonyms for failing',\n", - " 'clues': [('give way', 'stop operating or functioning'),\n", - " ('fail', 'disappoint, prove undependable to; abandon, forsake'),\n", - " ('miscarry', 'be unsuccessful'),\n", + " 'clues': [('fail',\n", + " 'become bankrupt or insolvent; fail financially and close'),\n", " ('bomb', 'fail to get a passing grade'),\n", - " ('die', 'stop operating or functioning'),\n", - " ('betray', 'disappoint, prove undependable to; abandon, forsake'),\n", - " ('run out', 'prove insufficient'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('go wrong', 'be unsuccessful'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('flunk', 'fail to get a passing grade'),\n", " ('break', 'stop operating or functioning'),\n", + " ('give out', 'prove insufficient'),\n", + " ('die', 'stop operating or functioning'),\n", + " ('go bad', 'stop operating or functioning'),\n", " ('flush it', 'fail to get a passing grade'),\n", - " ('neglect', 'fail to do something; leave something undone'),\n", " ('conk out', 'stop operating or functioning'),\n", + " ('flunk', 'fail to get a passing grade'),\n", + " ('betray', 'disappoint, prove undependable to; abandon, forsake'),\n", + " ('give way', 'stop operating or functioning'),\n", + " ('miscarry', 'be unsuccessful'),\n", + " ('go wrong', 'be unsuccessful'),\n", " ('go', 'stop operating or functioning'),\n", - " ('go bad', 'stop operating or functioning')]},\n", + " ('break down', 'stop operating or functioning'),\n", + " ('neglect', 'fail to do something; leave something undone'),\n", + " ('run out', 'prove insufficient')]},\n", " {'answer': 'fake',\n", " 'hint': 'synonyms for fake',\n", - " 'clues': [('fudge', 'tamper, with the purpose of deception'),\n", + " 'clues': [('manipulate', 'tamper, with the purpose of deception'),\n", + " ('falsify', 'tamper, with the purpose of deception'),\n", " ('wangle', 'tamper, with the purpose of deception'),\n", - " (\"talk through one's hat\",\n", - " 'speak insincerely or without regard for facts or truths'),\n", " ('forge', 'make a copy of with the intent to deceive'),\n", - " ('counterfeit', 'make a copy of with the intent to deceive'),\n", + " ('fudge', 'tamper, with the purpose of deception'),\n", + " ('bullshit', 'speak insincerely or without regard for facts or truths'),\n", " ('bull', 'speak insincerely or without regard for facts or truths'),\n", " ('misrepresent', 'tamper, with the purpose of deception'),\n", - " ('cook', 'tamper, with the purpose of deception'),\n", - " ('manipulate', 'tamper, with the purpose of deception'),\n", - " ('falsify', 'tamper, with the purpose of deception'),\n", - " ('bullshit', 'speak insincerely or without regard for facts or truths')]},\n", + " ('counterfeit', 'make a copy of with the intent to deceive'),\n", + " (\"talk through one's hat\",\n", + " 'speak insincerely or without regard for facts or truths'),\n", + " ('cook', 'tamper, with the purpose of deception')]},\n", " {'answer': 'fallen',\n", " 'hint': 'synonyms for fallen',\n", - " 'clues': [('come', 'come under, be classified or included'),\n", - " ('fall', 'be captured'),\n", - " ('hang', 'fall or flow in a certain way'),\n", - " ('accrue', 'come into the possession of'),\n", - " ('devolve', 'be inherited by'),\n", - " ('descend', 'move downward and lower, but not necessarily all the way'),\n", - " ('pass', 'be inherited by'),\n", - " ('go down', 'move downward and lower, but not necessarily all the way'),\n", - " ('come down', 'fall from clouds'),\n", - " ('strike', 'touch or seem as if touching visually or audibly'),\n", - " ('light', 'fall to somebody by assignment or lot'),\n", + " 'clues': [('fall', 'suffer defeat, failure, or ruin'),\n", " ('flow', 'fall or flow in a certain way'),\n", - " ('settle', 'come as if by falling'),\n", - " ('return', 'be inherited by'),\n", - " ('lessen', 'decrease in size, extent, or range'),\n", - " ('diminish', 'decrease in size, extent, or range'),\n", " ('decrease', 'decrease in size, extent, or range'),\n", " ('shine', 'touch or seem as if touching visually or audibly'),\n", " ('fall down', 'lose an upright position suddenly'),\n", - " ('precipitate', 'fall from clouds')]},\n", - " {'answer': 'falling',\n", - " 'hint': 'synonyms for falling',\n", - " 'clues': [('come', 'come under, be classified or included'),\n", - " ('fall', 'be captured'),\n", - " ('hang', 'fall or flow in a certain way'),\n", - " ('accrue', 'come into the possession of'),\n", + " ('come down', 'fall from clouds'),\n", + " ('settle', 'come as if by falling'),\n", + " ('diminish', 'decrease in size, extent, or range'),\n", " ('devolve', 'be inherited by'),\n", - " ('descend', 'move downward and lower, but not necessarily all the way'),\n", + " ('precipitate', 'fall from clouds'),\n", " ('pass', 'be inherited by'),\n", + " ('return', 'be inherited by'),\n", + " ('descend', 'come as if by falling'),\n", + " ('accrue', 'come into the possession of'),\n", + " ('lessen', 'decrease in size, extent, or range'),\n", + " ('come', 'come under, be classified or included'),\n", " ('go down', 'move downward and lower, but not necessarily all the way'),\n", - " ('come down', 'fall from clouds'),\n", - " ('strike', 'touch or seem as if touching visually or audibly'),\n", " ('light', 'fall to somebody by assignment or lot'),\n", + " ('hang', 'fall or flow in a certain way'),\n", + " ('strike', 'touch or seem as if touching visually or audibly')]},\n", + " {'answer': 'falling',\n", + " 'hint': 'synonyms for falling',\n", + " 'clues': [('fall', 'suffer defeat, failure, or ruin'),\n", " ('flow', 'fall or flow in a certain way'),\n", - " ('settle', 'come as if by falling'),\n", - " ('return', 'be inherited by'),\n", - " ('lessen', 'decrease in size, extent, or range'),\n", - " ('diminish', 'decrease in size, extent, or range'),\n", " ('decrease', 'decrease in size, extent, or range'),\n", " ('shine', 'touch or seem as if touching visually or audibly'),\n", " ('fall down', 'lose an upright position suddenly'),\n", - " ('precipitate', 'fall from clouds')]},\n", + " ('come down', 'fall from clouds'),\n", + " ('settle', 'come as if by falling'),\n", + " ('diminish', 'decrease in size, extent, or range'),\n", + " ('devolve', 'be inherited by'),\n", + " ('precipitate', 'fall from clouds'),\n", + " ('pass', 'be inherited by'),\n", + " ('return', 'be inherited by'),\n", + " ('descend', 'come as if by falling'),\n", + " ('accrue', 'come into the possession of'),\n", + " ('lessen', 'decrease in size, extent, or range'),\n", + " ('come', 'come under, be classified or included'),\n", + " ('go down', 'move downward and lower, but not necessarily all the way'),\n", + " ('light', 'fall to somebody by assignment or lot'),\n", + " ('hang', 'fall or flow in a certain way'),\n", + " ('strike', 'touch or seem as if touching visually or audibly')]},\n", " {'answer': 'faltering',\n", " 'hint': 'synonyms for faltering',\n", - " 'clues': [('bumble', 'walk unsteadily'),\n", - " ('falter', 'speak haltingly'),\n", + " 'clues': [('falter', 'speak haltingly'),\n", " ('stammer', 'speak haltingly'),\n", " ('stumble', 'walk unsteadily'),\n", - " ('stutter', 'speak haltingly'),\n", - " ('waver', 'move hesitatingly, as if about to give way')]},\n", + " ('waver', 'be unsure or weak'),\n", + " ('bumble', 'walk unsteadily'),\n", + " ('stutter', 'speak haltingly')]},\n", " {'answer': 'fancied',\n", " 'hint': 'synonyms for fancied',\n", - " 'clues': [('fancy', \"imagine; conceive of; see in one's mind\"),\n", - " ('see', \"imagine; conceive of; see in one's mind\"),\n", - " ('image', \"imagine; conceive of; see in one's mind\"),\n", + " 'clues': [('see', \"imagine; conceive of; see in one's mind\"),\n", + " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", " ('figure', \"imagine; conceive of; see in one's mind\"),\n", - " ('go for', 'have a fancy or particular liking or desire for'),\n", + " ('fancy', 'have a fancy or particular liking or desire for'),\n", + " ('picture', \"imagine; conceive of; see in one's mind\"),\n", " ('project', \"imagine; conceive of; see in one's mind\"),\n", - " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", " ('take to', 'have a fancy or particular liking or desire for'),\n", - " ('picture', \"imagine; conceive of; see in one's mind\"),\n", + " ('go for', 'have a fancy or particular liking or desire for'),\n", + " ('image', \"imagine; conceive of; see in one's mind\"),\n", " ('envision', \"imagine; conceive of; see in one's mind\")]},\n", " {'answer': 'fancy',\n", " 'hint': 'synonyms for fancy',\n", " 'clues': [('see', \"imagine; conceive of; see in one's mind\"),\n", - " ('image', \"imagine; conceive of; see in one's mind\"),\n", + " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", " ('figure', \"imagine; conceive of; see in one's mind\"),\n", - " ('go for', 'have a fancy or particular liking or desire for'),\n", + " ('picture', \"imagine; conceive of; see in one's mind\"),\n", " ('project', \"imagine; conceive of; see in one's mind\"),\n", - " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", " ('take to', 'have a fancy or particular liking or desire for'),\n", - " ('picture', \"imagine; conceive of; see in one's mind\"),\n", + " ('go for', 'have a fancy or particular liking or desire for'),\n", + " ('image', \"imagine; conceive of; see in one's mind\"),\n", " ('envision', \"imagine; conceive of; see in one's mind\")]},\n", " {'answer': 'farming',\n", " 'hint': 'synonyms for farming',\n", @@ -17234,3020 +17243,3033 @@ " 'cultivate by growing, often involving improvements by means of agricultural techniques')]},\n", " {'answer': 'fascinated',\n", " 'hint': 'synonyms for fascinated',\n", - " 'clues': [('fascinate',\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", + " ('grip',\n", + " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", + " ('transfix',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('intrigue', 'cause to be interested or curious'),\n", " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", + " ('intrigue', 'cause to be interested or curious'),\n", " ('spellbind',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored'),\n", - " ('transfix',\n", - " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('charm', 'attract; cause to be enamored'),\n", - " ('grip',\n", - " 'to render motionless, as with a fixed stare or by arousing terror or awe')]},\n", + " ('charm', 'attract; cause to be enamored')]},\n", " {'answer': 'fascinating',\n", " 'hint': 'synonyms for fascinating',\n", - " 'clues': [('fascinate',\n", + " 'clues': [('catch', 'attract; cause to be enamored'),\n", + " ('bewitch', 'attract; cause to be enamored'),\n", + " ('fascinate', 'attract; cause to be enamored'),\n", + " ('enamor', 'attract; cause to be enamored'),\n", + " ('grip',\n", + " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", + " ('transfix',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('trance', 'attract; cause to be enamored'),\n", - " ('intrigue', 'cause to be interested or curious'),\n", " ('becharm', 'attract; cause to be enamored'),\n", - " ('enchant', 'attract; cause to be enamored'),\n", + " ('intrigue', 'cause to be interested or curious'),\n", " ('spellbind',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('enamour', 'attract; cause to be enamored'),\n", + " ('captivate', 'attract; cause to be enamored'),\n", + " ('trance', 'attract; cause to be enamored'),\n", " ('beguile', 'attract; cause to be enamored'),\n", + " ('enchant', 'attract; cause to be enamored'),\n", " ('capture', 'attract; cause to be enamored'),\n", - " ('catch', 'attract; cause to be enamored'),\n", - " ('captivate', 'attract; cause to be enamored'),\n", - " ('bewitch', 'attract; cause to be enamored'),\n", - " ('transfix',\n", - " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('charm', 'attract; cause to be enamored'),\n", - " ('grip',\n", - " 'to render motionless, as with a fixed stare or by arousing terror or awe')]},\n", + " ('charm', 'attract; cause to be enamored')]},\n", " {'answer': 'fastened',\n", " 'hint': 'synonyms for fastened',\n", - " 'clues': [('fasten', 'make tight or tighter'),\n", + " 'clues': [('secure', 'cause to be firmly attached'),\n", + " ('fasten', 'become fixed or fastened'),\n", " ('tighten', 'make tight or tighter'),\n", - " ('secure', 'cause to be firmly attached'),\n", " ('fix', 'cause to be firmly attached')]},\n", " {'answer': 'fat',\n", " 'hint': 'synonyms for fat',\n", - " 'clues': [('flesh out', 'make fat or plump'),\n", + " 'clues': [('plump', 'make fat or plump'),\n", " ('fatten up', 'make fat or plump'),\n", - " ('plump out', 'make fat or plump'),\n", + " ('flesh out', 'make fat or plump'),\n", " ('fatten out', 'make fat or plump'),\n", " ('fill out', 'make fat or plump'),\n", - " ('fatten', 'make fat or plump'),\n", - " ('plump', 'make fat or plump')]},\n", + " ('plump out', 'make fat or plump'),\n", + " ('fatten', 'make fat or plump')]},\n", " {'answer': 'fated',\n", " 'hint': 'synonyms for fated',\n", - " 'clues': [('flesh out', 'make fat or plump'),\n", + " 'clues': [('plump', 'make fat or plump'),\n", " ('fatten up', 'make fat or plump'),\n", - " ('doom', 'decree or designate beforehand'),\n", - " ('plump out', 'make fat or plump'),\n", - " ('fat', 'make fat or plump'),\n", + " ('flesh out', 'make fat or plump'),\n", + " ('fatten out', 'make fat or plump'),\n", " ('fill out', 'make fat or plump'),\n", + " ('fat', 'make fat or plump'),\n", " ('fatten', 'make fat or plump'),\n", - " ('designate', 'decree or designate beforehand'),\n", - " ('fatten out', 'make fat or plump'),\n", + " ('plump out', 'make fat or plump'),\n", " ('destine', 'decree or designate beforehand'),\n", - " ('plump', 'make fat or plump')]},\n", + " ('designate', 'decree or designate beforehand'),\n", + " ('doom', 'decree or designate beforehand')]},\n", " {'answer': 'fatigued',\n", " 'hint': 'synonyms for fatigued',\n", - " 'clues': [('tire',\n", + " 'clues': [('weary',\n", " 'lose interest or become bored with something or somebody'),\n", + " ('tire', 'lose interest or become bored with something or somebody'),\n", " ('wear upon',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", + " ('wear out',\n", + " 'exhaust or get tired through overuse or great strain or stress'),\n", " ('outwear',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", " ('fag out',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('weary', 'lose interest or become bored with something or somebody'),\n", + " ('wear down',\n", + " 'exhaust or get tired through overuse or great strain or stress'),\n", + " ('jade', 'lose interest or become bored with something or somebody'),\n", " ('fatigue', 'lose interest or become bored with something or somebody'),\n", " ('fag', 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('wear out',\n", - " 'exhaust or get tired through overuse or great strain or stress'),\n", " ('tire out',\n", " 'exhaust or get tired through overuse or great strain or stress'),\n", - " ('jade', 'lose interest or become bored with something or somebody'),\n", - " ('wear down',\n", - " 'exhaust or get tired through overuse or great strain or stress'),\n", " ('pall', 'lose interest or become bored with something or somebody')]},\n", " {'answer': 'fattened',\n", " 'hint': 'synonyms for fattened',\n", - " 'clues': [('flesh out', 'make fat or plump'),\n", + " 'clues': [('plump', 'make fat or plump'),\n", " ('fatten up', 'make fat or plump'),\n", - " ('plump out', 'make fat or plump'),\n", - " ('fat', 'make fat or plump'),\n", + " ('flesh out', 'make fat or plump'),\n", + " ('fatten out', 'make fat or plump'),\n", " ('fill out', 'make fat or plump'),\n", - " ('fatten', 'make fat or plump'),\n", - " ('plump', 'make fat or plump'),\n", - " ('fatten out', 'make fat or plump')]},\n", + " ('fat', 'make fat or plump'),\n", + " ('plump out', 'make fat or plump'),\n", + " ('fatten', 'make fat or plump')]},\n", " {'answer': 'fattening',\n", " 'hint': 'synonyms for fattening',\n", - " 'clues': [('flesh out', 'make fat or plump'),\n", + " 'clues': [('plump', 'make fat or plump'),\n", " ('fatten up', 'make fat or plump'),\n", - " ('plump out', 'make fat or plump'),\n", - " ('fat', 'make fat or plump'),\n", + " ('flesh out', 'make fat or plump'),\n", + " ('fatten out', 'make fat or plump'),\n", " ('fill out', 'make fat or plump'),\n", - " ('fatten', 'make fat or plump'),\n", - " ('plump', 'make fat or plump'),\n", - " ('fatten out', 'make fat or plump')]},\n", + " ('fat', 'make fat or plump'),\n", + " ('plump out', 'make fat or plump'),\n", + " ('fatten', 'make fat or plump')]},\n", " {'answer': 'fawning',\n", " 'hint': 'synonyms for fawning',\n", - " 'clues': [('cringe', 'show submission or fear'),\n", - " ('kotow', 'try to gain favor by cringing or flattering'),\n", - " ('bootlick', 'try to gain favor by cringing or flattering'),\n", + " 'clues': [('fawn', 'show submission or fear'),\n", + " ('cower', 'show submission or fear'),\n", + " ('kowtow', 'try to gain favor by cringing or flattering'),\n", + " ('truckle', 'try to gain favor by cringing or flattering'),\n", + " ('suck up', 'try to gain favor by cringing or flattering'),\n", + " ('cringe', 'show submission or fear'),\n", " ('toady', 'try to gain favor by cringing or flattering'),\n", + " ('bootlick', 'try to gain favor by cringing or flattering'),\n", " ('creep', 'show submission or fear'),\n", " ('grovel', 'show submission or fear'),\n", - " ('suck up', 'try to gain favor by cringing or flattering'),\n", - " ('cower', 'show submission or fear'),\n", - " ('truckle', 'try to gain favor by cringing or flattering'),\n", - " ('crawl', 'show submission or fear'),\n", - " ('fawn', 'try to gain favor by cringing or flattering')]},\n", + " ('crawl', 'show submission or fear')]},\n", " {'answer': 'fazed',\n", " 'hint': 'synonyms for fazed',\n", - " 'clues': [('unnerve', 'disturb the composure of'),\n", - " ('enervate', 'disturb the composure of'),\n", + " 'clues': [('faze', 'disturb the composure of'),\n", " ('unsettle', 'disturb the composure of'),\n", - " ('faze', 'disturb the composure of')]},\n", + " ('unnerve', 'disturb the composure of'),\n", + " ('enervate', 'disturb the composure of')]},\n", " {'answer': 'featured',\n", " 'hint': 'synonyms for featured',\n", - " 'clues': [('feature',\n", - " 'wear or display in an ostentatious or proud manner'),\n", - " ('have', 'have as a feature'),\n", - " ('boast', 'wear or display in an ostentatious or proud manner'),\n", - " ('sport', 'wear or display in an ostentatious or proud manner')]},\n", + " 'clues': [('have', 'have as a feature'),\n", + " ('feature', 'have as a feature'),\n", + " ('sport', 'wear or display in an ostentatious or proud manner'),\n", + " ('boast', 'wear or display in an ostentatious or proud manner')]},\n", " {'answer': 'feigned',\n", " 'hint': 'synonyms for feigned',\n", - " 'clues': [('pretend', 'make believe with the intent to deceive'),\n", - " ('sham', 'make a pretence of'),\n", - " ('affect', 'make believe with the intent to deceive'),\n", + " 'clues': [('dissemble', 'make believe with the intent to deceive'),\n", " ('assume', 'make a pretence of'),\n", + " ('sham', 'make a pretence of'),\n", + " ('feign', 'make believe with the intent to deceive'),\n", + " ('pretend', 'make believe with the intent to deceive'),\n", " ('simulate', 'make a pretence of'),\n", - " ('feign', 'make a pretence of'),\n", - " ('dissemble', 'make believe with the intent to deceive')]},\n", + " ('affect', 'make believe with the intent to deceive')]},\n", " {'answer': 'fell',\n", " 'hint': 'synonyms for fell',\n", - " 'clues': [('vanish', 'pass away rapidly'),\n", - " ('come', 'come under, be classified or included'),\n", - " ('fall', 'be captured'),\n", - " ('cut down', 'cause to fall by or as if by delivering a blow'),\n", - " ('hang', 'fall or flow in a certain way'),\n", - " ('accrue', 'come into the possession of'),\n", - " ('devolve', 'be inherited by'),\n", - " ('descend', 'move downward and lower, but not necessarily all the way'),\n", - " ('pass', 'be inherited by'),\n", - " ('go down', 'move downward and lower, but not necessarily all the way'),\n", - " ('come down', 'fall from clouds'),\n", - " ('strike', 'touch or seem as if touching visually or audibly'),\n", - " ('light', 'fall to somebody by assignment or lot'),\n", + " 'clues': [('fall', 'suffer defeat, failure, or ruin'),\n", " ('flow', 'fall or flow in a certain way'),\n", - " ('settle', 'come as if by falling'),\n", + " ('decrease', 'decrease in size, extent, or range'),\n", " ('fly', 'pass away rapidly'),\n", + " ('shine', 'touch or seem as if touching visually or audibly'),\n", + " ('fall down', 'lose an upright position suddenly'),\n", + " ('come down', 'fall from clouds'),\n", + " ('settle', 'come as if by falling'),\n", + " ('diminish', 'decrease in size, extent, or range'),\n", + " ('devolve', 'be inherited by'),\n", + " ('precipitate', 'fall from clouds'),\n", + " ('pass', 'be inherited by'),\n", " ('return', 'be inherited by'),\n", + " ('descend', 'come as if by falling'),\n", + " ('accrue', 'come into the possession of'),\n", + " ('lessen', 'decrease in size, extent, or range'),\n", + " ('go down', 'move downward and lower, but not necessarily all the way'),\n", + " ('come', 'come under, be classified or included'),\n", " ('drop', 'cause to fall by or as if by delivering a blow'),\n", " ('strike down', 'cause to fall by or as if by delivering a blow'),\n", - " ('lessen', 'decrease in size, extent, or range'),\n", - " ('diminish', 'decrease in size, extent, or range'),\n", - " ('decrease', 'decrease in size, extent, or range'),\n", - " ('shine', 'touch or seem as if touching visually or audibly'),\n", - " ('fall down', 'lose an upright position suddenly'),\n", - " ('precipitate', 'fall from clouds')]},\n", + " ('light', 'fall to somebody by assignment or lot'),\n", + " ('hang', 'fall or flow in a certain way'),\n", + " ('vanish', 'pass away rapidly'),\n", + " ('strike', 'touch or seem as if touching visually or audibly'),\n", + " ('cut down', 'cause to fall by or as if by delivering a blow')]},\n", " {'answer': 'felted',\n", " 'hint': 'synonyms for felted',\n", - " 'clues': [('felt', 'mat together and make felt-like'),\n", + " 'clues': [('felt', 'change texture so as to become matted and felt-like'),\n", + " ('matt-up', 'change texture so as to become matted and felt-like'),\n", " ('mat', 'change texture so as to become matted and felt-like'),\n", - " ('matte', 'change texture so as to become matted and felt-like'),\n", " ('mat up', 'change texture so as to become matted and felt-like'),\n", " ('felt up', 'change texture so as to become matted and felt-like'),\n", - " ('matt-up', 'change texture so as to become matted and felt-like')]},\n", + " ('matte', 'change texture so as to become matted and felt-like')]},\n", " {'answer': 'fetching',\n", " 'hint': 'synonyms for fetching',\n", - " 'clues': [('bring', 'be sold for a certain price'),\n", + " 'clues': [('fetch', 'take away or remove'),\n", " ('get', 'go or come after and bring or take back'),\n", - " ('convey', 'go or come after and bring or take back'),\n", " ('bring in', 'be sold for a certain price'),\n", - " ('fetch', 'take away or remove')]},\n", + " ('bring', 'be sold for a certain price'),\n", + " ('convey', 'go or come after and bring or take back')]},\n", " {'answer': 'fiddling',\n", " 'hint': 'synonyms for fiddling',\n", - " 'clues': [('tinker', 'try to fix or mend'),\n", - " ('fiddle',\n", + " 'clues': [('monkey',\n", " 'play around with or alter or falsify, usually secretively or dishonestly'),\n", - " ('monkey',\n", - " 'play around with or alter or falsify, usually secretively or dishonestly'),\n", - " ('goldbrick', \"avoid (one's assigned duties)\"),\n", - " ('toy', \"manipulate manually or in one's mind or imagination\"),\n", - " ('shrink from', \"avoid (one's assigned duties)\"),\n", " ('shirk', \"avoid (one's assigned duties)\"),\n", - " ('diddle', \"manipulate manually or in one's mind or imagination\"),\n", - " ('play', \"manipulate manually or in one's mind or imagination\"),\n", + " ('fiddle', 'play the violin or fiddle'),\n", + " ('tinker', 'try to fix or mend'),\n", + " ('toy', \"manipulate manually or in one's mind or imagination\"),\n", " ('tamper',\n", - " 'play around with or alter or falsify, usually secretively or dishonestly')]},\n", + " 'play around with or alter or falsify, usually secretively or dishonestly'),\n", + " ('play', \"manipulate manually or in one's mind or imagination\"),\n", + " ('diddle', \"manipulate manually or in one's mind or imagination\"),\n", + " ('shrink from', \"avoid (one's assigned duties)\"),\n", + " ('goldbrick', \"avoid (one's assigned duties)\")]},\n", " {'answer': 'fighting',\n", " 'hint': 'synonyms for fighting',\n", - " 'clues': [('defend', 'fight against or resist strongly'),\n", - " ('fight', 'make a strenuous or labored effort'),\n", - " ('push',\n", - " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('campaign',\n", + " 'clues': [('crusade',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('contend', 'be engaged in a fight; carry on a fight'),\n", - " ('struggle', 'make a strenuous or labored effort'),\n", - " ('press',\n", + " ('fight',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", " ('agitate',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", - " ('oppose', 'fight against or resist strongly'),\n", - " ('crusade',\n", + " ('defend', 'fight against or resist strongly'),\n", + " ('push',\n", " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", " ('fight down', 'fight against or resist strongly'),\n", - " ('fight back', 'fight against or resist strongly')]},\n", + " ('press',\n", + " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", + " ('campaign',\n", + " 'exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for'),\n", + " ('fight back', 'fight against or resist strongly'),\n", + " ('struggle', 'be engaged in a fight; carry on a fight'),\n", + " ('contend', 'be engaged in a fight; carry on a fight'),\n", + " ('oppose', 'fight against or resist strongly')]},\n", " {'answer': 'figured',\n", " 'hint': 'synonyms for figured',\n", - " 'clues': [('fancy', \"imagine; conceive of; see in one's mind\"),\n", - " ('count on', 'judge to be probable'),\n", - " ('estimate', 'judge to be probable'),\n", - " ('enter', 'be or play a part of or in'),\n", - " ('work out', 'make a mathematical calculation or computation'),\n", - " ('project', \"imagine; conceive of; see in one's mind\"),\n", - " ('calculate', 'make a mathematical calculation or computation'),\n", - " ('compute', 'make a mathematical calculation or computation'),\n", - " ('visualize', \"imagine; conceive of; see in one's mind\"),\n", - " ('reckon', 'make a mathematical calculation or computation'),\n", - " ('see', \"imagine; conceive of; see in one's mind\"),\n", - " ('figure', 'understand'),\n", + " 'clues': [('work out', 'make a mathematical calculation or computation'),\n", " ('cypher', 'make a mathematical calculation or computation'),\n", - " ('image', \"imagine; conceive of; see in one's mind\"),\n", " ('forecast', 'judge to be probable'),\n", + " ('figure', 'be or play a part of or in'),\n", " ('cipher', 'make a mathematical calculation or computation'),\n", + " ('enter', 'be or play a part of or in'),\n", + " ('image', \"imagine; conceive of; see in one's mind\"),\n", + " ('fancy', \"imagine; conceive of; see in one's mind\"),\n", + " ('visualise', \"imagine; conceive of; see in one's mind\"),\n", + " ('see', \"imagine; conceive of; see in one's mind\"),\n", + " ('compute', 'make a mathematical calculation or computation'),\n", + " ('reckon', 'make a mathematical calculation or computation'),\n", + " ('calculate', 'make a mathematical calculation or computation'),\n", " ('picture', \"imagine; conceive of; see in one's mind\"),\n", + " ('project', \"imagine; conceive of; see in one's mind\"),\n", + " ('count on', 'judge to be probable'),\n", + " ('estimate', 'judge to be probable'),\n", " ('envision', \"imagine; conceive of; see in one's mind\")]},\n", " {'answer': 'filled',\n", " 'hint': 'synonyms for filled',\n", - " 'clues': [('satiate', 'fill to satisfaction'),\n", + " 'clues': [('fill', 'assume, as of positions or roles'),\n", + " ('fulfill', 'fill or meet a want or need'),\n", + " ('fill up', 'make full, also in a metaphorical sense'),\n", + " ('occupy', 'occupy the whole of'),\n", + " ('sate', 'fill to satisfaction'),\n", " ('make full', 'make full, also in a metaphorical sense'),\n", - " ('fulfil', 'fill or meet a want or need'),\n", " ('meet', 'fill or meet a want or need'),\n", - " ('fill up', 'eat until one is sated'),\n", - " ('fill', 'eat until one is sated'),\n", - " ('satisfy', 'fill or meet a want or need'),\n", - " ('sate', 'fill to satisfaction'),\n", " ('take', 'assume, as of positions or roles'),\n", - " ('replete', 'fill to satisfaction'),\n", - " ('occupy', 'assume, as of positions or roles')]},\n", + " ('satisfy', 'fill or meet a want or need'),\n", + " ('satiate', 'fill to satisfaction'),\n", + " ('replete', 'fill to satisfaction')]},\n", " {'answer': 'finished',\n", " 'hint': 'synonyms for finished',\n", " 'clues': [('finish', 'come or bring to a finish or an end'),\n", - " ('wind up', 'finally be or do something'),\n", - " ('eat up', \"finish eating all the food on one's plate or on the table\"),\n", + " ('fetch up', 'finally be or do something'),\n", + " ('stop',\n", + " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", " ('end up', 'finally be or do something'),\n", + " ('eat up', \"finish eating all the food on one's plate or on the table\"),\n", " ('land up', 'finally be or do something'),\n", " ('cease',\n", " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", - " ('terminate',\n", + " ('end',\n", " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", " ('polish off',\n", " \"finish eating all the food on one's plate or on the table\"),\n", - " ('fetch up', 'finally be or do something'),\n", " ('complete', 'come or bring to a finish or an end'),\n", - " ('stop',\n", + " ('terminate',\n", " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical'),\n", " ('finish up', 'finally be or do something'),\n", - " ('end',\n", - " 'have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical')]},\n", + " ('wind up', 'finally be or do something')]},\n", " {'answer': 'fired',\n", " 'hint': 'synonyms for fired',\n", - " 'clues': [('fire', 'provide with fuel'),\n", + " 'clues': [('go off', 'go off or discharge'),\n", + " ('fire', 'bake in a kiln so as to harden'),\n", + " ('fuel', 'provide with fuel'),\n", " ('raise', 'call forth (emotions, feelings, and responses)'),\n", - " ('open fire', 'start firing a weapon'),\n", - " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('enkindle', 'call forth (emotions, feelings, and responses)'),\n", " ('terminate',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('burn', 'destroy by fire'),\n", - " ('go off', 'go off or discharge'),\n", - " ('fuel', 'provide with fuel'),\n", - " ('discharge', 'go off or discharge'),\n", - " ('force out',\n", - " 'terminate the employment of; discharge from an office or position'),\n", - " ('can',\n", + " ('give the axe',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('elicit', 'call forth (emotions, feelings, and responses)'),\n", - " ('give notice',\n", + " ('sack',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('displace',\n", + " ('discharge', 'cause to go off'),\n", + " ('arouse', 'call forth (emotions, feelings, and responses)'),\n", + " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('open fire', 'start firing a weapon'),\n", + " ('give the sack',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('dismiss',\n", + " ('evoke', 'call forth (emotions, feelings, and responses)'),\n", + " ('can',\n", " 'terminate the employment of; discharge from an office or position'),\n", " ('send away',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('kindle', 'call forth (emotions, feelings, and responses)'),\n", - " ('provoke', 'call forth (emotions, feelings, and responses)'),\n", - " ('give the sack',\n", + " ('burn', 'destroy by fire'),\n", + " ('burn down', 'destroy by fire'),\n", + " ('force out',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('arouse', 'call forth (emotions, feelings, and responses)'),\n", - " ('sack',\n", + " ('displace',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('give the axe',\n", + " ('give notice',\n", " 'terminate the employment of; discharge from an office or position'),\n", - " ('burn down', 'destroy by fire')]},\n", + " ('elicit', 'call forth (emotions, feelings, and responses)'),\n", + " ('dismiss',\n", + " 'terminate the employment of; discharge from an office or position')]},\n", " {'answer': 'fit',\n", " 'hint': 'synonyms for fit',\n", - " 'clues': [('gibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " 'clues': [('fit out',\n", + " 'provide with (something) usually for a specific purpose'),\n", " ('match', 'make correspond or harmonize'),\n", + " ('suit', 'be agreeable or acceptable to'),\n", + " ('go', 'be the right size or shape; fit correctly or as desired'),\n", + " ('outfit', 'provide with (something) usually for a specific purpose'),\n", " ('accommodate', 'be agreeable or acceptable to'),\n", - " ('meet', 'satisfy a condition or restriction'),\n", - " ('fit out', 'provide with (something) usually for a specific purpose'),\n", + " ('equip', 'provide with (something) usually for a specific purpose'),\n", " ('tally',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('equip', 'provide with (something) usually for a specific purpose'),\n", " ('check',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('go', 'be the right size or shape; fit correctly or as desired'),\n", - " ('outfit', 'provide with (something) usually for a specific purpose'),\n", " ('correspond',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('agree',\n", + " ('jibe',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('suit', 'be agreeable or acceptable to'),\n", + " ('gibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('meet', 'satisfy a condition or restriction'),\n", " ('conform to', 'satisfy a condition or restriction'),\n", - " ('jibe',\n", + " ('agree',\n", " 'be compatible, similar or consistent; coincide in their characteristics')]},\n", " {'answer': 'fitted',\n", " 'hint': 'synonyms for fitted',\n", - " 'clues': [('gibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('match',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('fit out', 'provide with (something) usually for a specific purpose'),\n", - " ('tally',\n", + " 'clues': [('fit out',\n", + " 'provide with (something) usually for a specific purpose'),\n", + " ('match', 'make correspond or harmonize'),\n", + " ('fit',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('go', 'be the right size or shape; fit correctly or as desired'),\n", " ('equip', 'provide with (something) usually for a specific purpose'),\n", - " ('fit', 'make correspond or harmonize'),\n", + " ('correspond',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('check',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('go', 'be the right size or shape; fit correctly or as desired'),\n", - " ('outfit', 'provide with (something) usually for a specific purpose'),\n", + " ('conform to', 'satisfy a condition or restriction'),\n", " ('suit', 'be agreeable or acceptable to'),\n", - " ('agree',\n", + " ('outfit', 'provide with (something) usually for a specific purpose'),\n", + " ('accommodate', 'be agreeable or acceptable to'),\n", + " ('tally',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('conform to', 'satisfy a condition or restriction'),\n", " ('jibe',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('accommodate', 'be agreeable or acceptable to'),\n", + " ('gibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('meet', 'satisfy a condition or restriction'),\n", - " ('correspond',\n", + " ('agree',\n", " 'be compatible, similar or consistent; coincide in their characteristics')]},\n", " {'answer': 'fitting',\n", " 'hint': 'synonyms for fitting',\n", - " 'clues': [('gibe',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('match',\n", - " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('fit out', 'provide with (something) usually for a specific purpose'),\n", - " ('tally',\n", + " 'clues': [('fit out',\n", + " 'provide with (something) usually for a specific purpose'),\n", + " ('match', 'make correspond or harmonize'),\n", + " ('fit',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", + " ('go', 'be the right size or shape; fit correctly or as desired'),\n", " ('equip', 'provide with (something) usually for a specific purpose'),\n", - " ('fit', 'make correspond or harmonize'),\n", + " ('correspond',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('check',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('go', 'be the right size or shape; fit correctly or as desired'),\n", - " ('outfit', 'provide with (something) usually for a specific purpose'),\n", + " ('conform to', 'satisfy a condition or restriction'),\n", " ('suit', 'be agreeable or acceptable to'),\n", - " ('agree',\n", + " ('outfit', 'provide with (something) usually for a specific purpose'),\n", + " ('accommodate', 'be agreeable or acceptable to'),\n", + " ('tally',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('conform to', 'satisfy a condition or restriction'),\n", " ('jibe',\n", " 'be compatible, similar or consistent; coincide in their characteristics'),\n", - " ('accommodate', 'be agreeable or acceptable to'),\n", + " ('gibe',\n", + " 'be compatible, similar or consistent; coincide in their characteristics'),\n", " ('meet', 'satisfy a condition or restriction'),\n", - " ('correspond',\n", + " ('agree',\n", " 'be compatible, similar or consistent; coincide in their characteristics')]},\n", " {'answer': 'fixed',\n", " 'hint': 'synonyms for fixed',\n", - " 'clues': [('fix', 'make infertile'),\n", - " ('ready', 'prepare for eating by applying heat'),\n", - " ('determine', 'decide upon or fix definitely'),\n", - " ('fixate', 'make fixed, stable or stationary'),\n", - " ('desex', 'make infertile'),\n", - " ('cook', 'prepare for eating by applying heat'),\n", - " ('prepare',\n", + " 'clues': [('fasten', 'cause to be firmly attached'),\n", + " ('desexualise', 'make infertile'),\n", + " ('fix', 'take vengeance on or get even'),\n", + " ('ready',\n", + " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n", + " ('set up',\n", " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n", - " ('bushel',\n", - " 'restore by replacing a part or putting together what is torn or broken'),\n", - " ('furbish up',\n", - " 'restore by replacing a part or putting together what is torn or broken'),\n", " ('specify', 'decide upon or fix definitely'),\n", - " ('set', 'decide upon or fix definitely'),\n", - " ('mend',\n", + " ('deposit', 'put (something somewhere) firmly'),\n", + " ('doctor',\n", " 'restore by replacing a part or putting together what is torn or broken'),\n", - " ('sterilise', 'make infertile'),\n", + " ('set',\n", + " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n", + " ('posit', 'put (something somewhere) firmly'),\n", " ('repair',\n", " 'restore by replacing a part or putting together what is torn or broken'),\n", - " ('desexualise', 'make infertile'),\n", - " ('pay off', 'take vengeance on or get even'),\n", + " ('sterilize', 'make infertile'),\n", + " ('determine', 'decide upon or fix definitely'),\n", + " ('define', 'decide upon or fix definitely'),\n", + " ('limit', 'decide upon or fix definitely'),\n", + " ('touch on',\n", + " 'restore by replacing a part or putting together what is torn or broken'),\n", + " ('furbish up',\n", + " 'restore by replacing a part or putting together what is torn or broken'),\n", + " ('get', 'take vengeance on or get even'),\n", " ('unsex', 'make infertile'),\n", - " ('set up',\n", - " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n", - " ('posit', 'put (something somewhere) firmly'),\n", - " ('gear up',\n", + " ('prepare',\n", " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc'),\n", + " ('fixate', 'make fixed, stable or stationary'),\n", + " ('desex', 'make infertile'),\n", " ('restore',\n", " 'restore by replacing a part or putting together what is torn or broken'),\n", - " ('get', 'take vengeance on or get even'),\n", - " ('make', 'prepare for eating by applying heat'),\n", - " ('fasten', 'cause to be firmly attached'),\n", + " ('cook', 'prepare for eating by applying heat'),\n", + " ('situate', 'put (something somewhere) firmly'),\n", + " ('pay off', 'take vengeance on or get even'),\n", " ('secure', 'cause to be firmly attached'),\n", - " ('touch on',\n", + " ('bushel',\n", " 'restore by replacing a part or putting together what is torn or broken'),\n", - " ('situate', 'put (something somewhere) firmly'),\n", - " ('deposit', 'put (something somewhere) firmly'),\n", - " ('limit', 'decide upon or fix definitely'),\n", - " ('doctor',\n", + " ('mend',\n", " 'restore by replacing a part or putting together what is torn or broken'),\n", + " ('make', 'prepare for eating by applying heat'),\n", " ('pay back', 'take vengeance on or get even'),\n", - " ('define', 'decide upon or fix definitely')]},\n", + " ('gear up',\n", + " 'make ready or suitable or equip in advance for a particular purpose or for some use, event, etc')]},\n", " {'answer': 'fizzing',\n", " 'hint': 'synonyms for fizzing',\n", - " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n", + " 'clues': [('froth', 'become bubbly or frothy or foaming'),\n", + " ('sparkle', 'become bubbly or frothy or foaming'),\n", + " ('form bubbles', 'become bubbly or frothy or foaming'),\n", " ('fizz', 'become bubbly or frothy or foaming'),\n", - " ('froth', 'become bubbly or frothy or foaming'),\n", " ('effervesce', 'become bubbly or frothy or foaming'),\n", - " ('sparkle', 'become bubbly or frothy or foaming'),\n", " ('foam', 'become bubbly or frothy or foaming')]},\n", " {'answer': 'flagging',\n", " 'hint': 'synonyms for flagging',\n", - " 'clues': [('swag',\n", - " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n", + " 'clues': [('flag', 'decorate with flags'),\n", " ('ease up', 'become less intense'),\n", - " ('droop',\n", + " ('swag',\n", " 'droop, sink, or settle from or as if from pressure or loss of tautness'),\n", - " ('flag', 'provide with a flag'),\n", " ('slacken off', 'become less intense'),\n", - " ('ease off', 'become less intense')]},\n", + " ('ease off', 'become less intense'),\n", + " ('droop',\n", + " 'droop, sink, or settle from or as if from pressure or loss of tautness')]},\n", " {'answer': 'flaring',\n", " 'hint': 'synonyms for flaring',\n", - " 'clues': [('flare', 'erupt or intensify suddenly'),\n", - " ('erupt', 'erupt or intensify suddenly'),\n", - " ('burn up', 'burn brightly'),\n", - " ('flare out', 'become flared and widen, usually at one end'),\n", - " ('flame up', 'burn brightly'),\n", - " ('irrupt', 'erupt or intensify suddenly'),\n", + " 'clues': [('flare', 'burn brightly'),\n", + " ('flame', 'shine with a sudden light'),\n", " ('burst out', 'erupt or intensify suddenly'),\n", + " ('irrupt', 'erupt or intensify suddenly'),\n", + " ('burn up', 'burn brightly'),\n", " ('blaze up', 'burn brightly'),\n", + " ('flare out', 'become flared and widen, usually at one end'),\n", " ('break open', 'erupt or intensify suddenly'),\n", - " ('flame', 'shine with a sudden light')]},\n", + " ('flame up', 'burn brightly'),\n", + " ('erupt', 'erupt or intensify suddenly')]},\n", " {'answer': 'flash',\n", " 'hint': 'synonyms for flash',\n", - " 'clues': [('ostentate',\n", - " 'display proudly; act ostentatiously or pretentiously'),\n", - " ('dart', 'run or move very quickly or hastily'),\n", + " 'clues': [('scoot', 'run or move very quickly or hastily'),\n", + " ('show off', 'display proudly; act ostentatiously or pretentiously'),\n", " ('blink', 'gleam or glow intermittently'),\n", - " ('swank', 'display proudly; act ostentatiously or pretentiously'),\n", " ('flaunt', 'display proudly; act ostentatiously or pretentiously'),\n", - " ('show off', 'display proudly; act ostentatiously or pretentiously'),\n", - " ('scoot', 'run or move very quickly or hastily'),\n", - " ('scud', 'run or move very quickly or hastily'),\n", - " ('winkle', 'gleam or glow intermittently'),\n", " ('shoot', 'run or move very quickly or hastily'),\n", " ('dash', 'run or move very quickly or hastily'),\n", - " ('wink', 'gleam or glow intermittently')]},\n", + " ('scud', 'run or move very quickly or hastily'),\n", + " ('swank', 'display proudly; act ostentatiously or pretentiously'),\n", + " ('dart', 'run or move very quickly or hastily'),\n", + " ('wink', 'gleam or glow intermittently'),\n", + " ('ostentate', 'display proudly; act ostentatiously or pretentiously'),\n", + " ('twinkle', 'gleam or glow intermittently')]},\n", " {'answer': 'flecked',\n", " 'hint': 'synonyms for flecked',\n", - " 'clues': [('spot', 'make a spot or mark onto'),\n", - " ('blot', 'make a spot or mark onto'),\n", - " ('blob', 'make a spot or mark onto'),\n", - " ('fleck', 'make a spot or mark onto')]},\n", + " 'clues': [('blot', 'make a spot or mark onto'),\n", + " ('spot', 'make a spot or mark onto'),\n", + " ('fleck', 'make a spot or mark onto'),\n", + " ('blob', 'make a spot or mark onto')]},\n", " {'answer': 'fleet',\n", " 'hint': 'synonyms for fleet',\n", - " 'clues': [('pass off', 'disappear gradually'),\n", + " 'clues': [('fade', 'disappear gradually'),\n", " ('flit', 'move along rapidly and lightly; skim or dart'),\n", - " ('evanesce', 'disappear gradually'),\n", - " ('flutter', 'move along rapidly and lightly; skim or dart'),\n", " ('pass', 'disappear gradually'),\n", - " ('blow over', 'disappear gradually'),\n", " ('dart', 'move along rapidly and lightly; skim or dart'),\n", - " ('fade', 'disappear gradually')]},\n", + " ('evanesce', 'disappear gradually'),\n", + " ('pass off', 'disappear gradually'),\n", + " ('blow over', 'disappear gradually'),\n", + " ('flutter', 'move along rapidly and lightly; skim or dart')]},\n", " {'answer': 'fleeting',\n", " 'hint': 'synonyms for fleeting',\n", - " 'clues': [('pass off', 'disappear gradually'),\n", - " ('fleet', 'disappear gradually'),\n", + " 'clues': [('fade', 'disappear gradually'),\n", " ('flit', 'move along rapidly and lightly; skim or dart'),\n", - " ('evanesce', 'disappear gradually'),\n", - " ('flutter', 'move along rapidly and lightly; skim or dart'),\n", " ('pass', 'disappear gradually'),\n", - " ('blow over', 'disappear gradually'),\n", + " ('fleet', 'disappear gradually'),\n", " ('dart', 'move along rapidly and lightly; skim or dart'),\n", - " ('fade', 'disappear gradually')]},\n", + " ('evanesce', 'disappear gradually'),\n", + " ('pass off', 'disappear gradually'),\n", + " ('blow over', 'disappear gradually'),\n", + " ('flutter', 'move along rapidly and lightly; skim or dart')]},\n", " {'answer': 'flickering',\n", " 'hint': 'synonyms for flickering',\n", - " 'clues': [('flicker', 'move back and forth very rapidly'),\n", - " ('flick', 'shine unsteadily'),\n", + " 'clues': [('flicker', 'shine unsteadily'),\n", + " ('flick', 'flash intermittently'),\n", + " ('flitter', 'move back and forth very rapidly'),\n", " ('waver', 'move back and forth very rapidly'),\n", - " ('flutter', 'move back and forth very rapidly'),\n", " ('quiver', 'move back and forth very rapidly')]},\n", " {'answer': 'flip',\n", " 'hint': 'synonyms for flip',\n", - " 'clues': [('alternate',\n", - " 'reverse (a direction, attitude, or course of action)'),\n", - " ('toss', 'throw or toss with a light motion'),\n", - " ('twitch',\n", - " 'toss with a sharp movement so as to cause to turn over in the air'),\n", + " 'clues': [('flip out', 'react in an excited, delighted, or surprised way'),\n", + " ('throw', 'cause to go on or to be engaged or set in operation'),\n", " ('riffle', 'look through a book or other written material'),\n", + " ('turn over', 'turn upside down, or throw so as to reverse'),\n", + " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n", " ('riff', 'look through a book or other written material'),\n", - " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n", - " ('flip over', 'turn upside down, or throw so as to reverse'),\n", + " ('thumb', 'look through a book or other written material'),\n", " ('switch', 'reverse (a direction, attitude, or course of action)'),\n", - " ('throw', 'cause to go on or to be engaged or set in operation'),\n", + " ('toss', 'throw or toss with a light motion'),\n", " ('tack', 'reverse (a direction, attitude, or course of action)'),\n", - " ('flip out', 'react in an excited, delighted, or surprised way'),\n", - " ('flip-flop', 'reverse (a direction, attitude, or course of action)'),\n", " ('flick', 'look through a book or other written material'),\n", - " ('thumb', 'look through a book or other written material'),\n", " ('leaf', 'look through a book or other written material'),\n", - " ('turn over', 'turn upside down, or throw so as to reverse'),\n", + " ('twitch',\n", + " 'toss with a sharp movement so as to cause to turn over in the air'),\n", + " ('interchange', 'reverse (a direction, attitude, or course of action)'),\n", + " ('alternate', 'reverse (a direction, attitude, or course of action)'),\n", " ('pitch', 'throw or toss with a light motion'),\n", + " ('flip over', 'turn upside down, or throw so as to reverse'),\n", " ('sky', 'throw or toss with a light motion')]},\n", " {'answer': 'floating',\n", " 'hint': 'synonyms for floating',\n", - " 'clues': [('be adrift', 'be in motion due to some air or water current'),\n", - " ('float', 'set afloat'),\n", - " ('swim',\n", - " 'be afloat either on or below a liquid surface and not sink to the bottom'),\n", + " 'clues': [('float',\n", + " 'convert from a fixed point notation to a floating point notation'),\n", " ('drift', 'be in motion due to some air or water current'),\n", - " ('blow', 'be in motion due to some air or water current')]},\n", + " ('be adrift', 'be in motion due to some air or water current'),\n", + " ('blow', 'be in motion due to some air or water current'),\n", + " ('swim',\n", + " 'be afloat either on or below a liquid surface and not sink to the bottom')]},\n", " {'answer': 'flooded',\n", " 'hint': 'synonyms for flooded',\n", - " 'clues': [('flood', 'cover with liquid, usually water'),\n", - " ('swamp', 'fill quickly beyond capacity; as with a liquid'),\n", + " 'clues': [('swamp', 'fill quickly beyond capacity; as with a liquid'),\n", " ('glut', 'supply with an excess of'),\n", + " ('flood', 'become filled to overflowing'),\n", " ('inundate', 'fill quickly beyond capacity; as with a liquid'),\n", - " ('oversupply', 'supply with an excess of'),\n", - " ('deluge', 'fill quickly beyond capacity; as with a liquid')]},\n", + " ('deluge', 'fill quickly beyond capacity; as with a liquid'),\n", + " ('oversupply', 'supply with an excess of')]},\n", " {'answer': 'floored',\n", " 'hint': 'synonyms for floored',\n", - " 'clues': [('blow out of the water',\n", - " \"surprise greatly; knock someone's socks off\"),\n", + " 'clues': [('take aback', \"surprise greatly; knock someone's socks off\"),\n", " ('floor', 'knock down with force'),\n", - " ('coldcock', 'knock down with force'),\n", - " ('deck', 'knock down with force'),\n", - " ('take aback', \"surprise greatly; knock someone's socks off\"),\n", " ('dump', 'knock down with force'),\n", - " ('ball over', \"surprise greatly; knock someone's socks off\"),\n", + " ('deck', 'knock down with force'),\n", + " ('shock', \"surprise greatly; knock someone's socks off\"),\n", + " ('blow out of the water', \"surprise greatly; knock someone's socks off\"),\n", + " ('coldcock', 'knock down with force'),\n", " ('knock down', 'knock down with force'),\n", - " ('shock', \"surprise greatly; knock someone's socks off\")]},\n", + " ('ball over', \"surprise greatly; knock someone's socks off\")]},\n", " {'answer': 'flourishing',\n", " 'hint': 'synonyms for flourishing',\n", - " 'clues': [('fly high',\n", - " \"make steady progress; be at the high point in one's career or reach a high point in historical significance or importance\"),\n", - " ('flourish', 'move or swing back and forth'),\n", + " 'clues': [('flourish', 'grow vigorously'),\n", + " ('wave', 'move or swing back and forth'),\n", + " ('thrive', 'grow vigorously'),\n", + " ('brandish', 'move or swing back and forth'),\n", " ('prosper',\n", " \"make steady progress; be at the high point in one's career or reach a high point in historical significance or importance\"),\n", - " ('thrive',\n", + " ('fly high',\n", " \"make steady progress; be at the high point in one's career or reach a high point in historical significance or importance\"),\n", " ('expand', 'grow vigorously'),\n", - " ('wave', 'move or swing back and forth'),\n", - " ('brandish', 'move or swing back and forth'),\n", " ('boom', 'grow vigorously')]},\n", " {'answer': 'flowing',\n", " 'hint': 'synonyms for flowing',\n", - " 'clues': [('flow', 'move or progress freely as if in a stream'),\n", - " ('hang', 'fall or flow in a certain way'),\n", - " ('menstruate', 'undergo menstruation'),\n", - " ('feed', 'move along, of liquids'),\n", + " 'clues': [('feed', 'move along, of liquids'),\n", + " ('flow', 'undergo menstruation'),\n", " ('run', 'move along, of liquids'),\n", - " ('course', 'move along, of liquids'),\n", " ('flux', 'move or progress freely as if in a stream'),\n", + " ('course', 'move along, of liquids'),\n", + " ('menstruate', 'undergo menstruation'),\n", + " ('hang', 'fall or flow in a certain way'),\n", " ('fall', 'fall or flow in a certain way')]},\n", " {'answer': 'flush',\n", " 'hint': 'synonyms for flush',\n", - " 'clues': [('even', 'make level or straight'),\n", - " ('purge', 'rinse, clean, or empty with a liquid'),\n", - " ('sluice', 'irrigate with water from a sluice'),\n", + " 'clues': [('sluice', 'irrigate with water from a sluice'),\n", + " ('blush', 'turn red, as if in embarrassment or shame'),\n", + " ('even', 'make level or straight'),\n", " ('redden', 'turn red, as if in embarrassment or shame'),\n", + " ('scour', 'rinse, clean, or empty with a liquid'),\n", " ('even out', 'make level or straight'),\n", - " ('blush', 'turn red, as if in embarrassment or shame'),\n", + " ('crimson', 'turn red, as if in embarrassment or shame'),\n", " ('level', 'make level or straight'),\n", - " ('scour', 'rinse, clean, or empty with a liquid'),\n", - " ('crimson', 'turn red, as if in embarrassment or shame')]},\n", + " ('purge', 'rinse, clean, or empty with a liquid')]},\n", " {'answer': 'flushed',\n", " 'hint': 'synonyms for flushed',\n", - " 'clues': [('even', 'make level or straight'),\n", - " ('purge', 'rinse, clean, or empty with a liquid'),\n", + " 'clues': [('flush', 'turn red, as if in embarrassment or shame'),\n", " ('sluice', 'irrigate with water from a sluice'),\n", - " ('flush', 'cause to flow or flood with or as if with water'),\n", + " ('blush', 'turn red, as if in embarrassment or shame'),\n", + " ('even', 'make level or straight'),\n", " ('redden', 'turn red, as if in embarrassment or shame'),\n", " ('even out', 'make level or straight'),\n", - " ('blush', 'turn red, as if in embarrassment or shame'),\n", - " ('level', 'make level or straight'),\n", " ('scour', 'rinse, clean, or empty with a liquid'),\n", - " ('crimson', 'turn red, as if in embarrassment or shame')]},\n", + " ('level', 'make level or straight'),\n", + " ('crimson', 'turn red, as if in embarrassment or shame'),\n", + " ('purge', 'rinse, clean, or empty with a liquid')]},\n", " {'answer': 'fly',\n", " 'hint': 'synonyms for fly',\n", - " 'clues': [('vanish', 'decrease rapidly and disappear'),\n", - " ('pilot', 'operate an airplane'),\n", + " 'clues': [('aviate', 'operate an airplane'),\n", + " ('wing', 'travel through the air; be airborne'),\n", " ('fell', 'pass away rapidly'),\n", - " ('vaporize', 'decrease rapidly and disappear'),\n", - " ('take flight', 'run away quickly'),\n", - " ('aviate', 'operate an airplane'),\n", + " ('pilot', 'operate an airplane'),\n", " ('flee', 'run away quickly'),\n", - " ('wing', 'travel through the air; be airborne')]},\n", + " ('take flight', 'run away quickly'),\n", + " ('vanish', 'decrease rapidly and disappear'),\n", + " ('vaporize', 'decrease rapidly and disappear')]},\n", " {'answer': 'flying',\n", " 'hint': 'synonyms for flying',\n", - " 'clues': [('vanish', 'decrease rapidly and disappear'),\n", - " ('pilot', 'operate an airplane'),\n", - " ('fly', 'display in the air or cause to float'),\n", - " ('fell', 'pass away rapidly'),\n", + " 'clues': [('fly', 'operate an airplane'),\n", " ('take flight', 'run away quickly'),\n", " ('aviate', 'operate an airplane'),\n", - " ('flee', 'run away quickly'),\n", " ('wing', 'travel through the air; be airborne'),\n", + " ('fell', 'pass away rapidly'),\n", + " ('pilot', 'operate an airplane'),\n", + " ('flee', 'run away quickly'),\n", + " ('vanish', 'decrease rapidly and disappear'),\n", " ('vaporize', 'decrease rapidly and disappear')]},\n", " {'answer': 'foaming',\n", " 'hint': 'synonyms for foaming',\n", - " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n", + " 'clues': [('froth', 'become bubbly or frothy or foaming'),\n", + " ('sparkle', 'become bubbly or frothy or foaming'),\n", + " ('form bubbles', 'become bubbly or frothy or foaming'),\n", " ('fizz', 'become bubbly or frothy or foaming'),\n", - " ('froth', 'become bubbly or frothy or foaming'),\n", " ('effervesce', 'become bubbly or frothy or foaming'),\n", - " ('sparkle', 'become bubbly or frothy or foaming'),\n", " ('foam', 'become bubbly or frothy or foaming')]},\n", " {'answer': 'focused',\n", " 'hint': 'synonyms for focused',\n", - " 'clues': [('focalise', 'put (an image) into focus'),\n", - " ('concentrate', \"direct one's attention on something\"),\n", - " ('focus', 'put (an image) into focus'),\n", + " 'clues': [('focalize', 'become focussed or come into focus'),\n", + " ('focus',\n", + " 'bring into focus or alignment; to converge or cause to converge; of ideas or emotions'),\n", " ('sharpen', 'put (an image) into focus'),\n", - " ('centre', \"direct one's attention on something\"),\n", " ('concenter',\n", " 'bring into focus or alignment; to converge or cause to converge; of ideas or emotions'),\n", + " ('center', \"direct one's attention on something\"),\n", " ('pore', \"direct one's attention on something\"),\n", + " ('centre', \"direct one's attention on something\"),\n", " ('rivet', \"direct one's attention on something\"),\n", - " ('center', \"direct one's attention on something\")]},\n", + " ('concentrate', \"direct one's attention on something\")]},\n", " {'answer': 'focussed',\n", " 'hint': 'synonyms for focussed',\n", - " 'clues': [('focalise', 'put (an image) into focus'),\n", - " ('concentrate', \"direct one's attention on something\"),\n", - " ('focus', 'put (an image) into focus'),\n", + " 'clues': [('focalize', 'become focussed or come into focus'),\n", + " ('focus',\n", + " 'bring into focus or alignment; to converge or cause to converge; of ideas or emotions'),\n", " ('sharpen', 'put (an image) into focus'),\n", - " ('centre', \"direct one's attention on something\"),\n", " ('concenter',\n", " 'bring into focus or alignment; to converge or cause to converge; of ideas or emotions'),\n", + " ('center', \"direct one's attention on something\"),\n", " ('pore', \"direct one's attention on something\"),\n", + " ('centre', \"direct one's attention on something\"),\n", " ('rivet', \"direct one's attention on something\"),\n", - " ('center', \"direct one's attention on something\")]},\n", + " ('concentrate', \"direct one's attention on something\")]},\n", " {'answer': 'fogged',\n", " 'hint': 'synonyms for fogged',\n", - " 'clues': [('fog', 'make less visible or unclear'),\n", + " 'clues': [('haze over', 'make less visible or unclear'),\n", " ('becloud', 'make less visible or unclear'),\n", - " ('haze over', 'make less visible or unclear'),\n", - " ('obscure', 'make less visible or unclear'),\n", - " ('cloud', 'make less visible or unclear'),\n", " ('mist', 'make less visible or unclear'),\n", + " ('obscure', 'make less visible or unclear'),\n", " ('obnubilate', 'make less visible or unclear'),\n", + " ('fog', 'make less visible or unclear'),\n", + " ('cloud', 'make less visible or unclear'),\n", " ('befog', 'make less visible or unclear')]},\n", " {'answer': 'foiled',\n", " 'hint': 'synonyms for foiled',\n", - " 'clues': [('baffle',\n", + " 'clues': [('cross',\n", " 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('foil', 'enhance by contrast'),\n", + " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('foil', 'cover or back with foil'),\n", + " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('cross', 'hinder or prevent (the efforts, plans, or desires) of')]},\n", + " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of')]},\n", " {'answer': 'folding',\n", " 'hint': 'synonyms for folding',\n", - " 'clues': [('fold up', 'bend or lay so that one part covers the other'),\n", - " ('fold', 'become folded or folded up'),\n", + " 'clues': [('shut down', 'cease to operate or cause to cease operating'),\n", " ('pen up', 'confine in a fold, like sheep'),\n", - " ('shut down', 'cease to operate or cause to cease operating'),\n", - " ('close down', 'cease to operate or cause to cease operating'),\n", + " ('fold',\n", + " 'incorporate a food ingredient into a mixture by repeatedly turning it over without stirring or beating'),\n", " ('turn up', 'bend or lay so that one part covers the other'),\n", + " ('close down', 'cease to operate or cause to cease operating'),\n", " ('close', 'cease to operate or cause to cease operating'),\n", + " ('fold up', 'bend or lay so that one part covers the other'),\n", " ('close up', 'cease to operate or cause to cease operating')]},\n", " {'answer': 'following',\n", " 'hint': 'synonyms for following',\n", - " 'clues': [('be',\n", - " 'work in a specific place, with a specific subject, or in a specific function'),\n", - " ('comply', \"act in accordance with someone's rules, commands, or wishes\"),\n", - " ('accompany', 'perform an accompaniment to'),\n", - " ('follow',\n", - " 'follow, discover, or ascertain the course of development of something'),\n", + " 'clues': [('succeed', 'be the successor (of)'),\n", " ('trace',\n", " 'follow, discover, or ascertain the course of development of something'),\n", - " ('come after', 'be the successor (of)'),\n", " ('espouse',\n", " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n", - " ('travel along', 'travel along a certain course'),\n", + " ('follow', 'follow with the eyes or the mind'),\n", + " ('pursue', 'follow in or as if in pursuit'),\n", + " ('watch', 'follow with the eyes or the mind'),\n", + " ('keep an eye on', 'follow with the eyes or the mind'),\n", + " ('postdate', 'be later in time'),\n", " ('come', 'to be the product or result'),\n", - " ('watch over', 'follow with the eyes or the mind'),\n", - " ('play along', 'perform an accompaniment to'),\n", - " ('succeed', 'be the successor (of)'),\n", - " ('stick to', 'keep to'),\n", + " ('keep up', 'keep informed'),\n", + " ('fall out', 'come as a logical consequence; follow logically'),\n", " ('abide by',\n", " \"act in accordance with someone's rules, commands, or wishes\"),\n", - " ('watch', 'follow with the eyes or the mind'),\n", - " ('adopt',\n", - " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n", + " ('conform to', 'behave in accordance or in agreement with'),\n", + " ('travel along', 'travel along a certain course'),\n", + " ('come after', 'come after in time, as a result'),\n", + " ('take after', 'imitate in behavior; take as a model'),\n", " ('survey', 'keep under surveillance'),\n", - " ('stick with', 'keep to'),\n", - " ('fall out', 'come as a logical consequence; follow logically'),\n", " ('keep abreast', 'keep informed'),\n", - " ('take after', 'imitate in behavior; take as a model'),\n", - " ('postdate', 'be later in time'),\n", - " ('conform to', 'behave in accordance or in agreement with'),\n", + " ('stick with', 'keep to'),\n", + " ('stick to', 'keep to'),\n", + " ('play along', 'perform an accompaniment to'),\n", + " ('adopt',\n", + " 'choose and follow; as of theories, ideas, policies, strategies or plans'),\n", + " ('accompany', 'perform an accompaniment to'),\n", + " ('be',\n", + " 'work in a specific place, with a specific subject, or in a specific function'),\n", + " ('surveil', 'keep under surveillance'),\n", + " ('comply', \"act in accordance with someone's rules, commands, or wishes\"),\n", " ('observe', 'follow with the eyes or the mind'),\n", - " ('keep an eye on', 'follow with the eyes or the mind'),\n", - " ('keep up', 'keep informed'),\n", - " ('pursue', 'follow in or as if in pursuit'),\n", - " ('surveil', 'keep under surveillance')]},\n", + " ('watch over', 'follow with the eyes or the mind')]},\n", " {'answer': 'fooling',\n", " 'hint': 'synonyms for fooling',\n", - " 'clues': [('fool away', 'spend frivolously and unwisely'),\n", - " ('fool', 'make a fool or dupe of'),\n", + " 'clues': [('gull', 'fool or hoax'),\n", + " ('fool away', 'spend frivolously and unwisely'),\n", + " ('fool around', 'indulge in horseplay'),\n", + " ('shoot', 'spend frivolously and unwisely'),\n", + " ('fritter away', 'spend frivolously and unwisely'),\n", + " ('fool', 'spend frivolously and unwisely'),\n", + " ('slang', 'fool or hoax'),\n", + " ('take in', 'fool or hoax'),\n", + " ('dupe', 'fool or hoax'),\n", " ('dissipate', 'spend frivolously and unwisely'),\n", - " ('gull', 'fool or hoax'),\n", - " ('put one across', 'fool or hoax'),\n", + " ('fritter', 'spend frivolously and unwisely'),\n", " ('arse around', 'indulge in horseplay'),\n", - " ('frivol away', 'spend frivolously and unwisely'),\n", - " ('befool', 'make a fool or dupe of'),\n", - " ('cod', 'fool or hoax'),\n", " ('put one over', 'fool or hoax'),\n", - " ('shoot', 'spend frivolously and unwisely'),\n", - " ('fritter', 'spend frivolously and unwisely'),\n", - " ('dupe', 'fool or hoax'),\n", - " ('fool around', 'indulge in horseplay'),\n", - " ('take in', 'fool or hoax'),\n", + " ('cod', 'fool or hoax'),\n", + " ('befool', 'make a fool or dupe of'),\n", + " ('frivol away', 'spend frivolously and unwisely'),\n", " ('put on', 'fool or hoax'),\n", - " ('slang', 'fool or hoax'),\n", - " ('fritter away', 'spend frivolously and unwisely')]},\n", + " ('put one across', 'fool or hoax')]},\n", " {'answer': 'footed',\n", " 'hint': 'synonyms for footed',\n", " 'clues': [('foot', 'add a column of numbers'),\n", + " ('hoof it', 'walk'),\n", " ('foot up', 'add a column of numbers'),\n", - " ('pick', 'pay for something'),\n", - " ('leg it', 'walk'),\n", " ('hoof', 'walk'),\n", - " ('hoof it', 'walk')]},\n", + " ('leg it', 'walk'),\n", + " ('pick', 'pay for something')]},\n", " {'answer': 'footless',\n", " 'hint': 'synonyms for footless',\n", - " 'clues': [('loaf', 'be about'),\n", - " ('mess about', 'be about'),\n", - " ('tarry', 'be about'),\n", + " 'clues': [('hang around', 'be about'),\n", + " ('mill about', 'be about'),\n", + " ('linger', 'be about'),\n", " ('loiter', 'be about'),\n", " ('lollygag', 'be about'),\n", + " ('mill around', 'be about'),\n", " ('lounge', 'be about'),\n", - " ('hang around', 'be about'),\n", + " ('tarry', 'be about'),\n", + " ('footle', 'act foolishly, as by talking nonsense'),\n", + " ('loaf', 'be about'),\n", " ('lurk', 'be about'),\n", - " ('footle', 'be about'),\n", - " ('mill about', 'be about'),\n", - " ('linger', 'be about'),\n", - " ('mill around', 'be about')]},\n", + " ('mess about', 'be about')]},\n", " {'answer': 'footling',\n", " 'hint': 'synonyms for footling',\n", - " 'clues': [('loaf', 'be about'),\n", - " ('mess about', 'be about'),\n", - " ('tarry', 'be about'),\n", + " 'clues': [('hang around', 'be about'),\n", + " ('mill about', 'be about'),\n", + " ('linger', 'be about'),\n", " ('loiter', 'be about'),\n", " ('lollygag', 'be about'),\n", + " ('mill around', 'be about'),\n", " ('lounge', 'be about'),\n", - " ('hang around', 'be about'),\n", + " ('tarry', 'be about'),\n", + " ('footle', 'act foolishly, as by talking nonsense'),\n", + " ('loaf', 'be about'),\n", " ('lurk', 'be about'),\n", - " ('footle', 'be about'),\n", - " ('mill about', 'be about'),\n", - " ('linger', 'be about'),\n", - " ('mill around', 'be about')]},\n", + " ('mess about', 'be about')]},\n", " {'answer': 'forbidden',\n", " 'hint': 'synonyms for forbidden',\n", - " 'clues': [('preclude', 'keep from happening or arising; make impossible'),\n", - " ('interdict', 'command against'),\n", - " ('nix', 'command against'),\n", - " ('veto', 'command against'),\n", - " ('proscribe', 'command against'),\n", + " 'clues': [('forestall', 'keep from happening or arising; make impossible'),\n", + " ('disallow', 'command against'),\n", " ('forbid', 'keep from happening or arising; make impossible'),\n", - " ('forestall', 'keep from happening or arising; make impossible'),\n", - " ('prevent', 'keep from happening or arising; make impossible'),\n", + " ('proscribe', 'command against'),\n", " ('foreclose', 'keep from happening or arising; make impossible'),\n", - " ('disallow', 'command against'),\n", - " ('prohibit', 'command against')]},\n", + " ('veto', 'command against'),\n", + " ('interdict', 'command against'),\n", + " ('prevent', 'keep from happening or arising; make impossible'),\n", + " ('preclude', 'keep from happening or arising; make impossible'),\n", + " ('prohibit', 'command against'),\n", + " ('nix', 'command against')]},\n", " {'answer': 'forbidding',\n", " 'hint': 'synonyms for forbidding',\n", - " 'clues': [('preclude', 'keep from happening or arising; make impossible'),\n", - " ('interdict', 'command against'),\n", - " ('nix', 'command against'),\n", - " ('veto', 'command against'),\n", - " ('proscribe', 'command against'),\n", + " 'clues': [('forestall', 'keep from happening or arising; make impossible'),\n", + " ('disallow', 'command against'),\n", " ('forbid', 'keep from happening or arising; make impossible'),\n", - " ('forestall', 'keep from happening or arising; make impossible'),\n", - " ('prevent', 'keep from happening or arising; make impossible'),\n", + " ('proscribe', 'command against'),\n", " ('foreclose', 'keep from happening or arising; make impossible'),\n", - " ('disallow', 'command against'),\n", - " ('prohibit', 'command against')]},\n", + " ('veto', 'command against'),\n", + " ('interdict', 'command against'),\n", + " ('prevent', 'keep from happening or arising; make impossible'),\n", + " ('preclude', 'keep from happening or arising; make impossible'),\n", + " ('prohibit', 'command against'),\n", + " ('nix', 'command against')]},\n", " {'answer': 'forced',\n", " 'hint': 'synonyms for forced',\n", - " 'clues': [('force', 'cause to move by pulling'),\n", - " ('ram',\n", + " 'clues': [('force',\n", " 'force into or from an action or state, either physically or metaphorically'),\n", - " ('push', 'move with force,'),\n", - " ('hale',\n", - " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", - " ('squeeze',\n", - " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", " ('draw', 'cause to move by pulling'),\n", " ('pressure',\n", " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", - " ('thrust', 'impose urgently, importunately, or inexorably'),\n", - " ('pull', 'cause to move by pulling'),\n", - " ('storm', 'take by force'),\n", " ('wedge', 'squeeze like a wedge into a tight space'),\n", - " ('impel', 'urge or force (a person) to an action; constrain or motivate'),\n", + " ('push', 'move with force,'),\n", + " ('ram',\n", + " 'force into or from an action or state, either physically or metaphorically'),\n", " ('coerce',\n", " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", + " ('pull', 'cause to move by pulling'),\n", + " ('thrust', 'impose urgently, importunately, or inexorably'),\n", + " ('impel', 'urge or force (a person) to an action; constrain or motivate'),\n", + " ('hale',\n", + " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", " ('drive',\n", - " 'force into or from an action or state, either physically or metaphorically')]},\n", + " 'force into or from an action or state, either physically or metaphorically'),\n", + " ('storm', 'take by force'),\n", + " ('squeeze', 'squeeze like a wedge into a tight space')]},\n", " {'answer': 'foreboding',\n", " 'hint': 'synonyms for foreboding',\n", " 'clues': [('promise', 'make a prediction about; tell in advance'),\n", " ('call', 'make a prediction about; tell in advance'),\n", " ('anticipate', 'make a prediction about; tell in advance'),\n", - " ('prognosticate', 'make a prediction about; tell in advance'),\n", " ('predict', 'make a prediction about; tell in advance'),\n", - " ('forebode', 'make a prediction about; tell in advance'),\n", - " ('foretell', 'make a prediction about; tell in advance')]},\n", + " ('foretell', 'make a prediction about; tell in advance'),\n", + " ('prognosticate', 'make a prediction about; tell in advance'),\n", + " ('forebode', 'make a prediction about; tell in advance')]},\n", " {'answer': 'foregoing',\n", " 'hint': 'synonyms for foregoing',\n", - " 'clues': [('forego', 'do without or cease to hold or adhere to'),\n", - " ('waive', 'do without or cease to hold or adhere to'),\n", - " ('relinquish', 'do without or cease to hold or adhere to'),\n", - " ('give up',\n", + " 'clues': [('precede', 'be earlier in time; go back further'),\n", + " ('forgo', 'be earlier in time; go back further'),\n", + " ('waive',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('throw overboard',\n", + " ('foreswear', 'do without or cease to hold or adhere to'),\n", + " ('forfeit',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", + " ('relinquish', 'do without or cease to hold or adhere to'),\n", + " ('predate', 'be earlier in time; go back further'),\n", " ('antecede', 'be earlier in time; go back further'),\n", - " ('dispense with', 'do without or cease to hold or adhere to'),\n", " ('antedate', 'be earlier in time; go back further'),\n", - " ('forfeit',\n", + " ('give up',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('predate', 'be earlier in time; go back further'),\n", - " ('precede', 'be earlier in time; go back further'),\n", - " ('foreswear', 'do without or cease to hold or adhere to')]},\n", + " ('throw overboard',\n", + " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", + " ('dispense with', 'do without or cease to hold or adhere to')]},\n", " {'answer': 'foregone',\n", " 'hint': 'synonyms for foregone',\n", - " 'clues': [('forego', 'do without or cease to hold or adhere to'),\n", - " ('waive', 'do without or cease to hold or adhere to'),\n", - " ('relinquish', 'do without or cease to hold or adhere to'),\n", - " ('give up',\n", + " 'clues': [('precede', 'be earlier in time; go back further'),\n", + " ('forgo', 'be earlier in time; go back further'),\n", + " ('waive',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('throw overboard',\n", + " ('foreswear', 'do without or cease to hold or adhere to'),\n", + " ('forfeit',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", + " ('relinquish', 'do without or cease to hold or adhere to'),\n", + " ('predate', 'be earlier in time; go back further'),\n", " ('antecede', 'be earlier in time; go back further'),\n", - " ('dispense with', 'do without or cease to hold or adhere to'),\n", " ('antedate', 'be earlier in time; go back further'),\n", - " ('forfeit',\n", + " ('give up',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('predate', 'be earlier in time; go back further'),\n", - " ('precede', 'be earlier in time; go back further'),\n", - " ('foreswear', 'do without or cease to hold or adhere to')]},\n", + " ('throw overboard',\n", + " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", + " ('dispense with', 'do without or cease to hold or adhere to')]},\n", " {'answer': 'foreshadowing',\n", " 'hint': 'synonyms for foreshadowing',\n", - " 'clues': [('omen', 'indicate by signs'),\n", - " ('foretell', 'indicate by signs'),\n", - " ('prognosticate', 'indicate by signs'),\n", - " ('predict', 'indicate by signs'),\n", - " ('auspicate', 'indicate by signs'),\n", - " ('prefigure', 'indicate by signs'),\n", + " 'clues': [('prognosticate', 'indicate by signs'),\n", + " ('presage', 'indicate by signs'),\n", " ('forecast', 'indicate by signs'),\n", + " ('auspicate', 'indicate by signs'),\n", + " ('foreshadow', 'indicate by signs'),\n", + " ('omen', 'indicate by signs'),\n", " ('portend', 'indicate by signs'),\n", - " ('bode', 'indicate by signs'),\n", + " ('augur', 'indicate by signs'),\n", + " ('predict', 'indicate by signs'),\n", " ('betoken', 'indicate by signs'),\n", - " ('foreshadow', 'indicate by signs'),\n", - " ('presage', 'indicate by signs'),\n", - " ('augur', 'indicate by signs')]},\n", + " ('foretell', 'indicate by signs'),\n", + " ('prefigure', 'indicate by signs'),\n", + " ('bode', 'indicate by signs')]},\n", " {'answer': 'forfeit',\n", " 'hint': 'synonyms for forfeit',\n", - " 'clues': [('forgo',\n", + " 'clues': [('forego',\n", + " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", + " ('waive',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", " ('give up',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", " ('throw overboard',\n", - " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('waive',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime')]},\n", " {'answer': 'forfeited',\n", " 'hint': 'synonyms for forfeited',\n", - " 'clues': [('forfeit',\n", + " 'clues': [('forego',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('forgo',\n", + " ('waive',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", " ('give up',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('throw overboard',\n", + " ('forfeit',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime'),\n", - " ('waive',\n", + " ('throw overboard',\n", " 'lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime')]},\n", " {'answer': 'forged',\n", " 'hint': 'synonyms for forged',\n", - " 'clues': [('forge', 'make something, usually for a specific function'),\n", - " ('formulate',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('excogitate',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " 'clues': [('spirt',\n", + " 'move or act with a sudden increase in speed or energy'),\n", + " ('forge', 'make out of components (often in an improvising manner)'),\n", + " ('mould', 'make something, usually for a specific function'),\n", " ('work', 'make something, usually for a specific function'),\n", - " ('fake', 'make a copy of with the intent to deceive'),\n", " ('devise',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('form', 'make something, usually for a specific function'),\n", " ('contrive',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('hammer', 'create by hammering'),\n", - " ('spirt', 'move or act with a sudden increase in speed or energy'),\n", - " ('mold', 'make something, usually for a specific function'),\n", - " ('counterfeit', 'make a copy of with the intent to deceive'),\n", - " ('spurt', 'move or act with a sudden increase in speed or energy'),\n", + " ('fashion', 'make out of components (often in an improvising manner)'),\n", " ('shape', 'make something, usually for a specific function'),\n", + " ('hammer', 'create by hammering'),\n", " ('invent',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('fashion', 'make out of components (often in an improvising manner)')]},\n", + " ('fake', 'make a copy of with the intent to deceive'),\n", + " ('excogitate',\n", + " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " ('spurt', 'move or act with a sudden increase in speed or energy'),\n", + " ('form', 'make something, usually for a specific function'),\n", + " ('counterfeit', 'make a copy of with the intent to deceive'),\n", + " ('formulate',\n", + " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort')]},\n", " {'answer': 'forgotten',\n", " 'hint': 'synonyms for forgotten',\n", - " 'clues': [('draw a blank', 'be unable to remember'),\n", - " ('block', 'be unable to remember'),\n", - " ('forget', 'leave behind unintentionally'),\n", + " 'clues': [('forget', 'dismiss from the mind; stop remembering'),\n", + " ('blank out', 'be unable to remember'),\n", " ('leave', 'leave behind unintentionally'),\n", + " ('draw a blank', 'be unable to remember'),\n", " ('bury', 'dismiss from the mind; stop remembering'),\n", - " ('blank out', 'be unable to remember')]},\n", + " ('block', 'be unable to remember')]},\n", " {'answer': 'forked',\n", " 'hint': 'synonyms for forked',\n", - " 'clues': [('pitchfork', 'lift with a pitchfork'),\n", - " ('ramify', 'divide into two or more branches so as to form a fork'),\n", - " ('fork', 'shape like a fork'),\n", + " 'clues': [('fork', 'shape like a fork'),\n", " ('furcate', 'divide into two or more branches so as to form a fork'),\n", + " ('pitchfork', 'lift with a pitchfork'),\n", " ('branch', 'divide into two or more branches so as to form a fork'),\n", - " ('separate', 'divide into two or more branches so as to form a fork')]},\n", + " ('separate', 'divide into two or more branches so as to form a fork'),\n", + " ('ramify', 'divide into two or more branches so as to form a fork')]},\n", " {'answer': 'formed',\n", " 'hint': 'synonyms for formed',\n", - " 'clues': [('forge', 'make something, usually for a specific function'),\n", - " ('form', 'assume a form or shape'),\n", - " ('take form', 'develop into a distinctive entity'),\n", - " ('make', 'to compose or represent:'),\n", + " 'clues': [('organise', 'create (as an entity)'),\n", + " ('form', 'establish or impress firmly in the mind'),\n", + " ('forge', 'make something, usually for a specific function'),\n", + " ('mould', 'make something, usually for a specific function'),\n", " ('work', 'make something, usually for a specific function'),\n", " ('imprint', 'establish or impress firmly in the mind'),\n", - " ('shape', 'give shape or form to'),\n", + " ('shape', 'make something, usually for a specific function'),\n", " ('spring', 'develop into a distinctive entity'),\n", + " ('take form', 'develop into a distinctive entity'),\n", + " ('make', 'to compose or represent:'),\n", " ('constitute', 'to compose or represent:'),\n", - " ('take shape', 'develop into a distinctive entity'),\n", - " ('organize', 'create (as an entity)'),\n", - " ('mold', 'make something, usually for a specific function')]},\n", + " ('take shape', 'develop into a distinctive entity')]},\n", " {'answer': 'formulated',\n", " 'hint': 'synonyms for formulated',\n", - " 'clues': [('explicate', 'elaborate, as of theories and hypotheses'),\n", - " ('contrive',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('formulate', 'put into words or an expression'),\n", + " 'clues': [('formulate', 'prepare according to a formula'),\n", " ('forge',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('excogitate',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('articulate', 'put into words or an expression'),\n", - " ('develop', 'elaborate, as of theories and hypotheses'),\n", - " ('give voice', 'put into words or an expression'),\n", - " ('word', 'put into words or an expression'),\n", + " ('explicate', 'elaborate, as of theories and hypotheses'),\n", " ('invent',\n", " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", - " ('phrase', 'put into words or an expression'),\n", + " ('give voice', 'put into words or an expression'),\n", " ('devise',\n", - " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort')]},\n", + " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " ('excogitate',\n", + " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " ('contrive',\n", + " 'come up with (an idea, plan, explanation, theory, or principle) after a mental effort'),\n", + " ('word', 'put into words or an expression'),\n", + " ('develop', 'elaborate, as of theories and hypotheses'),\n", + " ('articulate', 'put into words or an expression'),\n", + " ('phrase', 'put into words or an expression')]},\n", " {'answer': 'fortified',\n", " 'hint': 'synonyms for fortified',\n", - " 'clues': [('spike', 'add alcohol to (beverages)'),\n", - " ('gird', 'prepare oneself for a military confrontation'),\n", - " ('arm', 'prepare oneself for a military confrontation'),\n", - " ('beef up', 'make strong or stronger'),\n", - " ('fortify', 'enclose by or as if by a fortification'),\n", + " 'clues': [('fortify', 'add alcohol to (beverages)'),\n", " ('lace', 'add alcohol to (beverages)'),\n", + " ('build up', 'prepare oneself for a military confrontation'),\n", + " ('spike', 'add alcohol to (beverages)'),\n", + " ('arm', 'prepare oneself for a military confrontation'),\n", " ('strengthen', 'make strong or stronger'),\n", - " ('fort', 'enclose by or as if by a fortification'),\n", - " ('build up', 'prepare oneself for a military confrontation')]},\n", + " ('beef up', 'make strong or stronger'),\n", + " ('gird', 'prepare oneself for a military confrontation'),\n", + " ('fort', 'enclose by or as if by a fortification')]},\n", " {'answer': 'foul',\n", " 'hint': 'synonyms for foul',\n", - " 'clues': [('maculate', 'spot, stain, or pollute'),\n", - " ('back up', 'become or cause to become obstructed'),\n", - " ('befoul', 'spot, stain, or pollute'),\n", + " 'clues': [('pollute', 'make impure'),\n", + " ('defile', 'spot, stain, or pollute'),\n", + " ('maculate', 'spot, stain, or pollute'),\n", + " ('clog', 'become or cause to become obstructed'),\n", " ('choke off', 'become or cause to become obstructed'),\n", + " ('befoul', 'spot, stain, or pollute'),\n", " ('contaminate', 'make impure'),\n", + " ('back up', 'become or cause to become obstructed'),\n", + " ('clog up', 'become or cause to become obstructed'),\n", " ('congest', 'become or cause to become obstructed'),\n", - " ('defile', 'spot, stain, or pollute'),\n", - " ('clog', 'become or cause to become obstructed'),\n", - " ('pollute', 'make impure'),\n", - " ('choke', 'become or cause to become obstructed'),\n", - " ('clog up', 'become or cause to become obstructed')]},\n", + " ('choke', 'become or cause to become obstructed')]},\n", " {'answer': 'fouled',\n", " 'hint': 'synonyms for fouled',\n", - " 'clues': [('maculate', 'spot, stain, or pollute'),\n", - " ('foul', 'commit a foul; break the rules'),\n", - " ('back up', 'become or cause to become obstructed'),\n", + " 'clues': [('pollute', 'make impure'),\n", + " ('defile', 'spot, stain, or pollute'),\n", + " ('maculate', 'spot, stain, or pollute'),\n", + " ('foul', 'spot, stain, or pollute'),\n", + " ('clog', 'become or cause to become obstructed'),\n", + " ('choke off', 'become or cause to become obstructed'),\n", " ('befoul', 'spot, stain, or pollute'),\n", " ('contaminate', 'make impure'),\n", - " ('choke off', 'become or cause to become obstructed'),\n", + " ('back up', 'become or cause to become obstructed'),\n", + " ('clog up', 'become or cause to become obstructed'),\n", " ('congest', 'become or cause to become obstructed'),\n", - " ('clog', 'become or cause to become obstructed'),\n", - " ('defile', 'spot, stain, or pollute'),\n", - " ('pollute', 'make impure'),\n", - " ('choke', 'become or cause to become obstructed'),\n", - " ('clog up', 'become or cause to become obstructed')]},\n", + " ('choke', 'become or cause to become obstructed')]},\n", " {'answer': 'found',\n", " 'hint': 'synonyms for found',\n", - " 'clues': [('find',\n", - " 'perceive oneself to be in a certain condition or place'),\n", - " ('base', 'use as a basis for; found on'),\n", - " ('see', 'perceive or be contemporaneous with'),\n", - " ('line up', 'get something or somebody for a specific purpose'),\n", + " 'clues': [('ascertain',\n", + " 'establish after a calculation, investigation, experiment, survey, or study'),\n", " ('get', 'receive a specified treatment (abstract)'),\n", + " ('regain', 'get or find back; recover the use of'),\n", + " ('retrieve', 'get or find back; recover the use of'),\n", + " ('find', 'get something or somebody for a specific purpose'),\n", + " ('set up', 'set up or found'),\n", + " ('encounter', 'come upon, as if by accident; meet with'),\n", + " ('discover', 'discover or determine the existence, presence, or fact of'),\n", + " ('base', 'use as a basis for; found on'),\n", " ('recover', 'get or find back; recover the use of'),\n", + " ('witness', 'perceive or be contemporaneous with'),\n", + " ('come up', 'get something or somebody for a specific purpose'),\n", + " ('launch', 'set up or found'),\n", + " ('receive', 'receive a specified treatment (abstract)'),\n", + " ('observe', 'discover or determine the existence, presence, or fact of'),\n", + " ('see', 'perceive or be contemporaneous with'),\n", + " ('get hold', 'get something or somebody for a specific purpose'),\n", + " ('constitute', 'set up or lay the groundwork for'),\n", + " ('institute', 'set up or lay the groundwork for'),\n", + " ('establish', 'set up or lay the groundwork for'),\n", + " ('plant', 'set up or lay the groundwork for'),\n", + " ('ground', 'use as a basis for; found on'),\n", + " ('chance', 'come upon, as if by accident; meet with'),\n", " ('determine',\n", " 'establish after a calculation, investigation, experiment, survey, or study'),\n", - " ('establish', 'set up or found'),\n", - " ('notice', 'discover or determine the existence, presence, or fact of'),\n", - " ('find out',\n", - " 'establish after a calculation, investigation, experiment, survey, or study'),\n", - " ('rule', 'decide on and make a declaration about'),\n", - " ('retrieve', 'get or find back; recover the use of'),\n", + " ('detect', 'discover or determine the existence, presence, or fact of'),\n", " ('feel',\n", " 'come to believe on the basis of emotion, intuitions, or indefinite grounds'),\n", - " ('detect', 'discover or determine the existence, presence, or fact of'),\n", - " ('receive', 'receive a specified treatment (abstract)'),\n", - " ('regain',\n", - " 'come upon after searching; find the location of something that was missed or lost'),\n", - " ('bump', 'come upon, as if by accident; meet with'),\n", - " ('observe', 'discover or determine the existence, presence, or fact of'),\n", - " ('obtain', 'receive a specified treatment (abstract)'),\n", + " ('rule', 'decide on and make a declaration about'),\n", " ('incur', 'receive a specified treatment (abstract)'),\n", - " ('discover', 'make a discovery, make a new finding'),\n", - " ('launch', 'set up or found'),\n", - " ('set up', 'set up or found'),\n", - " ('ascertain',\n", + " ('happen', 'come upon, as if by accident; meet with'),\n", + " ('find out',\n", " 'establish after a calculation, investigation, experiment, survey, or study'),\n", - " ('chance', 'come upon, as if by accident; meet with'),\n", - " ('institute', 'set up or lay the groundwork for'),\n", " ('find oneself',\n", " \"accept and make use of one's personality, abilities, and situation\"),\n", - " ('come up', 'get something or somebody for a specific purpose'),\n", - " ('happen', 'come upon, as if by accident; meet with'),\n", - " ('witness', 'perceive or be contemporaneous with'),\n", - " ('ground', 'use as a basis for; found on'),\n", - " ('plant', 'set up or lay the groundwork for'),\n", - " ('constitute', 'set up or lay the groundwork for'),\n", - " ('encounter', 'come upon, as if by accident; meet with'),\n", - " ('get hold', 'get something or somebody for a specific purpose')]},\n", + " ('bump', 'come upon, as if by accident; meet with'),\n", + " ('obtain', 'receive a specified treatment (abstract)'),\n", + " ('notice', 'discover or determine the existence, presence, or fact of'),\n", + " ('line up', 'get something or somebody for a specific purpose')]},\n", " {'answer': 'framed',\n", " 'hint': 'synonyms for framed',\n", - " 'clues': [('frame', 'enclose in a frame, as of a picture'),\n", + " 'clues': [('ensnare', 'take or catch as if in a snare or trap'),\n", " ('entrap', 'take or catch as if in a snare or trap'),\n", + " ('set up', 'take or catch as if in a snare or trap'),\n", + " ('frame in', 'enclose in or as if in a frame'),\n", + " ('draw up', 'make up plans or basic details for'),\n", + " ('frame', 'formulate in a particular style or language'),\n", + " ('border', 'enclose in or as if in a frame'),\n", + " ('put', 'formulate in a particular style or language'),\n", " ('compose', 'make up plans or basic details for'),\n", " ('couch', 'formulate in a particular style or language'),\n", - " ('ensnare', 'take or catch as if in a snare or trap'),\n", - " ('put', 'formulate in a particular style or language'),\n", - " ('redact', 'formulate in a particular style or language'),\n", - " ('border', 'enclose in or as if in a frame'),\n", - " ('draw up', 'make up plans or basic details for'),\n", - " ('frame in', 'enclose in or as if in a frame'),\n", " ('cast', 'formulate in a particular style or language'),\n", - " ('frame up', 'construct by fitting or uniting parts together'),\n", - " ('set up', 'take or catch as if in a snare or trap')]},\n", + " ('redact', 'formulate in a particular style or language'),\n", + " ('frame up', 'construct by fitting or uniting parts together')]},\n", " {'answer': 'frayed',\n", " 'hint': 'synonyms for frayed',\n", - " 'clues': [('frazzle', 'wear away by rubbing'),\n", + " 'clues': [('rub', 'cause friction'),\n", + " ('fray', 'wear away by rubbing'),\n", " ('chafe', 'cause friction'),\n", - " ('fray', 'cause friction'),\n", - " ('rub', 'cause friction'),\n", " ('scratch', 'cause friction'),\n", - " ('fret', 'cause friction')]},\n", + " ('fret', 'cause friction'),\n", + " ('frazzle', 'wear away by rubbing')]},\n", " {'answer': 'free',\n", " 'hint': 'synonyms for free',\n", - " 'clues': [('disembarrass', 'relieve from'),\n", + " 'clues': [('exempt',\n", + " 'grant relief or an exemption from a rule or requirement to'),\n", + " ('relieve', 'grant relief or an exemption from a rule or requirement to'),\n", " ('give up', 'part with a possession or right'),\n", + " ('unblock', 'make (assets) available'),\n", + " ('unloosen', 'grant freedom to; free from confinement'),\n", " ('release', 'make (assets) available'),\n", - " ('exempt', 'grant relief or an exemption from a rule or requirement to'),\n", + " ('discharge', 'free from obligations or duties'),\n", + " ('rid', 'relieve from'),\n", " ('absolve', 'let off the hook'),\n", " ('loose', 'grant freedom to; free from confinement'),\n", - " ('liberate', 'grant freedom to; free from confinement'),\n", - " ('relieve', 'grant relief or an exemption from a rule or requirement to'),\n", - " ('unblock', 'make (assets) available'),\n", - " ('disengage', 'free or remove obstruction from'),\n", - " ('justify', 'let off the hook'),\n", + " ('relinquish', 'part with a possession or right'),\n", + " ('dislodge', 'remove or force out from a position'),\n", " ('resign', 'part with a possession or right'),\n", - " ('rid', 'relieve from'),\n", - " ('discharge', 'free from obligations or duties'),\n", + " ('liberate', 'grant freedom to; free from confinement'),\n", " ('unfreeze', 'make (assets) available'),\n", - " ('relinquish', 'part with a possession or right'),\n", - " ('unloosen', 'grant freedom to; free from confinement'),\n", - " ('dislodge', 'remove or force out from a position')]},\n", + " ('disembarrass', 'relieve from'),\n", + " ('justify', 'let off the hook'),\n", + " ('disengage', 'free or remove obstruction from')]},\n", " {'answer': 'frequent',\n", " 'hint': 'synonyms for frequent',\n", - " 'clues': [('patronise',\n", + " 'clues': [('shop',\n", + " \"do one's shopping at; do business with; be a customer or client of\"),\n", + " ('patronise',\n", " \"do one's shopping at; do business with; be a customer or client of\"),\n", - " ('haunt', 'be a regular or frequent visitor to a certain place'),\n", " ('buy at',\n", " \"do one's shopping at; do business with; be a customer or client of\"),\n", - " ('shop',\n", + " ('sponsor',\n", " \"do one's shopping at; do business with; be a customer or client of\"),\n", " ('shop at',\n", " \"do one's shopping at; do business with; be a customer or client of\"),\n", - " ('sponsor',\n", - " \"do one's shopping at; do business with; be a customer or client of\")]},\n", + " ('haunt', 'be a regular or frequent visitor to a certain place')]},\n", " {'answer': 'fretted',\n", " 'hint': 'synonyms for fretted',\n", - " 'clues': [('fret', 'be too tight; rub or press'),\n", - " ('niggle', 'worry unnecessarily or excessively'),\n", + " 'clues': [('chafe', 'become or make sore by or as if by rubbing'),\n", + " ('fret', 'be agitated or irritated'),\n", + " ('eat into', 'gnaw into; make resentful or angry'),\n", + " ('eat away', 'wear away or erode'),\n", + " ('scratch', 'cause friction'),\n", + " ('choke', 'be too tight; rub or press'),\n", " ('fuss', 'worry unnecessarily or excessively'),\n", - " ('chafe', 'become or make sore by or as if by rubbing'),\n", " ('rub', 'cause friction'),\n", + " ('niggle', 'worry unnecessarily or excessively'),\n", + " ('rankle', 'gnaw into; make resentful or angry'),\n", " ('gall', 'become or make sore by or as if by rubbing'),\n", " ('gag', 'be too tight; rub or press'),\n", - " ('grate', 'gnaw into; make resentful or angry'),\n", - " ('erode', 'remove soil or rock'),\n", - " ('eat away', 'remove soil or rock'),\n", " ('fray', 'cause friction'),\n", - " ('rankle', 'gnaw into; make resentful or angry'),\n", - " ('scratch', 'cause friction'),\n", - " ('choke', 'be too tight; rub or press'),\n", - " ('eat into', 'gnaw into; make resentful or angry')]},\n", + " ('erode', 'remove soil or rock'),\n", + " ('grate', 'gnaw into; make resentful or angry')]},\n", " {'answer': 'frothing',\n", " 'hint': 'synonyms for frothing',\n", - " 'clues': [('form bubbles', 'become bubbly or frothy or foaming'),\n", - " ('froth', 'exude or expel foam'),\n", - " ('sparkle', 'become bubbly or frothy or foaming'),\n", + " 'clues': [('sparkle', 'become bubbly or frothy or foaming'),\n", + " ('froth', 'make froth or foam and become bubbly'),\n", + " ('effervesce', 'become bubbly or frothy or foaming'),\n", " ('foam', 'become bubbly or frothy or foaming'),\n", - " ('spume', 'make froth or foam and become bubbly'),\n", " ('suds', 'make froth or foam and become bubbly'),\n", " ('fizz', 'become bubbly or frothy or foaming'),\n", - " ('effervesce', 'become bubbly or frothy or foaming')]},\n", + " ('spume', 'make froth or foam and become bubbly'),\n", + " ('form bubbles', 'become bubbly or frothy or foaming')]},\n", " {'answer': 'frozen',\n", " 'hint': 'synonyms for frozen',\n", - " 'clues': [('suspend',\n", - " 'stop a process or a habit by imposing a freeze on it'),\n", - " ('freeze', 'stop a process or a habit by imposing a freeze on it'),\n", - " ('stop dead', 'stop moving or become immobilized'),\n", + " 'clues': [('freeze', 'suddenly behave coldly and formally'),\n", " ('immobilize', 'prohibit the conversion or use of (assets)'),\n", - " ('freeze out', 'change from a liquid to a solid when cold'),\n", + " ('suspend', 'stop a process or a habit by imposing a freeze on it'),\n", " ('freeze down', 'change from a liquid to a solid when cold'),\n", - " ('block', 'prohibit the conversion or use of (assets)')]},\n", + " ('block', 'prohibit the conversion or use of (assets)'),\n", + " ('freeze out', 'change from a liquid to a solid when cold'),\n", + " ('stop dead', 'stop moving or become immobilized')]},\n", " {'answer': 'frustrated',\n", " 'hint': 'synonyms for frustrated',\n", - " 'clues': [('rag', 'treat cruelly'),\n", - " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('torment', 'treat cruelly'),\n", - " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('bedevil', 'treat cruelly'),\n", + " 'clues': [('frustrate', 'treat cruelly'),\n", + " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('dun', 'treat cruelly'),\n", " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('crucify', 'treat cruelly'),\n", - " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('dun', 'treat cruelly')]},\n", - " {'answer': 'frustrating',\n", - " 'hint': 'synonyms for frustrating',\n", - " 'clues': [('rag', 'treat cruelly'),\n", - " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('torment', 'treat cruelly'),\n", " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('torment', 'treat cruelly'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('bedevil', 'treat cruelly'),\n", + " ('rag', 'treat cruelly'),\n", " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('frustrate', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('bedevil', 'treat cruelly'),\n", + " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of')]},\n", + " {'answer': 'frustrating',\n", + " 'hint': 'synonyms for frustrating',\n", + " 'clues': [('frustrate', 'treat cruelly'),\n", + " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('dun', 'treat cruelly'),\n", " ('foil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('thwart', 'hinder or prevent (the efforts, plans, or desires) of'),\n", " ('crucify', 'treat cruelly'),\n", - " ('cross', 'hinder or prevent (the efforts, plans, or desires) of'),\n", - " ('dun', 'treat cruelly')]},\n", + " ('spoil', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('torment', 'treat cruelly'),\n", + " ('scotch', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('bedevil', 'treat cruelly'),\n", + " ('rag', 'treat cruelly'),\n", + " ('queer', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('bilk', 'hinder or prevent (the efforts, plans, or desires) of'),\n", + " ('baffle', 'hinder or prevent (the efforts, plans, or desires) of')]},\n", " {'answer': 'fucking',\n", " 'hint': 'synonyms for fucking',\n", - " 'clues': [('have it away', 'have sexual intercourse with'),\n", - " ('roll in the hay', 'have sexual intercourse with'),\n", + " 'clues': [('hump', 'have sexual intercourse with'),\n", " ('jazz', 'have sexual intercourse with'),\n", - " ('get it on', 'have sexual intercourse with'),\n", - " ('hump', 'have sexual intercourse with'),\n", - " ('screw', 'have sexual intercourse with'),\n", - " ('have sex', 'have sexual intercourse with'),\n", - " ('have intercourse', 'have sexual intercourse with'),\n", " ('eff', 'have sexual intercourse with'),\n", - " ('get laid', 'have sexual intercourse with'),\n", - " ('love', 'have sexual intercourse with'),\n", - " ('have it off', 'have sexual intercourse with'),\n", - " ('fuck', 'have sexual intercourse with'),\n", " ('do it', 'have sexual intercourse with'),\n", - " ('be intimate', 'have sexual intercourse with'),\n", - " ('bang', 'have sexual intercourse with'),\n", " ('bed', 'have sexual intercourse with'),\n", - " ('make love', 'have sexual intercourse with'),\n", - " ('have a go at it', 'have sexual intercourse with'),\n", - " ('bonk', 'have sexual intercourse with'),\n", + " ('lie with', 'have sexual intercourse with'),\n", " ('sleep with', 'have sexual intercourse with'),\n", - " ('sleep together', 'have sexual intercourse with'),\n", + " ('fuck', 'have sexual intercourse with'),\n", + " ('be intimate', 'have sexual intercourse with'),\n", + " ('make love', 'have sexual intercourse with'),\n", + " ('get it on', 'have sexual intercourse with'),\n", + " ('roll in the hay', 'have sexual intercourse with'),\n", " ('know', 'have sexual intercourse with'),\n", + " ('bang', 'have sexual intercourse with'),\n", + " ('love', 'have sexual intercourse with'),\n", + " ('have sex', 'have sexual intercourse with'),\n", + " ('bonk', 'have sexual intercourse with'),\n", + " ('have it off', 'have sexual intercourse with'),\n", + " ('get laid', 'have sexual intercourse with'),\n", + " ('have a go at it', 'have sexual intercourse with'),\n", + " ('have it away', 'have sexual intercourse with'),\n", " ('make out', 'have sexual intercourse with'),\n", - " ('lie with', 'have sexual intercourse with')]},\n", + " ('have intercourse', 'have sexual intercourse with'),\n", + " ('sleep together', 'have sexual intercourse with'),\n", + " ('screw', 'have sexual intercourse with')]},\n", " {'answer': 'fuddled',\n", " 'hint': 'synonyms for fuddled',\n", - " 'clues': [('bedevil',\n", + " 'clues': [('discombobulate',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('discombobulate',\n", - " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('booze', 'consume alcohol'),\n", " ('befuddle', 'make stupid with alcohol'),\n", - " ('fox',\n", + " ('confound',\n", + " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", + " ('confuse',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('throw',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", " ('drink', 'consume alcohol'),\n", - " ('confound',\n", + " ('booze', 'consume alcohol'),\n", + " ('fox',\n", " 'be confusing or perplexing to; cause to be unable to think clearly'),\n", - " ('confuse',\n", + " ('bedevil',\n", " 'be confusing or perplexing to; cause to be unable to think clearly')]},\n", " {'answer': 'fulfilled',\n", " 'hint': 'synonyms for fulfilled',\n", - " 'clues': [('fulfil', 'put in effect'),\n", - " ('carry through', 'put in effect'),\n", - " ('meet', 'fill or meet a want or need'),\n", - " ('satisfy', 'fill or meet a want or need'),\n", - " ('fill', 'fill or meet a want or need'),\n", + " 'clues': [('carry out', 'put in effect'),\n", " ('action', 'put in effect'),\n", - " ('carry out', 'put in effect'),\n", - " ('live up to', 'meet the requirements or expectations of'),\n", + " ('fulfill', 'fill or meet a want or need'),\n", + " ('accomplish', 'put in effect'),\n", " ('execute', 'put in effect'),\n", - " ('accomplish', 'put in effect')]},\n", + " ('live up to', 'meet the requirements or expectations of'),\n", + " ('fill', 'fill or meet a want or need'),\n", + " ('meet', 'fill or meet a want or need'),\n", + " ('satisfy', 'meet the requirements or expectations of'),\n", + " ('carry through', 'put in effect')]},\n", " {'answer': 'fumbling',\n", " 'hint': 'synonyms for fumbling',\n", - " 'clues': [('muck up', 'make a mess of, destroy or ruin'),\n", - " ('fumble', 'make a mess of, destroy or ruin'),\n", - " ('bungle', 'make a mess of, destroy or ruin'),\n", + " 'clues': [('bodge', 'make a mess of, destroy or ruin'),\n", " ('grope', 'feel about uncertainly or blindly'),\n", - " ('bollix', 'make a mess of, destroy or ruin'),\n", - " ('ball up', 'make a mess of, destroy or ruin'),\n", + " ('bungle', 'make a mess of, destroy or ruin'),\n", + " ('fumble', 'make a mess of, destroy or ruin'),\n", + " ('blow', 'make a mess of, destroy or ruin'),\n", + " ('muck up', 'make a mess of, destroy or ruin'),\n", + " ('bollix up', 'make a mess of, destroy or ruin'),\n", + " ('bobble', 'make a mess of, destroy or ruin'),\n", + " ('fluff', 'make a mess of, destroy or ruin'),\n", " ('screw up', 'make a mess of, destroy or ruin'),\n", " ('botch up', 'make a mess of, destroy or ruin'),\n", + " ('foul up', 'make a mess of, destroy or ruin'),\n", + " ('bollix', 'make a mess of, destroy or ruin'),\n", " ('spoil', 'make a mess of, destroy or ruin'),\n", " ('bumble', 'make a mess of, destroy or ruin'),\n", - " ('mishandle', 'make a mess of, destroy or ruin'),\n", - " ('foul up', 'make a mess of, destroy or ruin'),\n", - " ('muff', 'make a mess of, destroy or ruin'),\n", - " ('louse up', 'make a mess of, destroy or ruin'),\n", - " ('fluff', 'make a mess of, destroy or ruin'),\n", - " ('bodge', 'make a mess of, destroy or ruin'),\n", - " ('blunder', \"make one's way clumsily or blindly\"),\n", + " ('mess up', 'make a mess of, destroy or ruin'),\n", + " ('flub', 'make a mess of, destroy or ruin'),\n", + " ('ball up', 'make a mess of, destroy or ruin'),\n", " ('bollocks up', 'make a mess of, destroy or ruin'),\n", + " ('blunder', \"make one's way clumsily or blindly\"),\n", + " ('louse up', 'make a mess of, destroy or ruin'),\n", " ('bollocks', 'make a mess of, destroy or ruin'),\n", - " ('blow', 'make a mess of, destroy or ruin'),\n", - " ('botch', 'make a mess of, destroy or ruin'),\n", - " ('flub', 'make a mess of, destroy or ruin'),\n", - " ('mess up', 'make a mess of, destroy or ruin'),\n", - " ('bollix up', 'make a mess of, destroy or ruin'),\n", - " ('bobble', 'make a mess of, destroy or ruin')]},\n", + " ('mishandle', 'make a mess of, destroy or ruin'),\n", + " ('muff', 'make a mess of, destroy or ruin'),\n", + " ('botch', 'make a mess of, destroy or ruin')]},\n", " {'answer': 'fumed',\n", " 'hint': 'synonyms for fumed',\n", - " 'clues': [('fume', \"be wet with sweat or blood, as of one's face\"),\n", - " ('reek', \"be wet with sweat or blood, as of one's face\"),\n", + " 'clues': [('reek', \"be wet with sweat or blood, as of one's face\"),\n", " ('fumigate',\n", " 'treat with fumes, expose to fumes, especially with the aim of disinfecting or eradicating pests'),\n", + " ('fume',\n", + " 'treat with fumes, expose to fumes, especially with the aim of disinfecting or eradicating pests'),\n", " ('smoke', 'emit a cloud of fine particles')]},\n", " {'answer': 'functioning',\n", " 'hint': 'synonyms for functioning',\n", - " 'clues': [('function',\n", + " 'clues': [('work', 'perform as expected when applied'),\n", + " ('function', 'serve a purpose, role, or function'),\n", + " ('officiate',\n", " 'perform duties attached to a particular office or place or function'),\n", - " ('run', 'perform as expected when applied'),\n", " ('go', 'perform as expected when applied'),\n", - " ('serve', 'serve a purpose, role, or function'),\n", " ('operate', 'perform as expected when applied'),\n", - " ('work', 'perform as expected when applied'),\n", - " ('officiate',\n", - " 'perform duties attached to a particular office or place or function')]},\n", + " ('serve', 'serve a purpose, role, or function'),\n", + " ('run', 'perform as expected when applied')]},\n", " {'answer': 'furnished',\n", " 'hint': 'synonyms for furnished',\n", - " 'clues': [('furnish', 'give something useful or necessary to'),\n", + " 'clues': [('render', 'give something useful or necessary to'),\n", " ('provide', 'give something useful or necessary to'),\n", - " ('render', 'give something useful or necessary to'),\n", - " ('supply', 'give something useful or necessary to')]},\n", + " ('supply', 'give something useful or necessary to'),\n", + " ('furnish', 'give something useful or necessary to')]},\n", " {'answer': 'furrowed',\n", " 'hint': 'synonyms for furrowed',\n", - " 'clues': [('chase', 'cut a furrow into a columns'),\n", - " ('wrinkle', 'make wrinkled or creased'),\n", - " ('furrow', 'cut a furrow into a columns'),\n", + " 'clues': [('furrow', 'cut a furrow into a columns'),\n", + " ('chase', 'cut a furrow into a columns'),\n", " ('chamfer', 'cut a furrow into a columns'),\n", " ('groove', 'hollow out in the form of a furrow or groove'),\n", + " ('rut', 'hollow out in the form of a furrow or groove'),\n", " ('crease', 'make wrinkled or creased'),\n", - " ('rut', 'hollow out in the form of a furrow or groove')]},\n", + " ('wrinkle', 'make wrinkled or creased')]},\n", " {'answer': 'further',\n", " 'hint': 'synonyms for further',\n", - " 'clues': [('foster', 'promote the growth of'),\n", - " ('boost', 'contribute to the progress or growth of'),\n", - " ('promote', 'contribute to the progress or growth of'),\n", + " 'clues': [('boost', 'contribute to the progress or growth of'),\n", + " ('advance', 'contribute to the progress or growth of'),\n", " ('encourage', 'contribute to the progress or growth of'),\n", - " ('advance', 'contribute to the progress or growth of')]},\n", + " ('promote', 'contribute to the progress or growth of'),\n", + " ('foster', 'promote the growth of')]},\n", " {'answer': 'fused',\n", " 'hint': 'synonyms for fused',\n", - " 'clues': [('fuse', 'mix together different elements'),\n", - " ('coalesce', 'mix together different elements'),\n", - " ('blend', 'mix together different elements'),\n", - " ('flux', 'mix together different elements'),\n", + " 'clues': [('conflate', 'mix together different elements'),\n", + " ('fuse', 'mix together different elements'),\n", " ('merge', 'mix together different elements'),\n", - " ('combine', 'mix together different elements'),\n", + " ('meld', 'mix together different elements'),\n", " ('commingle', 'mix together different elements'),\n", - " ('immix', 'mix together different elements'),\n", + " ('combine', 'mix together different elements'),\n", + " ('coalesce', 'mix together different elements'),\n", " ('mix', 'mix together different elements'),\n", - " ('meld', 'mix together different elements'),\n", - " ('conflate', 'mix together different elements')]},\n", + " ('flux', 'mix together different elements'),\n", + " ('immix', 'mix together different elements'),\n", + " ('blend', 'mix together different elements')]},\n", " {'answer': 'galled',\n", " 'hint': 'synonyms for galled',\n", - " 'clues': [('gall', 'become or make sore by or as if by rubbing'),\n", - " ('irk', 'irritate or vex'),\n", + " 'clues': [('gall', 'irritate or vex'),\n", + " ('fret', 'become or make sore by or as if by rubbing'),\n", " ('chafe', 'become or make sore by or as if by rubbing'),\n", - " ('fret', 'become or make sore by or as if by rubbing')]},\n", + " ('irk', 'irritate or vex')]},\n", " {'answer': 'galling',\n", " 'hint': 'synonyms for galling',\n", - " 'clues': [('gall', 'become or make sore by or as if by rubbing'),\n", - " ('irk', 'irritate or vex'),\n", + " 'clues': [('gall', 'irritate or vex'),\n", + " ('fret', 'become or make sore by or as if by rubbing'),\n", " ('chafe', 'become or make sore by or as if by rubbing'),\n", - " ('fret', 'become or make sore by or as if by rubbing')]},\n", + " ('irk', 'irritate or vex')]},\n", " {'answer': 'game',\n", " 'hint': 'synonyms for game',\n", " 'clues': [('gage', 'place a bet on'),\n", - " ('punt', 'place a bet on'),\n", - " ('stake', 'place a bet on'),\n", + " ('bet on', 'place a bet on'),\n", " ('back', 'place a bet on'),\n", - " ('bet on', 'place a bet on')]},\n", + " ('stake', 'place a bet on'),\n", + " ('punt', 'place a bet on')]},\n", " {'answer': 'gaping',\n", " 'hint': 'synonyms for gaping',\n", - " 'clues': [('gape', 'be wide open'),\n", - " ('goggle', 'look with amazement; look stupidly'),\n", + " 'clues': [('gawk', 'look with amazement; look stupidly'),\n", " ('gawp', 'look with amazement; look stupidly'),\n", " ('yawn', 'be wide open'),\n", - " ('breach', 'make an opening or gap in'),\n", - " ('gawk', 'look with amazement; look stupidly')]},\n", + " ('gape', 'look with amazement; look stupidly'),\n", + " ('goggle', 'look with amazement; look stupidly'),\n", + " ('breach', 'make an opening or gap in')]},\n", " {'answer': 'garbed',\n", " 'hint': 'synonyms for garbed',\n", - " 'clues': [('raiment', 'provide with clothes or put clothes on'),\n", - " ('enclothe', 'provide with clothes or put clothes on'),\n", - " ('garb', 'provide with clothes or put clothes on'),\n", - " ('garment', 'provide with clothes or put clothes on'),\n", + " 'clues': [('garb', 'provide with clothes or put clothes on'),\n", " ('habilitate', 'provide with clothes or put clothes on'),\n", - " ('tog', 'provide with clothes or put clothes on'),\n", " ('fit out', 'provide with clothes or put clothes on'),\n", + " ('garment', 'provide with clothes or put clothes on'),\n", " ('dress', 'provide with clothes or put clothes on'),\n", - " ('apparel', 'provide with clothes or put clothes on')]},\n", + " ('enclothe', 'provide with clothes or put clothes on'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", + " ('apparel', 'provide with clothes or put clothes on'),\n", + " ('tog', 'provide with clothes or put clothes on')]},\n", " {'answer': 'garbled',\n", " 'hint': 'synonyms for garbled',\n", - " 'clues': [('warp',\n", + " 'clues': [('garble',\n", " 'make false by mutilation or addition; as of a message or story'),\n", - " ('distort',\n", - " 'make false by mutilation or addition; as of a message or story'),\n", - " ('garble',\n", + " ('warp',\n", " 'make false by mutilation or addition; as of a message or story'),\n", " ('falsify',\n", + " 'make false by mutilation or addition; as of a message or story'),\n", + " ('distort',\n", " 'make false by mutilation or addition; as of a message or story')]},\n", " {'answer': 'garmented',\n", " 'hint': 'synonyms for garmented',\n", - " 'clues': [('raiment', 'provide with clothes or put clothes on'),\n", - " ('enclothe', 'provide with clothes or put clothes on'),\n", - " ('garb', 'provide with clothes or put clothes on'),\n", - " ('garment', 'provide with clothes or put clothes on'),\n", + " 'clues': [('garb', 'provide with clothes or put clothes on'),\n", " ('habilitate', 'provide with clothes or put clothes on'),\n", - " ('tog', 'provide with clothes or put clothes on'),\n", " ('fit out', 'provide with clothes or put clothes on'),\n", + " ('garment', 'provide with clothes or put clothes on'),\n", " ('dress', 'provide with clothes or put clothes on'),\n", - " ('apparel', 'provide with clothes or put clothes on')]},\n", + " ('enclothe', 'provide with clothes or put clothes on'),\n", + " ('raiment', 'provide with clothes or put clothes on'),\n", + " ('apparel', 'provide with clothes or put clothes on'),\n", + " ('tog', 'provide with clothes or put clothes on')]},\n", " {'answer': 'gathered',\n", " 'hint': 'synonyms for gathered',\n", - " 'clues': [('pull together', 'assemble or get together'),\n", + " 'clues': [('assemble', 'collect in one place'),\n", " ('gather', 'draw and bring closer'),\n", - " ('meet', 'collect in one place'),\n", - " ('gain', 'increase or develop'),\n", - " ('cumulate', 'collect or gather'),\n", + " ('tuck', 'draw together into folds or puckers'),\n", " ('collect', 'assemble or get together'),\n", + " ('amass', 'collect or gather'),\n", + " ('cumulate', 'collect or gather'),\n", " ('foregather', 'collect in one place'),\n", - " ('pucker', 'draw together into folds or puckers'),\n", + " ('meet', 'collect in one place'),\n", + " ('conglomerate', 'collect or gather'),\n", " ('pile up', 'collect or gather'),\n", - " ('tuck', 'draw together into folds or puckers'),\n", - " ('get together', 'get people together'),\n", + " ('gain', 'increase or develop'),\n", " ('garner', 'assemble or get together'),\n", - " ('assemble', 'collect in one place'),\n", - " ('conglomerate', 'collect or gather'),\n", - " ('amass', 'collect or gather')]},\n", + " ('pull together', 'assemble or get together'),\n", + " ('get together', 'get people together'),\n", + " ('pucker', 'draw together into folds or puckers')]},\n", " {'answer': 'generalised',\n", " 'hint': 'synonyms for generalised',\n", - " 'clues': [('generalise', 'speak or write in generalities'),\n", - " ('popularize',\n", - " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n", + " 'clues': [('generalize',\n", + " 'draw from specific cases for more general cases'),\n", " ('vulgarize',\n", " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n", + " ('popularize',\n", + " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n", " ('extrapolate', 'draw from specific cases for more general cases'),\n", " ('infer', 'draw from specific cases for more general cases')]},\n", " {'answer': 'generalized',\n", " 'hint': 'synonyms for generalized',\n", - " 'clues': [('generalise', 'speak or write in generalities'),\n", - " ('popularize',\n", - " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n", + " 'clues': [('generalize',\n", + " 'draw from specific cases for more general cases'),\n", " ('vulgarize',\n", " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n", + " ('popularize',\n", + " 'cater to popular taste to make popular and present to the general public; bring into general or common use'),\n", " ('extrapolate', 'draw from specific cases for more general cases'),\n", " ('infer', 'draw from specific cases for more general cases')]},\n", " {'answer': 'gentle',\n", " 'hint': 'synonyms for gentle',\n", - " 'clues': [('lenify',\n", + " 'clues': [('mollify',\n", " 'cause to be more favorably inclined; gain the good will of'),\n", + " ('placate', 'cause to be more favorably inclined; gain the good will of'),\n", " ('appease', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('entitle',\n", - " 'give a title to someone; make someone a member of the nobility'),\n", - " ('mollify', 'cause to be more favorably inclined; gain the good will of'),\n", " ('conciliate',\n", " 'cause to be more favorably inclined; gain the good will of'),\n", + " ('pacify', 'cause to be more favorably inclined; gain the good will of'),\n", + " ('entitle',\n", + " 'give a title to someone; make someone a member of the nobility'),\n", + " ('gruntle', 'cause to be more favorably inclined; gain the good will of'),\n", " ('ennoble',\n", " 'give a title to someone; make someone a member of the nobility'),\n", - " ('pacify', 'cause to be more favorably inclined; gain the good will of'),\n", " ('assuage', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('gruntle', 'cause to be more favorably inclined; gain the good will of'),\n", - " ('placate',\n", + " ('lenify',\n", " 'cause to be more favorably inclined; gain the good will of')]},\n", " {'answer': 'gifted',\n", " 'hint': 'synonyms for gifted',\n", - " 'clues': [('endue', 'give qualities or abilities to'),\n", - " ('empower', 'give qualities or abilities to'),\n", - " ('gift', 'give as a present; make a gift of'),\n", - " ('invest', 'give qualities or abilities to'),\n", + " 'clues': [('empower', 'give qualities or abilities to'),\n", " ('give', 'give as a present; make a gift of'),\n", + " ('gift', 'give qualities or abilities to'),\n", " ('present', 'give as a present; make a gift of'),\n", - " ('endow', 'give qualities or abilities to'),\n", - " ('indue', 'give qualities or abilities to')]},\n", + " ('endue', 'give qualities or abilities to'),\n", + " ('indue', 'give qualities or abilities to'),\n", + " ('invest', 'give qualities or abilities to'),\n", + " ('endow', 'give qualities or abilities to')]},\n", " {'answer': 'given',\n", " 'hint': 'synonyms for given',\n", - " 'clues': [('devote', 'dedicate'),\n", - " ('reach', 'place into the hands or custody of'),\n", - " ('give', 'afford access to'),\n", - " ('give way', 'move in order to make room for someone for something'),\n", - " ('founder', 'break down, literally or metaphorically'),\n", - " ('feed', 'give food to'),\n", - " ('have', 'organize or be responsible for'),\n", + " 'clues': [('present', 'give as a present; make a gift of'),\n", + " ('yield', 'cause to happen or be responsible for'),\n", " ('pass on', 'place into the hands or custody of'),\n", - " ('kick in', 'contribute to some cause'),\n", - " ('fall in', 'break down, literally or metaphorically'),\n", - " ('pass', 'place into the hands or custody of'),\n", - " ('collapse', 'break down, literally or metaphorically'),\n", - " ('yield', 'move in order to make room for someone for something'),\n", - " ('throw', 'organize or be responsible for'),\n", - " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", - " ('turn over', 'place into the hands or custody of'),\n", " ('apply', 'give or convey physically'),\n", - " ('render', 'give or supply'),\n", - " ('return', 'give or supply'),\n", - " ('establish', 'bring about'),\n", - " ('leave', 'transmit (knowledge or skills)'),\n", - " ('pay', 'convey, as of a compliment, regards, attention, etc.; bestow'),\n", - " ('gift', 'give as a present; make a gift of'),\n", + " ('ease up', 'move in order to make room for someone for something'),\n", + " ('give', 'break down, literally or metaphorically'),\n", " ('make', 'organize or be responsible for'),\n", - " ('present', 'give as a present; make a gift of'),\n", " ('generate', 'give or supply'),\n", + " ('commit', 'give entirely to a specific person, activity, or cause'),\n", + " ('give way', 'move in order to make room for someone for something'),\n", + " ('pay', 'convey, as of a compliment, regards, attention, etc.; bestow'),\n", + " ('render', 'give or supply'),\n", + " ('throw',\n", + " 'convey or communicate; of a smile, a look, a physical gesture'),\n", " ('sacrifice', 'endure the loss of'),\n", - " ('contribute', 'contribute to some cause'),\n", - " ('ease up', 'move in order to make room for someone for something'),\n", + " ('return', 'give or supply'),\n", + " ('have', 'organize or be responsible for'),\n", + " ('devote', 'give entirely to a specific person, activity, or cause'),\n", + " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", + " ('cave in', 'break down, literally or metaphorically'),\n", + " ('establish', 'bring about'),\n", " ('break', 'break down, literally or metaphorically'),\n", + " ('collapse', 'break down, literally or metaphorically'),\n", + " ('leave', 'transmit (knowledge or skills)'),\n", + " ('open', 'afford access to'),\n", + " ('pass', 'place into the hands or custody of'),\n", " ('impart', 'transmit (knowledge or skills)'),\n", + " ('feed', 'give food to'),\n", + " ('contribute', 'contribute to some cause'),\n", + " ('fall in', 'break down, literally or metaphorically'),\n", + " ('move over', 'move in order to make room for someone for something'),\n", + " ('gift', 'give as a present; make a gift of'),\n", + " ('afford', 'be the cause or source of'),\n", " ('grant', 'bestow, especially officially'),\n", - " ('hand', 'place into the hands or custody of'),\n", - " ('cave in', 'break down, literally or metaphorically'),\n", - " ('commit', 'give entirely to a specific person, activity, or cause'),\n", - " ('hold', 'organize or be responsible for'),\n", - " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", - " ('afford', 'afford access to'),\n", " ('chip in', 'contribute to some cause'),\n", - " ('move over', 'move in order to make room for someone for something'),\n", - " ('open', 'afford access to')]},\n", - " {'answer': 'giving',\n", - " 'hint': 'synonyms for giving',\n", - " 'clues': [('devote', 'dedicate'),\n", " ('reach', 'place into the hands or custody of'),\n", - " ('give', 'afford access to'),\n", - " ('give way', 'move in order to make room for someone for something'),\n", + " ('hold', 'organize or be responsible for'),\n", + " ('turn over', 'place into the hands or custody of'),\n", + " ('hand', 'place into the hands or custody of'),\n", + " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", " ('founder', 'break down, literally or metaphorically'),\n", - " ('feed', 'give food to'),\n", - " ('have', 'organize or be responsible for'),\n", + " ('kick in', 'contribute to some cause')]},\n", + " {'answer': 'giving',\n", + " 'hint': 'synonyms for giving',\n", + " 'clues': [('present', 'give as a present; make a gift of'),\n", + " ('yield', 'cause to happen or be responsible for'),\n", " ('pass on', 'place into the hands or custody of'),\n", - " ('kick in', 'contribute to some cause'),\n", - " ('fall in', 'break down, literally or metaphorically'),\n", - " ('pass', 'place into the hands or custody of'),\n", - " ('collapse', 'break down, literally or metaphorically'),\n", - " ('yield', 'move in order to make room for someone for something'),\n", - " ('throw', 'organize or be responsible for'),\n", - " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", - " ('turn over', 'place into the hands or custody of'),\n", " ('apply', 'give or convey physically'),\n", - " ('render', 'give or supply'),\n", - " ('return', 'give or supply'),\n", - " ('establish', 'bring about'),\n", - " ('leave', 'transmit (knowledge or skills)'),\n", - " ('pay', 'convey, as of a compliment, regards, attention, etc.; bestow'),\n", - " ('gift', 'give as a present; make a gift of'),\n", + " ('ease up', 'move in order to make room for someone for something'),\n", + " ('give', 'break down, literally or metaphorically'),\n", " ('make', 'organize or be responsible for'),\n", - " ('present', 'give as a present; make a gift of'),\n", " ('generate', 'give or supply'),\n", + " ('commit', 'give entirely to a specific person, activity, or cause'),\n", + " ('give way', 'move in order to make room for someone for something'),\n", + " ('pay', 'convey, as of a compliment, regards, attention, etc.; bestow'),\n", + " ('render', 'give or supply'),\n", + " ('throw',\n", + " 'convey or communicate; of a smile, a look, a physical gesture'),\n", " ('sacrifice', 'endure the loss of'),\n", - " ('contribute', 'contribute to some cause'),\n", - " ('ease up', 'move in order to make room for someone for something'),\n", + " ('return', 'give or supply'),\n", + " ('have', 'organize or be responsible for'),\n", + " ('devote', 'give entirely to a specific person, activity, or cause'),\n", + " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", + " ('cave in', 'break down, literally or metaphorically'),\n", + " ('establish', 'bring about'),\n", " ('break', 'break down, literally or metaphorically'),\n", + " ('collapse', 'break down, literally or metaphorically'),\n", + " ('leave', 'transmit (knowledge or skills)'),\n", + " ('open', 'afford access to'),\n", + " ('pass', 'place into the hands or custody of'),\n", " ('impart', 'transmit (knowledge or skills)'),\n", + " ('feed', 'give food to'),\n", + " ('contribute', 'contribute to some cause'),\n", + " ('fall in', 'break down, literally or metaphorically'),\n", + " ('move over', 'move in order to make room for someone for something'),\n", + " ('gift', 'give as a present; make a gift of'),\n", + " ('afford', 'be the cause or source of'),\n", " ('grant', 'bestow, especially officially'),\n", - " ('hand', 'place into the hands or custody of'),\n", - " ('cave in', 'break down, literally or metaphorically'),\n", - " ('commit', 'give entirely to a specific person, activity, or cause'),\n", - " ('hold', 'organize or be responsible for'),\n", - " ('dedicate', 'give entirely to a specific person, activity, or cause'),\n", - " ('afford', 'afford access to'),\n", " ('chip in', 'contribute to some cause'),\n", - " ('move over', 'move in order to make room for someone for something'),\n", - " ('open', 'afford access to')]},\n", + " ('reach', 'place into the hands or custody of'),\n", + " ('hold', 'organize or be responsible for'),\n", + " ('turn over', 'place into the hands or custody of'),\n", + " ('hand', 'place into the hands or custody of'),\n", + " ('consecrate', 'give entirely to a specific person, activity, or cause'),\n", + " ('founder', 'break down, literally or metaphorically'),\n", + " ('kick in', 'contribute to some cause')]},\n", " {'answer': 'glassed',\n", " 'hint': 'synonyms for glassed',\n", - " 'clues': [('glass', 'put in a glass container'),\n", - " ('glaze over', 'become glassy or take on a glass-like appearance'),\n", + " 'clues': [('glass over',\n", + " 'become glassy or take on a glass-like appearance'),\n", " ('glaze', 'furnish with glass'),\n", + " ('glass', 'scan (game in the forest) with binoculars'),\n", " ('glass in', 'enclose with glass'),\n", - " ('glass over', 'become glassy or take on a glass-like appearance')]},\n", + " ('glaze over', 'become glassy or take on a glass-like appearance')]},\n", " {'answer': 'glazed',\n", " 'hint': 'synonyms for glazed',\n", - " 'clues': [('glaze over',\n", - " 'become glassy or take on a glass-like appearance'),\n", - " ('glaze', 'coat with a glaze'),\n", - " ('candy', 'coat with something sweet, such as a hard sugar glaze'),\n", - " ('glass', 'furnish with glass'),\n", + " 'clues': [('glaze', 'coat with a glaze'),\n", " ('sugarcoat', 'coat with something sweet, such as a hard sugar glaze'),\n", + " ('candy', 'coat with something sweet, such as a hard sugar glaze'),\n", + " ('glaze over', 'become glassy or take on a glass-like appearance'),\n", + " ('glass', 'become glassy or take on a glass-like appearance'),\n", " ('glass over', 'become glassy or take on a glass-like appearance')]},\n", " {'answer': 'gleaming',\n", " 'hint': 'synonyms for gleaming',\n", - " 'clues': [('glisten', 'be shiny, as if wet'),\n", + " 'clues': [('glint', 'be shiny, as if wet'),\n", + " ('shine', 'be shiny, as if wet'),\n", + " ('glisten', 'be shiny, as if wet'),\n", " ('glitter', 'be shiny, as if wet'),\n", " ('glimmer', 'shine brightly, like a star or a light'),\n", - " ('gleam', 'be shiny, as if wet'),\n", - " ('shine', 'be shiny, as if wet'),\n", - " ('glint', 'be shiny, as if wet')]},\n", + " ('gleam', 'appear briefly')]},\n", " {'answer': 'glinting',\n", " 'hint': 'synonyms for glinting',\n", - " 'clues': [('glisten', 'be shiny, as if wet'),\n", - " ('glint', 'throw a glance at; take a brief look at'),\n", - " ('glitter', 'be shiny, as if wet'),\n", - " ('gleam', 'be shiny, as if wet'),\n", + " 'clues': [('glint', 'be shiny, as if wet'),\n", " ('shine', 'be shiny, as if wet'),\n", + " ('glisten', 'be shiny, as if wet'),\n", + " ('glitter', 'be shiny, as if wet'),\n", " ('peek', 'throw a glance at; take a brief look at'),\n", - " ('glance', 'throw a glance at; take a brief look at')]},\n", + " ('glance', 'throw a glance at; take a brief look at'),\n", + " ('gleam', 'be shiny, as if wet')]},\n", " {'answer': 'glistening',\n", " 'hint': 'synonyms for glistening',\n", - " 'clues': [('glisten', 'be shiny, as if wet'),\n", - " ('glitter', 'be shiny, as if wet'),\n", - " ('gleam', 'be shiny, as if wet'),\n", + " 'clues': [('glint', 'be shiny, as if wet'),\n", " ('shine', 'be shiny, as if wet'),\n", - " ('glint', 'be shiny, as if wet')]},\n", + " ('glisten', 'be shiny, as if wet'),\n", + " ('glitter', 'be shiny, as if wet'),\n", + " ('gleam', 'be shiny, as if wet')]},\n", " {'answer': 'glittering',\n", " 'hint': 'synonyms for glittering',\n", - " 'clues': [('glisten', 'be shiny, as if wet'),\n", - " ('glitter', 'be shiny, as if wet'),\n", - " ('gleam', 'be shiny, as if wet'),\n", + " 'clues': [('glint', 'be shiny, as if wet'),\n", " ('shine', 'be shiny, as if wet'),\n", - " ('glint', 'be shiny, as if wet')]},\n", + " ('glisten', 'be shiny, as if wet'),\n", + " ('glitter', 'be shiny, as if wet'),\n", + " ('gleam', 'be shiny, as if wet')]},\n", " {'answer': 'glorified',\n", " 'hint': 'synonyms for glorified',\n", - " 'clues': [('laud', 'praise, glorify, or honor'),\n", - " ('glorify',\n", - " \"elevate or idealize, in allusion to Christ's transfiguration\"),\n", + " 'clues': [('glorify', 'cause to seem more splendid'),\n", + " ('exalt', 'praise, glorify, or honor'),\n", + " ('laud', 'praise, glorify, or honor'),\n", " ('spiritualize',\n", " \"elevate or idealize, in allusion to Christ's transfiguration\"),\n", - " ('transfigure',\n", - " \"elevate or idealize, in allusion to Christ's transfiguration\"),\n", - " ('exalt', 'praise, glorify, or honor'),\n", " ('extol', 'praise, glorify, or honor'),\n", - " ('proclaim', 'praise, glorify, or honor')]},\n", + " ('proclaim', 'praise, glorify, or honor'),\n", + " ('transfigure',\n", + " \"elevate or idealize, in allusion to Christ's transfiguration\")]},\n", " {'answer': 'glowering',\n", " 'hint': 'synonyms for glowering',\n", - " 'clues': [('glower', 'look at with a fixed gaze'),\n", - " ('glare', 'look at with a fixed gaze'),\n", + " 'clues': [('lower',\n", + " \"look angry or sullen, wrinkle one's forehead, as if to signal disapproval\"),\n", " ('frown',\n", " \"look angry or sullen, wrinkle one's forehead, as if to signal disapproval\"),\n", " ('lour',\n", - " \"look angry or sullen, wrinkle one's forehead, as if to signal disapproval\")]},\n", + " \"look angry or sullen, wrinkle one's forehead, as if to signal disapproval\"),\n", + " ('glare', 'look at with a fixed gaze')]},\n", " {'answer': 'glowing',\n", " 'hint': 'synonyms for glowing',\n", - " 'clues': [('burn', 'shine intensely, as if with heat'),\n", + " 'clues': [('glow', 'shine intensely, as if with heat'),\n", " ('radiate',\n", - " 'have a complexion with a strong bright color, such as red or pink'),\n", + " 'experience a feeling of well-being or happiness, as from good health or an intense emotion'),\n", " ('beam',\n", " 'have a complexion with a strong bright color, such as red or pink'),\n", - " ('glow', 'shine intensely, as if with heat'),\n", " ('shine',\n", - " 'experience a feeling of well-being or happiness, as from good health or an intense emotion')]},\n", + " 'have a complexion with a strong bright color, such as red or pink'),\n", + " ('burn', 'shine intensely, as if with heat')]},\n", " {'answer': 'glutted',\n", " 'hint': 'synonyms for glutted',\n", " 'clues': [('englut', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('glut', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('engorge', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('stuff', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('satiate', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('gourmandize', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('oversupply', 'supply with an excess of'),\n", - " ('gorge', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('gormandize', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('overindulge', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('overgorge', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('ingurgitate', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('overeat', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('overindulge', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('glut', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('flood', 'supply with an excess of'),\n", " ('pig out', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('binge', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('oversupply', 'supply with an excess of'),\n", + " ('gorge', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('satiate', 'overeat or eat immodestly; make a pig of oneself'),\n", " ('scarf out', 'overeat or eat immodestly; make a pig of oneself'),\n", - " ('flood', 'supply with an excess of')]},\n", + " ('overeat', 'overeat or eat immodestly; make a pig of oneself'),\n", + " ('binge', 'overeat or eat immodestly; make a pig of oneself')]},\n", " {'answer': 'gnarled',\n", " 'hint': 'synonyms for gnarled',\n", " 'clues': [('croak',\n", " \"make complaining remarks or noises under one's breath\"),\n", + " ('gnarl', \"make complaining remarks or noises under one's breath\"),\n", " ('mutter', \"make complaining remarks or noises under one's breath\"),\n", " ('murmur', \"make complaining remarks or noises under one's breath\"),\n", - " ('gnarl', \"make complaining remarks or noises under one's breath\"),\n", " ('grumble', \"make complaining remarks or noises under one's breath\")]},\n", " {'answer': 'go',\n", " 'hint': 'synonyms for go',\n", - " 'clues': [('decease',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('lead', 'lead, extend, or afford access'),\n", - " ('rifle',\n", + " 'clues': [('rifle',\n", " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n", - " ('start', 'begin or set in motion'),\n", - " ('extend',\n", - " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('run short', 'to be spent or finished'),\n", - " ('plump',\n", - " 'give support (to) or make a choice (of) one out of a group or number'),\n", - " ('sound', 'make a certain noise or sound'),\n", - " ('run',\n", - " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('move',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('get', 'enter or assume a certain state or condition'),\n", - " ('hold up', 'continue to live through hardship or adversity'),\n", - " ('choke',\n", + " ('perish',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('run low', 'to be spent or finished'),\n", - " ('live on', 'continue to live through hardship or adversity'),\n", + " ('hold up', 'continue to live through hardship or adversity'),\n", + " ('function', 'perform as expected when applied'),\n", + " ('die', 'stop operating or functioning'),\n", " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('break', 'stop operating or functioning'),\n", - " ('exit',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die',\n", + " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('fit', 'be the right size or shape; fit correctly or as desired'),\n", - " ('function', 'perform as expected when applied'),\n", - " ('conk out', 'stop operating or functioning'),\n", - " ('proceed', 'follow a procedure or take a course'),\n", - " ('travel',\n", + " ('get going', 'begin or set in motion'),\n", + " ('last', 'continue to live through hardship or adversity'),\n", + " ('run', 'perform as expected when applied'),\n", + " ('move',\n", " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('croak',\n", + " ('conk',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('decease',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('go bad', 'stop operating or functioning'),\n", " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('hold out', 'continue to live through hardship or adversity'),\n", + " ('blend in', 'blend or harmonize'),\n", + " ('proceed', 'follow a procedure or take a course'),\n", + " ('go away', 'move away from a place into another direction'),\n", + " ('locomote',\n", + " 'change location; move, travel, or proceed, also metaphorically'),\n", + " ('get', 'enter or assume a certain state or condition'),\n", + " ('lead',\n", + " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", " ('pass',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('give way', 'stop operating or functioning'),\n", - " ('belong', 'be in the right place or situation'),\n", " ('depart', 'move away from a place into another direction'),\n", + " ('travel',\n", + " 'change location; move, travel, or proceed, also metaphorically'),\n", + " (\"cash in one's chips\",\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('give out', 'stop operating or functioning'),\n", " ('give-up the ghost',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " (\"cash in one's chips\",\n", + " ('break down', 'stop operating or functioning'),\n", + " ('start', 'begin or set in motion'),\n", + " ('pass away',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('get going', 'begin or set in motion'),\n", - " ('live', 'continue to live through hardship or adversity'),\n", + " ('extend',\n", + " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", + " ('run low', 'to be spent or finished'),\n", + " ('blend', 'blend or harmonize'),\n", " ('become', 'enter or assume a certain state or condition'),\n", - " ('blend in', 'blend or harmonize'),\n", - " ('locomote',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('perish',\n", + " ('live', 'continue to live through hardship or adversity'),\n", + " ('belong', 'be in the right place or situation'),\n", + " ('break', 'stop operating or functioning'),\n", + " ('survive', 'continue to live through hardship or adversity'),\n", + " ('live on', 'continue to live through hardship or adversity'),\n", + " ('go bad', 'stop operating or functioning'),\n", + " ('run short', 'to be spent or finished'),\n", + " ('fit', 'be the right size or shape; fit correctly or as desired'),\n", + " ('croak',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('conk out', 'stop operating or functioning'),\n", " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('blend', 'blend or harmonize'),\n", - " ('endure', 'continue to live through hardship or adversity'),\n", - " ('buy the farm',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('expire',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('work', 'perform as expected when applied'),\n", + " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('conk',\n", + " ('exit',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('last', 'continue to live through hardship or adversity'),\n", - " ('operate', 'perform as expected when applied'),\n", + " ('plump',\n", + " 'give support (to) or make a choice (of) one out of a group or number'),\n", + " ('give way', 'stop operating or functioning'),\n", " ('fail', 'stop operating or functioning'),\n", - " ('pop off',\n", + " ('operate', 'perform as expected when applied'),\n", + " ('sound', 'make a certain noise or sound'),\n", + " ('hold out', 'continue to live through hardship or adversity'),\n", + " ('choke',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('survive', 'continue to live through hardship or adversity'),\n", - " ('go away', 'move away from a place into another direction'),\n", - " ('work', 'perform as expected when applied')]},\n", + " ('endure', 'continue to live through hardship or adversity')]},\n", " {'answer': 'goaded',\n", " 'hint': 'synonyms for goaded',\n", - " 'clues': [('spur', 'give heart or courage to'),\n", - " ('goad', 'urge with or as if with a goad'),\n", + " 'clues': [('goad', 'stab or urge on as if with a pointed stick'),\n", " ('needle', 'goad or provoke,as by constant criticism'),\n", + " ('spur', 'give heart or courage to'),\n", " ('prick', 'stab or urge on as if with a pointed stick')]},\n", " {'answer': 'going',\n", " 'hint': 'synonyms for going',\n", - " 'clues': [('decease',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('lead', 'lead, extend, or afford access'),\n", - " ('rifle',\n", - " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n", - " ('go', 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('plump',\n", - " 'give support (to) or make a choice (of) one out of a group or number'),\n", - " ('sound', 'make a certain noise or sound'),\n", - " ('move',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('hold up', 'continue to live through hardship or adversity'),\n", - " ('run low', 'to be spent or finished'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('fit', 'be the right size or shape; fit correctly or as desired'),\n", + " 'clues': [('hold up', 'continue to live through hardship or adversity'),\n", + " ('go', 'be the right size or shape; fit correctly or as desired'),\n", " ('function', 'perform as expected when applied'),\n", - " ('conk out', 'stop operating or functioning'),\n", - " ('proceed', 'follow a procedure or take a course'),\n", - " ('croak',\n", + " ('run', 'perform as expected when applied'),\n", + " ('conk',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('decease',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('travel',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('go bad', 'stop operating or functioning'),\n", " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('hold out', 'continue to live through hardship or adversity'),\n", + " ('proceed', 'follow a procedure or take a course'),\n", + " ('go away', 'move away from a place into another direction'),\n", + " ('locomote',\n", + " 'change location; move, travel, or proceed, also metaphorically'),\n", + " ('get', 'enter or assume a certain state or condition'),\n", " ('pass',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('depart', 'move away from a place into another direction'),\n", - " ('get going', 'begin or set in motion'),\n", - " ('live', 'continue to live through hardship or adversity'),\n", - " ('blend in', 'blend or harmonize'),\n", - " ('perish',\n", + " ('lead',\n", + " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", + " (\"cash in one's chips\",\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('buy the farm',\n", + " ('move', 'follow a procedure or take a course'),\n", + " ('give-up the ghost',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('start', 'begin or set in motion'),\n", + " ('run low', 'to be spent or finished'),\n", + " ('become', 'enter or assume a certain state or condition'),\n", + " ('belong', 'be in the right place or situation'),\n", + " ('survive', 'continue to live through hardship or adversity'),\n", + " ('go bad', 'stop operating or functioning'),\n", + " ('die',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('expire',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('plump',\n", + " 'give support (to) or make a choice (of) one out of a group or number'),\n", + " ('choke',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('conk',\n", + " ('endure', 'continue to live through hardship or adversity'),\n", + " ('rifle',\n", + " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n", + " ('perish',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('last', 'continue to live through hardship or adversity'),\n", " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('survive', 'continue to live through hardship or adversity'),\n", - " ('work', 'perform as expected when applied'),\n", - " ('start', 'begin or set in motion'),\n", + " ('get going', 'begin or set in motion'),\n", + " ('last', 'continue to live through hardship or adversity'),\n", + " ('blend in', 'blend or harmonize'),\n", + " ('travel',\n", + " 'change location; move, travel, or proceed, also metaphorically'),\n", + " ('depart', 'move away from a place into another direction'),\n", + " ('give out', 'stop operating or functioning'),\n", + " ('break down', 'stop operating or functioning'),\n", + " ('pass away',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('extend',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", + " ('blend', 'blend or harmonize'),\n", + " ('live', 'continue to live through hardship or adversity'),\n", + " ('break', 'stop operating or functioning'),\n", + " ('live on', 'continue to live through hardship or adversity'),\n", " ('run short', 'to be spent or finished'),\n", - " ('run',\n", - " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('choke',\n", + " ('fit', 'be the right size or shape; fit correctly or as desired'),\n", + " ('croak',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('get', 'enter or assume a certain state or condition'),\n", - " ('kick the bucket',\n", + " ('conk out', 'stop operating or functioning'),\n", + " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('live on', 'continue to live through hardship or adversity'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('break', 'stop operating or functioning'),\n", - " ('exit',\n", + " ('work', 'perform as expected when applied'),\n", + " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die',\n", + " ('exit',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('give way', 'stop operating or functioning'),\n", - " ('belong', 'be in the right place or situation'),\n", - " ('give-up the ghost',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " (\"cash in one's chips\",\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('become', 'enter or assume a certain state or condition'),\n", - " ('locomote',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('snuff it',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('blend', 'blend or harmonize'),\n", - " ('endure', 'continue to live through hardship or adversity'),\n", " ('fail', 'stop operating or functioning'),\n", " ('operate', 'perform as expected when applied'),\n", - " ('go away', 'move away from a place into another direction')]},\n", + " ('sound', 'make a certain noise or sound'),\n", + " ('hold out', 'continue to live through hardship or adversity')]},\n", " {'answer': 'gone',\n", " 'hint': 'synonyms for gone',\n", - " 'clues': [('decease',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('lead', 'lead, extend, or afford access'),\n", - " ('rifle',\n", - " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n", - " ('go', 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('plump',\n", - " 'give support (to) or make a choice (of) one out of a group or number'),\n", - " ('sound', 'make a certain noise or sound'),\n", - " ('move',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('hold up', 'continue to live through hardship or adversity'),\n", - " ('run low', 'to be spent or finished'),\n", - " ('give out', 'stop operating or functioning'),\n", - " ('fit', 'be the right size or shape; fit correctly or as desired'),\n", + " 'clues': [('hold up', 'continue to live through hardship or adversity'),\n", + " ('go', 'be the right size or shape; fit correctly or as desired'),\n", " ('function', 'perform as expected when applied'),\n", - " ('conk out', 'stop operating or functioning'),\n", - " ('proceed', 'follow a procedure or take a course'),\n", - " ('croak',\n", + " ('run', 'perform as expected when applied'),\n", + " ('conk',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('decease',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('travel',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('go bad', 'stop operating or functioning'),\n", " ('drop dead',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('hold out', 'continue to live through hardship or adversity'),\n", + " ('proceed', 'follow a procedure or take a course'),\n", + " ('go away', 'move away from a place into another direction'),\n", + " ('locomote',\n", + " 'change location; move, travel, or proceed, also metaphorically'),\n", + " ('get', 'enter or assume a certain state or condition'),\n", " ('pass',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('depart', 'move away from a place into another direction'),\n", - " ('get going', 'begin or set in motion'),\n", - " ('live', 'continue to live through hardship or adversity'),\n", - " ('blend in', 'blend or harmonize'),\n", - " ('perish',\n", + " ('lead',\n", + " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", + " (\"cash in one's chips\",\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('buy the farm',\n", + " ('move', 'follow a procedure or take a course'),\n", + " ('give-up the ghost',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('start', 'begin or set in motion'),\n", + " ('run low', 'to be spent or finished'),\n", + " ('become', 'enter or assume a certain state or condition'),\n", + " ('belong', 'be in the right place or situation'),\n", + " ('survive', 'continue to live through hardship or adversity'),\n", + " ('go bad', 'stop operating or functioning'),\n", + " ('die',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('expire',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('pass away',\n", + " ('plump',\n", + " 'give support (to) or make a choice (of) one out of a group or number'),\n", + " ('choke',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('conk',\n", + " ('endure', 'continue to live through hardship or adversity'),\n", + " ('rifle',\n", + " \"go through in search of something; search through someone's belongings in an unauthorized way\"),\n", + " ('perish',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", + " ('kick the bucket',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('last', 'continue to live through hardship or adversity'),\n", " ('pop off',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('survive', 'continue to live through hardship or adversity'),\n", - " ('work', 'perform as expected when applied'),\n", - " ('start', 'begin or set in motion'),\n", + " ('get going', 'begin or set in motion'),\n", + " ('last', 'continue to live through hardship or adversity'),\n", + " ('blend in', 'blend or harmonize'),\n", + " ('travel',\n", + " 'change location; move, travel, or proceed, also metaphorically'),\n", + " ('depart', 'move away from a place into another direction'),\n", + " ('give out', 'stop operating or functioning'),\n", + " ('break down', 'stop operating or functioning'),\n", + " ('pass away',\n", + " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('extend',\n", " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", + " ('blend', 'blend or harmonize'),\n", + " ('live', 'continue to live through hardship or adversity'),\n", + " ('break', 'stop operating or functioning'),\n", + " ('live on', 'continue to live through hardship or adversity'),\n", " ('run short', 'to be spent or finished'),\n", - " ('run',\n", - " 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point'),\n", - " ('choke',\n", + " ('fit', 'be the right size or shape; fit correctly or as desired'),\n", + " ('croak',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('get', 'enter or assume a certain state or condition'),\n", - " ('kick the bucket',\n", + " ('conk out', 'stop operating or functioning'),\n", + " ('snuff it',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('live on', 'continue to live through hardship or adversity'),\n", - " ('break down', 'stop operating or functioning'),\n", - " ('break', 'stop operating or functioning'),\n", - " ('exit',\n", + " ('work', 'perform as expected when applied'),\n", + " ('buy the farm',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('die',\n", + " ('exit',\n", " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", " ('give way', 'stop operating or functioning'),\n", - " ('belong', 'be in the right place or situation'),\n", - " ('give-up the ghost',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " (\"cash in one's chips\",\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('become', 'enter or assume a certain state or condition'),\n", - " ('locomote',\n", - " 'change location; move, travel, or proceed, also metaphorically'),\n", - " ('snuff it',\n", - " 'pass from physical life and lose all bodily attributes and functions necessary to sustain life'),\n", - " ('blend', 'blend or harmonize'),\n", - " ('endure', 'continue to live through hardship or adversity'),\n", " ('fail', 'stop operating or functioning'),\n", " ('operate', 'perform as expected when applied'),\n", - " ('go away', 'move away from a place into another direction')]},\n", + " ('sound', 'make a certain noise or sound'),\n", + " ('hold out', 'continue to live through hardship or adversity')]},\n", " {'answer': 'governing',\n", " 'hint': 'synonyms for governing',\n", - " 'clues': [('govern',\n", - " 'require to be in a certain grammatical case, voice, or mood'),\n", - " ('order',\n", - " 'bring into conformity with rules or principles or usage; impose regulations'),\n", - " ('regularize',\n", + " 'clues': [('regularize',\n", " 'bring into conformity with rules or principles or usage; impose regulations'),\n", " ('regulate',\n", " 'bring into conformity with rules or principles or usage; impose regulations'),\n", - " ('rule', 'exercise authority over; as of nations')]},\n", + " ('govern', 'exercise authority over; as of nations'),\n", + " ('rule', 'exercise authority over; as of nations'),\n", + " ('order',\n", + " 'bring into conformity with rules or principles or usage; impose regulations')]},\n", " {'answer': 'graded',\n", " 'hint': 'synonyms for graded',\n", - " 'clues': [('grade', 'assign a rank or rating to'),\n", - " ('mark', \"assign a grade or rank to, according to one's evaluation\"),\n", - " ('range', 'assign a rank or rating to'),\n", - " ('place', 'assign a rank or rating to'),\n", + " 'clues': [('rate', 'assign a rank or rating to'),\n", + " ('grade', 'determine the grade of or assign a grade to'),\n", " ('score', \"assign a grade or rank to, according to one's evaluation\"),\n", - " ('rank', 'assign a rank or rating to'),\n", + " ('place', 'assign a rank or rating to'),\n", + " ('range', 'assign a rank or rating to'),\n", " ('order', 'assign a rank or rating to'),\n", - " ('rate', 'assign a rank or rating to')]},\n", + " ('mark', \"assign a grade or rank to, according to one's evaluation\"),\n", + " ('rank', 'assign a rank or rating to')]},\n", " {'answer': 'granted',\n", " 'hint': 'synonyms for granted',\n", - " 'clues': [('grant', 'let have'),\n", - " ('concede', 'be willing to concede'),\n", + " 'clues': [('allow', 'let have'),\n", + " ('grant', 'let have'),\n", " ('award', 'give as judged due or on the basis of merit'),\n", + " ('concede', 'be willing to concede'),\n", + " ('allot', 'allow to have'),\n", " ('give', 'bestow, especially officially'),\n", - " ('accord', 'allow to have'),\n", + " ('cede',\n", + " 'give over; surrender or relinquish to the physical control of another'),\n", " ('yield',\n", " 'give over; surrender or relinquish to the physical control of another'),\n", - " ('allow', 'let have'),\n", " ('deed over', 'transfer by deed'),\n", - " ('allot', 'allow to have'),\n", - " ('cede',\n", - " 'give over; surrender or relinquish to the physical control of another')]},\n", + " ('accord', 'allow to have')]},\n", " {'answer': 'grasping',\n", " 'hint': 'synonyms for grasping',\n", - " 'clues': [('grok', 'get the meaning of something'),\n", - " ('dig', 'get the meaning of something'),\n", + " 'clues': [('grasp', 'get the meaning of something'),\n", + " ('comprehend', 'get the meaning of something'),\n", + " ('savvy', 'get the meaning of something'),\n", + " ('compass', 'get the meaning of something'),\n", " ('apprehend', 'get the meaning of something'),\n", - " ('grasp', 'get the meaning of something'),\n", + " ('dig', 'get the meaning of something'),\n", " ('hold on', 'hold firmly'),\n", - " ('get the picture', 'get the meaning of something'),\n", - " ('compass', 'get the meaning of something'),\n", - " ('savvy', 'get the meaning of something'),\n", - " ('comprehend', 'get the meaning of something')]},\n", + " ('grok', 'get the meaning of something'),\n", + " ('get the picture', 'get the meaning of something')]},\n", " {'answer': 'gratified',\n", " 'hint': 'synonyms for gratified',\n", - " 'clues': [('pander', 'yield (to); give satisfaction to'),\n", - " ('satisfy', 'make happy or satisfied'),\n", - " ('gratify', 'make happy or satisfied'),\n", - " ('indulge', 'yield (to); give satisfaction to')]},\n", + " 'clues': [('satisfy', 'make happy or satisfied'),\n", + " ('pander', 'yield (to); give satisfaction to'),\n", + " ('indulge', 'yield (to); give satisfaction to'),\n", + " ('gratify', 'make happy or satisfied')]},\n", " {'answer': 'gratifying',\n", " 'hint': 'synonyms for gratifying',\n", - " 'clues': [('pander', 'yield (to); give satisfaction to'),\n", - " ('satisfy', 'make happy or satisfied'),\n", - " ('gratify', 'make happy or satisfied'),\n", - " ('indulge', 'yield (to); give satisfaction to')]},\n", + " 'clues': [('satisfy', 'make happy or satisfied'),\n", + " ('pander', 'yield (to); give satisfaction to'),\n", + " ('indulge', 'yield (to); give satisfaction to'),\n", + " ('gratify', 'make happy or satisfied')]},\n", " {'answer': 'grating',\n", " 'hint': 'synonyms for grating',\n", - " 'clues': [('eat into', 'gnaw into; make resentful or angry'),\n", - " ('grate', 'furnish with a grate'),\n", - " ('rankle', 'gnaw into; make resentful or angry'),\n", - " ('scrape', 'scratch repeatedly'),\n", + " 'clues': [('grate', 'scratch repeatedly'),\n", + " ('grind', 'make a grating or grinding sound by rubbing together'),\n", + " ('eat into', 'gnaw into; make resentful or angry'),\n", " ('fret', 'gnaw into; make resentful or angry'),\n", - " ('grind', 'make a grating or grinding sound by rubbing together')]},\n", + " ('rankle', 'gnaw into; make resentful or angry'),\n", + " ('scrape', 'scratch repeatedly')]},\n", " {'answer': 'grave',\n", " 'hint': 'synonyms for grave',\n", - " 'clues': [('sculpture',\n", + " 'clues': [('engrave', 'carve, cut, or etch into a material or surface'),\n", + " ('inscribe', 'carve, cut, or etch into a material or surface'),\n", + " ('scratch', 'carve, cut, or etch into a material or surface'),\n", + " ('sculpture',\n", " 'shape (a material like stone or wood) by whittling away at it'),\n", " ('sculpt',\n", - " 'shape (a material like stone or wood) by whittling away at it'),\n", - " ('scratch', 'carve, cut, or etch into a material or surface'),\n", - " ('engrave', 'carve, cut, or etch into a material or surface'),\n", - " ('inscribe', 'carve, cut, or etch into a material or surface')]},\n", + " 'shape (a material like stone or wood) by whittling away at it')]},\n", " {'answer': 'graven',\n", " 'hint': 'synonyms for graven',\n", - " 'clues': [('grave', 'carve, cut, or etch into a material or surface'),\n", + " 'clues': [('inscribe', 'carve, cut, or etch into a material or surface'),\n", + " ('engrave', 'carve, cut, or etch into a material or surface'),\n", + " ('grave',\n", + " 'shape (a material like stone or wood) by whittling away at it'),\n", + " ('scratch', 'carve, cut, or etch into a material or surface'),\n", " ('sculpture',\n", " 'shape (a material like stone or wood) by whittling away at it'),\n", " ('sculpt',\n", - " 'shape (a material like stone or wood) by whittling away at it'),\n", - " ('scratch', 'carve, cut, or etch into a material or surface'),\n", - " ('engrave', 'carve, cut, or etch into a material or surface'),\n", - " ('inscribe', 'carve, cut, or etch into a material or surface')]},\n", + " 'shape (a material like stone or wood) by whittling away at it')]},\n", " {'answer': 'grazed',\n", " 'hint': 'synonyms for grazed',\n", - " 'clues': [('graze', 'feed as in a meadow or pasture'),\n", + " 'clues': [('graze', 'let feed in a field or pasture or meadow'),\n", " ('crop', 'let feed in a field or pasture or meadow'),\n", - " ('crease', 'scrape gently'),\n", - " ('pasture', 'let feed in a field or pasture or meadow'),\n", + " ('pasture', 'feed as in a meadow or pasture'),\n", " ('rake', 'scrape gently'),\n", - " ('browse', 'feed as in a meadow or pasture'),\n", + " ('browse', 'eat lightly, try different dishes'),\n", + " ('crease', 'scrape gently'),\n", " ('range', 'feed as in a meadow or pasture')]},\n", " {'answer': 'gripping',\n", " 'hint': 'synonyms for gripping',\n", - " 'clues': [('fascinate',\n", + " 'clues': [('grip',\n", + " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", + " ('transfix',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", " ('grapple', 'to grip or seize, as in a wrestling match'),\n", - " ('grip',\n", + " ('fascinate',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", " ('spellbind',\n", - " 'to render motionless, as with a fixed stare or by arousing terror or awe'),\n", - " ('transfix',\n", " 'to render motionless, as with a fixed stare or by arousing terror or awe')]},\n", " {'answer': 'grizzled',\n", " 'hint': 'synonyms for grizzled',\n", " 'clues': [('grizzle', 'be in a huff; be silent or sullen'),\n", - " ('stew', 'be in a huff; be silent or sullen'),\n", - " ('yawp', 'complain whiningly'),\n", " ('brood', 'be in a huff; be silent or sullen'),\n", " ('whine', 'complain whiningly'),\n", - " ('yammer', 'complain whiningly')]},\n", + " ('stew', 'be in a huff; be silent or sullen'),\n", + " ('yammer', 'complain whiningly'),\n", + " ('yawp', 'complain whiningly')]},\n", " {'answer': 'groomed',\n", " 'hint': 'synonyms for groomed',\n", - " 'clues': [('dress', 'give a neat appearance to'),\n", - " ('curry', 'give a neat appearance to'),\n", - " ('train', 'educate for a future role or function'),\n", - " ('neaten', \"care for one's external appearance\"),\n", + " 'clues': [('neaten', \"care for one's external appearance\"),\n", + " ('prepare', 'educate for a future role or function'),\n", + " ('dress', 'give a neat appearance to'),\n", " ('groom', 'give a neat appearance to'),\n", - " ('prepare', 'educate for a future role or function')]},\n", + " ('train', 'educate for a future role or function'),\n", + " ('curry', 'give a neat appearance to')]},\n", " {'answer': 'groveling',\n", " 'hint': 'synonyms for groveling',\n", - " 'clues': [('cringe', 'show submission or fear'),\n", + " 'clues': [('fawn', 'show submission or fear'),\n", " ('cower', 'show submission or fear'),\n", - " ('crawl', 'show submission or fear'),\n", " ('creep', 'show submission or fear'),\n", - " ('fawn', 'show submission or fear'),\n", - " ('grovel', 'show submission or fear')]},\n", + " ('cringe', 'show submission or fear'),\n", + " ('grovel', 'show submission or fear'),\n", + " ('crawl', 'show submission or fear')]},\n", " {'answer': 'grovelling',\n", " 'hint': 'synonyms for grovelling',\n", - " 'clues': [('cringe', 'show submission or fear'),\n", + " 'clues': [('fawn', 'show submission or fear'),\n", " ('cower', 'show submission or fear'),\n", - " ('crawl', 'show submission or fear'),\n", " ('creep', 'show submission or fear'),\n", - " ('fawn', 'show submission or fear'),\n", - " ('grovel', 'show submission or fear')]},\n", + " ('cringe', 'show submission or fear'),\n", + " ('grovel', 'show submission or fear'),\n", + " ('crawl', 'show submission or fear')]},\n", " {'answer': 'growing',\n", " 'hint': 'synonyms for growing',\n", - " 'clues': [('produce',\n", + " 'clues': [('grow', 'become attached by or as if by the process of growth'),\n", + " ('mature', 'develop and reach maturity; undergo maturation'),\n", + " ('acquire',\n", + " 'come to have or undergo a change of (physical features and attributes)'),\n", + " ('originate', 'come into existence; take on form or shape'),\n", + " ('develop', 'grow emotionally or mature'),\n", + " ('uprise', 'come into existence; take on form or shape'),\n", + " ('produce',\n", " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n", " ('raise',\n", " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n", - " ('grow', 'increase in size by natural process'),\n", - " ('arise', 'come into existence; take on form or shape'),\n", - " ('uprise', 'come into existence; take on form or shape'),\n", " ('farm',\n", " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n", - " ('mature', 'develop and reach maturity; undergo maturation'),\n", " ('turn',\n", " 'pass into a condition gradually, take on a specific property or attribute; become'),\n", - " ('originate', 'come into existence; take on form or shape'),\n", - " ('spring up', 'come into existence; take on form or shape'),\n", - " ('develop',\n", - " 'come to have or undergo a change of (physical features and attributes)'),\n", " ('get',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('acquire',\n", - " 'come to have or undergo a change of (physical features and attributes)')]},\n", + " ('arise', 'come into existence; take on form or shape'),\n", + " ('spring up', 'come into existence; take on form or shape')]},\n", " {'answer': 'grown',\n", " 'hint': 'synonyms for grown',\n", - " 'clues': [('produce',\n", + " 'clues': [('grow', 'become attached by or as if by the process of growth'),\n", + " ('mature', 'develop and reach maturity; undergo maturation'),\n", + " ('acquire',\n", + " 'come to have or undergo a change of (physical features and attributes)'),\n", + " ('originate', 'come into existence; take on form or shape'),\n", + " ('develop', 'grow emotionally or mature'),\n", + " ('uprise', 'come into existence; take on form or shape'),\n", + " ('produce',\n", " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n", " ('raise',\n", " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n", - " ('grow', 'increase in size by natural process'),\n", - " ('arise', 'come into existence; take on form or shape'),\n", - " ('uprise', 'come into existence; take on form or shape'),\n", " ('farm',\n", " 'cultivate by growing, often involving improvements by means of agricultural techniques'),\n", - " ('mature', 'develop and reach maturity; undergo maturation'),\n", " ('turn',\n", " 'pass into a condition gradually, take on a specific property or attribute; become'),\n", - " ('originate', 'come into existence; take on form or shape'),\n", - " ('spring up', 'come into existence; take on form or shape'),\n", - " ('develop',\n", - " 'come to have or undergo a change of (physical features and attributes)'),\n", " ('get',\n", " 'come to have or undergo a change of (physical features and attributes)'),\n", - " ('acquire',\n", - " 'come to have or undergo a change of (physical features and attributes)')]},\n", + " ('arise', 'come into existence; take on form or shape'),\n", + " ('spring up', 'come into existence; take on form or shape')]},\n", " {'answer': 'grumbling',\n", " 'hint': 'synonyms for grumbling',\n", " 'clues': [('croak',\n", " \"make complaining remarks or noises under one's breath\"),\n", - " ('grumble', \"show one's unhappiness or critical attitude\"),\n", - " ('murmur', \"make complaining remarks or noises under one's breath\"),\n", - " ('growl', 'to utter or emit low dull rumbling sounds'),\n", " ('gnarl', \"make complaining remarks or noises under one's breath\"),\n", + " ('rumble', 'make a low noise'),\n", " ('grouch', \"show one's unhappiness or critical attitude\"),\n", + " ('scold', \"show one's unhappiness or critical attitude\"),\n", + " ('growl', 'to utter or emit low dull rumbling sounds'),\n", " ('mutter', \"make complaining remarks or noises under one's breath\"),\n", - " ('scold', \"show one's unhappiness or critical attitude\")]},\n", + " ('murmur', \"make complaining remarks or noises under one's breath\")]},\n", " {'answer': 'guarded',\n", " 'hint': 'synonyms for guarded',\n", - " 'clues': [('guard', 'to keep watch over'),\n", + " 'clues': [('defend', 'protect against a challenge or attack'),\n", + " ('guard', 'watch over or shield from danger or harm; protect'),\n", " ('hold', 'protect against a challenge or attack'),\n", - " ('ward', 'watch over or shield from danger or harm; protect'),\n", - " ('defend', 'protect against a challenge or attack')]},\n", + " ('ward', 'watch over or shield from danger or harm; protect')]},\n", " {'answer': 'guided',\n", " 'hint': 'synonyms for guided',\n", - " 'clues': [('channelize',\n", + " 'clues': [('direct',\n", " 'direct the course; determine the direction of travelling'),\n", - " ('run', 'pass over, across, or through'),\n", " ('steer', 'direct the course; determine the direction of travelling'),\n", - " ('maneuver', 'direct the course; determine the direction of travelling'),\n", - " ('guide', 'take somebody somewhere'),\n", - " ('direct', 'take somebody somewhere'),\n", - " ('draw', 'pass over, across, or through'),\n", - " ('point', 'direct the course; determine the direction of travelling'),\n", - " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n", " ('take', 'take somebody somewhere'),\n", + " ('lead', 'take somebody somewhere'),\n", + " ('channelise',\n", + " 'direct the course; determine the direction of travelling'),\n", + " ('guide', 'use as a guide'),\n", + " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", " ('conduct', 'take somebody somewhere'),\n", " ('head', 'direct the course; determine the direction of travelling'),\n", - " ('pass', 'pass over, across, or through'),\n", + " ('run', 'pass over, across, or through'),\n", " ('guide on', 'use as a guide'),\n", - " ('lead', 'take somebody somewhere')]},\n", + " ('pass', 'pass over, across, or through'),\n", + " ('draw', 'pass over, across, or through'),\n", + " ('point', 'direct the course; determine the direction of travelling')]},\n", " {'answer': 'guiding',\n", " 'hint': 'synonyms for guiding',\n", - " 'clues': [('channelize',\n", + " 'clues': [('direct',\n", " 'direct the course; determine the direction of travelling'),\n", - " ('run', 'pass over, across, or through'),\n", " ('steer', 'direct the course; determine the direction of travelling'),\n", - " ('maneuver', 'direct the course; determine the direction of travelling'),\n", - " ('guide', 'take somebody somewhere'),\n", - " ('direct', 'take somebody somewhere'),\n", - " ('draw', 'pass over, across, or through'),\n", - " ('point', 'direct the course; determine the direction of travelling'),\n", - " ('manoeuvre', 'direct the course; determine the direction of travelling'),\n", " ('take', 'take somebody somewhere'),\n", + " ('lead', 'take somebody somewhere'),\n", + " ('channelise',\n", + " 'direct the course; determine the direction of travelling'),\n", + " ('guide', 'use as a guide'),\n", + " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", " ('conduct', 'take somebody somewhere'),\n", " ('head', 'direct the course; determine the direction of travelling'),\n", - " ('pass', 'pass over, across, or through'),\n", + " ('run', 'pass over, across, or through'),\n", " ('guide on', 'use as a guide'),\n", - " ('lead', 'take somebody somewhere')]},\n", + " ('pass', 'pass over, across, or through'),\n", + " ('draw', 'pass over, across, or through'),\n", + " ('point', 'direct the course; determine the direction of travelling')]},\n", " {'answer': 'gushing',\n", " 'hint': 'synonyms for gushing',\n", - " 'clues': [('gush', 'praise enthusiastically'),\n", + " 'clues': [('spirt', 'gush forth in a sudden stream or jet'),\n", + " ('gush', 'issue in a jet; come out in a jet; stream or spring forth'),\n", " ('jet', 'issue in a jet; come out in a jet; stream or spring forth'),\n", - " ('rave', 'praise enthusiastically'),\n", " ('spurt', 'gush forth in a sudden stream or jet'),\n", - " ('spout', 'gush forth in a sudden stream or jet'),\n", - " ('spirt', 'gush forth in a sudden stream or jet')]},\n", + " ('rave', 'praise enthusiastically'),\n", + " ('spout', 'gush forth in a sudden stream or jet')]},\n", " {'answer': 'hale',\n", " 'hint': 'synonyms for hale',\n", " 'clues': [('drag', 'draw slowly or heavily'),\n", " ('cart', 'draw slowly or heavily'),\n", - " ('pressure',\n", + " ('force',\n", " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", " ('coerce',\n", " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", " ('haul', 'draw slowly or heavily'),\n", - " ('squeeze',\n", + " ('pressure',\n", " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :'),\n", - " ('force',\n", + " ('squeeze',\n", " 'to cause to do through pressure or necessity, by physical, moral or intellectual means :')]},\n", " {'answer': 'hallowed',\n", " 'hint': 'synonyms for hallowed',\n", " 'clues': [('consecrate', 'render holy by means of religious rites'),\n", " ('hallow', 'render holy by means of religious rites'),\n", - " ('bless', 'render holy by means of religious rites'),\n", - " ('sanctify', 'render holy by means of religious rites')]},\n", + " ('sanctify', 'render holy by means of religious rites'),\n", + " ('bless', 'render holy by means of religious rites')]},\n", " {'answer': 'halt',\n", " 'hint': 'synonyms for halt',\n", - " 'clues': [('stop', 'stop from happening or developing'),\n", + " 'clues': [('kibosh', 'stop from happening or developing'),\n", + " ('stem', 'stop the flow of a liquid'),\n", + " ('staunch', 'stop the flow of a liquid'),\n", + " ('stop', 'stop from happening or developing'),\n", " ('hold', 'cause to stop'),\n", " ('arrest', 'cause to stop'),\n", - " ('block', 'stop from happening or developing'),\n", - " ('stem', 'stop the flow of a liquid'),\n", - " ('stanch', 'stop the flow of a liquid'),\n", - " ('kibosh', 'stop from happening or developing')]},\n", + " ('block', 'stop from happening or developing')]},\n", " {'answer': 'halting',\n", " 'hint': 'synonyms for halting',\n", - " 'clues': [('halt', 'cause to stop'),\n", + " 'clues': [('kibosh', 'stop from happening or developing'),\n", + " ('stem', 'stop the flow of a liquid'),\n", + " ('halt', 'cause to stop'),\n", + " ('staunch', 'stop the flow of a liquid'),\n", + " ('stop', 'stop from happening or developing'),\n", " ('hold', 'cause to stop'),\n", " ('arrest', 'cause to stop'),\n", - " ('stop', 'stop from happening or developing'),\n", - " ('block', 'stop from happening or developing'),\n", - " ('stem', 'stop the flow of a liquid'),\n", - " ('stanch', 'stop the flow of a liquid'),\n", - " ('kibosh', 'stop from happening or developing')]},\n", + " ('block', 'stop from happening or developing')]},\n", " {'answer': 'handed',\n", " 'hint': 'synonyms for handed',\n", " 'clues': [('turn over', 'place into the hands or custody of'),\n", - " ('pass on', 'place into the hands or custody of'),\n", " ('hand', 'place into the hands or custody of'),\n", - " ('give', 'place into the hands or custody of'),\n", + " ('pass', 'place into the hands or custody of'),\n", + " ('pass on', 'place into the hands or custody of'),\n", " ('reach', 'place into the hands or custody of'),\n", - " ('pass', 'place into the hands or custody of')]},\n", + " ('give', 'place into the hands or custody of')]},\n", " {'answer': 'handicapped',\n", " 'hint': 'synonyms for handicapped',\n", - " 'clues': [('handicap', 'injure permanently'),\n", + " 'clues': [('handicap',\n", + " 'attempt to forecast the winner (especially in a horse race) and assign odds for or against a contestant'),\n", " ('incapacitate', 'injure permanently'),\n", + " ('disable', 'injure permanently'),\n", " ('invalid', 'injure permanently'),\n", - " ('hamper', 'put at a disadvantage'),\n", " ('hinder', 'put at a disadvantage'),\n", - " ('disable', 'injure permanently')]},\n", + " ('hamper', 'put at a disadvantage')]},\n", " {'answer': 'handled',\n", " 'hint': 'synonyms for handled',\n", - " 'clues': [('do by', 'interact in a certain way'),\n", - " ('manage', 'handle effectively'),\n", - " ('plow', 'act on verbally or in some form of artistic expression'),\n", - " ('wield', 'handle effectively'),\n", - " ('handle', 'act on verbally or in some form of artistic expression'),\n", + " 'clues': [('handle', 'show and train'),\n", + " ('care', 'be in charge of, act on, or dispose of'),\n", + " ('cover', 'act on verbally or in some form of artistic expression'),\n", " ('palm', 'touch, lift, or hold with the hands'),\n", - " ('deal', 'be in charge of, act on, or dispose of'),\n", - " ('treat', 'act on verbally or in some form of artistic expression'),\n", + " ('do by', 'interact in a certain way'),\n", + " ('manage', 'be in charge of, act on, or dispose of'),\n", " ('address', 'act on verbally or in some form of artistic expression'),\n", - " ('cover', 'act on verbally or in some form of artistic expression'),\n", - " ('care', 'be in charge of, act on, or dispose of')]},\n", + " ('deal', 'be in charge of, act on, or dispose of'),\n", + " ('treat', 'interact in a certain way'),\n", + " ('plow', 'act on verbally or in some form of artistic expression'),\n", + " ('wield', 'handle effectively')]},\n", " {'answer': 'handless',\n", " 'hint': 'synonyms for handless',\n", - " 'clues': [('do by', 'interact in a certain way'),\n", - " ('manage', 'handle effectively'),\n", - " ('plow', 'act on verbally or in some form of artistic expression'),\n", - " ('wield', 'handle effectively'),\n", - " ('handle', 'act on verbally or in some form of artistic expression'),\n", + " 'clues': [('handle', 'show and train'),\n", + " ('care', 'be in charge of, act on, or dispose of'),\n", + " ('cover', 'act on verbally or in some form of artistic expression'),\n", " ('palm', 'touch, lift, or hold with the hands'),\n", - " ('deal', 'be in charge of, act on, or dispose of'),\n", - " ('treat', 'act on verbally or in some form of artistic expression'),\n", + " ('do by', 'interact in a certain way'),\n", + " ('manage', 'be in charge of, act on, or dispose of'),\n", " ('address', 'act on verbally or in some form of artistic expression'),\n", - " ('cover', 'act on verbally or in some form of artistic expression'),\n", - " ('care', 'be in charge of, act on, or dispose of')]},\n", + " ('deal', 'be in charge of, act on, or dispose of'),\n", + " ('treat', 'interact in a certain way'),\n", + " ('plow', 'act on verbally or in some form of artistic expression'),\n", + " ('wield', 'handle effectively')]},\n", " {'answer': 'harassed',\n", " 'hint': 'synonyms for harassed',\n", - " 'clues': [('harass', 'exhaust by attacking repeatedly'),\n", + " 'clues': [('hassle', 'annoy continually or chronically'),\n", + " ('plague', 'annoy continually or chronically'),\n", + " ('harry', 'annoy continually or chronically'),\n", + " ('chivvy', 'annoy continually or chronically'),\n", + " ('harass', 'exhaust by attacking repeatedly'),\n", " ('chevvy', 'annoy continually or chronically'),\n", " ('molest', 'annoy continually or chronically'),\n", - " ('hassle', 'annoy continually or chronically'),\n", - " ('chivvy', 'annoy continually or chronically'),\n", - " ('provoke', 'annoy continually or chronically'),\n", " ('beset', 'annoy continually or chronically'),\n", - " ('harry', 'annoy continually or chronically'),\n", - " ('plague', 'annoy continually or chronically')]},\n", + " ('provoke', 'annoy continually or chronically')]},\n", " {'answer': 'hardened',\n", " 'hint': 'synonyms for hardened',\n", - " 'clues': [('inure', 'cause to accept or become hardened to; habituate'),\n", - " ('season', 'make fit'),\n", - " ('temper', 'harden by reheating and cooling in oil'),\n", + " 'clues': [('harden', 'become hard or harder'),\n", " ('indurate', 'cause to accept or become hardened to; habituate'),\n", - " ('harden', 'make fit')]},\n", + " ('inure', 'cause to accept or become hardened to; habituate'),\n", + " ('season', 'make fit'),\n", + " ('temper', 'harden by reheating and cooling in oil')]},\n", " {'answer': 'harmonised',\n", " 'hint': 'synonyms for harmonised',\n", - " 'clues': [('chord',\n", - " 'bring into consonance, harmony, or accord while making music or singing'),\n", - " ('fit in', 'go together'),\n", + " 'clues': [('accord', 'go together'),\n", + " ('concord', 'go together'),\n", " ('harmonise',\n", + " 'bring (several things) into consonance or relate harmoniously'),\n", + " ('consort', 'go together'),\n", + " ('chord',\n", " 'bring into consonance, harmony, or accord while making music or singing'),\n", - " ('accord', 'go together'),\n", + " ('fit in', 'go together'),\n", " ('reconcile', 'bring into consonance or accord'),\n", - " ('consort', 'go together'),\n", - " ('agree', 'go together'),\n", - " ('concord', 'go together')]},\n", + " ('agree', 'go together')]},\n", " {'answer': 'harmonized',\n", " 'hint': 'synonyms for harmonized',\n", - " 'clues': [('chord',\n", - " 'bring into consonance, harmony, or accord while making music or singing'),\n", - " ('fit in', 'go together'),\n", + " 'clues': [('accord', 'go together'),\n", + " ('concord', 'go together'),\n", " ('harmonise',\n", + " 'bring (several things) into consonance or relate harmoniously'),\n", + " ('consort', 'go together'),\n", + " ('chord',\n", " 'bring into consonance, harmony, or accord while making music or singing'),\n", - " ('accord', 'go together'),\n", + " ('fit in', 'go together'),\n", " ('reconcile', 'bring into consonance or accord'),\n", - " ('consort', 'go together'),\n", - " ('agree', 'go together'),\n", - " ('concord', 'go together')]},\n", + " ('agree', 'go together')]},\n", " {'answer': 'harnessed',\n", " 'hint': 'synonyms for harnessed',\n", " 'clues': [('tackle', 'put a harness'),\n", " ('harness', 'exploit the power of'),\n", - " ('draw rein', 'control and direct with or as if by reins'),\n", - " ('rein', 'control and direct with or as if by reins'),\n", + " ('rein', 'keep in check'),\n", " ('rein in', 'control and direct with or as if by reins'),\n", - " ('rule', 'keep in check')]},\n", + " ('rule', 'keep in check'),\n", + " ('draw rein', 'control and direct with or as if by reins')]},\n", " {'answer': 'harried',\n", " 'hint': 'synonyms for harried',\n", - " 'clues': [('harass', 'annoy continually or chronically'),\n", - " ('chevvy', 'annoy continually or chronically'),\n", - " ('molest', 'annoy continually or chronically'),\n", - " ('harry',\n", - " 'make a pillaging or destructive raid on (a place), as in wartimes'),\n", - " ('hassle', 'annoy continually or chronically'),\n", + " 'clues': [('hassle', 'annoy continually or chronically'),\n", + " ('plague', 'annoy continually or chronically'),\n", + " ('harry', 'annoy continually or chronically'),\n", " ('chivvy', 'annoy continually or chronically'),\n", - " ('provoke', 'annoy continually or chronically'),\n", + " ('chevvy', 'annoy continually or chronically'),\n", " ('ravage',\n", " 'make a pillaging or destructive raid on (a place), as in wartimes'),\n", + " ('molest', 'annoy continually or chronically'),\n", " ('beset', 'annoy continually or chronically'),\n", - " ('plague', 'annoy continually or chronically')]},\n", + " ('harass', 'annoy continually or chronically'),\n", + " ('provoke', 'annoy continually or chronically')]},\n", " {'answer': 'hatched',\n", " 'hint': 'synonyms for hatched',\n", - " 'clues': [('think up', 'devise or invent'),\n", - " ('hatch',\n", - " 'inlay with narrow strips or lines of a different substance such as gold or silver, for the purpose of decorating'),\n", + " 'clues': [('incubate', 'sit on (eggs)'),\n", " ('concoct', 'devise or invent'),\n", + " ('hatch',\n", + " 'draw, cut, or engrave lines, usually parallel, on metal, wood, or paper'),\n", + " ('dream up', 'devise or invent'),\n", " ('brood', 'sit on (eggs)'),\n", - " ('incubate', 'sit on (eggs)'),\n", " ('think of', 'devise or invent'),\n", - " ('dream up', 'devise or invent'),\n", - " ('cover', 'sit on (eggs)')]},\n", + " ('cover', 'sit on (eggs)'),\n", + " ('think up', 'devise or invent')]},\n", " {'answer': 'haunted',\n", " 'hint': 'synonyms for haunted',\n", - " 'clues': [('frequent',\n", - " 'be a regular or frequent visitor to a certain place'),\n", - " ('ghost', 'haunt like a ghost; pursue'),\n", - " ('haunt', 'be a regular or frequent visitor to a certain place'),\n", + " 'clues': [('haunt',\n", + " 'follow stealthily or recur constantly and spontaneously to'),\n", + " ('obsess', 'haunt like a ghost; pursue'),\n", " ('stalk', 'follow stealthily or recur constantly and spontaneously to'),\n", - " ('obsess', 'haunt like a ghost; pursue')]},\n", + " ('frequent', 'be a regular or frequent visitor to a certain place'),\n", + " ('ghost', 'haunt like a ghost; pursue')]},\n", " {'answer': 'haunting',\n", " 'hint': 'synonyms for haunting',\n", - " 'clues': [('frequent',\n", - " 'be a regular or frequent visitor to a certain place'),\n", - " ('ghost', 'haunt like a ghost; pursue'),\n", - " ('haunt', 'be a regular or frequent visitor to a certain place'),\n", + " 'clues': [('haunt',\n", + " 'follow stealthily or recur constantly and spontaneously to'),\n", + " ('obsess', 'haunt like a ghost; pursue'),\n", " ('stalk', 'follow stealthily or recur constantly and spontaneously to'),\n", - " ('obsess', 'haunt like a ghost; pursue')]},\n", + " ('frequent', 'be a regular or frequent visitor to a certain place'),\n", + " ('ghost', 'haunt like a ghost; pursue')]},\n", " {'answer': 'headed',\n", " 'hint': 'synonyms for headed',\n", - " 'clues': [('channelize',\n", - " 'direct the course; determine the direction of travelling'),\n", + " 'clues': [('head', 'be in the front of or on top of'),\n", + " ('direct', 'direct the course; determine the direction of travelling'),\n", " ('steer', 'direct the course; determine the direction of travelling'),\n", - " ('head up', 'be the first or leading member of (a group) and excel'),\n", - " ('head', 'to go or travel towards'),\n", - " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", " ('lead', 'be in charge of'),\n", - " ('point', 'direct the course; determine the direction of travelling'),\n", + " ('channelise',\n", + " 'direct the course; determine the direction of travelling'),\n", + " ('manoeuver', 'direct the course; determine the direction of travelling'),\n", " ('guide', 'direct the course; determine the direction of travelling'),\n", - " ('direct', 'direct the course; determine the direction of travelling')]},\n", + " ('head up', 'be the first or leading member of (a group) and excel'),\n", + " ('point', 'direct the course; determine the direction of travelling')]},\n", " {'answer': 'healed',\n", " 'hint': 'synonyms for healed',\n", - " 'clues': [('heal', 'provide a cure for, make healthy again'),\n", - " ('mend', 'heal or recover'),\n", + " 'clues': [('mend', 'heal or recover'),\n", + " ('heal', 'provide a cure for, make healthy again'),\n", " ('cure', 'provide a cure for, make healthy again'),\n", " ('bring around', 'provide a cure for, make healthy again')]},\n", " {'answer': 'healing',\n", " 'hint': 'synonyms for healing',\n", - " 'clues': [('heal', 'provide a cure for, make healthy again'),\n", - " ('mend', 'heal or recover'),\n", + " 'clues': [('mend', 'heal or recover'),\n", + " ('heal', 'provide a cure for, make healthy again'),\n", " ('cure', 'provide a cure for, make healthy again'),\n", " ('bring around', 'provide a cure for, make healthy again')]},\n", " {'answer': 'heard',\n", " 'hint': 'synonyms for heard',\n", " 'clues': [('find out',\n", " 'get to know or become aware of, usually accidentally'),\n", - " ('try', 'examine or hear (evidence or a case) by judicial process'),\n", - " ('hear', 'listen and pay attention'),\n", - " ('discover', 'get to know or become aware of, usually accidentally'),\n", " ('get word', 'get to know or become aware of, usually accidentally'),\n", - " ('learn', 'get to know or become aware of, usually accidentally'),\n", - " ('see', 'get to know or become aware of, usually accidentally'),\n", - " ('listen', 'listen and pay attention'),\n", " ('get wind', 'get to know or become aware of, usually accidentally'),\n", - " ('pick up', 'get to know or become aware of, usually accidentally'),\n", + " ('listen', 'listen and pay attention'),\n", " ('get a line', 'get to know or become aware of, usually accidentally'),\n", - " ('take heed', 'listen and pay attention')]},\n", + " ('hear', 'examine or hear (evidence or a case) by judicial process'),\n", + " ('pick up', 'get to know or become aware of, usually accidentally'),\n", + " ('try', 'examine or hear (evidence or a case) by judicial process'),\n", + " ('see', 'get to know or become aware of, usually accidentally'),\n", + " ('take heed', 'listen and pay attention'),\n", + " ('discover', 'get to know or become aware of, usually accidentally'),\n", + " ('learn', 'get to know or become aware of, usually accidentally')]},\n", " {'answer': 'hearing',\n", " 'hint': 'synonyms for hearing',\n", " 'clues': [('find out',\n", " 'get to know or become aware of, usually accidentally'),\n", - " ('try', 'examine or hear (evidence or a case) by judicial process'),\n", - " ('hear', 'listen and pay attention'),\n", - " ('discover', 'get to know or become aware of, usually accidentally'),\n", " ('get word', 'get to know or become aware of, usually accidentally'),\n", - " ('learn', 'get to know or become aware of, usually accidentally'),\n", - " ('see', 'get to know or become aware of, usually accidentally'),\n", - " ('listen', 'listen and pay attention'),\n", " ('get wind', 'get to know or become aware of, usually accidentally'),\n", - " ('pick up', 'get to know or become aware of, usually accidentally'),\n", + " ('listen', 'listen and pay attention'),\n", " ('get a line', 'get to know or become aware of, usually accidentally'),\n", - " ('take heed', 'listen and pay attention')]},\n", + " ('hear', 'examine or hear (evidence or a case) by judicial process'),\n", + " ('pick up', 'get to know or become aware of, usually accidentally'),\n", + " ('try', 'examine or hear (evidence or a case) by judicial process'),\n", + " ('see', 'get to know or become aware of, usually accidentally'),\n", + " ('take heed', 'listen and pay attention'),\n", + " ('discover', 'get to know or become aware of, usually accidentally'),\n", + " ('learn', 'get to know or become aware of, usually accidentally')]},\n", " {'answer': 'heartening',\n", " 'hint': 'synonyms for heartening',\n", - " 'clues': [('recreate', 'give encouragement to'),\n", - " ('embolden', 'give encouragement to'),\n", + " 'clues': [('embolden', 'give encouragement to'),\n", + " ('hearten', 'give encouragement to'),\n", " ('cheer', 'give encouragement to'),\n", - " ('hearten', 'give encouragement to')]},\n", + " ('recreate', 'give encouragement to')]},\n", " {'answer': 'heated',\n", " 'hint': 'synonyms for heated',\n", - " 'clues': [('inflame', 'arouse or excite feelings and passions'),\n", - " ('heat up', 'gain heat or get hot'),\n", + " 'clues': [('fire up', 'arouse or excite feelings and passions'),\n", " ('heat', 'gain heat or get hot'),\n", - " ('hot up', 'gain heat or get hot'),\n", + " ('ignite', 'arouse or excite feelings and passions'),\n", + " ('inflame', 'arouse or excite feelings and passions'),\n", " ('stir up', 'arouse or excite feelings and passions'),\n", + " ('heat up', 'make hot or hotter'),\n", " ('wake', 'arouse or excite feelings and passions'),\n", - " ('fire up', 'arouse or excite feelings and passions'),\n", - " ('ignite', 'arouse or excite feelings and passions')]},\n", + " ('hot up', 'gain heat or get hot')]},\n", " {'answer': 'hedged',\n", " 'hint': 'synonyms for hedged',\n", - " 'clues': [('sidestep',\n", - " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", - " ('hedge in', 'enclose or bound in with or as it with a hedge or hedges'),\n", - " ('hedge', 'hinder or restrict with or as if with a hedge'),\n", - " ('fudge',\n", - " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", - " ('duck',\n", - " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", - " ('elude',\n", + " 'clues': [('parry',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", + " ('hedge', 'minimize loss or risk'),\n", " ('circumvent',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", - " ('parry',\n", + " ('duck',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", - " ('dodge',\n", + " ('sidestep',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", " ('skirt',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", " ('put off',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", + " ('hedge in', 'enclose or bound in with or as it with a hedge or hedges'),\n", " ('evade',\n", + " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", + " ('dodge',\n", + " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", + " ('fudge',\n", + " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)'),\n", + " ('elude',\n", " 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues)')]},\n", " {'answer': 'heightening',\n", " 'hint': 'synonyms for heightening',\n", - " 'clues': [('heighten',\n", - " 'make more extreme; raise in quantity, degree, or intensity'),\n", - " ('compound', 'make more intense, stronger, or more marked; ,'),\n", - " ('intensify', 'make more intense, stronger, or more marked; ,'),\n", - " ('sharpen', \"make (one's senses) more acute\"),\n", + " 'clues': [('deepen', 'make more intense, stronger, or more marked; ,'),\n", + " ('heighten', 'become more extreme'),\n", " ('enhance', 'increase'),\n", + " ('sharpen', \"make (one's senses) more acute\"),\n", + " ('intensify', 'make more intense, stronger, or more marked; ,'),\n", " ('raise', 'increase'),\n", - " ('deepen', 'make more intense, stronger, or more marked; ,')]},\n", + " ('compound', 'make more intense, stronger, or more marked; ,')]},\n", " {'answer': 'held',\n", " 'hint': 'synonyms for held',\n", - " 'clues': [('keep back',\n", - " 'secure and keep for possible future use or application'),\n", - " ('maintain', 'keep in a certain state, position, or activity; e.g.,'),\n", - " ('hold', 'keep from departing'),\n", - " ('control',\n", - " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('deem', 'keep in mind or convey as a conviction or view'),\n", - " ('obtain', 'be valid, applicable, or true'),\n", + " 'clues': [('hold', 'cover as for protection against noise or smell'),\n", + " ('support', 'be the physical support of; carry the weight of'),\n", + " ('halt', 'cause to stop'),\n", + " ('make', 'organize or be responsible for'),\n", + " ('contain', 'be capable of holding or containing'),\n", + " ('take hold', \"have or hold in one's hands or grip\"),\n", " ('admit', 'have room for; hold without crowding'),\n", - " ('have', 'organize or be responsible for'),\n", - " ('reserve',\n", + " ('nurse', 'maintain (a theory, thoughts, or feelings)'),\n", + " ('have got',\n", + " 'have or possess, either in a concrete or an abstract sense'),\n", + " ('guard', 'protect against a challenge or attack'),\n", + " ('obligate', 'bind by an obligation; cause to be indebted'),\n", + " ('concur', 'be in accord; be in agreement'),\n", + " ('defend', 'protect against a challenge or attack'),\n", + " ('withstand', 'resist or confront with resistance'),\n", + " ('book',\n", " 'arrange for and reserve (something for someone else) in advance'),\n", " ('confine', 'to close within bounds, limit or hold back from movement'),\n", - " ('carry', 'support or hold in a certain manner'),\n", - " ('contain', 'contain or hold; have within'),\n", - " ('bear', 'contain or hold; have within'),\n", + " ('have', 'organize or be responsible for'),\n", + " ('restrain', 'to close within bounds, limit or hold back from movement'),\n", + " ('prevail', 'be valid, applicable, or true'),\n", + " ('declare', 'declare to be'),\n", + " ('keep', 'keep in a certain state, position, or activity; e.g.,'),\n", + " ('hold back', 'secure and keep for possible future use or application'),\n", + " ('arrest', 'cause to stop'),\n", + " ('defy', 'resist or confront with resistance'),\n", + " ('deem', 'keep in mind or convey as a conviction or view'),\n", + " ('obtain', 'be valid, applicable, or true'),\n", + " ('take for', 'keep in mind or convey as a conviction or view'),\n", + " ('carry', 'drink alcohol without showing ill effects'),\n", " ('harbor', 'maintain (a theory, thoughts, or feelings)'),\n", + " ('bear', 'support or hold in a certain manner'),\n", + " ('sustain', 'be the physical support of; carry the weight of'),\n", " ('moderate',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('withstand', 'resist or confront with resistance'),\n", - " ('retain', 'secure and keep for possible future use or application'),\n", - " ('give', 'organize or be responsible for'),\n", - " ('have got',\n", - " 'have or possess, either in a concrete or an abstract sense'),\n", - " ('hold up', 'be the physical support of; carry the weight of'),\n", " ('throw', 'organize or be responsible for'),\n", - " ('keep', 'keep in a certain state, position, or activity; e.g.,'),\n", - " ('support', 'be the physical support of; carry the weight of'),\n", - " ('take', 'be capable of holding or containing'),\n", - " ('take for', 'keep in mind or convey as a conviction or view'),\n", - " ('obligate', 'bind by an obligation; cause to be indebted'),\n", - " ('nurse', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('agree', 'be in accord; be in agreement'),\n", " ('entertain', 'maintain (a theory, thoughts, or feelings)'),\n", - " ('hold in',\n", + " ('hold up', 'be the physical support of; carry the weight of'),\n", + " ('maintain', 'keep in a certain state, position, or activity; e.g.,'),\n", + " ('check',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('declare', 'declare to be'),\n", - " ('concord', 'be in accord; be in agreement'),\n", - " ('take hold', \"have or hold in one's hands or grip\"),\n", - " ('make', 'organize or be responsible for'),\n", - " ('sustain', 'be the physical support of; carry the weight of'),\n", - " ('prevail', 'be valid, applicable, or true'),\n", " ('adjudge', 'declare to be'),\n", - " ('hold back', 'secure and keep for possible future use or application'),\n", - " ('bind', 'bind by an obligation; cause to be indebted'),\n", - " ('concur', 'be in accord; be in agreement'),\n", " ('curb',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('halt', 'cause to stop'),\n", - " ('accommodate', 'have room for; hold without crowding'),\n", - " ('apply', 'be pertinent or relevant or applicable'),\n", - " ('defend', 'protect against a challenge or attack'),\n", - " ('arrest', 'cause to stop'),\n", - " ('defy', 'resist or confront with resistance'),\n", - " ('check',\n", + " ('control',\n", " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", - " ('view as', 'keep in mind or convey as a conviction or view'),\n", - " ('guard', 'protect against a challenge or attack'),\n", + " ('concord', 'be in accord; be in agreement'),\n", + " ('reserve',\n", + " 'arrange for and reserve (something for someone else) in advance'),\n", " ('go for', 'be pertinent or relevant or applicable'),\n", - " ('book',\n", - " 'arrange for and reserve (something for someone else) in advance')]},\n", + " ('view as', 'keep in mind or convey as a conviction or view'),\n", + " ('give', 'organize or be responsible for'),\n", + " ('keep back', 'secure and keep for possible future use or application'),\n", + " ('hold in',\n", + " 'lessen the intensity of; temper; hold in restraint; hold or keep within limits'),\n", + " ('take', 'be capable of holding or containing'),\n", + " ('apply', 'be pertinent or relevant or applicable'),\n", + " ('accommodate', 'have room for; hold without crowding'),\n", + " ('bind', 'bind by an obligation; cause to be indebted'),\n", + " ('agree', 'be in accord; be in agreement')]},\n", " {'answer': 'heralded',\n", " 'hint': 'synonyms for heralded',\n", - " 'clues': [('annunciate', 'foreshadow or presage'),\n", - " ('harbinger', 'foreshadow or presage'),\n", - " ('herald', 'praise vociferously'),\n", - " ('acclaim', 'praise vociferously'),\n", + " 'clues': [('harbinger', 'foreshadow or presage'),\n", + " ('annunciate', 'foreshadow or presage'),\n", + " ('herald', 'foreshadow or presage'),\n", " ('hail', 'praise vociferously'),\n", " ('foretell', 'foreshadow or presage'),\n", - " ('announce', 'foreshadow or presage')]},\n", + " ('announce', 'foreshadow or presage'),\n", + " ('acclaim', 'praise vociferously')]},\n", " {'answer': 'hesitating',\n", " 'hint': 'synonyms for hesitating',\n", - " 'clues': [('waffle', 'pause or hold back in uncertainty or unwillingness'),\n", - " ('hesitate', 'pause or hold back in uncertainty or unwillingness'),\n", - " ('waver', 'pause or hold back in uncertainty or unwillingness'),\n", - " ('pause', 'interrupt temporarily an activity before continuing')]},\n", + " 'clues': [('hesitate',\n", + " 'pause or hold back in uncertainty or unwillingness'),\n", + " ('waffle', 'pause or hold back in uncertainty or unwillingness'),\n", + " ('pause', 'interrupt temporarily an activity before continuing'),\n", + " ('waver', 'pause or hold back in uncertainty or unwillingness')]},\n", " {'answer': 'hex',\n", " 'hint': 'synonyms for hex',\n", - " 'clues': [('jinx',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('witch',\n", + " 'clues': [('witch',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('bewitch',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('glamour',\n", - " 'cast a spell over someone or something; put a hex on someone or something'),\n", " ('enchant',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('jinx',\n", + " 'cast a spell over someone or something; put a hex on someone or something'),\n", + " ('glamour',\n", " 'cast a spell over someone or something; put a hex on someone or something')]},\n", " {'answer': 'hexed',\n", " 'hint': 'synonyms for hexed',\n", - " 'clues': [('hex',\n", + " 'clues': [('witch',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('jinx',\n", + " ('bewitch',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('witch',\n", + " ('enchant',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('bewitch',\n", + " ('hex',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('glamour',\n", + " ('jinx',\n", " 'cast a spell over someone or something; put a hex on someone or something'),\n", - " ('enchant',\n", + " ('glamour',\n", " 'cast a spell over someone or something; put a hex on someone or something')]},\n", " {'answer': 'hidden',\n", " 'hint': 'synonyms for hidden',\n", " 'clues': [('hide',\n", - " 'make undecipherable or imperceptible by obscuring or concealing'),\n", - " ('hide out',\n", " 'be or go into hiding; keep out of sight, as for protection and safety'),\n", - " ('enshroud', 'cover as if with a shroud'),\n", - " ('veil',\n", + " ('shroud', 'cover as if with a shroud'),\n", + " ('obliterate',\n", " 'make undecipherable or imperceptible by obscuring or concealing'),\n", " ('obscure',\n", " 'make undecipherable or imperceptible by obscuring or concealing'),\n", " ('cover', 'cover as if with a shroud'),\n", - " ('obliterate',\n", - " 'make undecipherable or imperceptible by obscuring or concealing'),\n", " ('conceal', 'prevent from being seen or discovered'),\n", " ('blot out',\n", + " 'make undecipherable or imperceptible by obscuring or concealing'),\n", + " ('hide out',\n", + " 'be or go into hiding; keep out of sight, as for protection and safety'),\n", + " ('veil',\n", " 'make undecipherable or imperceptible by obscuring or concealing')]},\n", " {'answer': 'hinder',\n", " 'hint': 'synonyms for hinder',\n", " 'clues': [('blockade',\n", " 'hinder or prevent the progress or accomplishment of'),\n", + " ('impede', 'be a hindrance or obstacle to'),\n", + " ('hamper', 'put at a disadvantage'),\n", + " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block', 'hinder or prevent the progress or accomplishment of'),\n", " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", - " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block', 'hinder or prevent the progress or accomplishment of'),\n", " ('handicap', 'put at a disadvantage'),\n", - " ('hamper', 'put at a disadvantage'),\n", - " ('impede', 'be a hindrance or obstacle to'),\n", - " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n", + " ('stymy', 'hinder or prevent the progress or accomplishment of')]},\n", " {'answer': 'hindering',\n", " 'hint': 'synonyms for hindering',\n", - " 'clues': [('blockade',\n", + " 'clues': [('hinder',\n", " 'hinder or prevent the progress or accomplishment of'),\n", + " ('blockade', 'hinder or prevent the progress or accomplishment of'),\n", + " ('impede', 'be a hindrance or obstacle to'),\n", + " ('hamper', 'put at a disadvantage'),\n", + " ('embarrass', 'hinder or prevent the progress or accomplishment of'),\n", + " ('block', 'hinder or prevent the progress or accomplishment of'),\n", " ('stymie', 'hinder or prevent the progress or accomplishment of'),\n", - " ('hinder', 'hinder or prevent the progress or accomplishment of'),\n", - " ('stymy', 'hinder or prevent the progress or accomplishment of'),\n", " ('obstruct', 'hinder or prevent the progress or accomplishment of'),\n", - " ('block', 'hinder or prevent the progress or accomplishment of'),\n", " ('handicap', 'put at a disadvantage'),\n", - " ('hamper', 'put at a disadvantage'),\n", - " ('impede', 'be a hindrance or obstacle to'),\n", - " ('embarrass', 'hinder or prevent the progress or accomplishment of')]},\n", + " ('stymy', 'hinder or prevent the progress or accomplishment of')]},\n", " {'answer': 'hired',\n", " 'hint': 'synonyms for hired',\n", - " 'clues': [('engage', 'engage for service under a term of contract'),\n", - " ('employ', 'engage or hire for work'),\n", - " ('rent', 'engage for service under a term of contract'),\n", - " ('hire', 'hold under a lease or rental agreement; of goods and services'),\n", - " ('charter',\n", - " 'hold under a lease or rental agreement; of goods and services'),\n", + " 'clues': [('engage', 'engage or hire for work'),\n", " ('lease',\n", " 'hold under a lease or rental agreement; of goods and services'),\n", - " ('take', 'engage for service under a term of contract')]},\n", + " ('rent', 'engage for service under a term of contract'),\n", + " ('hire', 'engage for service under a term of contract'),\n", + " ('take', 'engage for service under a term of contract'),\n", + " ('charter', 'engage for service under a term of contract'),\n", + " ('employ', 'engage or hire for work')]},\n", " {'answer': 'hollow',\n", " 'hint': 'synonyms for hollow',\n", - " 'clues': [('core out', 'remove the interior of'),\n", + " 'clues': [('hollow out', 'remove the interior of'),\n", " ('dig', 'remove the inner part or the core of'),\n", - " ('hollow out', 'remove the interior of'),\n", - " ('excavate', 'remove the inner part or the core of')]},\n", + " ('excavate', 'remove the inner part or the core of'),\n", + " ('core out', 'remove the interior of')]},\n", " {'answer': 'honored',\n", " 'hint': 'synonyms for honored',\n", - " 'clues': [('respect', 'show respect towards'),\n", - " ('honor', 'show respect towards'),\n", + " 'clues': [('honor', 'accept as pay'),\n", " ('observe', 'show respect towards'),\n", - " ('abide by', 'show respect towards'),\n", - " ('reward', 'bestow honor or rewards upon')]},\n", + " ('reward', 'bestow honor or rewards upon'),\n", + " ('respect', 'show respect towards'),\n", + " ('abide by', 'show respect towards')]},\n", " {'answer': 'hoofed',\n", " 'hint': 'synonyms for hoofed',\n", - " 'clues': [('foot', 'walk'),\n", - " ('leg it', 'walk'),\n", + " 'clues': [('hoof it', 'walk'),\n", + " ('foot', 'walk'),\n", " ('hoof', 'dance in a professional capacity'),\n", - " ('hoof it', 'walk')]},\n", + " ('leg it', 'walk')]},\n", " {'answer': 'hooked',\n", " 'hint': 'synonyms for hooked',\n", - " 'clues': [('pilfer', 'make off with belongings of others'),\n", - " ('hook',\n", - " 'to cause (someone or oneself) to become dependent (on something, especially a narcotic drug)'),\n", - " ('solicit', 'approach with an offer of sexual favors'),\n", - " ('purloin', 'make off with belongings of others'),\n", + " 'clues': [('hook', 'catch with a hook'),\n", " ('soak', 'rip off; ask an unreasonable price'),\n", - " ('pinch', 'make off with belongings of others'),\n", - " ('accost', 'approach with an offer of sexual favors'),\n", - " ('gazump', 'rip off; ask an unreasonable price'),\n", - " ('sneak', 'make off with belongings of others'),\n", - " ('filch', 'make off with belongings of others'),\n", - " ('cop', 'take by theft'),\n", " ('crochet',\n", " 'make a piece of needlework by interlocking and looping thread with a hooked needle'),\n", - " ('cabbage', 'make off with belongings of others'),\n", + " ('overcharge', 'rip off; ask an unreasonable price'),\n", + " ('sneak', 'make off with belongings of others'),\n", + " ('pilfer', 'make off with belongings of others'),\n", + " ('pluck', 'rip off; ask an unreasonable price'),\n", + " ('purloin', 'make off with belongings of others'),\n", + " ('abstract', 'make off with belongings of others'),\n", + " ('lift', 'make off with belongings of others'),\n", + " ('accost', 'approach with an offer of sexual favors'),\n", + " ('nobble', 'make off with belongings of others'),\n", " ('snarf', 'make off with belongings of others'),\n", - " ('rob', 'rip off; ask an unreasonable price'),\n", + " ('plume', 'rip off; ask an unreasonable price'),\n", " ('swipe', 'make off with belongings of others'),\n", + " ('filch', 'make off with belongings of others'),\n", " ('glom', 'take by theft'),\n", + " ('thieve', 'take by theft'),\n", " ('knock off', 'take by theft'),\n", - " ('lift', 'make off with belongings of others'),\n", - " ('nobble', 'make off with belongings of others'),\n", - " ('pluck', 'rip off; ask an unreasonable price'),\n", - " ('overcharge', 'rip off; ask an unreasonable price'),\n", + " ('gazump', 'rip off; ask an unreasonable price'),\n", + " ('cabbage', 'make off with belongings of others'),\n", + " ('rob', 'rip off; ask an unreasonable price'),\n", " ('snitch', 'take by theft'),\n", + " ('addict',\n", + " 'to cause (someone or oneself) to become dependent (on something, especially a narcotic drug)'),\n", + " ('pinch', 'make off with belongings of others'),\n", " ('fleece', 'rip off; ask an unreasonable price'),\n", " ('snare', 'entice and trap'),\n", - " ('plume', 'rip off; ask an unreasonable price'),\n", - " ('thieve', 'take by theft'),\n", - " ('surcharge', 'rip off; ask an unreasonable price'),\n", - " ('abstract', 'make off with belongings of others'),\n", - " ('addict',\n", - " 'to cause (someone or oneself) to become dependent (on something, especially a narcotic drug)')]},\n", + " ('solicit', 'approach with an offer of sexual favors'),\n", + " ('cop', 'take by theft'),\n", + " ('surcharge', 'rip off; ask an unreasonable price')]},\n", " {'answer': 'horrified',\n", " 'hint': 'synonyms for horrified',\n", " 'clues': [('appal',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('horrify',\n", - " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('dismay',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('horrify',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('alarm',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", " {'answer': 'horrifying',\n", " 'hint': 'synonyms for horrifying',\n", " 'clues': [('appal',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", - " ('horrify',\n", - " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('dismay',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", + " ('horrify',\n", + " 'fill with apprehension or alarm; cause to be unpleasantly surprised'),\n", " ('alarm',\n", " 'fill with apprehension or alarm; cause to be unpleasantly surprised')]},\n", " {'answer': 'howling',\n", " 'hint': 'synonyms for howling',\n", - " 'clues': [('ululate', 'emit long loud cries'),\n", - " ('howl', 'make a loud noise, as of wind, water, or vehicles'),\n", + " 'clues': [('howl', 'emit long loud cries'),\n", + " ('roar', 'laugh unrestrainedly and heartily'),\n", + " ('yowl', 'cry loudly, as of animals'),\n", " ('yaup', 'emit long loud cries'),\n", " ('wail', 'emit long loud cries'),\n", - " ('yawl', 'emit long loud cries'),\n", - " ('roar', 'make a loud noise, as of wind, water, or vehicles'),\n", " ('wrawl', 'cry loudly, as of animals'),\n", - " ('yowl', 'cry loudly, as of animals'),\n", - " ('yammer', 'cry loudly, as of animals')]},\n", + " ('yammer', 'cry loudly, as of animals'),\n", + " ('ululate', 'emit long loud cries'),\n", + " ('yawl', 'emit long loud cries')]},\n", " {'answer': 'hulking',\n", " 'hint': 'synonyms for hulking',\n", - " 'clues': [('hulk', 'appear very large or occupy a commanding position'),\n", + " 'clues': [('tower', 'appear very large or occupy a commanding position'),\n", + " ('hulk', 'appear very large or occupy a commanding position'),\n", " ('predominate', 'appear very large or occupy a commanding position'),\n", - " ('loom', 'appear very large or occupy a commanding position'),\n", - " ('tower', 'appear very large or occupy a commanding position')]},\n", + " ('loom', 'appear very large or occupy a commanding position')]},\n", " {'answer': 'humble',\n", " 'hint': 'synonyms for humble',\n", - " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n", - " ('abase', 'cause to feel shame; hurt the pride of'),\n", - " ('humiliate', 'cause to feel shame; hurt the pride of'),\n", - " ('mortify', 'cause to feel shame; hurt the pride of')]},\n", + " 'clues': [('abase', 'cause to feel shame; hurt the pride of'),\n", + " ('chagrin', 'cause to feel shame; hurt the pride of'),\n", + " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " ('humiliate', 'cause to feel shame; hurt the pride of')]},\n", " {'answer': 'humbled',\n", " 'hint': 'synonyms for humbled',\n", - " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n", - " ('humiliate', 'cause to feel shame; hurt the pride of'),\n", - " ('humble', 'cause to be unpretentious'),\n", + " 'clues': [('humble', 'cause to feel shame; hurt the pride of'),\n", + " ('abase', 'cause to feel shame; hurt the pride of'),\n", + " ('chagrin', 'cause to feel shame; hurt the pride of'),\n", " ('mortify', 'cause to feel shame; hurt the pride of'),\n", - " ('abase', 'cause to feel shame; hurt the pride of')]},\n", + " ('humiliate', 'cause to feel shame; hurt the pride of')]},\n", " {'answer': 'humbling',\n", " 'hint': 'synonyms for humbling',\n", - " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n", - " ('humiliate', 'cause to feel shame; hurt the pride of'),\n", - " ('humble', 'cause to be unpretentious'),\n", + " 'clues': [('humble', 'cause to feel shame; hurt the pride of'),\n", + " ('abase', 'cause to feel shame; hurt the pride of'),\n", + " ('chagrin', 'cause to feel shame; hurt the pride of'),\n", " ('mortify', 'cause to feel shame; hurt the pride of'),\n", - " ('abase', 'cause to feel shame; hurt the pride of')]},\n", + " ('humiliate', 'cause to feel shame; hurt the pride of')]},\n", " {'answer': 'humiliated',\n", " 'hint': 'synonyms for humiliated',\n", - " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n", - " ('humiliate', 'cause to feel shame; hurt the pride of'),\n", - " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " 'clues': [('humble', 'cause to feel shame; hurt the pride of'),\n", " ('abase', 'cause to feel shame; hurt the pride of'),\n", - " ('humble', 'cause to feel shame; hurt the pride of')]},\n", + " ('chagrin', 'cause to feel shame; hurt the pride of'),\n", + " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " ('humiliate', 'cause to feel shame; hurt the pride of')]},\n", " {'answer': 'humiliating',\n", " 'hint': 'synonyms for humiliating',\n", - " 'clues': [('chagrin', 'cause to feel shame; hurt the pride of'),\n", - " ('humiliate', 'cause to feel shame; hurt the pride of'),\n", - " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " 'clues': [('humble', 'cause to feel shame; hurt the pride of'),\n", " ('abase', 'cause to feel shame; hurt the pride of'),\n", - " ('humble', 'cause to feel shame; hurt the pride of')]},\n", + " ('chagrin', 'cause to feel shame; hurt the pride of'),\n", + " ('mortify', 'cause to feel shame; hurt the pride of'),\n", + " ('humiliate', 'cause to feel shame; hurt the pride of')]},\n", " {'answer': 'humped',\n", " 'hint': 'synonyms for humped',\n", - " 'clues': [('have it away', 'have sexual intercourse with'),\n", - " ('roll in the hay', 'have sexual intercourse with'),\n", + " 'clues': [('hump', 'have sexual intercourse with'),\n", " ('jazz', 'have sexual intercourse with'),\n", + " ('eff', 'have sexual intercourse with'),\n", + " ('do it', 'have sexual intercourse with'),\n", + " ('bed', 'have sexual intercourse with'),\n", + " ('lie with', 'have sexual intercourse with'),\n", + " ('sleep with', 'have sexual intercourse with'),\n", " ('hunch',\n", " \"round one's back by bending forward and drawing the shoulders forward\"),\n", - " ('get it on', 'have sexual intercourse with'),\n", - " ('hump',\n", - " \"round one's back by bending forward and drawing the shoulders forward\"),\n", - " ('screw', 'have sexual intercourse with'),\n", - " ('hunch over',\n", - " \"round one's back by bending forward and drawing the shoulders forward\"),\n", - " ('have sex', 'have sexual intercourse with'),\n", - " ('have intercourse', 'have sexual intercourse with'),\n", - " ('eff', 'have sexual intercourse with'),\n", - " ('get laid', 'have sexual intercourse with'),\n", - " ('love', 'have sexual intercourse with'),\n", - " ('have it off', 'have sexual intercourse with'),\n", " ('fuck', 'have sexual intercourse with'),\n", - " ('do it', 'have sexual intercourse with'),\n", " ('hunch forward',\n", " \"round one's back by bending forward and drawing the shoulders forward\"),\n", - " ('bang', 'have sexual intercourse with'),\n", " ('be intimate', 'have sexual intercourse with'),\n", - " ('bed', 'have sexual intercourse with'),\n", " ('make love', 'have sexual intercourse with'),\n", - " ('have a go at it', 'have sexual intercourse with'),\n", - " ('bonk', 'have sexual intercourse with'),\n", - " ('sleep with', 'have sexual intercourse with'),\n", - " ('sleep together', 'have sexual intercourse with'),\n", + " ('get it on', 'have sexual intercourse with'),\n", + " ('roll in the hay', 'have sexual intercourse with'),\n", " ('know', 'have sexual intercourse with'),\n", + " ('bang', 'have sexual intercourse with'),\n", + " ('love', 'have sexual intercourse with'),\n", + " ('have sex', 'have sexual intercourse with'),\n", + " ('bonk', 'have sexual intercourse with'),\n", + " ('have it off', 'have sexual intercourse with'),\n", + " ('get laid', 'have sexual intercourse with'),\n", + " ('hunch over',\n", + " \"round one's back by bending forward and drawing the shoulders forward\"),\n", + " ('have a go at it', 'have sexual intercourse with'),\n", + " ('have it away', 'have sexual intercourse with'),\n", " ('make out', 'have sexual intercourse with'),\n", - " ('lie with', 'have sexual intercourse with')]},\n", + " ('have intercourse', 'have sexual intercourse with'),\n", + " ('sleep together', 'have sexual intercourse with'),\n", + " ('screw', 'have sexual intercourse with')]},\n", " {'answer': 'hunched',\n", " 'hint': 'synonyms for hunched',\n", " 'clues': [('hunch',\n", " \"round one's back by bending forward and drawing the shoulders forward\"),\n", - " ('hunch forward',\n", - " \"round one's back by bending forward and drawing the shoulders forward\"),\n", " ('hunch over',\n", " \"round one's back by bending forward and drawing the shoulders forward\"),\n", + " ('hunch forward',\n", + " \"round one's back by bending forward and drawing the shoulders forward\"),\n", " ('hump',\n", " \"round one's back by bending forward and drawing the shoulders forward\")]},\n", " {'answer': 'hunted',\n", " 'hint': 'synonyms for hunted',\n", - " 'clues': [('hunt',\n", - " 'oscillate about a desired speed, position, or state to an undesirable extent'),\n", + " 'clues': [('hunt', 'pursue for food or sport (as of wild animals)'),\n", + " ('hound', 'pursue or chase relentlessly'),\n", " ('hunt down', 'pursue for food or sport (as of wild animals)'),\n", - " ('trace', 'pursue or chase relentlessly'),\n", " ('track down', 'pursue for food or sport (as of wild animals)'),\n", " ('run', 'pursue for food or sport (as of wild animals)'),\n", - " ('hound', 'pursue or chase relentlessly')]},\n", + " ('trace', 'pursue or chase relentlessly')]},\n", " {'answer': 'hurried',\n", " 'hint': 'synonyms for hurried',\n", - " 'clues': [('hasten', 'act or move at high speed'),\n", - " ('festinate', 'act or move at high speed'),\n", - " ('zip', 'move very fast'),\n", - " ('look sharp', 'act or move at high speed'),\n", + " 'clues': [('zip', 'move very fast'),\n", " ('speed', 'move very fast'),\n", - " ('rush', 'act or move at high speed'),\n", - " ('hurry', 'move very fast'),\n", - " ('travel rapidly', 'move very fast')]},\n", + " ('hurry', 'urge to an unnatural speed'),\n", + " ('rush', 'urge to an unnatural speed'),\n", + " ('look sharp', 'act or move at high speed'),\n", + " ('travel rapidly', 'move very fast'),\n", + " ('hasten', 'act or move at high speed'),\n", + " ('festinate', 'act or move at high speed')]},\n", " {'answer': 'hurrying',\n", " 'hint': 'synonyms for hurrying',\n", - " 'clues': [('hasten', 'act or move at high speed'),\n", - " ('festinate', 'act or move at high speed'),\n", - " ('zip', 'move very fast'),\n", - " ('look sharp', 'act or move at high speed'),\n", + " 'clues': [('zip', 'move very fast'),\n", " ('speed', 'move very fast'),\n", - " ('rush', 'act or move at high speed'),\n", - " ('hurry', 'move very fast'),\n", - " ('travel rapidly', 'move very fast')]},\n", + " ('hurry', 'urge to an unnatural speed'),\n", + " ('rush', 'urge to an unnatural speed'),\n", + " ('look sharp', 'act or move at high speed'),\n", + " ('travel rapidly', 'move very fast'),\n", + " ('hasten', 'act or move at high speed'),\n", + " ('festinate', 'act or move at high speed')]},\n", " {'answer': 'hurt',\n", " 'hint': 'synonyms for hurt',\n", - " 'clues': [('spite', 'hurt the feelings of'),\n", - " ('ache', 'be the source of pain'),\n", - " ('suffer', 'feel pain or be in pain'),\n", - " ('anguish', 'cause emotional anguish or make miserable'),\n", + " 'clues': [('wound', 'hurt the feelings of'),\n", + " ('ache', 'feel physical pain'),\n", + " ('spite', 'hurt the feelings of'),\n", + " ('offend', 'hurt the feelings of'),\n", + " ('smart', 'be the source of pain'),\n", + " ('bruise', 'hurt the feelings of'),\n", " ('pain', 'cause emotional anguish or make miserable'),\n", + " ('suffer', 'feel physical pain'),\n", " ('injure', 'hurt the feelings of'),\n", - " ('smart', 'be the source of pain'),\n", - " ('wound', 'hurt the feelings of'),\n", - " ('offend', 'hurt the feelings of'),\n", - " ('bruise', 'hurt the feelings of')]},\n", + " ('anguish', 'cause emotional anguish or make miserable')]},\n", " {'answer': 'hushed',\n", " 'hint': 'synonyms for hushed',\n", - " 'clues': [('quieten', 'cause to be quiet or not talk'),\n", - " ('still', 'cause to be quiet or not talk'),\n", - " ('quiesce', 'become quiet or quieter'),\n", + " 'clues': [('pipe down', 'become quiet or quieter'),\n", " ('silence', 'cause to be quiet or not talk'),\n", + " ('hush up', 'cause to be quiet or not talk'),\n", + " ('hush', 'become quiet or quieter'),\n", + " ('quiesce', 'become quiet or quieter'),\n", + " ('quiet', 'become quiet or quieter'),\n", " ('quiet down', 'become quiet or quieter'),\n", + " ('still', 'cause to be quiet or not talk'),\n", " ('shut up', 'cause to be quiet or not talk'),\n", - " ('hush',\n", - " 'run water over the ground to erode (soil), revealing the underlying strata and valuable minerals'),\n", - " ('pipe down', 'become quiet or quieter'),\n", - " ('quiet', 'become quiet or quieter'),\n", - " ('hush up', 'cause to be quiet or not talk')]},\n", + " ('quieten', 'cause to be quiet or not talk')]},\n", " {'answer': 'identified',\n", " 'hint': 'synonyms for identified',\n", - " 'clues': [('identify',\n", + " 'clues': [('name',\n", + " 'give the name or identifying characteristics of; refer to by name or some other identifying characteristic property'),\n", + " ('identify',\n", " 'recognize as being; establish the identity of someone or something'),\n", - " ('name', 'identify as in botany or biology, for example'),\n", - " ('distinguish', 'identify as in botany or biology, for example'),\n", " ('key', 'identify as in botany or biology, for example'),\n", - " ('key out', 'identify as in botany or biology, for example'),\n", " ('describe', 'identify as in botany or biology, for example'),\n", + " ('distinguish', 'identify as in botany or biology, for example'),\n", " ('discover', 'identify as in botany or biology, for example'),\n", + " ('key out', 'identify as in botany or biology, for example'),\n", " ('place',\n", " 'recognize as being; establish the identity of someone or something')]},\n", " {'answer': 'idle',\n", " 'hint': 'synonyms for idle',\n", - " 'clues': [('stagnate', 'be idle; exist in a changeless situation'),\n", + " 'clues': [('slug', 'be idle; exist in a changeless situation'),\n", " ('laze', 'be idle; exist in a changeless situation'),\n", - " ('tick over', 'run disconnected or idle'),\n", - " ('slug', 'be idle; exist in a changeless situation')]},\n", + " ('stagnate', 'be idle; exist in a changeless situation'),\n", + " ('tick over', 'run disconnected or idle')]},\n", " {'answer': 'idolised',\n", " 'hint': 'synonyms for idolised',\n", - " 'clues': [('idolise',\n", + " 'clues': [('idolize',\n", " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", " ('hero-worship',\n", " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", - " ('revere',\n", - " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", " ('worship',\n", + " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", + " ('revere',\n", " 'love unquestioningly and uncritically or to excess; venerate as an idol')]},\n", " {'answer': 'idolized',\n", " 'hint': 'synonyms for idolized',\n", - " 'clues': [('idolise',\n", + " 'clues': [('idolize',\n", " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", " ('hero-worship',\n", " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", - " ('revere',\n", - " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", " ('worship',\n", + " 'love unquestioningly and uncritically or to excess; venerate as an idol'),\n", + " ('revere',\n", " 'love unquestioningly and uncritically or to excess; venerate as an idol')]},\n", " {'answer': 'ignited',\n", " 'hint': 'synonyms for ignited',\n", - " 'clues': [('take fire', 'start to burn or burst into flames'),\n", - " ('catch fire', 'start to burn or burst into flames'),\n", - " ('inflame', 'arouse or excite feelings and passions'),\n", - " ('ignite', 'start to burn or burst into flames'),\n", - " ('erupt', 'start to burn or burst into flames'),\n", + " 'clues': [('light',\n", + " 'cause to start burning; subject to fire or great heat'),\n", " ('conflagrate', 'start to burn or burst into flames'),\n", - " ('stir up', 'arouse or excite feelings and passions'),\n", + " ('erupt', 'start to burn or burst into flames'),\n", + " ('ignite', 'start to burn or burst into flames'),\n", + " ('combust', 'start to burn or burst into flames'),\n", + " ('inflame', 'arouse or excite feelings and passions'),\n", + " ('catch fire', 'start to burn or burst into flames'),\n", " ('wake', 'arouse or excite feelings and passions'),\n", - " ('fire up', 'arouse or excite feelings and passions'),\n", - " ('light', 'cause to start burning; subject to fire or great heat'),\n", " ('heat', 'arouse or excite feelings and passions'),\n", - " ('combust', 'start to burn or burst into flames')]},\n", + " ('take fire', 'start to burn or burst into flames'),\n", + " ('fire up', 'arouse or excite feelings and passions'),\n", + " ('stir up', 'arouse or excite feelings and passions')]},\n", " {'answer': 'ignored',\n", " 'hint': 'synonyms for ignored',\n", - " 'clues': [('ignore', 'bar from attention or consideration'),\n", - " ('brush aside', 'bar from attention or consideration'),\n", - " ('cut', 'refuse to acknowledge'),\n", + " 'clues': [('neglect', 'give little or no attention to'),\n", " ('snub', 'refuse to acknowledge'),\n", " ('disregard', 'bar from attention or consideration'),\n", - " ('neglect', 'give little or no attention to'),\n", - " ('brush off', 'bar from attention or consideration'),\n", + " ('cut', 'refuse to acknowledge'),\n", + " ('ignore', 'bar from attention or consideration'),\n", + " ('push aside', 'bar from attention or consideration'),\n", " ('discount', 'bar from attention or consideration'),\n", - " ('dismiss', 'bar from attention or consideration')]},\n", + " ('dismiss', 'bar from attention or consideration'),\n", + " ('brush off', 'bar from attention or consideration')]},\n", " {'answer': 'ill-treated',\n", " 'hint': 'synonyms for ill-treated',\n", - " 'clues': [('ill-use', 'treat badly'),\n", - " ('ill-treat', 'treat badly'),\n", - " ('mistreat', 'treat badly'),\n", + " 'clues': [('ill-treat', 'treat badly'),\n", + " ('ill-use', 'treat badly'),\n", " ('step', 'treat badly'),\n", " ('abuse', 'treat badly'),\n", + " ('mistreat', 'treat badly'),\n", " ('maltreat', 'treat badly')]},\n", " {'answer': 'ill-used',\n", " 'hint': 'synonyms for ill-used',\n", - " 'clues': [('ill-use', 'treat badly'),\n", - " ('ill-treat', 'treat badly'),\n", - " ('mistreat', 'treat badly'),\n", + " 'clues': [('ill-treat', 'treat badly'),\n", + " ('ill-use', 'treat badly'),\n", " ('step', 'treat badly'),\n", " ('abuse', 'treat badly'),\n", + " ('mistreat', 'treat badly'),\n", " ('maltreat', 'treat badly')]},\n", " {'answer': 'illuminated',\n", " 'hint': 'synonyms for illuminated',\n", - " 'clues': [('straighten out',\n", - " 'make free from confusion or ambiguity; make clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", - " ('illumine', 'make lighter or brighter'),\n", + " 'clues': [('illuminate',\n", + " 'add embellishments and paintings to (medieval manuscripts)'),\n", " ('clear', 'make free from confusion or ambiguity; make clear'),\n", - " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('light', 'make lighter or brighter'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " ('light up', 'make lighter or brighter'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('light up', 'make lighter or brighter'),\n", - " ('light', 'make lighter or brighter')]},\n", + " ('crystalise', 'make free from confusion or ambiguity; make clear'),\n", + " ('illume', 'make lighter or brighter'),\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'illuminating',\n", " 'hint': 'synonyms for illuminating',\n", - " 'clues': [('straighten out',\n", - " 'make free from confusion or ambiguity; make clear'),\n", - " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", - " ('illumine', 'make lighter or brighter'),\n", + " 'clues': [('illuminate',\n", + " 'add embellishments and paintings to (medieval manuscripts)'),\n", " ('clear', 'make free from confusion or ambiguity; make clear'),\n", - " ('crystallize', 'make free from confusion or ambiguity; make clear'),\n", - " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('light', 'make lighter or brighter'),\n", + " ('sort out', 'make free from confusion or ambiguity; make clear'),\n", + " ('light up', 'make lighter or brighter'),\n", " ('enlighten', 'make free from confusion or ambiguity; make clear'),\n", " ('elucidate', 'make free from confusion or ambiguity; make clear'),\n", - " ('clear up', 'make free from confusion or ambiguity; make clear'),\n", - " ('light up', 'make lighter or brighter'),\n", - " ('light', 'make lighter or brighter')]},\n", + " ('crystalise', 'make free from confusion or ambiguity; make clear'),\n", + " ('illume', 'make lighter or brighter'),\n", + " ('shed light on', 'make free from confusion or ambiguity; make clear'),\n", + " ('straighten out', 'make free from confusion or ambiguity; make clear'),\n", + " ('clear up', 'make free from confusion or ambiguity; make clear')]},\n", " {'answer': 'impacted',\n", " 'hint': 'synonyms for impacted',\n", - " 'clues': [('impact', 'press or wedge together; pack together'),\n", - " ('affect', 'have an effect upon'),\n", - " ('bear upon', 'have an effect upon'),\n", + " 'clues': [('bear upon', 'have an effect upon'),\n", " ('touch on', 'have an effect upon'),\n", - " ('touch', 'have an effect upon')]},\n", + " ('impact', 'have an effect upon'),\n", + " ('touch', 'have an effect upon'),\n", + " ('affect', 'have an effect upon')]},\n", " {'answer': 'impaired',\n", " 'hint': 'synonyms for impaired',\n", - " 'clues': [('impair', 'make worse or less effective'),\n", - " ('mar', 'make imperfect'),\n", - " ('vitiate', 'make imperfect'),\n", + " 'clues': [('impair', 'make imperfect'),\n", + " ('spoil', 'make imperfect'),\n", " ('deflower', 'make imperfect'),\n", - " ('spoil', 'make imperfect')]},\n", + " ('vitiate', 'make imperfect'),\n", + " ('mar', 'make imperfect')]},\n", " {'answer': 'impeded',\n", " 'hint': 'synonyms for impeded',\n", - " 'clues': [('close up', 'block passage through'),\n", + " 'clues': [('obturate', 'block passage through'),\n", + " ('close up', 'block passage through'),\n", + " ('impede', 'block passage through'),\n", " ('block', 'block passage through'),\n", - " ('jam', 'block passage through'),\n", " ('obstruct', 'block passage through'),\n", - " ('hinder', 'be a hindrance or obstacle to'),\n", - " ('impede', 'block passage through'),\n", - " ('obturate', 'block passage through'),\n", - " ('occlude', 'block passage through')]},\n", + " ('jam', 'block passage through'),\n", + " ('occlude', 'block passage through'),\n", + " ('hinder', 'be a hindrance or obstacle to')]},\n", " {'answer': 'impeding',\n", " 'hint': 'synonyms for impeding',\n", - " 'clues': [('close up', 'block passage through'),\n", + " 'clues': [('obturate', 'block passage through'),\n", + " ('close up', 'block passage through'),\n", + " ('impede', 'block passage through'),\n", " ('block', 'block passage through'),\n", - " ('jam', 'block passage through'),\n", " ('obstruct', 'block passage through'),\n", - " ('hinder', 'be a hindrance or obstacle to'),\n", - " ('impede', 'block passage through'),\n", - " ('obturate', 'block passage through'),\n", - " ('occlude', 'block passage through')]},\n", + " ('jam', 'block passage through'),\n", + " ('occlude', 'block passage through'),\n", + " ('hinder', 'be a hindrance or obstacle to')]},\n", " {'answer': 'implanted',\n", " 'hint': 'synonyms for implanted',\n", - " 'clues': [('implant', 'become attached to and embedded in the uterus'),\n", + " 'clues': [('plant', 'fix or set securely or deeply'),\n", + " ('implant', 'become attached to and embedded in the uterus'),\n", " ('imbed', 'fix or set securely or deeply'),\n", - " ('plant', 'put firmly in the mind'),\n", - " ('engraft', 'fix or set securely or deeply'),\n", - " ('embed', 'fix or set securely or deeply')]},\n", + " ('embed', 'fix or set securely or deeply'),\n", + " ('engraft', 'fix or set securely or deeply')]},\n", " {'answer': 'implemented',\n", " 'hint': 'synonyms for implemented',\n", - " 'clues': [('put through',\n", - " 'pursue to a conclusion or bring to a successful issue'),\n", - " ('follow out', 'pursue to a conclusion or bring to a successful issue'),\n", - " ('follow up', 'pursue to a conclusion or bring to a successful issue'),\n", - " ('apply', 'ensure observance of laws and rules'),\n", + " 'clues': [('enforce', 'ensure observance of laws and rules'),\n", + " ('carry out', 'pursue to a conclusion or bring to a successful issue'),\n", " ('go through', 'pursue to a conclusion or bring to a successful issue'),\n", + " ('follow up', 'pursue to a conclusion or bring to a successful issue'),\n", + " ('implement', 'apply in a manner consistent with its purpose or design'),\n", " ('follow through',\n", " 'pursue to a conclusion or bring to a successful issue'),\n", - " ('enforce', 'ensure observance of laws and rules'),\n", - " ('carry out', 'pursue to a conclusion or bring to a successful issue'),\n", - " ('implement', 'pursue to a conclusion or bring to a successful issue')]},\n", + " ('follow out', 'pursue to a conclusion or bring to a successful issue'),\n", + " ('put through', 'pursue to a conclusion or bring to a successful issue'),\n", + " ('apply', 'ensure observance of laws and rules')]},\n", " {'answer': 'imposed',\n", " 'hint': 'synonyms for imposed',\n", - " 'clues': [('levy', 'impose and collect'),\n", - " ('impose', 'compel to behave in a certain way'),\n", - " ('bring down', 'impose something unpleasant'),\n", + " 'clues': [('impose', 'impose and collect'),\n", + " ('inflict', 'impose something unpleasant'),\n", " ('enforce', 'compel to behave in a certain way'),\n", - " ('visit', 'impose something unpleasant'),\n", - " ('inflict', 'impose something unpleasant')]},\n", + " ('levy', 'impose and collect'),\n", + " ('bring down', 'impose something unpleasant'),\n", + " ('visit', 'impose something unpleasant')]},\n", " {'answer': 'imposing',\n", " 'hint': 'synonyms for imposing',\n", - " 'clues': [('levy', 'impose and collect'),\n", - " ('impose', 'compel to behave in a certain way'),\n", - " ('bring down', 'impose something unpleasant'),\n", + " 'clues': [('impose', 'impose and collect'),\n", + " ('inflict', 'impose something unpleasant'),\n", " ('enforce', 'compel to behave in a certain way'),\n", - " ('visit', 'impose something unpleasant'),\n", - " ('inflict', 'impose something unpleasant')]},\n", + " ('levy', 'impose and collect'),\n", + " ('bring down', 'impose something unpleasant'),\n", + " ('visit', 'impose something unpleasant')]},\n", " {'answer': 'impressed',\n", " 'hint': 'synonyms for impressed',\n", - " 'clues': [('impress', 'have an emotional or cognitive impact upon'),\n", - " ('instill', 'produce or try to produce a vivid impression of'),\n", - " ('yarn-dye', 'dye (fabric) before it is spun'),\n", - " ('shanghai',\n", - " 'take (someone) against his will for compulsory service, especially on board a ship'),\n", - " ('strike', 'have an emotional or cognitive impact upon'),\n", - " ('imprint', 'mark or stamp with or as if with pressure'),\n", + " 'clues': [('move', 'have an emotional or cognitive impact upon'),\n", " ('ingrain', 'produce or try to produce a vivid impression of'),\n", + " ('impress', 'mark or stamp with or as if with pressure'),\n", " ('print', 'reproduce by printing'),\n", + " ('yarn-dye', 'dye (fabric) before it is spun'),\n", " ('affect', 'have an emotional or cognitive impact upon'),\n", - " ('move', 'have an emotional or cognitive impact upon')]},\n", + " ('imprint', 'mark or stamp with or as if with pressure'),\n", + " ('shanghai',\n", + " 'take (someone) against his will for compulsory service, especially on board a ship'),\n", + " ('instill', 'produce or try to produce a vivid impression of'),\n", + " ('strike', 'have an emotional or cognitive impact upon')]},\n", " {'answer': 'imprisoned',\n", " 'hint': 'synonyms for imprisoned',\n", - " 'clues': [('imprison', 'lock up or confine, in or as in a jail'),\n", - " ('immure', 'lock up or confine, in or as in a jail'),\n", + " 'clues': [('imprison', 'confine as if in a prison'),\n", " ('gaol', 'lock up or confine, in or as in a jail'),\n", - " ('remand', 'lock up or confine, in or as in a jail'),\n", " ('put away', 'lock up or confine, in or as in a jail'),\n", + " ('remand', 'lock up or confine, in or as in a jail'),\n", + " ('immure', 'lock up or confine, in or as in a jail'),\n", + " ('jug', 'lock up or confine, in or as in a jail'),\n", " ('lag', 'lock up or confine, in or as in a jail'),\n", " ('incarcerate', 'lock up or confine, in or as in a jail'),\n", " ('jail', 'lock up or confine, in or as in a jail'),\n", - " ('put behind bars', 'lock up or confine, in or as in a jail'),\n", - " ('jug', 'lock up or confine, in or as in a jail')]},\n", + " ('put behind bars', 'lock up or confine, in or as in a jail')]},\n", " {'answer': 'improved',\n", " 'hint': 'synonyms for improved',\n", - " 'clues': [('better', 'get better'),\n", - " ('ameliorate', 'to make better'),\n", - " ('improve', 'get better'),\n", - " ('amend', 'to make better')]},\n", + " 'clues': [('meliorate', 'to make better'),\n", + " ('better', 'get better'),\n", + " ('amend', 'to make better'),\n", + " ('improve', 'to make better')]},\n", " {'answer': 'improving',\n", " 'hint': 'synonyms for improving',\n", - " 'clues': [('better', 'get better'),\n", - " ('ameliorate', 'to make better'),\n", - " ('improve', 'get better'),\n", - " ('amend', 'to make better')]},\n", + " 'clues': [('meliorate', 'to make better'),\n", + " ('better', 'get better'),\n", + " ('amend', 'to make better'),\n", + " ('improve', 'to make better')]},\n", " {'answer': 'incapacitated',\n", " 'hint': 'synonyms for incapacitated',\n", - " 'clues': [('handicap', 'injure permanently'),\n", - " ('incapacitate', 'make unable to perform a certain action'),\n", - " ('disenable', 'make unable to perform a certain action'),\n", + " 'clues': [('disable', 'make unable to perform a certain action'),\n", + " ('incapacitate', 'injure permanently'),\n", + " ('handicap', 'injure permanently'),\n", " ('invalid', 'injure permanently')]},\n", " {'answer': 'incapacitating',\n", " 'hint': 'synonyms for incapacitating',\n", - " 'clues': [('handicap', 'injure permanently'),\n", - " ('incapacitate', 'make unable to perform a certain action'),\n", - " ('disenable', 'make unable to perform a certain action'),\n", + " 'clues': [('disable', 'make unable to perform a certain action'),\n", + " ('incapacitate', 'injure permanently'),\n", + " ('handicap', 'injure permanently'),\n", " ('invalid', 'injure permanently')]},\n", " {'answer': 'incensed',\n", " 'hint': 'synonyms for incensed',\n", - " 'clues': [('thurify', 'perfume especially with a censer'),\n", - " ('incense', 'perfume especially with a censer'),\n", + " 'clues': [('infuriate', 'make furious'),\n", " ('cense', 'perfume especially with a censer'),\n", - " ('infuriate', 'make furious'),\n", - " ('exasperate', 'make furious')]},\n", + " ('exasperate', 'make furious'),\n", + " ('incense', 'make furious'),\n", + " ('thurify', 'perfume especially with a censer')]},\n", + " {'answer': 'inclined',\n", + " 'hint': 'synonyms for inclined',\n", + " 'clues': [('be given',\n", + " 'have a tendency or disposition to do or be something; be inclined'),\n", + " ('dispose',\n", + " 'make receptive or willing towards an action or attitude or belief'),\n", + " ('incline', 'be at an angle'),\n", + " ('pitch', 'be at an angle'),\n", + " ('slope', 'be at an angle'),\n", + " ('lean',\n", + " 'have a tendency or disposition to do or be something; be inclined'),\n", + " ('tend',\n", + " 'have a tendency or disposition to do or be something; be inclined'),\n", + " ('run',\n", + " 'have a tendency or disposition to do or be something; be inclined')]},\n", " ...],\n", " 'portion': 0.6},\n", " {'name': 'adverbs',\n", @@ -20255,138 +20277,138 @@ " 'hint': 'synonyms for about',\n", " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('roughly', '(of quantities) imprecise but fairly close to correct'),\n", - " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", - " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", " ('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('around', 'in or to a reversed position or direction'),\n", + " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", - " ('virtually',\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", + " ('near',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('around', 'all around or on all sides'),\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct'),\n", + " ('most',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('roughly', '(of quantities) imprecise but fairly close to correct'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", " ('almost',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('nearly',\n", + " ('virtually',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('or so', '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'after',\n", " 'hint': 'synonyms for after',\n", - " 'clues': [('afterward',\n", + " 'clues': [('afterwards',\n", " 'happening at a time subsequent to a reference time'),\n", " ('later on', 'happening at a time subsequent to a reference time'),\n", - " ('subsequently', 'happening at a time subsequent to a reference time'),\n", - " ('later', 'happening at a time subsequent to a reference time')]},\n", + " ('later', 'happening at a time subsequent to a reference time'),\n", + " ('subsequently', 'happening at a time subsequent to a reference time')]},\n", " {'answer': 'ahead',\n", " 'hint': 'synonyms for ahead',\n", - " 'clues': [('forward', 'in a forward direction'),\n", - " ('onward', 'in a forward direction'),\n", + " 'clues': [('beforehand', 'ahead of time; in anticipation'),\n", + " ('forward', 'toward the future; forward in time'),\n", + " ('onwards', 'in a forward direction'),\n", " ('out front', 'leading or ahead in a competition'),\n", - " ('beforehand', 'ahead of time; in anticipation'),\n", - " ('forrader', 'in a forward direction'),\n", - " ('before', 'at or in the front'),\n", " ('in the lead', 'leading or ahead in a competition'),\n", " ('in front', 'at or in the front'),\n", - " ('in advance', 'ahead of time; in anticipation')]},\n", + " ('in advance', 'ahead of time; in anticipation'),\n", + " ('before', 'at or in the front'),\n", + " ('forrader', 'in a forward direction')]},\n", " {'answer': 'all',\n", " 'hint': 'synonyms for all',\n", - " 'clues': [('entirely',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('altogether',\n", + " 'clues': [('totally',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('completely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('totally',\n", + " ('altogether',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('whole',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('wholly',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('whole',\n", + " ('entirely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", " {'answer': 'all_right',\n", " 'hint': 'synonyms for all right',\n", - " 'clues': [('okay',\n", - " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n", - " ('very well',\n", + " 'clues': [('fine',\n", " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", " ('alright',\n", - " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n", - " ('fine',\n", - " 'an expression of agreement normally occurring at the beginning of a sentence')]},\n", + " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", + " ('very well',\n", + " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", + " ('okay',\n", + " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\")]},\n", " {'answer': 'alone',\n", " 'hint': 'synonyms for alone',\n", - " 'clues': [('solely', 'without any others being included or involved'),\n", - " ('solo', 'without anybody else or anything else'),\n", - " ('entirely', 'without any others being included or involved'),\n", - " ('exclusively', 'without any others being included or involved'),\n", + " 'clues': [('only', 'without any others being included or involved'),\n", " ('unaccompanied', 'without anybody else or anything else'),\n", - " ('only', 'without any others being included or involved')]},\n", + " ('exclusively', 'without any others being included or involved'),\n", + " ('entirely', 'without any others being included or involved'),\n", + " ('solely', 'without any others being included or involved'),\n", + " ('solo', 'without anybody else or anything else')]},\n", " {'answer': 'alright',\n", " 'hint': 'synonyms for alright',\n", - " 'clues': [('okay',\n", - " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n", - " ('very well',\n", + " 'clues': [('fine',\n", " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", " ('all right',\n", + " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\"),\n", + " ('very well',\n", " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", - " ('fine',\n", - " 'an expression of agreement normally occurring at the beginning of a sentence')]},\n", + " ('okay',\n", + " \"in a satisfactory or adequate manner; ; ; (`alright' is a nonstandard variant of `all right')\")]},\n", " {'answer': 'apropos',\n", " 'hint': 'synonyms for apropos',\n", " 'clues': [('well-timed', 'at an opportune time'),\n", - " ('by the bye', 'introducing a different topic; in point of fact'),\n", - " ('timely', 'at an opportune time'),\n", " ('incidentally', 'introducing a different topic; in point of fact'),\n", " ('by the way', 'introducing a different topic; in point of fact'),\n", - " ('seasonably', 'at an opportune time')]},\n", + " ('seasonably', 'at an opportune time'),\n", + " ('by the bye', 'introducing a different topic; in point of fact'),\n", + " ('timely', 'at an opportune time')]},\n", " {'answer': 'away',\n", " 'hint': 'synonyms for away',\n", - " 'clues': [('off',\n", + " 'clues': [('aside', 'in reserve; not for immediate use'),\n", + " ('out', \"from one's possession\"),\n", + " ('off',\n", " \"from a particular thing or place or position (`forth' is obsolete)\"),\n", - " ('aside', 'in a different direction'),\n", " ('by', 'in reserve; not for immediate use'),\n", - " ('out', \"from one's possession\"),\n", " ('forth',\n", " \"from a particular thing or place or position (`forth' is obsolete)\")]},\n", " {'answer': 'best',\n", " 'hint': 'synonyms for best',\n", - " 'clues': [('well', 'with prudence or propriety'),\n", + " 'clues': [('considerably', 'to a great extent or degree'),\n", + " ('well', 'favorably; with approval'),\n", + " ('advantageously', 'in a manner affording benefit or advantage'),\n", " ('intimately', 'with great or especially intimate knowledge'),\n", - " ('considerably', 'to a great extent or degree'),\n", " ('easily', 'indicating high probability; in all likelihood'),\n", - " ('substantially', 'to a great extent or degree'),\n", " ('comfortably', 'in financial comfort'),\n", - " ('advantageously', 'in a manner affording benefit or advantage'),\n", " ('better', 'from a position of superiority or authority'),\n", " ('good',\n", - " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\")]},\n", + " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\"),\n", + " ('substantially', 'to a great extent or degree')]},\n", " {'answer': 'better',\n", " 'hint': 'synonyms for better',\n", - " 'clues': [('well', 'with prudence or propriety'),\n", + " 'clues': [('considerably', 'to a great extent or degree'),\n", + " ('well', 'favorably; with approval'),\n", + " ('advantageously', 'in a manner affording benefit or advantage'),\n", " ('intimately', 'with great or especially intimate knowledge'),\n", - " ('considerably', 'to a great extent or degree'),\n", + " ('best', 'from a position of superiority or authority'),\n", " ('easily', 'indicating high probability; in all likelihood'),\n", - " ('substantially', 'to a great extent or degree'),\n", " ('comfortably', 'in financial comfort'),\n", - " ('advantageously', 'in a manner affording benefit or advantage'),\n", - " ('best', 'from a position of superiority or authority'),\n", " ('good',\n", - " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\")]},\n", + " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\"),\n", + " ('substantially', 'to a great extent or degree')]},\n", " {'answer': 'close',\n", " 'hint': 'synonyms for close',\n", " 'clues': [('nigh', 'near in time or place or relationship'),\n", - " ('closely', 'in an attentive manner'),\n", " ('near', 'near in time or place or relationship'),\n", - " ('tight', 'in an attentive manner')]},\n", + " ('tight', 'in an attentive manner'),\n", + " ('closely', 'in an attentive manner')]},\n", " {'answer': 'dead',\n", " 'hint': 'synonyms for dead',\n", " 'clues': [('short', 'quickly and without warning'),\n", + " ('abruptly', 'quickly and without warning'),\n", " ('utterly',\n", " 'completely and without qualification; used informally as intensifiers'),\n", - " ('abruptly', 'quickly and without warning'),\n", " ('perfectly',\n", " 'completely and without qualification; used informally as intensifiers'),\n", " ('suddenly', 'quickly and without warning'),\n", @@ -20395,37 +20417,37 @@ " {'answer': 'deadly',\n", " 'hint': 'synonyms for deadly',\n", " 'clues': [('lifelessly', 'as if dead'),\n", - " ('madly', '(used as intensives) extremely'),\n", + " ('devilishly', '(used as intensives) extremely'),\n", " ('insanely', '(used as intensives) extremely'),\n", - " ('deucedly', '(used as intensives) extremely'),\n", - " ('devilishly', '(used as intensives) extremely')]},\n", + " ('madly', '(used as intensives) extremely'),\n", + " ('deucedly', '(used as intensives) extremely')]},\n", " {'answer': 'decent',\n", " 'hint': 'synonyms for decent',\n", " 'clues': [('decently', 'in the right manner'),\n", - " ('right', 'in the right manner'),\n", - " ('in good order', 'in the right manner'),\n", " ('the right way', 'in the right manner'),\n", - " ('properly', 'in the right manner')]},\n", + " ('right', 'in the right manner'),\n", + " ('properly', 'in the right manner'),\n", + " ('in good order', 'in the right manner')]},\n", " {'answer': 'earlier',\n", " 'hint': 'synonyms for earlier',\n", " 'clues': [('in the beginning', 'before now'),\n", - " ('sooner', \"comparatives of `soon' or `early'\"),\n", " ('before', 'earlier in time; previously'),\n", " ('to begin with', 'before now'),\n", - " ('originally', 'before now'),\n", - " ('in the first place', 'before now')]},\n", + " ('in the first place', 'before now'),\n", + " ('sooner', \"comparatives of `soon' or `early'\"),\n", + " ('originally', 'before now')]},\n", " {'answer': 'early',\n", " 'hint': 'synonyms for early',\n", - " 'clues': [('ahead of time', 'before the usual time or the time expected'),\n", + " 'clues': [('too soon', 'before the usual time or the time expected'),\n", + " ('betimes', 'in good time'),\n", " ('early on', 'during an early stage'),\n", - " ('too soon', 'before the usual time or the time expected'),\n", - " ('betimes', 'in good time')]},\n", + " ('ahead of time', 'before the usual time or the time expected')]},\n", " {'answer': 'easy',\n", " 'hint': 'synonyms for easy',\n", - " 'clues': [('soft',\n", - " \"in a relaxed manner; or without hardship; (`soft' is nonstandard)\"),\n", - " ('slowly',\n", + " 'clues': [('slow',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", + " ('soft',\n", + " \"in a relaxed manner; or without hardship; (`soft' is nonstandard)\"),\n", " ('tardily',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", " ('easily',\n", @@ -20433,102 +20455,102 @@ " {'answer': 'erstwhile',\n", " 'hint': 'synonyms for erstwhile',\n", " 'clues': [('at one time', 'at a previous time'),\n", + " ('erst', 'at a previous time'),\n", " ('formerly', 'at a previous time'),\n", - " ('once', 'at a previous time'),\n", - " ('erst', 'at a previous time')]},\n", + " ('once', 'at a previous time')]},\n", " {'answer': 'false',\n", " 'hint': 'synonyms for false',\n", - " 'clues': [('treasonably', 'in a disloyal and faithless manner'),\n", - " ('traitorously', 'in a disloyal and faithless manner'),\n", + " 'clues': [('traitorously', 'in a disloyal and faithless manner'),\n", " ('treacherously', 'in a disloyal and faithless manner'),\n", - " ('faithlessly', 'in a disloyal and faithless manner')]},\n", + " ('faithlessly', 'in a disloyal and faithless manner'),\n", + " ('treasonably', 'in a disloyal and faithless manner')]},\n", " {'answer': 'fine',\n", " 'hint': 'synonyms for fine',\n", - " 'clues': [('very well',\n", + " 'clues': [('exquisitely', 'in a delicate manner'),\n", + " ('finely', 'in a delicate manner'),\n", + " ('alright',\n", " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", - " ('delicately', 'in a delicate manner'),\n", - " ('all right',\n", + " ('very well',\n", " 'an expression of agreement normally occurring at the beginning of a sentence'),\n", - " ('finely', 'in a delicate manner'),\n", - " ('exquisitely', 'in a delicate manner')]},\n", + " ('delicately', 'in a delicate manner')]},\n", " {'answer': 'first',\n", " 'hint': 'synonyms for first',\n", - " 'clues': [('first of all', 'before anything else'),\n", - " ('firstly', 'before anything else'),\n", - " ('foremost', 'before anything else'),\n", + " 'clues': [('first off', 'before anything else'),\n", " ('for the first time', 'the initial time'),\n", - " ('first off', 'before anything else')]},\n", + " ('firstly', 'before anything else'),\n", + " ('first of all', 'before anything else'),\n", + " ('foremost', 'prominently forward')]},\n", " {'answer': 'for_sure',\n", " 'hint': 'synonyms for for sure',\n", - " 'clues': [('sure as shooting',\n", - " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure',\n", + " 'clues': [('sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('certainly',\n", + " ('sure enough',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for certain',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure enough',\n", + " ('sure as shooting',\n", + " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", + " ('certainly',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'forward',\n", " 'hint': 'synonyms for forward',\n", - " 'clues': [('onward', 'in a forward direction'),\n", - " ('forrader', 'in a forward direction'),\n", - " ('ahead', 'toward the future; forward in time'),\n", + " 'clues': [('onward', 'forward in time or order or degree'),\n", " ('forwards', 'in a forward direction'),\n", + " ('ahead', 'in a forward direction'),\n", " ('forrard',\n", " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\"),\n", - " ('frontwards',\n", + " ('frontward',\n", " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\"),\n", - " ('fore', 'near or toward the bow of a ship or cockpit of a plane'),\n", - " ('forth', 'forward in time or order or degree')]},\n", + " ('forrader', 'in a forward direction'),\n", + " ('forth', 'forward in time or order or degree'),\n", + " ('fore', 'near or toward the bow of a ship or cockpit of a plane')]},\n", " {'answer': 'hard',\n", " 'hint': 'synonyms for hard',\n", - " 'clues': [('heavily', 'indulging excessively'),\n", - " ('intemperately', 'indulging excessively'),\n", + " 'clues': [('severely', 'causing great damage or hardship'),\n", " ('firmly', 'with firmness'),\n", - " ('severely', 'causing great damage or hardship')]},\n", + " ('intemperately', 'indulging excessively'),\n", + " ('heavily', 'indulging excessively')]},\n", " {'answer': 'inside',\n", " 'hint': 'synonyms for inside',\n", - " 'clues': [('deep down', 'in reality'),\n", - " ('indoors', 'within a building'),\n", - " ('at bottom', 'in reality'),\n", + " 'clues': [('in spite of appearance', 'in reality'),\n", + " ('deep down', 'in reality'),\n", " ('within', 'on the inside'),\n", - " ('inwardly', 'with respect to private feelings'),\n", " ('at heart', 'in reality'),\n", - " ('in spite of appearance', 'in reality')]},\n", + " ('inwardly', 'with respect to private feelings'),\n", + " ('indoors', 'within a building'),\n", + " ('at bottom', 'in reality')]},\n", " {'answer': 'jolly',\n", " 'hint': 'synonyms for jolly',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", + " ('moderately', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", " ('reasonably', 'to a moderately sufficient extent or degree'),\n", - " ('moderately', 'to a moderately sufficient extent or degree'),\n", - " ('fairly', 'to a moderately sufficient extent or degree')]},\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'just',\n", " 'hint': 'synonyms for just',\n", " 'clues': [('precisely', 'indicating exactness or preciseness'),\n", - " ('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('just now', 'only a moment ago'),\n", - " ('scarce', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('merely', 'and nothing more'),\n", " ('simply', 'absolutely'),\n", " ('only', 'and nothing more'),\n", - " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", " ('exactly', 'indicating exactness or preciseness'),\n", - " ('but', 'and nothing more')]},\n", + " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " ('scarcely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " ('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " ('but', 'and nothing more'),\n", + " ('merely', 'and nothing more'),\n", + " ('just now', 'only a moment ago')]},\n", " {'answer': 'late',\n", " 'hint': 'synonyms for late',\n", - " 'clues': [('lately', 'in the recent past'),\n", + " 'clues': [('latterly', 'in the recent past'),\n", + " ('deep', 'to an advanced time'),\n", " ('recently', 'in the recent past'),\n", " ('tardily', 'later than usual or than expected'),\n", " ('belatedly', 'later than usual or than expected'),\n", - " ('of late', 'in the recent past'),\n", - " ('deep', 'to an advanced time')]},\n", + " ('of late', 'in the recent past')]},\n", " {'answer': 'later',\n", " 'hint': 'synonyms for later',\n", - " 'clues': [('afterward',\n", + " 'clues': [('afterwards',\n", " 'happening at a time subsequent to a reference time'),\n", " ('later on', 'happening at a time subsequent to a reference time'),\n", " ('subsequently', 'happening at a time subsequent to a reference time'),\n", @@ -20537,774 +20559,780 @@ " {'answer': 'lengthways',\n", " 'hint': 'synonyms for lengthways',\n", " 'clues': [('lengthwise', 'in the direction of the length'),\n", - " ('longwise', 'in the direction of the length'),\n", " ('longitudinally', 'in the direction of the length'),\n", - " ('longways', 'in the direction of the length')]},\n", + " ('longways', 'in the direction of the length'),\n", + " ('longwise', 'in the direction of the length')]},\n", " {'answer': 'lengthwise',\n", " 'hint': 'synonyms for lengthwise',\n", - " 'clues': [('longways', 'in the direction of the length'),\n", - " ('longwise', 'in the direction of the length'),\n", - " ('lengthways', 'in the direction of the length'),\n", - " ('longitudinally', 'in the direction of the length')]},\n", + " 'clues': [('lengthways', 'in the direction of the length'),\n", + " ('longitudinally', 'in the direction of the length'),\n", + " ('longways', 'in the direction of the length'),\n", + " ('longwise', 'in the direction of the length')]},\n", " {'answer': 'likely',\n", " 'hint': 'synonyms for likely',\n", - " 'clues': [('probably', 'with considerable certainty; without much doubt'),\n", - " ('in all likelihood', 'with considerable certainty; without much doubt'),\n", + " 'clues': [('belike', 'with considerable certainty; without much doubt'),\n", " ('in all probability', 'with considerable certainty; without much doubt'),\n", - " ('belike', 'with considerable certainty; without much doubt')]},\n", + " ('probably', 'with considerable certainty; without much doubt'),\n", + " ('in all likelihood',\n", + " 'with considerable certainty; without much doubt')]},\n", " {'answer': 'middling',\n", " 'hint': 'synonyms for middling',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", - " ('reasonably', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", " ('moderately', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", " ('jolly', 'to a moderately sufficient extent or degree'),\n", - " ('fairly', 'to a moderately sufficient extent or degree')]},\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", + " ('reasonably', 'to a moderately sufficient extent or degree'),\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'most',\n", " 'hint': 'synonyms for most',\n", " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('almost',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('nearly',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('to the highest degree', 'used to form the superlative'),\n", - " ('about',\n", + " ('almost',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('nearly',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('virtually',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('about',\n", " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", " {'answer': 'much',\n", " 'hint': 'synonyms for much',\n", - " 'clues': [('practically',\n", + " 'clues': [('a good deal', 'to a very great degree or extent'),\n", + " ('practically',\n", " '(degree adverb used before a noun phrase) for all practical purposes but not completely'),\n", - " ('a good deal', 'to a very great degree or extent'),\n", " ('a great deal', 'frequently or in great quantities'),\n", + " ('often', 'frequently or in great quantities'),\n", " ('lots', 'to a very great degree or extent'),\n", - " ('a lot', 'to a very great degree or extent'),\n", " ('very much', 'to a very great degree or extent'),\n", - " ('often', 'frequently or in great quantities')]},\n", + " ('a lot', 'to a very great degree or extent')]},\n", " {'answer': 'near',\n", " 'hint': 'synonyms for near',\n", " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('almost',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('close', 'near in time or place or relationship'),\n", " ('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", + " ('almost',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('nearly',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('virtually',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('about',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('close', 'near in time or place or relationship'),\n", - " ('virtually',\n", + " ('most',\n", " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", " {'answer': 'nigh',\n", " 'hint': 'synonyms for nigh',\n", - " 'clues': [('almost',\n", + " 'clues': [('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('close', 'near in time or place or relationship'),\n", " ('near', 'near in time or place or relationship'),\n", - " ('well-nigh',\n", + " ('almost',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", + " ('virtually',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('about',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('close', 'near in time or place or relationship'),\n", - " ('virtually',\n", + " ('most',\n", " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", " {'answer': 'on_the_button',\n", " 'hint': 'synonyms for on the button',\n", " 'clues': [('precisely', 'just as it should be'),\n", - " ('on the nose', 'just as it should be'),\n", " ('on the dot', 'just as it should be'),\n", - " ('exactly', 'just as it should be')]},\n", + " ('exactly', 'just as it should be'),\n", + " ('on the nose', 'just as it should be')]},\n", " {'answer': 'on_the_nose',\n", " 'hint': 'synonyms for on the nose',\n", - " 'clues': [('precisely', 'just as it should be'),\n", + " 'clues': [('on the button', 'just as it should be'),\n", " ('on the dot', 'just as it should be'),\n", " ('exactly', 'just as it should be'),\n", - " ('on the button', 'just as it should be')]},\n", + " ('precisely', 'just as it should be')]},\n", " {'answer': 'only',\n", " 'hint': 'synonyms for only',\n", - " 'clues': [('entirely', 'without any others being included or involved'),\n", - " ('only when', 'never except when'),\n", - " ('alone', 'without any others being included or involved'),\n", - " ('merely', 'and nothing more'),\n", - " ('solely', 'without any others being included or involved'),\n", - " ('only if', 'never except when'),\n", + " 'clues': [('only if', 'never except when'),\n", " ('exclusively', 'without any others being included or involved'),\n", + " ('just', 'and nothing more'),\n", + " ('solely', 'without any others being included or involved'),\n", " ('simply', 'and nothing more'),\n", + " ('only when', 'never except when'),\n", " ('but', 'and nothing more'),\n", - " ('just', 'and nothing more')]},\n", + " ('merely', 'and nothing more'),\n", + " ('entirely', 'without any others being included or involved'),\n", + " ('alone', 'without any others being included or involved')]},\n", " {'answer': 'plain',\n", " 'hint': 'synonyms for plain',\n", - " 'clues': [('evidently',\n", - " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('manifestly',\n", - " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('plainly',\n", + " 'clues': [('patently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('apparently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('obviously',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('patently',\n", + " ('manifestly',\n", + " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", + " ('evidently',\n", + " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", + " ('plainly',\n", " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'pretty',\n", " 'hint': 'synonyms for pretty',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", - " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('reasonably', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", " ('moderately', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", " ('jolly', 'to a moderately sufficient extent or degree'),\n", - " ('fairly', 'to a moderately sufficient extent or degree')]},\n", + " ('middling', 'to a moderately sufficient extent or degree'),\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", + " ('reasonably', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'regardless',\n", " 'hint': 'synonyms for regardless',\n", - " 'clues': [('no matter',\n", + " 'clues': [('irrespective',\n", " 'in spite of everything; without regard to drawbacks'),\n", + " ('disregarding', 'in spite of everything; without regard to drawbacks'),\n", " ('disregardless', 'in spite of everything; without regard to drawbacks'),\n", - " ('irrespective', 'in spite of everything; without regard to drawbacks'),\n", - " ('disregarding', 'in spite of everything; without regard to drawbacks')]},\n", + " ('no matter', 'in spite of everything; without regard to drawbacks')]},\n", " {'answer': 'right',\n", " 'hint': 'synonyms for right',\n", - " 'clues': [('decently', 'in the right manner'),\n", - " ('correctly', 'in an accurate manner'),\n", - " ('in good order', 'in the right manner'),\n", - " ('aright', 'in an accurate manner'),\n", + " 'clues': [('decent', 'in the right manner'),\n", " ('properly', 'in the right manner'),\n", - " ('mightily', '(Southern regional intensive) very; to a great degree'),\n", " ('justly', 'in accordance with moral or social standards'),\n", - " ('powerful', '(Southern regional intensive) very; to a great degree'),\n", - " ('right on', 'an interjection expressing agreement'),\n", + " ('aright', 'in an accurate manner'),\n", + " ('the right way', 'in the right manner'),\n", + " ('mightily', '(Southern regional intensive) very; to a great degree'),\n", " ('flop', 'exactly'),\n", - " ('the right way', 'in the right manner')]},\n", + " ('right on', 'an interjection expressing agreement'),\n", + " ('powerful', '(Southern regional intensive) very; to a great degree'),\n", + " ('correctly', 'in an accurate manner'),\n", + " ('in good order', 'in the right manner')]},\n", " {'answer': 'scarce',\n", " 'hint': 'synonyms for scarce',\n", - " 'clues': [('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " 'clues': [('just', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", " ('scarcely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats')]},\n", + " ('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats')]},\n", " {'answer': 'short',\n", " 'hint': 'synonyms for short',\n", - " 'clues': [('dead', 'quickly and without warning'),\n", - " ('unawares', 'at a disadvantage'),\n", + " 'clues': [('curtly', 'in a curt, abrupt and discourteous manner'),\n", + " ('shortly', 'in a curt, abrupt and discourteous manner'),\n", " ('abruptly', 'quickly and without warning'),\n", - " ('curtly', 'in a curt, abrupt and discourteous manner'),\n", + " ('unawares', 'at a disadvantage'),\n", " ('suddenly', 'quickly and without warning'),\n", - " ('shortly', 'in a curt, abrupt and discourteous manner')]},\n", + " ('dead', 'quickly and without warning')]},\n", " {'answer': 'sideways',\n", " 'hint': 'synonyms for sideways',\n", " 'clues': [('sideway', 'toward one side'),\n", - " ('sidewise', 'from the side; obliquely'),\n", - " ('obliquely', 'to, toward or at one side'),\n", - " ('sidelong', 'to, toward or at one side')]},\n", + " ('sidewise', 'with one side forward or to the front'),\n", + " ('sidelong', 'to, toward or at one side'),\n", + " ('obliquely', 'to, toward or at one side')]},\n", " {'answer': 'slapdash',\n", " 'hint': 'synonyms for slapdash',\n", - " 'clues': [('bolt', 'directly'),\n", - " ('slam-bang', 'in a careless or reckless manner'),\n", + " 'clues': [('smack', 'directly'),\n", + " ('bolt', 'directly'),\n", " ('slap', 'directly'),\n", - " ('smack', 'directly'),\n", - " ('bang', 'directly')]},\n", + " ('bang', 'directly'),\n", + " ('slam-bang', 'in a careless or reckless manner')]},\n", " {'answer': 'slow',\n", " 'hint': 'synonyms for slow',\n", - " 'clues': [('easy',\n", + " 'clues': [('tardily',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", - " ('slowly',\n", - " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", - " ('tardily',\n", + " ('easy',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", - " ('behind', 'of timepieces')]},\n", + " ('behind', 'of timepieces'),\n", + " ('slowly',\n", + " \"without speed (`slow' is sometimes used informally for `slowly')\")]},\n", " {'answer': 'some',\n", " 'hint': 'synonyms for some',\n", " 'clues': [('roughly',\n", " '(of quantities) imprecise but fairly close to correct'),\n", - " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", - " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", " ('around', '(of quantities) imprecise but fairly close to correct'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", + " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", + " ('about', '(of quantities) imprecise but fairly close to correct'),\n", + " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", - " ('about', '(of quantities) imprecise but fairly close to correct')]},\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'still',\n", " 'hint': 'synonyms for still',\n", - " 'clues': [('even so',\n", + " 'clues': [('stock-still', 'without moving or making a sound'),\n", + " ('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('all the same',\n", + " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('stock-still', 'without moving or making a sound'),\n", - " ('yet',\n", + " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('withal',\n", + " ('even', 'to a greater degree or extent; used with comparisons'),\n", + " ('yet', 'to a greater degree or extent; used with comparisons'),\n", + " ('however',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nonetheless',\n", + " ('withal',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('even', 'to a greater degree or extent; used with comparisons'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('notwithstanding',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('all the same',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'straightaway',\n", " 'hint': 'synonyms for straightaway',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('right away', 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", - " ('instantly', 'without delay or hesitation; with no time intervening')]},\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", + " ('instantly', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('immediately',\n", + " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'sure',\n", " 'hint': 'synonyms for sure',\n", - " 'clues': [('sure as shooting',\n", + " 'clues': [('sure enough',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('certainly',\n", + " ('surely',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for certain',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure enough',\n", + " ('sure as shooting',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('surely',\n", + " ('certainly',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'sure_as_shooting',\n", " 'hint': 'synonyms for sure as shooting',\n", " 'clues': [('sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('for sure',\n", + " ('sure enough',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('certainly',\n", + " ('for sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for certain',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure enough',\n", + " ('certainly',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'topsy-turvy',\n", " 'hint': 'synonyms for topsy-turvy',\n", - " 'clues': [('heels over head', 'in disorderly haste'),\n", + " 'clues': [('head over heels', 'in disorderly haste'),\n", + " ('heels over head', 'in disorderly haste'),\n", + " ('higgledy-piggledy', 'in a disordered manner'),\n", " ('topsy-turvily', 'in disorderly haste'),\n", - " ('in great confusion', 'in disorderly haste'),\n", - " ('head over heels', 'in disorderly haste'),\n", - " ('higgledy-piggledy', 'in a disordered manner')]},\n", + " ('in great confusion', 'in disorderly haste')]},\n", " {'answer': 'well',\n", " 'hint': 'synonyms for well',\n", " 'clues': [('considerably', 'to a great extent or degree'),\n", - " ('easily', 'indicating high probability; in all likelihood'),\n", - " ('advantageously', 'in a manner affording benefit or advantage'),\n", - " ('substantially', 'to a great extent or degree'),\n", " ('comfortably', 'in financial comfort'),\n", - " ('intimately', 'with great or especially intimate knowledge'),\n", + " ('advantageously', 'in a manner affording benefit or advantage'),\n", + " ('easily', 'indicating high probability; in all likelihood'),\n", " ('good',\n", - " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\")]},\n", + " \"(often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well')\"),\n", + " ('substantially', 'to a great extent or degree'),\n", + " ('intimately', 'with great or especially intimate knowledge')]},\n", " {'answer': 'whole',\n", " 'hint': 'synonyms for whole',\n", - " 'clues': [('entirely',\n", + " 'clues': [('totally',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('completely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('altogether',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('all',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('completely',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('totally',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('wholly',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('entirely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", " {'answer': 'wondrous',\n", " 'hint': 'synonyms for wondrous',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('terrifically', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", - " ('wondrously', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", " ('toppingly', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('wondrously', '(used as an intensifier) extremely well'),\n", + " ('wonderfully', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well')]},\n", " {'answer': 'a_good_deal',\n", " 'hint': 'synonyms for a good deal',\n", " 'clues': [('much', 'to a very great degree or extent'),\n", " ('lots', 'to a very great degree or extent'),\n", - " ('a lot', 'to a very great degree or extent'),\n", " ('very much', 'to a very great degree or extent'),\n", + " ('a lot', 'to a very great degree or extent'),\n", " ('a great deal', 'to a very great degree or extent')]},\n", " {'answer': 'a_great_deal',\n", " 'hint': 'synonyms for a great deal',\n", - " 'clues': [('much', 'to a very great degree or extent'),\n", - " ('a good deal', 'to a very great degree or extent'),\n", + " 'clues': [('a good deal', 'to a very great degree or extent'),\n", + " ('much', 'to a very great degree or extent'),\n", + " ('often', 'frequently or in great quantities'),\n", " ('lots', 'to a very great degree or extent'),\n", - " ('a lot', 'to a very great degree or extent'),\n", " ('very much', 'to a very great degree or extent'),\n", - " ('often', 'frequently or in great quantities')]},\n", + " ('a lot', 'to a very great degree or extent')]},\n", " {'answer': 'a_lot',\n", " 'hint': 'synonyms for a lot',\n", - " 'clues': [('much', 'to a very great degree or extent'),\n", - " ('a good deal', 'to a very great degree or extent'),\n", + " 'clues': [('a good deal', 'to a very great degree or extent'),\n", + " ('much', 'to a very great degree or extent'),\n", " ('lots', 'to a very great degree or extent'),\n", " ('very much', 'to a very great degree or extent'),\n", " ('a great deal', 'to a very great degree or extent')]},\n", " {'answer': 'abominably',\n", " 'hint': 'synonyms for abominably',\n", - " 'clues': [('detestably', 'in an offensive and hateful manner'),\n", - " ('awfully', 'in a terrible manner'),\n", - " ('abysmally', 'in a terrible manner'),\n", - " ('atrociously', 'in a terrible manner'),\n", + " 'clues': [('abysmally', 'in a terrible manner'),\n", " ('odiously', 'in an offensive and hateful manner'),\n", - " ('repulsively', 'in an offensive and hateful manner'),\n", + " ('terribly', 'in a terrible manner'),\n", " ('rottenly', 'in a terrible manner'),\n", - " ('terribly', 'in a terrible manner')]},\n", + " ('repulsively', 'in an offensive and hateful manner'),\n", + " ('awfully', 'in a terrible manner'),\n", + " ('detestably', 'in an offensive and hateful manner'),\n", + " ('atrociously', 'in a terrible manner')]},\n", " {'answer': 'abysmally',\n", " 'hint': 'synonyms for abysmally',\n", - " 'clues': [('abominably', 'in a terrible manner'),\n", - " ('rottenly', 'in a terrible manner'),\n", - " ('terribly', 'in a terrible manner'),\n", + " 'clues': [('terribly', 'in a terrible manner'),\n", " ('awfully', 'in a terrible manner'),\n", + " ('abominably', 'in a terrible manner'),\n", + " ('rottenly', 'in a terrible manner'),\n", " ('atrociously', 'in a terrible manner')]},\n", " {'answer': 'accidentally',\n", " 'hint': 'synonyms for accidentally',\n", - " 'clues': [('circumstantially', 'without advance planning'),\n", + " 'clues': [('unintentionally',\n", + " 'without intention; in an unintentional manner'),\n", " ('by chance', 'without advance planning'),\n", + " ('circumstantially', 'without advance planning'),\n", " ('incidentally', 'of a minor or subordinate nature'),\n", - " ('unexpectedly', 'without advance planning'),\n", - " ('unintentionally', 'without intention; in an unintentional manner')]},\n", + " ('unexpectedly', 'without advance planning')]},\n", " {'answer': 'acutely',\n", " 'hint': 'synonyms for acutely',\n", - " 'clues': [('astutely', 'in a shrewd manner'),\n", - " ('sapiently', 'in a shrewd manner'),\n", - " ('sharp', 'changing suddenly in direction and degree'),\n", + " 'clues': [('sharply', 'changing suddenly in direction and degree'),\n", + " ('shrewdly', 'in a shrewd manner'),\n", + " ('astutely', 'in a shrewd manner'),\n", " ('sagaciously', 'in a shrewd manner'),\n", - " ('shrewdly', 'in a shrewd manner')]},\n", + " ('sapiently', 'in a shrewd manner')]},\n", " {'answer': 'advisedly',\n", " 'hint': 'synonyms for advisedly',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", - " ('intentionally', 'with intention; in an intentional manner'),\n", - " ('on purpose', 'with intention; in an intentional manner'),\n", + " 'clues': [('on purpose', 'with intention; in an intentional manner'),\n", " ('by choice', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", + " ('intentionally', 'with intention; in an intentional manner'),\n", + " ('purposely', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", - " ('by design', 'with intention; in an intentional manner')]},\n", + " ('by design', 'with intention; in an intentional manner'),\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'afterward',\n", " 'hint': 'synonyms for afterward',\n", - " 'clues': [('later', 'happening at a time subsequent to a reference time'),\n", + " 'clues': [('afterwards',\n", + " 'happening at a time subsequent to a reference time'),\n", " ('later on', 'happening at a time subsequent to a reference time'),\n", + " ('later', 'happening at a time subsequent to a reference time'),\n", " ('subsequently', 'happening at a time subsequent to a reference time'),\n", - " ('after', 'happening at a time subsequent to a reference time'),\n", - " ('afterwards', 'happening at a time subsequent to a reference time')]},\n", + " ('after', 'happening at a time subsequent to a reference time')]},\n", " {'answer': 'afterwards',\n", " 'hint': 'synonyms for afterwards',\n", - " 'clues': [('afterward',\n", + " 'clues': [('later on',\n", " 'happening at a time subsequent to a reference time'),\n", - " ('later on', 'happening at a time subsequent to a reference time'),\n", + " ('later', 'happening at a time subsequent to a reference time'),\n", + " ('afterward', 'happening at a time subsequent to a reference time'),\n", " ('subsequently', 'happening at a time subsequent to a reference time'),\n", - " ('after', 'happening at a time subsequent to a reference time'),\n", - " ('later', 'happening at a time subsequent to a reference time')]},\n", + " ('after', 'happening at a time subsequent to a reference time')]},\n", " {'answer': 'again_and_again',\n", " 'hint': 'synonyms for again and again',\n", - " 'clues': [('time and again', 'repeatedly'),\n", - " ('over and over again', 'repeatedly'),\n", + " 'clues': [('time and time again', 'repeatedly'),\n", + " ('time and again', 'repeatedly'),\n", " ('over and over', 'repeatedly'),\n", - " ('time and time again', 'repeatedly')]},\n", + " ('over and over again', 'repeatedly')]},\n", " {'answer': 'all_the_same',\n", " 'hint': 'synonyms for all the same',\n", " 'clues': [('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", + " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('withal',\n", + " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nonetheless',\n", + " ('however',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nevertheless',\n", + " ('withal',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('notwithstanding',\n", + " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'almost',\n", " 'hint': 'synonyms for almost',\n", - " 'clues': [('nearly',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('nigh',\n", + " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", + " ('nearly',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('virtually',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('about',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('virtually',\n", + " ('most',\n", " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", " {'answer': 'also',\n", " 'hint': 'synonyms for also',\n", - " 'clues': [('too', 'in addition'),\n", - " ('as well', 'in addition'),\n", - " ('likewise', 'in addition'),\n", - " ('besides', 'in addition')]},\n", + " 'clues': [('likewise', 'in addition'),\n", + " ('too', 'in addition'),\n", + " ('besides', 'in addition'),\n", + " ('as well', 'in addition')]},\n", " {'answer': 'altogether',\n", " 'hint': 'synonyms for altogether',\n", - " 'clues': [('entirely',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('all',\n", + " 'clues': [('all in all',\n", + " 'with everything considered (and neglecting details)'),\n", + " ('in all', 'with everything included or counted'),\n", + " ('completely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('tout ensemble', 'with everything considered (and neglecting details)'),\n", - " ('all told', 'with everything included or counted'),\n", - " ('on the whole', 'with everything considered (and neglecting details)'),\n", " ('whole',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('all in all', 'with everything considered (and neglecting details)'),\n", - " ('in all', 'with everything included or counted'),\n", - " ('completely',\n", + " ('wholly',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('entirely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('totally',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('wholly',\n", + " ('all told', 'with everything included or counted'),\n", + " ('tout ensemble', 'with everything considered (and neglecting details)'),\n", + " ('on the whole', 'with everything considered (and neglecting details)'),\n", + " ('all',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", " {'answer': 'always',\n", " 'hint': 'synonyms for always',\n", - " 'clues': [('invariably', 'without variation or change, in every case'),\n", + " 'clues': [('perpetually', 'without interruption'),\n", " ('ever', 'at all times; all the time and on every occasion'),\n", - " (\"e'er\", 'at all times; all the time and on every occasion'),\n", - " ('incessantly', 'without interruption'),\n", + " ('invariably', 'without variation or change, in every case'),\n", + " ('constantly', 'without variation or change, in every case'),\n", " ('forever', 'without interruption'),\n", - " ('perpetually', 'without interruption'),\n", - " ('constantly', 'without interruption')]},\n", + " ('incessantly', 'without interruption'),\n", + " (\"e'er\", 'at all times; all the time and on every occasion')]},\n", " {'answer': 'annually',\n", " 'hint': 'synonyms for annually',\n", - " 'clues': [('per annum',\n", - " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('p.a.',\n", - " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", + " 'clues': [('every year', 'without missing a year'),\n", " ('each year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('per year',\n", + " ('per annum',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", " ('yearly', 'without missing a year'),\n", - " ('every year', 'without missing a year')]},\n", + " ('per year',\n", + " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", + " ('p.a.',\n", + " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n", " {'answer': 'anyhow',\n", " 'hint': 'synonyms for anyhow',\n", - " 'clues': [('anyway', 'in any way whatsoever'),\n", - " ('at any rate',\n", + " 'clues': [('anyways',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('in any event',\n", + " ('at any rate',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('in any case',\n", + " 'used to indicate that a statement explains or supports a previous statement'),\n", + " ('in any event',\n", " 'used to indicate that a statement explains or supports a previous statement')]},\n", " {'answer': 'anyway',\n", " 'hint': 'synonyms for anyway',\n", - " 'clues': [('anyhow',\n", + " 'clues': [('anyways',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('at any rate',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('in any event',\n", + " ('anyhow',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('in any case',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('anyways',\n", + " ('in any event',\n", " 'used to indicate that a statement explains or supports a previous statement')]},\n", " {'answer': 'anyways',\n", " 'hint': 'synonyms for anyways',\n", - " 'clues': [('anyway',\n", + " 'clues': [('at any rate',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('at any rate',\n", + " ('anyway',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('in any event',\n", + " ('anyhow',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('in any case',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('anyhow',\n", + " ('in any event',\n", " 'used to indicate that a statement explains or supports a previous statement')]},\n", " {'answer': 'apace',\n", " 'hint': 'synonyms for apace',\n", - " 'clues': [('quickly', 'with rapid movements'),\n", + " 'clues': [('chop-chop', 'with rapid movements'),\n", " ('speedily', 'with rapid movements'),\n", " ('rapidly', 'with rapid movements'),\n", - " ('chop-chop', 'with rapid movements')]},\n", + " ('quickly', 'with rapid movements')]},\n", " {'answer': 'apparently',\n", " 'hint': 'synonyms for apparently',\n", - " 'clues': [('manifestly',\n", + " 'clues': [('obviously',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", + " ('on the face of it', 'from appearances alone; ; ; -Thomas Hardy'),\n", + " ('seemingly', 'from appearances alone; ; ; -Thomas Hardy'),\n", " ('plainly',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('patently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('seemingly', 'from appearances alone; ; ; -Thomas Hardy'),\n", - " ('evidently',\n", - " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('ostensibly', 'from appearances alone; ; ; -Thomas Hardy'),\n", - " ('obviously',\n", + " ('manifestly',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('on the face of it', 'from appearances alone; ; ; -Thomas Hardy')]},\n", + " ('evidently',\n", + " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'approximately',\n", " 'hint': 'synonyms for approximately',\n", " 'clues': [('roughly',\n", " '(of quantities) imprecise but fairly close to correct'),\n", - " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", - " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", " ('around', '(of quantities) imprecise but fairly close to correct'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", + " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('or so', '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'arbitrarily',\n", " 'hint': 'synonyms for arbitrarily',\n", " 'clues': [('at random', 'in a random manner'),\n", - " ('every which way', 'in a random manner'),\n", - " ('indiscriminately', 'in a random manner'),\n", " ('willy-nilly', 'in a random manner'),\n", " ('randomly', 'in a random manner'),\n", + " ('every which way', 'in a random manner'),\n", + " ('indiscriminately', 'in a random manner'),\n", " ('haphazardly', 'in a random manner')]},\n", " {'answer': 'around',\n", " 'hint': 'synonyms for around',\n", - " 'clues': [('roughly',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", - " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", + " 'clues': [('about', 'all around or on all sides'),\n", + " ('roughly', '(of quantities) imprecise but fairly close to correct'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", - " ('about', 'all around or on all sides'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('round', 'from beginning to end; throughout'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'artfully',\n", " 'hint': 'synonyms for artfully',\n", - " 'clues': [('foxily', 'in an artful manner'),\n", - " ('disingenuously', 'in a disingenuous manner'),\n", - " ('craftily', 'in an artful manner'),\n", - " ('knavishly', 'in an artful manner'),\n", + " 'clues': [('disingenuously', 'in a disingenuous manner'),\n", + " ('trickily', 'in an artful manner'),\n", + " ('foxily', 'in an artful manner'),\n", " ('slyly', 'in an artful manner'),\n", " ('cunningly', 'in an artful manner'),\n", - " ('trickily', 'in an artful manner')]},\n", + " ('craftily', 'in an artful manner'),\n", + " ('knavishly', 'in an artful manner')]},\n", " {'answer': 'as_well',\n", " 'hint': 'synonyms for as well',\n", - " 'clues': [('too', 'in addition'),\n", - " ('likewise', 'in addition'),\n", - " ('also', 'in addition'),\n", - " ('besides', 'in addition')]},\n", + " 'clues': [('likewise', 'in addition'),\n", + " ('too', 'in addition'),\n", + " ('besides', 'in addition'),\n", + " ('also', 'in addition')]},\n", " {'answer': 'as_yet',\n", " 'hint': 'synonyms for as yet',\n", - " 'clues': [('thus far',\n", + " 'clues': [('yet',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('hitherto',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('til now',\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('so far',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('hitherto',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", " {'answer': 'astutely',\n", " 'hint': 'synonyms for astutely',\n", - " 'clues': [('acutely', 'in a shrewd manner'),\n", - " ('sagaciously', 'in a shrewd manner'),\n", + " 'clues': [('shrewdly', 'in a shrewd manner'),\n", " ('sapiently', 'in a shrewd manner'),\n", - " ('shrewdly', 'in a shrewd manner')]},\n", + " ('sagaciously', 'in a shrewd manner'),\n", + " ('acutely', 'in a shrewd manner')]},\n", " {'answer': 'at_any_rate',\n", " 'hint': 'synonyms for at any rate',\n", " 'clues': [('anyways',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('in any event',\n", + " ('leastwise',\n", + " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n", + " ('anyhow',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('in any case',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", + " ('in any event',\n", + " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('leastways',\n", " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n", - " ('anyhow',\n", - " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('at least',\n", - " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n", - " ('leastwise',\n", " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\")]},\n", " {'answer': 'at_bottom',\n", " 'hint': 'synonyms for at bottom',\n", " 'clues': [('at heart', 'in reality'),\n", - " ('deep down', 'in reality'),\n", + " ('in spite of appearance', 'in reality'),\n", " ('inside', 'in reality'),\n", - " ('in spite of appearance', 'in reality')]},\n", + " ('deep down', 'in reality')]},\n", " {'answer': 'at_heart',\n", " 'hint': 'synonyms for at heart',\n", " 'clues': [('deep down', 'in reality'),\n", + " ('in spite of appearance', 'in reality'),\n", " ('inside', 'in reality'),\n", - " ('at bottom', 'in reality'),\n", - " ('in spite of appearance', 'in reality')]},\n", + " ('at bottom', 'in reality')]},\n", " {'answer': 'at_last',\n", " 'hint': 'synonyms for at last',\n", - " 'clues': [('finally', 'as the end result of a succession or process'),\n", - " ('at long last', 'as the end result of a succession or process'),\n", - " ('ultimately', 'as the end result of a succession or process'),\n", - " ('in the end', 'as the end result of a succession or process')]},\n", + " 'clues': [('at long last', 'as the end result of a succession or process'),\n", + " ('finally', 'as the end result of a succession or process'),\n", + " ('in the end', 'as the end result of a succession or process'),\n", + " ('ultimately', 'as the end result of a succession or process')]},\n", " {'answer': 'at_least',\n", " 'hint': 'synonyms for at least',\n", - " 'clues': [('at the least', 'not less than'),\n", - " ('leastways',\n", - " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n", - " ('leastwise',\n", + " 'clues': [('leastwise',\n", " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n", " ('at any rate',\n", + " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\"),\n", + " ('at the least', 'not less than'),\n", + " ('leastways',\n", " \"if nothing else (`leastwise' is informal and `leastways' is colloquial)\")]},\n", " {'answer': 'at_long_last',\n", " 'hint': 'synonyms for at long last',\n", - " 'clues': [('at last', 'as the end result of a succession or process'),\n", + " 'clues': [('in the end', 'as the end result of a succession or process'),\n", + " ('at last', 'as the end result of a succession or process'),\n", " ('finally', 'as the end result of a succession or process'),\n", - " ('ultimately', 'as the end result of a succession or process'),\n", - " ('in the end', 'as the end result of a succession or process')]},\n", + " ('ultimately', 'as the end result of a succession or process')]},\n", " {'answer': 'at_once',\n", " 'hint': 'synonyms for at once',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", - " ('right away', 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", - " ('at a time', 'simultaneously'),\n", - " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", - " ('at one time', 'simultaneously'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", + " ('right away', 'without delay or hesitation; with no time intervening'),\n", + " ('at a time', 'simultaneously'),\n", + " ('directly', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('at one time', 'simultaneously'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('immediately',\n", " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'at_one_time',\n", " 'hint': 'synonyms for at one time',\n", - " 'clues': [('erstwhile', 'at a previous time'),\n", - " ('erst', 'at a previous time'),\n", - " ('at a time', 'simultaneously'),\n", + " 'clues': [('erst', 'at a previous time'),\n", + " ('at once', 'simultaneously'),\n", " ('formerly', 'at a previous time'),\n", - " ('once', 'at a previous time'),\n", - " ('at once', 'simultaneously')]},\n", + " ('at a time', 'simultaneously'),\n", + " ('erstwhile', 'at a previous time'),\n", + " ('once', 'at a previous time')]},\n", " {'answer': 'at_random',\n", " 'hint': 'synonyms for at random',\n", - " 'clues': [('every which way', 'in a random manner'),\n", - " ('indiscriminately', 'in a random manner'),\n", - " ('arbitrarily', 'in a random manner'),\n", - " ('willy-nilly', 'in a random manner'),\n", + " 'clues': [('willy-nilly', 'in a random manner'),\n", " ('randomly', 'in a random manner'),\n", + " ('every which way', 'in a random manner'),\n", + " ('arbitrarily', 'in a random manner'),\n", + " ('indiscriminately', 'in a random manner'),\n", " ('haphazardly', 'in a random manner')]},\n", " {'answer': 'at_times',\n", " 'hint': 'synonyms for at times',\n", - " 'clues': [('occasionally', 'now and then or here and there'),\n", - " ('on occasion', 'now and then or here and there'),\n", - " ('now and then', 'now and then or here and there'),\n", - " ('once in a while', 'now and then or here and there'),\n", + " 'clues': [('once in a while', 'now and then or here and there'),\n", + " ('occasionally', 'now and then or here and there'),\n", " ('now and again', 'now and then or here and there'),\n", - " ('from time to time', 'now and then or here and there')]},\n", + " ('on occasion', 'now and then or here and there'),\n", + " ('from time to time', 'now and then or here and there'),\n", + " ('now and then', 'now and then or here and there')]},\n", " {'answer': 'atrociously',\n", " 'hint': 'synonyms for atrociously',\n", - " 'clues': [('outrageously', 'to an extravagant or immoderate degree'),\n", - " ('abominably', 'in a terrible manner'),\n", + " 'clues': [('abysmally', 'in a terrible manner'),\n", + " ('terribly', 'in a terrible manner'),\n", " ('awfully', 'in a terrible manner'),\n", + " ('abominably', 'in a terrible manner'),\n", " ('rottenly', 'in a terrible manner'),\n", - " ('terribly', 'in a terrible manner'),\n", - " ('abysmally', 'in a terrible manner')]},\n", + " ('outrageously', 'to an extravagant or immoderate degree')]},\n", " {'answer': 'avowedly',\n", " 'hint': 'synonyms for avowedly',\n", " 'clues': [('admittedly', 'as acknowledged'),\n", " ('professedly', 'by open declaration'),\n", - " ('confessedly', 'as acknowledged'),\n", - " ('true', 'as acknowledged')]},\n", + " ('true', 'as acknowledged'),\n", + " ('confessedly', 'as acknowledged')]},\n", " {'answer': 'awfully',\n", " 'hint': 'synonyms for awfully',\n", - " 'clues': [('horribly', 'of a dreadful kind'),\n", - " ('awful', 'used as intensifiers'),\n", - " ('abysmally', 'in a terrible manner'),\n", - " ('atrociously', 'in a terrible manner'),\n", + " 'clues': [('abysmally', 'in a terrible manner'),\n", + " ('terribly', 'in a terrible manner'),\n", " ('dreadfully', 'of a dreadful kind'),\n", + " ('rottenly', 'in a terrible manner'),\n", + " ('awful', 'used as intensifiers'),\n", + " ('horribly', 'of a dreadful kind'),\n", " ('abominably', 'in a terrible manner'),\n", " ('frightfully', 'used as intensifiers'),\n", - " ('terribly', 'used as intensifiers'),\n", - " ('rottenly', 'in a terrible manner')]},\n", + " ('atrociously', 'in a terrible manner')]},\n", " {'answer': 'badly',\n", " 'hint': 'synonyms for badly',\n", - " 'clues': [('disadvantageously',\n", - " \"in a disadvantageous way; to someone's disadvantage\"),\n", + " 'clues': [('severely', 'to a severe or serious degree'),\n", + " ('ill', 'unfavorably or with disapproval'),\n", + " ('bad', 'very much; strongly'),\n", " ('gravely', 'to a severe or serious degree'),\n", + " ('seriously', 'to a severe or serious degree'),\n", " ('naughtily', 'in a disobedient or naughty way'),\n", - " ('ill',\n", - " \"(`ill' is often used as a combining form) in a poor or improper or unsatisfactory manner; not well\"),\n", - " ('severely', 'to a severe or serious degree'),\n", " ('mischievously', 'in a disobedient or naughty way'),\n", - " ('bad', 'very much; strongly'),\n", + " ('disadvantageously',\n", + " \"in a disadvantageous way; to someone's disadvantage\"),\n", " ('poorly',\n", - " \"(`ill' is often used as a combining form) in a poor or improper or unsatisfactory manner; not well\"),\n", - " ('seriously', 'to a severe or serious degree')]},\n", + " \"(`ill' is often used as a combining form) in a poor or improper or unsatisfactory manner; not well\")]},\n", " {'answer': 'balmily',\n", " 'hint': 'synonyms for balmily',\n", - " 'clues': [('wackily', 'in a mildly insane manner'),\n", + " 'clues': [('daftly', 'in a mildly insane manner'),\n", + " ('nuttily', 'in a mildly insane manner'),\n", " ('dottily', 'in a mildly insane manner'),\n", - " ('daftly', 'in a mildly insane manner'),\n", - " ('nuttily', 'in a mildly insane manner')]},\n", + " ('wackily', 'in a mildly insane manner')]},\n", " {'answer': 'bang',\n", " 'hint': 'synonyms for bang',\n", - " 'clues': [('slapdash', 'directly'),\n", - " ('smack', 'directly'),\n", - " ('bolt', 'directly'),\n", - " ('slap', 'directly')]},\n", + " 'clues': [('smack', 'directly'),\n", + " ('slap', 'directly'),\n", + " ('slapdash', 'directly'),\n", + " ('bolt', 'directly')]},\n", " {'answer': 'barely',\n", " 'hint': 'synonyms for barely',\n", - " 'clues': [('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('scarcely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('scantily', 'in a sparse or scanty way')]},\n", + " 'clues': [('scarcely',\n", + " 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " ('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " ('scantily', 'in a sparse or scanty way'),\n", + " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats')]},\n", " {'answer': 'befittingly',\n", " 'hint': 'synonyms for befittingly',\n", " 'clues': [('fittingly', 'in an appropriate manner'),\n", - " ('appropriately', 'in an appropriate manner'),\n", " ('suitably', 'in an appropriate manner'),\n", - " ('fitly', 'in an appropriate manner')]},\n", + " ('fitly', 'in an appropriate manner'),\n", + " ('appropriately', 'in an appropriate manner')]},\n", " {'answer': 'belike',\n", " 'hint': 'synonyms for belike',\n", - " 'clues': [('in all probability',\n", - " 'with considerable certainty; without much doubt'),\n", + " 'clues': [('likely', 'with considerable certainty; without much doubt'),\n", + " ('in all probability', 'with considerable certainty; without much doubt'),\n", " ('probably', 'with considerable certainty; without much doubt'),\n", - " ('in all likelihood', 'with considerable certainty; without much doubt'),\n", - " ('likely', 'with considerable certainty; without much doubt')]},\n", + " ('in all likelihood',\n", + " 'with considerable certainty; without much doubt')]},\n", " {'answer': 'below',\n", " 'hint': 'synonyms for below',\n", - " 'clues': [('infra', '(in writing) see below'),\n", - " ('down the stairs', 'on a floor below'),\n", + " 'clues': [('down the stairs', 'on a floor below'),\n", + " ('at a lower place', 'in or to a place that is lower'),\n", + " ('under', 'further down'),\n", " ('downstairs', 'on a floor below'),\n", - " ('on a lower floor', 'on a floor below'),\n", " ('beneath', 'in or to a place that is lower'),\n", - " ('at a lower place', 'in or to a place that is lower'),\n", - " ('under', 'further down')]},\n", + " ('infra', '(in writing) see below'),\n", + " ('on a lower floor', 'on a floor below')]},\n", " {'answer': 'beseechingly',\n", " 'hint': 'synonyms for beseechingly',\n", - " 'clues': [('importunately', 'in a beseeching manner'),\n", - " ('pleadingly', 'in a beseeching manner'),\n", - " ('entreatingly', 'in a beseeching manner'),\n", - " ('imploringly', 'in a beseeching manner')]},\n", + " 'clues': [('pleadingly', 'in a beseeching manner'),\n", + " ('imploringly', 'in a beseeching manner'),\n", + " ('importunately', 'in a beseeching manner'),\n", + " ('entreatingly', 'in a beseeching manner')]},\n", " {'answer': 'besides',\n", " 'hint': 'synonyms for besides',\n", - " 'clues': [('in any case', 'making an additional point; anyway'),\n", + " 'clues': [('likewise', 'in addition'),\n", + " ('in any case', 'making an additional point; anyway'),\n", " ('too', 'in addition'),\n", - " ('as well', 'in addition'),\n", " ('also', 'in addition'),\n", - " ('likewise', 'in addition')]},\n", + " ('as well', 'in addition')]},\n", " {'answer': 'bit_by_bit',\n", " 'hint': 'synonyms for bit by bit',\n", - " 'clues': [('gradually', 'in a gradual manner'),\n", + " 'clues': [('step by step', 'in a gradual manner'),\n", + " ('gradually', 'in a gradual manner'),\n", " ('in stages', 'a little bit at a time'),\n", - " ('little by little', 'a little bit at a time'),\n", " ('piecemeal', 'a little bit at a time'),\n", - " ('step by step', 'in a gradual manner')]},\n", + " ('little by little', 'a little bit at a time')]},\n", " {'answer': 'blithely',\n", " 'hint': 'synonyms for blithely',\n", - " 'clues': [('merrily', 'in a joyous manner'),\n", - " ('happily', 'in a joyous manner'),\n", - " ('mirthfully', 'in a joyous manner'),\n", + " 'clues': [('gayly', 'in a joyous manner'),\n", " ('jubilantly', 'in a joyous manner'),\n", - " ('gayly', 'in a joyous manner')]},\n", + " ('merrily', 'in a joyous manner'),\n", + " ('mirthfully', 'in a joyous manner'),\n", + " ('happily', 'in a joyous manner')]},\n", " {'answer': 'bluffly',\n", " 'hint': 'synonyms for bluffly',\n", " 'clues': [('roundly', 'in a blunt direct manner'),\n", @@ -21314,23 +21342,23 @@ " {'answer': 'bluntly',\n", " 'hint': 'synonyms for bluntly',\n", " 'clues': [('roundly', 'in a blunt direct manner'),\n", + " ('brusquely', 'in a blunt direct manner'),\n", " ('bluffly', 'in a blunt direct manner'),\n", - " ('flat out', 'in a blunt direct manner'),\n", - " ('brusquely', 'in a blunt direct manner')]},\n", + " ('flat out', 'in a blunt direct manner')]},\n", " {'answer': 'bolt',\n", " 'hint': 'synonyms for bolt',\n", - " 'clues': [('rigidly', 'in a rigid manner'),\n", - " ('slapdash', 'directly'),\n", - " ('slap', 'directly'),\n", + " 'clues': [('smack', 'directly'),\n", " ('stiffly', 'in a rigid manner'),\n", - " ('smack', 'directly'),\n", + " ('rigidly', 'in a rigid manner'),\n", + " ('slap', 'directly'),\n", + " ('slapdash', 'directly'),\n", " ('bang', 'directly')]},\n", " {'answer': 'briefly',\n", " 'hint': 'synonyms for briefly',\n", - " 'clues': [('in short', 'in a concise manner; in a few words'),\n", + " 'clues': [('shortly', 'in a concise manner; in a few words'),\n", " ('concisely', 'in a concise manner; in a few words'),\n", - " ('in brief', 'in a concise manner; in a few words'),\n", - " ('shortly', 'in a concise manner; in a few words')]},\n", + " ('in short', 'in a concise manner; in a few words'),\n", + " ('in brief', 'in a concise manner; in a few words')]},\n", " {'answer': 'brusquely',\n", " 'hint': 'synonyms for brusquely',\n", " 'clues': [('roundly', 'in a blunt direct manner'),\n", @@ -21339,80 +21367,80 @@ " ('bluntly', 'in a blunt direct manner')]},\n", " {'answer': 'but',\n", " 'hint': 'synonyms for but',\n", - " 'clues': [('simply', 'and nothing more'),\n", - " ('merely', 'and nothing more'),\n", + " 'clues': [('just', 'and nothing more'),\n", " ('only', 'and nothing more'),\n", - " ('just', 'and nothing more')]},\n", + " ('merely', 'and nothing more'),\n", + " ('simply', 'and nothing more')]},\n", " {'answer': 'by_all_odds',\n", " 'hint': 'synonyms for by all odds',\n", " 'clues': [('emphatically', 'without question and beyond doubt'),\n", " ('in spades', 'without question and beyond doubt'),\n", - " ('decidedly', 'without question and beyond doubt'),\n", " ('definitely', 'without question and beyond doubt'),\n", + " ('decidedly', 'without question and beyond doubt'),\n", " ('unquestionably', 'without question and beyond doubt')]},\n", " {'answer': 'by_chance',\n", " 'hint': 'synonyms for by chance',\n", - " 'clues': [('unexpectedly', 'without advance planning'),\n", - " ('perchance', 'through chance,'),\n", + " 'clues': [('by luck', 'by accident'),\n", " ('accidentally', 'without advance planning'),\n", + " ('unexpectedly', 'without advance planning'),\n", " ('haply', 'by accident'),\n", " ('circumstantially', 'without advance planning'),\n", - " ('by luck', 'by accident')]},\n", + " ('perchance', 'through chance,')]},\n", " {'answer': 'by_choice',\n", " 'hint': 'synonyms for by choice',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", + " 'clues': [('on purpose', 'with intention; in an intentional manner'),\n", " ('intentionally', 'with intention; in an intentional manner'),\n", - " ('on purpose', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", + " ('purposely', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", - " ('by design', 'with intention; in an intentional manner')]},\n", + " ('by design', 'with intention; in an intentional manner'),\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'by_design',\n", " 'hint': 'synonyms for by design',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", - " ('intentionally', 'with intention; in an intentional manner'),\n", + " 'clues': [('on purpose', 'with intention; in an intentional manner'),\n", " ('by choice', 'with intention; in an intentional manner'),\n", + " ('intentionally', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", + " ('purposely', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", - " ('on purpose', 'with intention; in an intentional manner')]},\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'carelessly',\n", " 'hint': 'synonyms for carelessly',\n", " 'clues': [('heedlessly', 'without care or concern'),\n", - " ('incautiously', 'without caution or prudence'),\n", + " ('raffishly', 'in a rakish manner'),\n", " ('rakishly', 'in a rakish manner'),\n", - " ('raffishly', 'in a rakish manner')]},\n", + " ('incautiously', 'without caution or prudence')]},\n", " {'answer': 'ceaselessly',\n", " 'hint': 'synonyms for ceaselessly',\n", - " 'clues': [('unendingly', 'with unflagging resolve'),\n", - " ('unceasingly', 'with unflagging resolve'),\n", - " ('incessantly', 'with unflagging resolve'),\n", + " 'clues': [('unceasingly', 'with unflagging resolve'),\n", + " ('unendingly', 'with unflagging resolve'),\n", + " ('continuously', 'with unflagging resolve'),\n", " ('endlessly', 'with unflagging resolve'),\n", - " ('continuously', 'with unflagging resolve')]},\n", + " ('incessantly', 'with unflagging resolve')]},\n", " {'answer': 'certainly',\n", " 'hint': 'synonyms for certainly',\n", - " 'clues': [('sure as shooting',\n", + " 'clues': [('sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure',\n", + " ('sure enough',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for certain',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure enough',\n", + " ('sure as shooting',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'cheaply',\n", " 'hint': 'synonyms for cheaply',\n", - " 'clues': [('inexpensively', 'with little expenditure of money'),\n", + " 'clues': [('inexpensively', 'in a cheap manner'),\n", " ('chintzily', 'in a stingy manner'),\n", - " ('tattily', 'in a cheap manner'),\n", - " ('stingily', 'in a stingy manner')]},\n", + " ('stingily', 'in a stingy manner'),\n", + " ('tattily', 'in a cheap manner')]},\n", " {'answer': 'chiefly',\n", " 'hint': 'synonyms for chiefly',\n", - " 'clues': [('primarily', 'for the most part'),\n", - " ('in the main', 'for the most part'),\n", + " 'clues': [('mainly', 'for the most part'),\n", " ('principally', 'for the most part'),\n", - " ('mainly', 'for the most part')]},\n", + " ('primarily', 'for the most part'),\n", + " ('in the main', 'for the most part')]},\n", " {'answer': 'chop-chop',\n", " 'hint': 'synonyms for chop-chop',\n", " 'clues': [('apace', 'with rapid movements'),\n", @@ -21421,186 +21449,184 @@ " ('quickly', 'with rapid movements')]},\n", " {'answer': 'circumstantially',\n", " 'hint': 'synonyms for circumstantially',\n", - " 'clues': [('unexpectedly', 'without advance planning'),\n", + " 'clues': [('accidentally', 'without advance planning'),\n", + " ('minutely', 'in minute detail'),\n", " ('by chance', 'without advance planning'),\n", - " ('accidentally', 'without advance planning'),\n", - " ('minutely', 'in minute detail')]},\n", + " ('unexpectedly', 'without advance planning')]},\n", " {'answer': 'clearly',\n", " 'hint': 'synonyms for clearly',\n", - " 'clues': [('distinctly',\n", - " 'clear to the mind; with distinct mental discernment'),\n", - " ('clear', 'in an easily perceptible manner'),\n", + " 'clues': [('understandably', 'in an intelligible manner'),\n", " ('intelligibly', 'in an intelligible manner'),\n", - " ('understandably', 'in an intelligible manner')]},\n", + " ('clear', 'in an easily perceptible manner'),\n", + " ('distinctly', 'clear to the mind; with distinct mental discernment')]},\n", " {'answer': 'close_to',\n", " 'hint': 'synonyms for close to',\n", " 'clues': [('roughly',\n", " '(of quantities) imprecise but fairly close to correct'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", - " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", " ('around', '(of quantities) imprecise but fairly close to correct'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", + " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'closely',\n", " 'hint': 'synonyms for closely',\n", - " 'clues': [('tight', 'in an attentive manner'),\n", - " ('nearly', 'in a close manner'),\n", + " 'clues': [('nearly', 'in a close manner'),\n", + " ('tight', 'in an attentive manner'),\n", " ('intimately', 'in a close manner'),\n", " ('close', 'in an attentive manner')]},\n", " {'answer': 'commonly',\n", " 'hint': 'synonyms for commonly',\n", - " 'clues': [('usually', 'under normal conditions'),\n", + " 'clues': [('ordinarily', 'under normal conditions'),\n", + " ('unremarkably', 'under normal conditions'),\n", " ('normally', 'under normal conditions'),\n", - " ('ordinarily', 'under normal conditions'),\n", - " ('unremarkably', 'under normal conditions')]},\n", + " ('usually', 'under normal conditions')]},\n", " {'answer': 'completely',\n", " 'hint': 'synonyms for completely',\n", - " 'clues': [('entirely',\n", + " 'clues': [('totally',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('altogether',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('all',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('totally',\n", + " ('whole',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('wholly',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('whole',\n", + " ('entirely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", " {'answer': 'concisely',\n", " 'hint': 'synonyms for concisely',\n", - " 'clues': [('in short', 'in a concise manner; in a few words'),\n", - " ('briefly', 'in a concise manner; in a few words'),\n", + " 'clues': [('shortly', 'in a concise manner; in a few words'),\n", " ('in brief', 'in a concise manner; in a few words'),\n", - " ('shortly', 'in a concise manner; in a few words')]},\n", + " ('in short', 'in a concise manner; in a few words'),\n", + " ('briefly', 'in a concise manner; in a few words')]},\n", " {'answer': 'constantly',\n", " 'hint': 'synonyms for constantly',\n", - " 'clues': [('always', 'without variation or change, in every case'),\n", - " ('invariably', 'without variation or change, in every case'),\n", - " ('forever', 'without interruption'),\n", + " 'clues': [('forever', 'without interruption'),\n", + " ('incessantly', 'without interruption'),\n", " ('perpetually', 'without interruption'),\n", - " ('incessantly', 'without interruption')]},\n", + " ('always', 'without variation or change, in every case'),\n", + " ('invariably', 'without variation or change, in every case')]},\n", " {'answer': 'continuously',\n", " 'hint': 'synonyms for continuously',\n", - " 'clues': [('unceasingly', 'with unflagging resolve'),\n", + " 'clues': [('ceaselessly', 'with unflagging resolve'),\n", + " ('unceasingly', 'with unflagging resolve'),\n", " ('unendingly', 'with unflagging resolve'),\n", - " ('incessantly', 'with unflagging resolve'),\n", " ('endlessly', 'with unflagging resolve'),\n", - " ('ceaselessly', 'with unflagging resolve')]},\n", + " ('incessantly', 'with unflagging resolve')]},\n", " {'answer': 'contrariwise',\n", " 'hint': 'synonyms for contrariwise',\n", - " 'clues': [('vice versa', 'with the order reversed'),\n", - " ('contrarily', 'contrary to expectations'),\n", - " ('on the contrary', 'contrary to expectations'),\n", + " 'clues': [('contrarily', 'in a contrary disobedient manner'),\n", " ('the other way around', 'with the order reversed'),\n", - " ('perversely', 'in a contrary disobedient manner')]},\n", + " ('perversely', 'in a contrary disobedient manner'),\n", + " ('vice versa', 'with the order reversed'),\n", + " ('on the contrary', 'contrary to expectations')]},\n", " {'answer': 'covetously',\n", " 'hint': 'synonyms for covetously',\n", - " 'clues': [('jealously', 'with jealousy; in an envious manner'),\n", - " ('avariciously', 'in a greedy manner'),\n", - " ('greedily', 'in a greedy manner'),\n", - " ('enviously', 'with jealousy; in an envious manner')]},\n", + " 'clues': [('avariciously', 'in a greedy manner'),\n", + " ('jealously', 'with jealousy; in an envious manner'),\n", + " ('enviously', 'with jealousy; in an envious manner'),\n", + " ('greedily', 'in a greedy manner')]},\n", " {'answer': 'craftily',\n", " 'hint': 'synonyms for craftily',\n", - " 'clues': [('foxily', 'in an artful manner'),\n", - " ('knavishly', 'in an artful manner'),\n", + " 'clues': [('artfully', 'in an artful manner'),\n", + " ('trickily', 'in an artful manner'),\n", + " ('foxily', 'in an artful manner'),\n", " ('slyly', 'in an artful manner'),\n", " ('cunningly', 'in an artful manner'),\n", - " ('artfully', 'in an artful manner'),\n", - " ('trickily', 'in an artful manner')]},\n", + " ('knavishly', 'in an artful manner')]},\n", " {'answer': 'cunningly',\n", " 'hint': 'synonyms for cunningly',\n", - " 'clues': [('foxily', 'in an artful manner'),\n", + " 'clues': [('artfully', 'in an artful manner'),\n", + " ('trickily', 'in an artful manner'),\n", + " ('foxily', 'in an artful manner'),\n", " ('cutely', 'in an attractive manner'),\n", - " ('craftily', 'in an artful manner'),\n", - " ('knavishly', 'in an artful manner'),\n", " ('slyly', 'in an artful manner'),\n", - " ('artfully', 'in an artful manner'),\n", - " ('trickily', 'in an artful manner')]},\n", + " ('craftily', 'in an artful manner'),\n", + " ('knavishly', 'in an artful manner')]},\n", " {'answer': 'curiously',\n", " 'hint': 'synonyms for curiously',\n", - " 'clues': [('peculiarly',\n", - " 'in a manner differing from the usual or expected'),\n", - " ('oddly', 'in a manner differing from the usual or expected'),\n", + " 'clues': [('oddly', 'in a manner differing from the usual or expected'),\n", + " ('interrogatively', 'with curiosity'),\n", " ('inquisitively', 'with curiosity'),\n", - " ('interrogatively', 'with curiosity')]},\n", + " ('peculiarly', 'in a manner differing from the usual or expected')]},\n", " {'answer': 'cussedly',\n", " 'hint': 'synonyms for cussedly',\n", - " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n", - " ('obstinately', 'in a stubborn unregenerate manner'),\n", + " 'clues': [('obstinately', 'in a stubborn unregenerate manner'),\n", + " ('mulishly', 'in a stubborn unregenerate manner'),\n", + " ('stubbornly', 'in a stubborn unregenerate manner'),\n", " ('obdurately', 'in a stubborn unregenerate manner'),\n", - " ('pig-headedly', 'in a stubborn unregenerate manner'),\n", - " ('mulishly', 'in a stubborn unregenerate manner')]},\n", + " ('pig-headedly', 'in a stubborn unregenerate manner')]},\n", " {'answer': 'daftly',\n", " 'hint': 'synonyms for daftly',\n", - " 'clues': [('wackily', 'in a mildly insane manner'),\n", - " ('dottily', 'in a mildly insane manner'),\n", + " 'clues': [('balmily', 'in a mildly insane manner'),\n", " ('nuttily', 'in a mildly insane manner'),\n", - " ('balmily', 'in a mildly insane manner')]},\n", + " ('dottily', 'in a mildly insane manner'),\n", + " ('wackily', 'in a mildly insane manner')]},\n", " {'answer': 'decently',\n", " 'hint': 'synonyms for decently',\n", " 'clues': [('decent', 'in the right manner'),\n", - " ('right', 'in the right manner'),\n", - " ('in good order', 'in the right manner'),\n", " ('the right way', 'in the right manner'),\n", - " ('properly', 'in the right manner')]},\n", + " ('right', 'in the right manner'),\n", + " ('properly', 'in the right manner'),\n", + " ('in good order', 'in the right manner')]},\n", " {'answer': 'decidedly',\n", " 'hint': 'synonyms for decidedly',\n", - " 'clues': [('emphatically', 'without question and beyond doubt'),\n", - " ('by all odds', 'without question and beyond doubt'),\n", + " 'clues': [('by all odds', 'without question and beyond doubt'),\n", + " ('emphatically', 'without question and beyond doubt'),\n", " ('in spades', 'without question and beyond doubt'),\n", " ('definitely', 'without question and beyond doubt'),\n", " ('unquestionably', 'without question and beyond doubt')]},\n", " {'answer': 'deep_down',\n", " 'hint': 'synonyms for deep down',\n", " 'clues': [('at heart', 'in reality'),\n", + " ('in spite of appearance', 'in reality'),\n", " ('inside', 'in reality'),\n", - " ('at bottom', 'in reality'),\n", - " ('in spite of appearance', 'in reality')]},\n", + " ('at bottom', 'in reality')]},\n", " {'answer': 'definitely',\n", " 'hint': 'synonyms for definitely',\n", - " 'clues': [('emphatically', 'without question and beyond doubt'),\n", - " ('by all odds', 'without question and beyond doubt'),\n", + " 'clues': [('by all odds', 'without question and beyond doubt'),\n", + " ('emphatically', 'without question and beyond doubt'),\n", " ('in spades', 'without question and beyond doubt'),\n", " ('decidedly', 'without question and beyond doubt'),\n", " ('unquestionably', 'without question and beyond doubt')]},\n", " {'answer': 'deliberately',\n", " 'hint': 'synonyms for deliberately',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", - " ('measuredly', 'in a deliberate unhurried manner'),\n", - " ('intentionally', 'with intention; in an intentional manner'),\n", + " 'clues': [('measuredly', 'in a deliberate unhurried manner'),\n", " ('on purpose', 'with intention; in an intentional manner'),\n", " ('by choice', 'with intention; in an intentional manner'),\n", + " ('intentionally', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", + " ('purposely', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", " ('by design', 'with intention; in an intentional manner')]},\n", " {'answer': 'designedly',\n", " 'hint': 'synonyms for designedly',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", - " ('intentionally', 'with intention; in an intentional manner'),\n", - " ('on purpose', 'with intention; in an intentional manner'),\n", + " 'clues': [('on purpose', 'with intention; in an intentional manner'),\n", " ('by choice', 'with intention; in an intentional manner'),\n", + " ('intentionally', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", - " ('by design', 'with intention; in an intentional manner')]},\n", + " ('purposely', 'with intention; in an intentional manner'),\n", + " ('by design', 'with intention; in an intentional manner'),\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'deucedly',\n", " 'hint': 'synonyms for deucedly',\n", - " 'clues': [('devilishly', '(used as intensives) extremely'),\n", + " 'clues': [('insanely', '(used as intensives) extremely'),\n", " ('madly', '(used as intensives) extremely'),\n", - " ('insanely', '(used as intensives) extremely'),\n", - " ('deadly', '(used as intensives) extremely')]},\n", + " ('deadly', '(used as intensives) extremely'),\n", + " ('devilishly', '(used as intensives) extremely')]},\n", " {'answer': 'devilishly',\n", " 'hint': 'synonyms for devilishly',\n", - " 'clues': [('devilish', 'in a playfully devilish manner'),\n", - " ('madly', '(used as intensives) extremely'),\n", + " 'clues': [('fiendishly', 'as a devil; in an evil manner'),\n", + " ('devilish', 'in a playfully devilish manner'),\n", + " ('deadly', '(used as intensives) extremely'),\n", " ('insanely', '(used as intensives) extremely'),\n", - " ('fiendishly', 'as a devil; in an evil manner'),\n", + " ('madly', '(used as intensives) extremely'),\n", " ('deucedly', '(used as intensives) extremely'),\n", - " ('diabolically', 'as a devil; in an evil manner'),\n", - " ('deadly', '(used as intensives) extremely')]},\n", + " ('diabolically', 'as a devil; in an evil manner')]},\n", " {'answer': 'dimly',\n", " 'hint': 'synonyms for dimly',\n", " 'clues': [('murkily', 'with a dim light'),\n", @@ -21609,37 +21635,36 @@ " ('palely', 'in a manner lacking interest or vitality')]},\n", " {'answer': 'directly',\n", " 'hint': 'synonyms for directly',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('right away', 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", - " ('straight', 'without deviation'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('straight', 'in a forthright manner; candidly or frankly'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('flat', 'in a forthright manner; candidly or frankly'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", " ('immediately', 'without delay or hesitation; with no time intervening'),\n", - " ('direct', 'without deviation'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", - " 'without delay or hesitation; with no time intervening')]},\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('flat', 'in a forthright manner; candidly or frankly'),\n", + " ('direct', 'without deviation'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'discreditably',\n", " 'hint': 'synonyms for discreditably',\n", - " 'clues': [('dishonorably',\n", + " 'clues': [('dishonourably',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('ignominiously',\n", - " 'in a dishonorable manner or to a dishonorable degree')]},\n", + " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('ignominiously', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'disdainfully',\n", " 'hint': 'synonyms for disdainfully',\n", - " 'clues': [('contemptuously', 'without respect; in a disdainful manner'),\n", - " ('cavalierly', 'in a proud and domineering manner'),\n", + " 'clues': [('scornfully', 'without respect; in a disdainful manner'),\n", + " ('contemptuously', 'without respect; in a disdainful manner'),\n", " ('contumeliously', 'without respect; in a disdainful manner'),\n", - " ('scornfully', 'without respect; in a disdainful manner')]},\n", + " ('cavalierly', 'in a proud and domineering manner')]},\n", " {'answer': 'disgracefully',\n", " 'hint': 'synonyms for disgracefully',\n", - " 'clues': [('dishonorably',\n", + " 'clues': [('dishonourably',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", @@ -21647,368 +21672,368 @@ " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'dishonorably',\n", " 'hint': 'synonyms for dishonorably',\n", - " 'clues': [('ingloriously',\n", + " 'clues': [('dishonourably',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('dishonourably', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('ignominiously',\n", - " 'in a dishonorable manner or to a dishonorable degree')]},\n", + " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('ignominiously', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'dishonourably',\n", " 'hint': 'synonyms for dishonourably',\n", - " 'clues': [('dishonorably',\n", + " 'clues': [('disgracefully',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('ignominiously', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('ignominiously',\n", + " ('dishonorably',\n", " 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'disregardless',\n", " 'hint': 'synonyms for disregardless',\n", - " 'clues': [('no matter',\n", + " 'clues': [('irrespective',\n", " 'in spite of everything; without regard to drawbacks'),\n", - " ('regardless', 'in spite of everything; without regard to drawbacks'),\n", - " ('irrespective', 'in spite of everything; without regard to drawbacks'),\n", - " ('disregarding', 'in spite of everything; without regard to drawbacks')]},\n", + " ('disregarding', 'in spite of everything; without regard to drawbacks'),\n", + " ('no matter', 'in spite of everything; without regard to drawbacks'),\n", + " ('regardless', 'in spite of everything; without regard to drawbacks')]},\n", " {'answer': 'dottily',\n", " 'hint': 'synonyms for dottily',\n", - " 'clues': [('wackily', 'in a mildly insane manner'),\n", + " 'clues': [('balmily', 'in a mildly insane manner'),\n", " ('daftly', 'in a mildly insane manner'),\n", " ('nuttily', 'in a mildly insane manner'),\n", - " ('balmily', 'in a mildly insane manner')]},\n", + " ('wackily', 'in a mildly insane manner')]},\n", " {'answer': 'each_year',\n", " 'hint': 'synonyms for each year',\n", - " 'clues': [('per annum',\n", - " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('p.a.',\n", + " 'clues': [('annually', 'without missing a year'),\n", + " ('every year', 'without missing a year'),\n", + " ('per annum',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", + " ('yearly', 'without missing a year'),\n", " ('per year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('annually',\n", - " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('yearly', 'without missing a year'),\n", - " ('every year', 'without missing a year')]},\n", + " ('p.a.',\n", + " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n", " {'answer': 'emphatically',\n", " 'hint': 'synonyms for emphatically',\n", " 'clues': [('by all odds', 'without question and beyond doubt'),\n", " ('in spades', 'without question and beyond doubt'),\n", - " ('decidedly', 'without question and beyond doubt'),\n", " ('definitely', 'without question and beyond doubt'),\n", + " ('decidedly', 'without question and beyond doubt'),\n", " ('unquestionably', 'without question and beyond doubt')]},\n", " {'answer': 'endlessly',\n", " 'hint': 'synonyms for endlessly',\n", - " 'clues': [('unendingly', 'with unflagging resolve'),\n", + " 'clues': [('infinitely', 'continuing forever without end'),\n", + " ('ceaselessly', 'with unflagging resolve'),\n", " ('unceasingly', 'with unflagging resolve'),\n", - " ('incessantly', 'with unflagging resolve'),\n", - " ('interminably', 'all the time; seemingly without stopping'),\n", + " ('unendingly', 'with unflagging resolve'),\n", " ('continuously', 'with unflagging resolve'),\n", - " ('infinitely', 'continuing forever without end'),\n", - " ('ceaselessly', 'with unflagging resolve')]},\n", + " ('incessantly', 'with unflagging resolve'),\n", + " ('interminably', 'all the time; seemingly without stopping')]},\n", " {'answer': 'entirely',\n", " 'hint': 'synonyms for entirely',\n", - " 'clues': [('all',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('alone', 'without any others being included or involved'),\n", - " ('only', 'without any others being included or involved'),\n", - " ('whole',\n", + " 'clues': [('completely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('solely', 'without any others being included or involved'),\n", " ('altogether',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('exclusively', 'without any others being included or involved'),\n", - " ('completely',\n", + " ('whole',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('wholly',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('solely', 'without any others being included or involved'),\n", " ('totally',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('wholly',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", + " ('only', 'without any others being included or involved'),\n", + " ('all',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('alone', 'without any others being included or involved')]},\n", " {'answer': 'entreatingly',\n", " 'hint': 'synonyms for entreatingly',\n", - " 'clues': [('importunately', 'in a beseeching manner'),\n", - " ('pleadingly', 'in a beseeching manner'),\n", - " ('beseechingly', 'in a beseeching manner'),\n", - " ('imploringly', 'in a beseeching manner')]},\n", + " 'clues': [('pleadingly', 'in a beseeching manner'),\n", + " ('imploringly', 'in a beseeching manner'),\n", + " ('importunately', 'in a beseeching manner'),\n", + " ('beseechingly', 'in a beseeching manner')]},\n", " {'answer': 'erst',\n", " 'hint': 'synonyms for erst',\n", - " 'clues': [('formerly', 'at a previous time'),\n", + " 'clues': [('erstwhile', 'at a previous time'),\n", " ('at one time', 'at a previous time'),\n", - " ('erstwhile', 'at a previous time'),\n", + " ('formerly', 'at a previous time'),\n", " ('once', 'at a previous time')]},\n", " {'answer': 'even_so',\n", " 'hint': 'synonyms for even so',\n", - " 'clues': [('all the same',\n", + " 'clues': [('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", + " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('withal',\n", + " ('however',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nonetheless',\n", + " ('withal',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('notwithstanding',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'ever',\n", " 'hint': 'synonyms for ever',\n", - " 'clues': [(\"e'er\", 'at all times; all the time and on every occasion'),\n", - " ('always', 'at all times; all the time and on every occasion'),\n", - " ('ever so', '(intensifier for adjectives) very'),\n", - " ('of all time', 'at any time')]},\n", + " 'clues': [('ever so', '(intensifier for adjectives) very'),\n", + " ('of all time', 'at any time'),\n", + " (\"e'er\", 'at all times; all the time and on every occasion'),\n", + " ('always', 'at all times; all the time and on every occasion')]},\n", " {'answer': 'evermore',\n", " 'hint': 'synonyms for evermore',\n", - " 'clues': [('forevermore', 'at any future time; in the future'),\n", - " ('forever', 'for a limitless time; ; - P.P.Bliss'),\n", + " 'clues': [('forever', 'for a limitless time; ; - P.P.Bliss'),\n", + " ('forevermore', 'at any future time; in the future'),\n", " ('eternally', 'for a limitless time; ; - P.P.Bliss'),\n", " ('everlastingly', 'for a limitless time; ; - P.P.Bliss')]},\n", " {'answer': 'every_which_way',\n", " 'hint': 'synonyms for every which way',\n", - " 'clues': [('helter-skelter', 'haphazardly'),\n", - " ('at random', 'in a random manner'),\n", - " ('indiscriminately', 'in a random manner'),\n", - " ('arbitrarily', 'in a random manner'),\n", + " 'clues': [('at random', 'in a random manner'),\n", " ('willy-nilly', 'in a random manner'),\n", " ('randomly', 'in a random manner'),\n", + " ('helter-skelter', 'haphazardly'),\n", + " ('arbitrarily', 'in a random manner'),\n", + " ('indiscriminately', 'in a random manner'),\n", " ('haphazardly', 'in a random manner')]},\n", " {'answer': 'evidently',\n", " 'hint': 'synonyms for evidently',\n", - " 'clues': [('manifestly',\n", - " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('plainly',\n", + " 'clues': [('patently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('apparently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('obviously',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('patently',\n", + " ('manifestly',\n", + " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", + " ('plain',\n", " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'exactly',\n", " 'hint': 'synonyms for exactly',\n", " 'clues': [('precisely', 'indicating exactness or preciseness'),\n", - " ('on the nose', 'just as it should be'),\n", " ('just', 'indicating exactness or preciseness'),\n", - " ('on the dot', 'just as it should be'),\n", " ('incisively', 'in a precise manner'),\n", - " ('on the button', 'just as it should be')]},\n", + " ('on the button', 'just as it should be'),\n", + " ('on the dot', 'just as it should be'),\n", + " ('on the nose', 'just as it should be')]},\n", " {'answer': 'exclusively',\n", " 'hint': 'synonyms for exclusively',\n", - " 'clues': [('solely', 'without any others being included or involved'),\n", - " ('only', 'without any others being included or involved'),\n", + " 'clues': [('only', 'without any others being included or involved'),\n", + " ('entirely', 'without any others being included or involved'),\n", " ('alone', 'without any others being included or involved'),\n", - " ('entirely', 'without any others being included or involved')]},\n", + " ('solely', 'without any others being included or involved')]},\n", " {'answer': 'extravagantly',\n", " 'hint': 'synonyms for extravagantly',\n", - " 'clues': [('richly', 'in a rich and lavish manner'),\n", - " ('abundantly', 'in an abundant manner'),\n", + " 'clues': [('lavishly', 'in a rich and lavish manner'),\n", + " ('richly', 'in a rich and lavish manner'),\n", " ('copiously', 'in an abundant manner'),\n", - " ('lavishly', 'in a wasteful manner'),\n", + " ('abundantly', 'in an abundant manner'),\n", " ('profusely', 'in an abundant manner')]},\n", " {'answer': 'extremely',\n", " 'hint': 'synonyms for extremely',\n", - " 'clues': [('exceedingly', 'to an extreme degree'),\n", - " ('passing', 'to an extreme degree'),\n", - " ('highly', 'to a high degree or extent; favorably or with much respect'),\n", - " ('super', 'to an extreme degree')]},\n", + " 'clues': [('highly',\n", + " 'to a high degree or extent; favorably or with much respect'),\n", + " ('exceedingly', 'to an extreme degree'),\n", + " ('super', 'to an extreme degree'),\n", + " ('passing', 'to an extreme degree')]},\n", " {'answer': 'fairly',\n", " 'hint': 'synonyms for fairly',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", + " ('jolly', 'to a moderately sufficient extent or degree'),\n", " ('fair', 'without favoring one party, in a fair evenhanded manner'),\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", " ('moderately', 'to a moderately sufficient extent or degree'),\n", - " ('jolly', 'to a moderately sufficient extent or degree'),\n", " ('clean',\n", " 'in conformity with the rules or laws and without fraud or cheating'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", + " ('evenhandedly',\n", + " 'without favoring one party, in a fair evenhanded manner'),\n", " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", " ('reasonably', 'to a moderately sufficient extent or degree'),\n", - " ('evenhandedly',\n", - " 'without favoring one party, in a fair evenhanded manner')]},\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'faithlessly',\n", " 'hint': 'synonyms for faithlessly',\n", - " 'clues': [('false', 'in a disloyal and faithless manner'),\n", - " ('treasonably', 'in a disloyal and faithless manner'),\n", - " ('traitorously', 'in a disloyal and faithless manner'),\n", - " ('treacherously', 'in a disloyal and faithless manner')]},\n", + " 'clues': [('traitorously', 'in a disloyal and faithless manner'),\n", + " ('treacherously', 'in a disloyal and faithless manner'),\n", + " ('false', 'in a disloyal and faithless manner'),\n", + " ('treasonably', 'in a disloyal and faithless manner')]},\n", " {'answer': 'finally',\n", " 'hint': 'synonyms for finally',\n", - " 'clues': [('lastly', 'the item at the end'),\n", + " 'clues': [('in conclusion', 'the item at the end'),\n", + " ('last', 'the item at the end'),\n", + " ('in the end', 'as the end result of a succession or process'),\n", + " ('ultimately', 'as the end result of a succession or process'),\n", " ('eventually',\n", " 'after an unspecified period of time or an especially long delay'),\n", - " ('at last', 'as the end result of a succession or process'),\n", - " ('ultimately', 'as the end result of a succession or process'),\n", " ('at long last', 'as the end result of a succession or process'),\n", - " ('in conclusion', 'the item at the end'),\n", - " ('in the end', 'as the end result of a succession or process')]},\n", + " ('at last', 'as the end result of a succession or process')]},\n", " {'answer': 'firmly',\n", " 'hint': 'synonyms for firmly',\n", - " 'clues': [('firm', 'with resolute determination'),\n", - " ('hard', 'with firmness'),\n", + " 'clues': [('hard', 'with firmness'),\n", + " ('firm', 'with resolute determination'),\n", " ('securely', 'in a secure manner; in a manner free from danger'),\n", " ('steadfastly', 'with resolute determination'),\n", " ('unwaveringly', 'with resolute determination')]},\n", " {'answer': 'firstly',\n", " 'hint': 'synonyms for firstly',\n", - " 'clues': [('first of all', 'before anything else'),\n", + " 'clues': [('first off', 'before anything else'),\n", " ('first', 'before anything else'),\n", - " ('foremost', 'before anything else'),\n", - " ('first off', 'before anything else')]},\n", + " ('first of all', 'before anything else'),\n", + " ('foremost', 'before anything else')]},\n", " {'answer': 'fittingly',\n", " 'hint': 'synonyms for fittingly',\n", " 'clues': [('befittingly', 'in an appropriate manner'),\n", - " ('appropriately', 'in an appropriate manner'),\n", " ('suitably', 'in an appropriate manner'),\n", - " ('fitly', 'in an appropriate manner')]},\n", + " ('fitly', 'in an appropriate manner'),\n", + " ('appropriately', 'in an appropriate manner')]},\n", " {'answer': 'flat_out',\n", " 'hint': 'synonyms for flat out',\n", - " 'clues': [('like blue murder', 'at top speed'),\n", - " ('roundly', 'in a blunt direct manner'),\n", + " 'clues': [('roundly', 'in a blunt direct manner'),\n", " ('brusquely', 'in a blunt direct manner'),\n", " ('bluffly', 'in a blunt direct manner'),\n", - " ('bluntly', 'in a blunt direct manner')]},\n", + " ('bluntly', 'in a blunt direct manner'),\n", + " ('like blue murder', 'at top speed')]},\n", " {'answer': 'for_certain',\n", " 'hint': 'synonyms for for certain',\n", - " 'clues': [('sure as shooting',\n", + " 'clues': [('sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure',\n", + " ('sure enough',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('certainly',\n", + " ('sure as shooting',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure enough',\n", + " ('certainly',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'for_each_one',\n", " 'hint': 'synonyms for for each one',\n", - " 'clues': [('to each one',\n", + " 'clues': [('apiece',\n", + " 'to or from every one of two or more (considered individually)'),\n", + " ('to each one',\n", " 'to or from every one of two or more (considered individually)'),\n", " ('each', 'to or from every one of two or more (considered individually)'),\n", " ('from each one',\n", - " 'to or from every one of two or more (considered individually)'),\n", - " ('apiece',\n", " 'to or from every one of two or more (considered individually)')]},\n", " {'answer': 'forever',\n", " 'hint': 'synonyms for forever',\n", - " 'clues': [('forever and a day',\n", - " 'for a very long or seemingly endless time'),\n", + " 'clues': [('perpetually', 'without interruption'),\n", + " ('evermore', 'for a limitless time; ; - P.P.Bliss'),\n", + " ('forever and a day', 'for a very long or seemingly endless time'),\n", " ('incessantly', 'without interruption'),\n", - " ('everlastingly', 'for a limitless time; ; - P.P.Bliss'),\n", - " ('always', 'without interruption'),\n", " ('eternally', 'for a limitless time; ; - P.P.Bliss'),\n", - " ('perpetually', 'without interruption'),\n", + " ('everlastingly', 'for a limitless time; ; - P.P.Bliss'),\n", " ('constantly', 'without interruption'),\n", - " ('evermore', 'for a limitless time; ; - P.P.Bliss')]},\n", + " ('always', 'without interruption')]},\n", " {'answer': 'formerly',\n", " 'hint': 'synonyms for formerly',\n", - " 'clues': [('at one time', 'at a previous time'),\n", - " ('erstwhile', 'at a previous time'),\n", - " ('once', 'at a previous time'),\n", - " ('erst', 'at a previous time')]},\n", + " 'clues': [('erstwhile', 'at a previous time'),\n", + " ('at one time', 'at a previous time'),\n", + " ('erst', 'at a previous time'),\n", + " ('once', 'at a previous time')]},\n", " {'answer': 'forth',\n", " 'hint': 'synonyms for forth',\n", - " 'clues': [('off',\n", - " \"from a particular thing or place or position (`forth' is obsolete)\"),\n", - " ('onward', 'forward in time or order or degree'),\n", + " 'clues': [('onward', 'forward in time or order or degree'),\n", " ('away',\n", " \"from a particular thing or place or position (`forth' is obsolete)\"),\n", + " ('off',\n", + " \"from a particular thing or place or position (`forth' is obsolete)\"),\n", " ('forward', 'forward in time or order or degree')]},\n", " {'answer': 'forthwith',\n", " 'hint': 'synonyms for forthwith',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('right away', 'without delay or hesitation; with no time intervening'),\n", " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('immediately',\n", " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'forwards',\n", " 'hint': 'synonyms for forwards',\n", - " 'clues': [('forward', 'in a forward direction'),\n", - " ('onward', 'in a forward direction'),\n", - " ('forrader', 'in a forward direction'),\n", + " 'clues': [('onwards', 'in a forward direction'),\n", " ('ahead', 'in a forward direction'),\n", - " ('frontwards',\n", - " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\")]},\n", + " ('forrard',\n", + " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\"),\n", + " ('frontward',\n", + " \"at or to or toward the front; ; ; ; (`forrad' and `forrard' are dialectal variations)\"),\n", + " ('forrader', 'in a forward direction')]},\n", " {'answer': 'foxily',\n", " 'hint': 'synonyms for foxily',\n", - " 'clues': [('craftily', 'in an artful manner'),\n", - " ('knavishly', 'in an artful manner'),\n", + " 'clues': [('artfully', 'in an artful manner'),\n", + " ('trickily', 'in an artful manner'),\n", " ('slyly', 'in an artful manner'),\n", " ('cunningly', 'in an artful manner'),\n", - " ('artfully', 'in an artful manner'),\n", - " ('trickily', 'in an artful manner')]},\n", + " ('craftily', 'in an artful manner'),\n", + " ('knavishly', 'in an artful manner')]},\n", " {'answer': 'freshly',\n", " 'hint': 'synonyms for freshly',\n", - " 'clues': [('newly', 'very recently'),\n", - " ('impertinently', 'in an impudent or impertinent manner'),\n", - " ('pertly', 'in an impudent or impertinent manner'),\n", + " 'clues': [('fresh', 'very recently'),\n", + " ('newly', 'very recently'),\n", " ('saucily', 'in an impudent or impertinent manner'),\n", - " ('impudently', 'in an impudent or impertinent manner'),\n", - " ('fresh', 'very recently')]},\n", + " ('pertly', 'in an impudent or impertinent manner'),\n", + " ('impertinently', 'in an impudent or impertinent manner'),\n", + " ('impudently', 'in an impudent or impertinent manner')]},\n", " {'answer': 'from_time_to_time',\n", " 'hint': 'synonyms for from time to time',\n", - " 'clues': [('occasionally', 'now and then or here and there'),\n", + " 'clues': [('once in a while', 'now and then or here and there'),\n", + " ('occasionally', 'now and then or here and there'),\n", " ('at times', 'now and then or here and there'),\n", - " ('on occasion', 'now and then or here and there'),\n", - " ('once in a while', 'now and then or here and there'),\n", " ('now and again', 'now and then or here and there'),\n", + " ('on occasion', 'now and then or here and there'),\n", " ('now and then', 'now and then or here and there')]},\n", " {'answer': 'fully',\n", " 'hint': 'synonyms for fully',\n", - " 'clues': [('to the full',\n", + " 'clues': [('in full', 'referring to a quantity'),\n", + " ('to the full',\n", " \"to the greatest degree or extent; completely or entirely; (`full' in this sense is used as a combining form)\"),\n", " ('amply', 'sufficiently; more than adequately'),\n", - " ('in full', 'referring to a quantity'),\n", " ('full',\n", " \"to the greatest degree or extent; completely or entirely; (`full' in this sense is used as a combining form)\")]},\n", " {'answer': 'gayly',\n", " 'hint': 'synonyms for gayly',\n", - " 'clues': [('merrily', 'in a joyous manner'),\n", - " ('happily', 'in a joyous manner'),\n", + " 'clues': [('jubilantly', 'in a joyous manner'),\n", " ('blithely', 'in a joyous manner'),\n", + " ('merrily', 'in a joyous manner'),\n", " ('mirthfully', 'in a joyous manner'),\n", - " ('jubilantly', 'in a joyous manner')]},\n", + " ('happily', 'in a joyous manner')]},\n", " {'answer': 'generally',\n", " 'hint': 'synonyms for generally',\n", - " 'clues': [('broadly speaking',\n", - " 'without regard to specific details or exceptions'),\n", - " ('mostly', 'usually; as a rule'),\n", + " 'clues': [('in general', 'without distinction of one from others'),\n", + " ('broadly', 'without regard to specific details or exceptions'),\n", " ('loosely', 'without regard to specific details or exceptions'),\n", + " ('more often than not', 'usually; as a rule'),\n", " ('in the main', 'without distinction of one from others'),\n", + " ('mostly', 'usually; as a rule'),\n", " ('by and large', 'usually; as a rule'),\n", - " ('broadly', 'without regard to specific details or exceptions'),\n", - " ('in general', 'without distinction of one from others'),\n", - " ('more often than not', 'usually; as a rule')]},\n", + " ('broadly speaking',\n", + " 'without regard to specific details or exceptions')]},\n", " {'answer': 'gravely',\n", " 'hint': 'synonyms for gravely',\n", - " 'clues': [('severely', 'to a severe or serious degree'),\n", + " 'clues': [('seriously', 'to a severe or serious degree'),\n", + " ('severely', 'to a severe or serious degree'),\n", " ('soberly', 'in a grave and sober manner'),\n", - " ('badly', 'to a severe or serious degree'),\n", " ('staidly', 'in a grave and sober manner'),\n", - " ('seriously', 'to a severe or serious degree')]},\n", + " ('badly', 'to a severe or serious degree')]},\n", " {'answer': 'haphazardly',\n", " 'hint': 'synonyms for haphazardly',\n", " 'clues': [('haphazard', 'without care; in a slapdash manner'),\n", " ('at random', 'in a random manner'),\n", + " ('willy-nilly', 'in a random manner'),\n", + " ('randomly', 'in a random manner'),\n", " ('every which way', 'in a random manner'),\n", - " ('indiscriminately', 'in a random manner'),\n", " ('arbitrarily', 'in a random manner'),\n", - " ('willy-nilly', 'in a random manner'),\n", - " ('randomly', 'in a random manner')]},\n", + " ('indiscriminately', 'in a random manner')]},\n", " {'answer': 'happily',\n", " 'hint': 'synonyms for happily',\n", - " 'clues': [('merrily', 'in a joyous manner'),\n", + " 'clues': [('gayly', 'in a joyous manner'),\n", " ('blithely', 'in a joyous manner'),\n", - " ('mirthfully', 'in a joyous manner'),\n", " ('jubilantly', 'in a joyous manner'),\n", - " ('gayly', 'in a joyous manner')]},\n", + " ('merrily', 'in a joyous manner'),\n", + " ('mirthfully', 'in a joyous manner')]},\n", " {'answer': 'heavily',\n", " 'hint': 'synonyms for heavily',\n", " 'clues': [('hard', 'indulging excessively'),\n", @@ -22017,132 +22042,130 @@ " ('to a great extent', 'to a considerable degree')]},\n", " {'answer': 'hence',\n", " 'hint': 'synonyms for hence',\n", - " 'clues': [('thus',\n", + " 'clues': [('thence',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", " ('therefore',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('so',\n", + " ('thus',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('thence',\n", + " ('so',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result')]},\n", " {'answer': 'heretofore',\n", " 'hint': 'synonyms for heretofore',\n", - " 'clues': [('thus far',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('up to now',\n", + " 'clues': [('yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('til now',\n", + " ('hitherto',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('so far',\n", + " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('hitherto',\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('as yet',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('so far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", " {'answer': 'hitherto',\n", " 'hint': 'synonyms for hitherto',\n", - " 'clues': [('thus far',\n", + " 'clues': [('yet',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('til now',\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", + " ('as yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('so far',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('as yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", " {'answer': 'however',\n", " 'hint': 'synonyms for however',\n", " 'clues': [('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('all the same',\n", + " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", + " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('withal',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nonetheless',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('notwithstanding',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'ignominiously',\n", " 'hint': 'synonyms for ignominiously',\n", - " 'clues': [('dishonorably',\n", + " 'clues': [('dishonourably',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'immediately',\n", " 'hint': 'synonyms for immediately',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('right away', 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", - " 'without delay or hesitation; with no time intervening')]},\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'impertinently',\n", " 'hint': 'synonyms for impertinently',\n", - " 'clues': [('impudently', 'in an impudent or impertinent manner'),\n", + " 'clues': [('freshly', 'in an impudent or impertinent manner'),\n", " ('pertly', 'in an impudent or impertinent manner'),\n", - " ('freshly', 'in an impudent or impertinent manner'),\n", + " ('impudently', 'in an impudent or impertinent manner'),\n", " ('saucily', 'in an impudent or impertinent manner')]},\n", " {'answer': 'imploringly',\n", " 'hint': 'synonyms for imploringly',\n", - " 'clues': [('importunately', 'in a beseeching manner'),\n", - " ('pleadingly', 'in a beseeching manner'),\n", - " ('beseechingly', 'in a beseeching manner'),\n", - " ('entreatingly', 'in a beseeching manner')]},\n", + " 'clues': [('pleadingly', 'in a beseeching manner'),\n", + " ('importunately', 'in a beseeching manner'),\n", + " ('entreatingly', 'in a beseeching manner'),\n", + " ('beseechingly', 'in a beseeching manner')]},\n", " {'answer': 'importunately',\n", " 'hint': 'synonyms for importunately',\n", " 'clues': [('pleadingly', 'in a beseeching manner'),\n", - " ('beseechingly', 'in a beseeching manner'),\n", " ('imploringly', 'in a beseeching manner'),\n", - " ('entreatingly', 'in a beseeching manner')]},\n", + " ('entreatingly', 'in a beseeching manner'),\n", + " ('beseechingly', 'in a beseeching manner')]},\n", " {'answer': 'impudently',\n", " 'hint': 'synonyms for impudently',\n", - " 'clues': [('impertinently', 'in an impudent or impertinent manner'),\n", - " ('saucily', 'in an impudent or impertinent manner'),\n", + " 'clues': [('freshly', 'in an impudent or impertinent manner'),\n", " ('pertly', 'in an impudent or impertinent manner'),\n", - " ('freshly', 'in an impudent or impertinent manner')]},\n", + " ('impertinently', 'in an impudent or impertinent manner'),\n", + " ('saucily', 'in an impudent or impertinent manner')]},\n", " {'answer': 'in_all_likelihood',\n", " 'hint': 'synonyms for in all likelihood',\n", - " 'clues': [('in all probability',\n", - " 'with considerable certainty; without much doubt'),\n", + " 'clues': [('belike', 'with considerable certainty; without much doubt'),\n", + " ('in all probability', 'with considerable certainty; without much doubt'),\n", " ('probably', 'with considerable certainty; without much doubt'),\n", - " ('belike', 'with considerable certainty; without much doubt'),\n", " ('likely', 'with considerable certainty; without much doubt')]},\n", " {'answer': 'in_all_probability',\n", " 'hint': 'synonyms for in all probability',\n", - " 'clues': [('in all likelihood',\n", - " 'with considerable certainty; without much doubt'),\n", + " 'clues': [('belike', 'with considerable certainty; without much doubt'),\n", " ('probably', 'with considerable certainty; without much doubt'),\n", - " ('belike', 'with considerable certainty; without much doubt'),\n", + " ('in all likelihood', 'with considerable certainty; without much doubt'),\n", " ('likely', 'with considerable certainty; without much doubt')]},\n", " {'answer': 'in_any_case',\n", " 'hint': 'synonyms for in any case',\n", - " 'clues': [('anyways',\n", - " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('at any rate',\n", + " 'clues': [('at any rate',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('in any event',\n", + " ('anyway',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('besides', 'making an additional point; anyway'),\n", " ('anyhow',\n", + " 'used to indicate that a statement explains or supports a previous statement'),\n", + " ('in any event',\n", " 'used to indicate that a statement explains or supports a previous statement')]},\n", " {'answer': 'in_any_event',\n", " 'hint': 'synonyms for in any event',\n", @@ -22150,39 +22173,39 @@ " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('at any rate',\n", " 'used to indicate that a statement explains or supports a previous statement'),\n", - " ('in any case',\n", - " 'used to indicate that a statement explains or supports a previous statement'),\n", " ('anyhow',\n", + " 'used to indicate that a statement explains or supports a previous statement'),\n", + " ('in any case',\n", " 'used to indicate that a statement explains or supports a previous statement')]},\n", " {'answer': 'in_brief',\n", " 'hint': 'synonyms for in brief',\n", - " 'clues': [('in short', 'in a concise manner; in a few words'),\n", - " ('briefly', 'in a concise manner; in a few words'),\n", + " 'clues': [('shortly', 'in a concise manner; in a few words'),\n", " ('concisely', 'in a concise manner; in a few words'),\n", - " ('shortly', 'in a concise manner; in a few words')]},\n", + " ('in short', 'in a concise manner; in a few words'),\n", + " ('briefly', 'in a concise manner; in a few words')]},\n", " {'answer': 'in_due_course',\n", " 'hint': 'synonyms for in due course',\n", " 'clues': [('in due season', 'at the appropriate time'),\n", - " ('in good time', 'at the appropriate time'),\n", + " ('in due time', 'at the appropriate time'),\n", " ('when the time comes', 'at the appropriate time'),\n", - " ('in due time', 'at the appropriate time')]},\n", + " ('in good time', 'at the appropriate time')]},\n", " {'answer': 'in_due_season',\n", " 'hint': 'synonyms for in due season',\n", - " 'clues': [('in good time', 'at the appropriate time'),\n", - " ('in due course', 'at the appropriate time'),\n", + " 'clues': [('in due course', 'at the appropriate time'),\n", " ('when the time comes', 'at the appropriate time'),\n", - " ('in due time', 'at the appropriate time')]},\n", + " ('in due time', 'at the appropriate time'),\n", + " ('in good time', 'at the appropriate time')]},\n", " {'answer': 'in_due_time',\n", " 'hint': 'synonyms for in due time',\n", " 'clues': [('in due season', 'at the appropriate time'),\n", - " ('in good time', 'at the appropriate time'),\n", " ('in due course', 'at the appropriate time'),\n", - " ('when the time comes', 'at the appropriate time')]},\n", + " ('when the time comes', 'at the appropriate time'),\n", + " ('in good time', 'at the appropriate time')]},\n", " {'answer': 'in_good_order',\n", " 'hint': 'synonyms for in good order',\n", " 'clues': [('decent', 'in the right manner'),\n", - " ('right', 'in the right manner'),\n", " ('the right way', 'in the right manner'),\n", + " ('right', 'in the right manner'),\n", " ('properly', 'in the right manner')]},\n", " {'answer': 'in_good_time',\n", " 'hint': 'synonyms for in good time',\n", @@ -22192,1175 +22215,1170 @@ " ('in due time', 'at the appropriate time')]},\n", " {'answer': 'in_short',\n", " 'hint': 'synonyms for in short',\n", - " 'clues': [('briefly', 'in a concise manner; in a few words'),\n", + " 'clues': [('shortly', 'in a concise manner; in a few words'),\n", " ('concisely', 'in a concise manner; in a few words'),\n", - " ('in brief', 'in a concise manner; in a few words'),\n", - " ('shortly', 'in a concise manner; in a few words')]},\n", + " ('briefly', 'in a concise manner; in a few words'),\n", + " ('in brief', 'in a concise manner; in a few words')]},\n", " {'answer': 'in_so_far',\n", " 'hint': 'synonyms for in so far',\n", - " 'clues': [('to that extent', 'to the degree or extent that'),\n", - " ('so far', 'to the degree or extent that'),\n", + " 'clues': [('so far', 'to the degree or extent that'),\n", " ('to that degree', 'to the degree or extent that'),\n", - " ('insofar', 'to the degree or extent that')]},\n", + " ('insofar', 'to the degree or extent that'),\n", + " ('to that extent', 'to the degree or extent that')]},\n", " {'answer': 'in_spades',\n", " 'hint': 'synonyms for in spades',\n", - " 'clues': [('emphatically', 'without question and beyond doubt'),\n", - " ('by all odds', 'without question and beyond doubt'),\n", - " ('decidedly', 'without question and beyond doubt'),\n", + " 'clues': [('by all odds', 'without question and beyond doubt'),\n", + " ('emphatically', 'without question and beyond doubt'),\n", " ('definitely', 'without question and beyond doubt'),\n", + " ('decidedly', 'without question and beyond doubt'),\n", " ('unquestionably', 'without question and beyond doubt')]},\n", " {'answer': 'in_spite_of_appearance',\n", " 'hint': 'synonyms for in spite of appearance',\n", " 'clues': [('at heart', 'in reality'),\n", - " ('deep down', 'in reality'),\n", " ('inside', 'in reality'),\n", - " ('at bottom', 'in reality')]},\n", + " ('at bottom', 'in reality'),\n", + " ('deep down', 'in reality')]},\n", " {'answer': 'in_the_beginning',\n", " 'hint': 'synonyms for in the beginning',\n", - " 'clues': [('earlier', 'before now'),\n", - " ('originally', 'before now'),\n", - " ('in the first place', 'before now'),\n", + " 'clues': [('primitively', 'with reference to the origin or beginning'),\n", + " ('originally', 'with reference to the origin or beginning'),\n", " ('to begin with', 'before now'),\n", - " ('primitively', 'with reference to the origin or beginning')]},\n", + " ('in the first place', 'before now'),\n", + " ('earlier', 'before now')]},\n", " {'answer': 'in_the_end',\n", " 'hint': 'synonyms for in the end',\n", " 'clues': [('finally', 'as the end result of a succession or process'),\n", - " ('at last', 'as the end result of a succession or process'),\n", " ('ultimately', 'as the end result of a succession or process'),\n", " ('at long last', 'as the end result of a succession or process'),\n", - " ('in the long run', 'after a very lengthy period of time')]},\n", + " ('in the long run', 'after a very lengthy period of time'),\n", + " ('at last', 'as the end result of a succession or process')]},\n", " {'answer': 'in_the_first_place',\n", " 'hint': 'synonyms for in the first place',\n", - " 'clues': [('earlier', 'before now'),\n", - " ('primarily', 'of primary import'),\n", + " 'clues': [('primarily', 'of primary import'),\n", " ('in the beginning', 'before now'),\n", " ('to begin with', 'before now'),\n", + " ('earlier', 'before now'),\n", " ('originally', 'before now')]},\n", " {'answer': 'in_the_main',\n", " 'hint': 'synonyms for in the main',\n", - " 'clues': [('generally', 'without distinction of one from others'),\n", + " 'clues': [('in general', 'without distinction of one from others'),\n", + " ('mainly', 'for the most part'),\n", " ('principally', 'for the most part'),\n", - " ('chiefly', 'for the most part'),\n", " ('primarily', 'for the most part'),\n", - " ('in general', 'without distinction of one from others'),\n", - " ('mainly', 'for the most part')]},\n", + " ('generally', 'without distinction of one from others'),\n", + " ('chiefly', 'for the most part')]},\n", " {'answer': 'incessantly',\n", " 'hint': 'synonyms for incessantly',\n", - " 'clues': [('unceasingly', 'with unflagging resolve'),\n", + " 'clues': [('ceaselessly', 'with unflagging resolve'),\n", + " ('unceasingly', 'with unflagging resolve'),\n", + " ('continuously', 'with unflagging resolve'),\n", + " ('perpetually', 'without interruption'),\n", + " ('endlessly', 'with unflagging resolve'),\n", " ('unendingly', 'with unflagging resolve'),\n", - " ('ceaselessly', 'with unflagging resolve'),\n", - " ('always', 'without interruption'),\n", " ('forever', 'without interruption'),\n", - " ('perpetually', 'without interruption'),\n", " ('constantly', 'without interruption'),\n", - " ('endlessly', 'with unflagging resolve'),\n", - " ('continuously', 'with unflagging resolve')]},\n", + " ('always', 'without interruption')]},\n", " {'answer': 'incidentally',\n", " 'hint': 'synonyms for incidentally',\n", - " 'clues': [('accidentally', 'of a minor or subordinate nature'),\n", - " ('by the bye', 'introducing a different topic; in point of fact'),\n", + " 'clues': [('apropos', 'introducing a different topic; in point of fact'),\n", " ('by the way', 'introducing a different topic; in point of fact'),\n", - " ('apropos', 'introducing a different topic; in point of fact')]},\n", + " ('accidentally', 'of a minor or subordinate nature'),\n", + " ('by the bye', 'introducing a different topic; in point of fact')]},\n", " {'answer': 'incredibly',\n", " 'hint': 'synonyms for incredibly',\n", " 'clues': [('fantastically', 'exceedingly; extremely'),\n", " ('improbably', 'not easy to believe'),\n", - " ('implausibly', 'not easy to believe'),\n", " ('unbelievably', 'not easy to believe'),\n", + " ('implausibly', 'not easy to believe'),\n", " ('fabulously', 'exceedingly; extremely')]},\n", " {'answer': 'indiscriminately',\n", " 'hint': 'synonyms for indiscriminately',\n", " 'clues': [('at random', 'in a random manner'),\n", - " ('every which way', 'in a random manner'),\n", - " ('promiscuously', 'in an indiscriminate manner'),\n", - " ('arbitrarily', 'in a random manner'),\n", " ('willy-nilly', 'in a random manner'),\n", " ('randomly', 'in a random manner'),\n", - " ('haphazardly', 'in a random manner')]},\n", + " ('every which way', 'in a random manner'),\n", + " ('arbitrarily', 'in a random manner'),\n", + " ('haphazardly', 'in a random manner'),\n", + " ('promiscuously', 'in an indiscriminate manner')]},\n", " {'answer': 'individually',\n", " 'hint': 'synonyms for individually',\n", - " 'clues': [('severally', 'apart from others'),\n", - " ('one by one', 'apart from others'),\n", + " 'clues': [('one by one', 'apart from others'),\n", + " ('severally', 'apart from others'),\n", + " ('separately', 'apart from others'),\n", " ('on an individual basis', 'apart from others'),\n", - " ('singly', 'apart from others'),\n", - " ('separately', 'apart from others')]},\n", + " ('singly', 'apart from others')]},\n", " {'answer': 'inevitably',\n", " 'hint': 'synonyms for inevitably',\n", - " 'clues': [('of necessity', 'in such a manner as could not be otherwise'),\n", + " 'clues': [('unavoidably', 'by necessity'),\n", + " ('needs', 'in such a manner as could not be otherwise'),\n", " ('necessarily', 'in such a manner as could not be otherwise'),\n", + " ('of necessity', 'in such a manner as could not be otherwise'),\n", " ('ineluctably', 'by necessity'),\n", - " ('needs', 'in such a manner as could not be otherwise'),\n", - " ('inescapably', 'by necessity'),\n", - " ('unavoidably', 'by necessity')]},\n", + " ('inescapably', 'by necessity')]},\n", " {'answer': 'ingloriously',\n", " 'hint': 'synonyms for ingloriously',\n", - " 'clues': [('dishonorably',\n", + " 'clues': [('dishonourably',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('shamefully', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('ignominiously',\n", - " 'in a dishonorable manner or to a dishonorable degree')]},\n", + " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('ignominiously', 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('shamefully', 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'insanely',\n", " 'hint': 'synonyms for insanely',\n", - " 'clues': [('madly', 'in an insane manner'),\n", - " ('deucedly', '(used as intensives) extremely'),\n", - " ('dementedly', 'in an insane manner'),\n", - " ('devilishly', '(used as intensives) extremely'),\n", + " 'clues': [('dementedly', 'in an insane manner'),\n", " ('crazily', 'in an insane manner'),\n", - " ('deadly', '(used as intensives) extremely')]},\n", + " ('deadly', '(used as intensives) extremely'),\n", + " ('devilishly', '(used as intensives) extremely'),\n", + " ('madly', '(used as intensives) extremely'),\n", + " ('deucedly', '(used as intensives) extremely')]},\n", " {'answer': 'insofar',\n", " 'hint': 'synonyms for insofar',\n", - " 'clues': [('to that extent', 'to the degree or extent that'),\n", + " 'clues': [('in so far', 'to the degree or extent that'),\n", " ('so far', 'to the degree or extent that'),\n", " ('to that degree', 'to the degree or extent that'),\n", - " ('in so far', 'to the degree or extent that')]},\n", + " ('to that extent', 'to the degree or extent that')]},\n", " {'answer': 'instantly',\n", " 'hint': 'synonyms for instantly',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('in a flash', 'without any delay'),\n", + " ('straight off', 'without delay or hesitation; with no time intervening'),\n", " ('right away', 'without delay or hesitation; with no time intervening'),\n", + " ('directly', 'without delay or hesitation; with no time intervening'),\n", + " ('at once', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('instantaneously', 'without any delay'),\n", - " ('directly', 'without delay or hesitation; with no time intervening'),\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('outright', 'without any delay'),\n", - " ('in a flash', 'without any delay'),\n", - " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", + " ('immediately',\n", " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'intentionally',\n", " 'hint': 'synonyms for intentionally',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", - " ('on purpose', 'with intention; in an intentional manner'),\n", + " 'clues': [('on purpose', 'with intention; in an intentional manner'),\n", " ('by choice', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", + " ('purposely', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", - " ('by design', 'with intention; in an intentional manner')]},\n", + " ('by design', 'with intention; in an intentional manner'),\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'jubilantly',\n", " 'hint': 'synonyms for jubilantly',\n", - " 'clues': [('merrily', 'in a joyous manner'),\n", - " ('happily', 'in a joyous manner'),\n", + " 'clues': [('gayly', 'in a joyous manner'),\n", " ('blithely', 'in a joyous manner'),\n", + " ('merrily', 'in a joyous manner'),\n", " ('mirthfully', 'in a joyous manner'),\n", - " ('gayly', 'in a joyous manner')]},\n", + " ('happily', 'in a joyous manner')]},\n", " {'answer': 'just_about',\n", " 'hint': 'synonyms for just about',\n", " 'clues': [('roughly',\n", " '(of quantities) imprecise but fairly close to correct'),\n", + " ('around', '(of quantities) imprecise but fairly close to correct'),\n", " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", - " ('around', '(of quantities) imprecise but fairly close to correct'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'knavishly',\n", " 'hint': 'synonyms for knavishly',\n", - " 'clues': [('foxily', 'in an artful manner'),\n", - " ('craftily', 'in an artful manner'),\n", + " 'clues': [('artfully', 'in an artful manner'),\n", + " ('trickily', 'in an artful manner'),\n", + " ('foxily', 'in an artful manner'),\n", " ('slyly', 'in an artful manner'),\n", " ('cunningly', 'in an artful manner'),\n", - " ('artfully', 'in an artful manner'),\n", - " ('trickily', 'in an artful manner')]},\n", + " ('craftily', 'in an artful manner')]},\n", " {'answer': 'lately',\n", " 'hint': 'synonyms for lately',\n", " 'clues': [('latterly', 'in the recent past'),\n", - " ('recently', 'in the recent past'),\n", + " ('late', 'in the recent past'),\n", " ('of late', 'in the recent past'),\n", - " ('late', 'in the recent past')]},\n", + " ('recently', 'in the recent past')]},\n", " {'answer': 'later_on',\n", " 'hint': 'synonyms for later on',\n", - " 'clues': [('later', 'happening at a time subsequent to a reference time'),\n", - " ('afterward', 'happening at a time subsequent to a reference time'),\n", + " 'clues': [('afterwards',\n", + " 'happening at a time subsequent to a reference time'),\n", + " ('later', 'happening at a time subsequent to a reference time'),\n", " ('subsequently', 'happening at a time subsequent to a reference time'),\n", " ('after', 'happening at a time subsequent to a reference time')]},\n", " {'answer': 'lawfully',\n", " 'hint': 'synonyms for lawfully',\n", - " 'clues': [('de jure', 'by law; conforming to the law'),\n", - " ('legitimately', 'in a manner acceptable to common custom'),\n", + " 'clues': [('legally', 'by law; conforming to the law'),\n", " ('licitly', 'in a manner acceptable to common custom'),\n", - " ('legally', 'by law; conforming to the law')]},\n", + " ('de jure', 'by law; conforming to the law'),\n", + " ('legitimately', 'in a manner acceptable to common custom')]},\n", " {'answer': 'lightly',\n", " 'hint': 'synonyms for lightly',\n", - " 'clues': [('light', 'with few burdens'),\n", - " ('gently', 'with little weight or force'),\n", - " ('thinly', 'in a small quantity or extent'),\n", - " ('softly', 'with little weight or force')]},\n", + " 'clues': [('thinly', 'in a small quantity or extent'),\n", + " ('softly', 'with little weight or force'),\n", + " ('light', 'with few burdens'),\n", + " ('gently', 'with little weight or force')]},\n", " {'answer': 'like_a_shot',\n", " 'hint': 'synonyms for like a shot',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('right away', 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('directly', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('immediately',\n", " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'like_crazy',\n", " 'hint': 'synonyms for like crazy',\n", - " 'clues': [('like mad', 'with great speed or effort or intensity'),\n", + " 'clues': [('like sin', 'with great speed or effort or intensity'),\n", " ('like thunder', 'with great speed or effort or intensity'),\n", + " ('like mad', 'with great speed or effort or intensity'),\n", " ('like the devil', 'with great speed or effort or intensity'),\n", - " ('like sin', 'with great speed or effort or intensity'),\n", " ('like hell', 'with great speed or effort or intensity')]},\n", " {'answer': 'like_hell',\n", " 'hint': 'synonyms for like hell',\n", - " 'clues': [('like mad', 'with great speed or effort or intensity'),\n", + " 'clues': [('like sin', 'with great speed or effort or intensity'),\n", " ('like thunder', 'with great speed or effort or intensity'),\n", - " ('like the devil', 'with great speed or effort or intensity'),\n", - " ('like sin', 'with great speed or effort or intensity'),\n", - " ('like crazy', 'with great speed or effort or intensity')]},\n", + " ('like mad', 'with great speed or effort or intensity'),\n", + " ('like crazy', 'with great speed or effort or intensity'),\n", + " ('like the devil', 'with great speed or effort or intensity')]},\n", " {'answer': 'like_mad',\n", " 'hint': 'synonyms for like mad',\n", - " 'clues': [('like thunder', 'with great speed or effort or intensity'),\n", + " 'clues': [('like sin', 'with great speed or effort or intensity'),\n", + " ('like thunder', 'with great speed or effort or intensity'),\n", + " ('like crazy', 'with great speed or effort or intensity'),\n", " ('like the devil', 'with great speed or effort or intensity'),\n", - " ('like sin', 'with great speed or effort or intensity'),\n", - " ('like hell', 'with great speed or effort or intensity'),\n", - " ('like crazy', 'with great speed or effort or intensity')]},\n", + " ('like hell', 'with great speed or effort or intensity')]},\n", " {'answer': 'like_sin',\n", " 'hint': 'synonyms for like sin',\n", - " 'clues': [('like mad', 'with great speed or effort or intensity'),\n", - " ('like thunder', 'with great speed or effort or intensity'),\n", + " 'clues': [('like thunder', 'with great speed or effort or intensity'),\n", + " ('like mad', 'with great speed or effort or intensity'),\n", + " ('like crazy', 'with great speed or effort or intensity'),\n", " ('like the devil', 'with great speed or effort or intensity'),\n", - " ('like hell', 'with great speed or effort or intensity'),\n", - " ('like crazy', 'with great speed or effort or intensity')]},\n", + " ('like hell', 'with great speed or effort or intensity')]},\n", " {'answer': 'like_the_devil',\n", " 'hint': 'synonyms for like the devil',\n", - " 'clues': [('like mad', 'with great speed or effort or intensity'),\n", + " 'clues': [('like sin', 'with great speed or effort or intensity'),\n", " ('like thunder', 'with great speed or effort or intensity'),\n", - " ('like sin', 'with great speed or effort or intensity'),\n", - " ('like hell', 'with great speed or effort or intensity'),\n", - " ('like crazy', 'with great speed or effort or intensity')]},\n", + " ('like mad', 'with great speed or effort or intensity'),\n", + " ('like crazy', 'with great speed or effort or intensity'),\n", + " ('like hell', 'with great speed or effort or intensity')]},\n", " {'answer': 'like_thunder',\n", " 'hint': 'synonyms for like thunder',\n", - " 'clues': [('like mad', 'with great speed or effort or intensity'),\n", + " 'clues': [('like sin', 'with great speed or effort or intensity'),\n", + " ('like mad', 'with great speed or effort or intensity'),\n", + " ('like crazy', 'with great speed or effort or intensity'),\n", " ('like the devil', 'with great speed or effort or intensity'),\n", - " ('like sin', 'with great speed or effort or intensity'),\n", - " ('like hell', 'with great speed or effort or intensity'),\n", - " ('like crazy', 'with great speed or effort or intensity')]},\n", + " ('like hell', 'with great speed or effort or intensity')]},\n", " {'answer': 'likewise',\n", " 'hint': 'synonyms for likewise',\n", - " 'clues': [('too', 'in addition'),\n", - " ('as well', 'in addition'),\n", - " ('also', 'in addition'),\n", - " ('similarly', 'in like or similar manner; ; - Samuel Johnson'),\n", + " 'clues': [('similarly', 'in like or similar manner; ; - Samuel Johnson'),\n", + " ('too', 'in addition'),\n", + " ('alike', 'equally'),\n", " ('besides', 'in addition'),\n", - " ('alike', 'equally')]},\n", + " ('also', 'in addition'),\n", + " ('as well', 'in addition')]},\n", " {'answer': 'little_by_little',\n", " 'hint': 'synonyms for little by little',\n", - " 'clues': [('in stages', 'a little bit at a time'),\n", + " 'clues': [('by small degrees', 'by a short distance'),\n", " ('by inches', 'by a short distance'),\n", - " ('by small degrees', 'by a short distance'),\n", - " ('piecemeal', 'a little bit at a time'),\n", - " ('bit by bit', 'a little bit at a time')]},\n", + " ('bit by bit', 'a little bit at a time'),\n", + " ('in stages', 'a little bit at a time'),\n", + " ('piecemeal', 'a little bit at a time')]},\n", " {'answer': 'longitudinally',\n", " 'hint': 'synonyms for longitudinally',\n", - " 'clues': [('lengthwise', 'in the direction of the length'),\n", - " ('longwise', 'in the direction of the length'),\n", - " ('lengthways', 'in the direction of the length'),\n", - " ('longways', 'in the direction of the length')]},\n", + " 'clues': [('lengthways', 'in the direction of the length'),\n", + " ('lengthwise', 'in the direction of the length'),\n", + " ('longways', 'in the direction of the length'),\n", + " ('longwise', 'in the direction of the length')]},\n", " {'answer': 'longways',\n", " 'hint': 'synonyms for longways',\n", - " 'clues': [('lengthwise', 'in the direction of the length'),\n", - " ('longwise', 'in the direction of the length'),\n", - " ('lengthways', 'in the direction of the length'),\n", - " ('longitudinally', 'in the direction of the length')]},\n", + " 'clues': [('lengthways', 'in the direction of the length'),\n", + " ('longitudinally', 'in the direction of the length'),\n", + " ('lengthwise', 'in the direction of the length'),\n", + " ('longwise', 'in the direction of the length')]},\n", " {'answer': 'longwise',\n", " 'hint': 'synonyms for longwise',\n", - " 'clues': [('lengthwise', 'in the direction of the length'),\n", - " ('lengthways', 'in the direction of the length'),\n", + " 'clues': [('lengthways', 'in the direction of the length'),\n", " ('longitudinally', 'in the direction of the length'),\n", + " ('lengthwise', 'in the direction of the length'),\n", " ('longways', 'in the direction of the length')]},\n", " {'answer': 'loosely',\n", " 'hint': 'synonyms for loosely',\n", - " 'clues': [('broadly', 'without regard to specific details or exceptions'),\n", - " ('broadly speaking', 'without regard to specific details or exceptions'),\n", + " 'clues': [('broadly speaking',\n", + " 'without regard to specific details or exceptions'),\n", + " ('broadly', 'without regard to specific details or exceptions'),\n", " ('slackly', 'in a relaxed manner; not rigid'),\n", " ('generally', 'without regard to specific details or exceptions')]},\n", " {'answer': 'lots',\n", " 'hint': 'synonyms for lots',\n", - " 'clues': [('much', 'to a very great degree or extent'),\n", - " ('a good deal', 'to a very great degree or extent'),\n", - " ('a lot', 'to a very great degree or extent'),\n", + " 'clues': [('a good deal', 'to a very great degree or extent'),\n", + " ('much', 'to a very great degree or extent'),\n", " ('very much', 'to a very great degree or extent'),\n", + " ('a lot', 'to a very great degree or extent'),\n", " ('a great deal', 'to a very great degree or extent')]},\n", " {'answer': 'loudly',\n", " 'hint': 'synonyms for loudly',\n", " 'clues': [('forte',\n", " 'used as a direction in music; to be played relatively loudly'),\n", - " ('loud', 'with relatively high volume'),\n", + " ('aloud', 'with relatively high volume'),\n", " ('clamorously', 'in manner that attracts attention'),\n", " ('obstreperously', 'in manner that attracts attention')]},\n", " {'answer': 'madly',\n", " 'hint': 'synonyms for madly',\n", - " 'clues': [('insanely', '(used as intensives) extremely'),\n", + " 'clues': [('dementedly', 'in an insane manner'),\n", + " ('insanely', '(used as intensives) extremely'),\n", " ('deucedly', '(used as intensives) extremely'),\n", - " ('devilishly', '(used as intensives) extremely'),\n", - " ('crazily', 'in an insane manner'),\n", " ('frantically', 'in an uncontrolled manner'),\n", + " ('crazily', 'in an insane manner'),\n", " ('deadly', '(used as intensives) extremely'),\n", - " ('dementedly', 'in an insane manner')]},\n", + " ('devilishly', '(used as intensives) extremely')]},\n", " {'answer': 'magnificently',\n", " 'hint': 'synonyms for magnificently',\n", - " 'clues': [('gorgeously', 'in an impressively beautiful manner'),\n", - " ('splendidly', 'in an impressively beautiful manner'),\n", + " 'clues': [('splendidly', 'extremely well'),\n", + " ('excellently', 'extremely well'),\n", " ('famously', 'extremely well'),\n", - " ('resplendently', 'in an impressively beautiful manner'),\n", - " ('excellently', 'extremely well')]},\n", + " ('gorgeously', 'in an impressively beautiful manner'),\n", + " ('resplendently', 'in an impressively beautiful manner')]},\n", " {'answer': 'mainly',\n", " 'hint': 'synonyms for mainly',\n", - " 'clues': [('primarily', 'for the most part'),\n", - " ('in the main', 'for the most part'),\n", + " 'clues': [('in the main', 'for the most part'),\n", " ('principally', 'for the most part'),\n", + " ('primarily', 'for the most part'),\n", " ('chiefly', 'for the most part')]},\n", " {'answer': 'manifestly',\n", " 'hint': 'synonyms for manifestly',\n", - " 'clues': [('evidently',\n", - " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('plainly',\n", + " 'clues': [('patently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('apparently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", + " ('evidently',\n", + " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('obviously',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('patently',\n", + " ('plain',\n", " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'marvellously',\n", " 'hint': 'synonyms for marvellously',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('terrifically', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", - " ('wondrous', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", " ('toppingly', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('wondrous', '(used as an intensifier) extremely well'),\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('wonderfully', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well')]},\n", " {'answer': 'marvelously',\n", " 'hint': 'synonyms for marvelously',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('terrifically', '(used as an intensifier) extremely well'),\n", + " 'clues': [('toppingly', '(used as an intensifier) extremely well'),\n", " ('wondrous', '(used as an intensifier) extremely well'),\n", - " ('marvellously', '(used as an intensifier) extremely well'),\n", - " ('toppingly', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('wonderfully', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well'),\n", + " ('marvellously', '(used as an intensifier) extremely well')]},\n", " {'answer': 'maybe',\n", " 'hint': 'synonyms for maybe',\n", " 'clues': [('peradventure', 'by chance'),\n", " ('possibly', 'by chance'),\n", " ('perhaps', 'by chance'),\n", - " ('mayhap', 'by chance'),\n", - " ('perchance', 'by chance')]},\n", + " ('perchance', 'by chance'),\n", + " ('mayhap', 'by chance')]},\n", " {'answer': 'mayhap',\n", " 'hint': 'synonyms for mayhap',\n", - " 'clues': [('maybe', 'by chance'),\n", - " ('peradventure', 'by chance'),\n", - " ('possibly', 'by chance'),\n", + " 'clues': [('possibly', 'by chance'),\n", " ('perhaps', 'by chance'),\n", - " ('perchance', 'by chance')]},\n", + " ('perchance', 'by chance'),\n", + " ('maybe', 'by chance'),\n", + " ('peradventure', 'by chance')]},\n", " {'answer': 'meanly',\n", " 'hint': 'synonyms for meanly',\n", - " 'clues': [('basely', 'in a despicable, ignoble manner'),\n", - " ('nastily', 'in a nasty ill-tempered manner'),\n", - " ('humbly', 'in a miserly manner'),\n", - " ('scurvily', 'in a despicable, ignoble manner')]},\n", + " 'clues': [('humbly', 'in a miserly manner'),\n", + " ('scurvily', 'in a despicable, ignoble manner'),\n", + " ('basely', 'in a despicable, ignoble manner'),\n", + " ('nastily', 'in a nasty ill-tempered manner')]},\n", " {'answer': 'merely',\n", " 'hint': 'synonyms for merely',\n", - " 'clues': [('simply', 'and nothing more'),\n", + " 'clues': [('just', 'and nothing more'),\n", " ('but', 'and nothing more'),\n", " ('only', 'and nothing more'),\n", - " ('just', 'and nothing more')]},\n", + " ('simply', 'and nothing more')]},\n", " {'answer': 'merrily',\n", " 'hint': 'synonyms for merrily',\n", - " 'clues': [('happily', 'in a joyous manner'),\n", + " 'clues': [('gayly', 'in a joyous manner'),\n", " ('blithely', 'in a joyous manner'),\n", - " ('mirthfully', 'in a joyous manner'),\n", " ('jubilantly', 'in a joyous manner'),\n", - " ('gayly', 'in a joyous manner')]},\n", + " ('mirthfully', 'in a joyous manner'),\n", + " ('happily', 'in a joyous manner')]},\n", " {'answer': 'mirthfully',\n", " 'hint': 'synonyms for mirthfully',\n", - " 'clues': [('merrily', 'in a joyous manner'),\n", - " ('happily', 'in a joyous manner'),\n", + " 'clues': [('gayly', 'in a joyous manner'),\n", " ('blithely', 'in a joyous manner'),\n", " ('jubilantly', 'in a joyous manner'),\n", - " ('gayly', 'in a joyous manner')]},\n", + " ('merrily', 'in a joyous manner'),\n", + " ('happily', 'in a joyous manner')]},\n", " {'answer': 'mockingly',\n", " 'hint': 'synonyms for mockingly',\n", - " 'clues': [('gibingly', 'in a disrespectful jeering manner'),\n", - " ('scoffingly', 'in a disrespectful and mocking manner'),\n", + " 'clues': [('jeeringly', 'in a disrespectful jeering manner'),\n", + " ('derisively', 'in a disrespectful and mocking manner'),\n", + " ('gibingly', 'in a disrespectful jeering manner'),\n", " ('derisorily', 'in a disrespectful and mocking manner'),\n", - " ('jeeringly', 'in a disrespectful jeering manner'),\n", - " ('derisively', 'in a disrespectful and mocking manner')]},\n", + " ('scoffingly', 'in a disrespectful and mocking manner')]},\n", " {'answer': 'moderately',\n", " 'hint': 'synonyms for moderately',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", + " ('jolly', 'to a moderately sufficient extent or degree'),\n", " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", " ('reasonably', 'to a moderately sufficient extent or degree'),\n", - " ('jolly', 'to a moderately sufficient extent or degree'),\n", - " ('fairly', 'to a moderately sufficient extent or degree')]},\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'monstrously',\n", " 'hint': 'synonyms for monstrously',\n", - " 'clues': [('grotesquely', 'in a grotesque manner'),\n", + " 'clues': [('horridly', 'in a hideous manner'),\n", " ('heinously', 'in a terribly evil manner'),\n", " ('hideously', 'in a hideous manner'),\n", - " ('horridly', 'in a hideous manner')]},\n", + " ('grotesquely', 'in a grotesque manner')]},\n", " {'answer': 'more_or_less',\n", " 'hint': 'synonyms for more or less',\n", " 'clues': [('roughly',\n", " '(of quantities) imprecise but fairly close to correct'),\n", - " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", - " ('somewhat', 'to a small degree or extent'),\n", " ('around', '(of quantities) imprecise but fairly close to correct'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", - " ('slightly', 'to a small degree or extent'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('somewhat', 'to a small degree or extent'),\n", + " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", + " ('slightly', 'to a small degree or extent'),\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'mostly',\n", " 'hint': 'synonyms for mostly',\n", - " 'clues': [('for the most part', 'in large part; mainly or chiefly'),\n", - " ('generally', 'usually; as a rule'),\n", + " 'clues': [('more often than not', 'usually; as a rule'),\n", " ('by and large', 'usually; as a rule'),\n", - " ('largely', 'in large part; mainly or chiefly'),\n", - " ('more often than not', 'usually; as a rule')]},\n", + " ('for the most part', 'in large part; mainly or chiefly'),\n", + " ('generally', 'usually; as a rule'),\n", + " ('largely', 'in large part; mainly or chiefly')]},\n", " {'answer': 'mulishly',\n", " 'hint': 'synonyms for mulishly',\n", - " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n", - " ('obstinately', 'in a stubborn unregenerate manner'),\n", + " 'clues': [('obstinately', 'in a stubborn unregenerate manner'),\n", + " ('cussedly', 'in a stubborn unregenerate manner'),\n", + " ('stubbornly', 'in a stubborn unregenerate manner'),\n", " ('obdurately', 'in a stubborn unregenerate manner'),\n", - " ('pig-headedly', 'in a stubborn unregenerate manner'),\n", - " ('cussedly', 'in a stubborn unregenerate manner')]},\n", + " ('pig-headedly', 'in a stubborn unregenerate manner')]},\n", " {'answer': 'namely',\n", " 'hint': 'synonyms for namely',\n", - " 'clues': [('to wit', 'as follows'),\n", + " 'clues': [('videlicet', 'as follows'),\n", + " ('to wit', 'as follows'),\n", " ('that is to say', 'as follows'),\n", - " ('viz.', 'as follows'),\n", - " ('videlicet', 'as follows')]},\n", + " ('viz.', 'as follows')]},\n", " {'answer': 'nearly',\n", " 'hint': 'synonyms for nearly',\n", " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('almost',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", + " ('closely', 'in a close manner'),\n", + " ('almost',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('virtually',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('intimately', 'in a close manner'),\n", " ('near',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('about',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('closely', 'in a close manner'),\n", - " ('virtually',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", + " ('most',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('intimately', 'in a close manner')]},\n", " {'answer': 'necessarily',\n", " 'hint': 'synonyms for necessarily',\n", - " 'clues': [('needfully', 'in an essential manner'),\n", + " 'clues': [('inevitably', 'in such a manner as could not be otherwise'),\n", + " ('needfully', 'in an essential manner'),\n", " ('of necessity', 'in such a manner as could not be otherwise'),\n", - " ('inevitably', 'in such a manner as could not be otherwise'),\n", " ('needs', 'in such a manner as could not be otherwise')]},\n", " {'answer': 'nevertheless',\n", " 'hint': 'synonyms for nevertheless',\n", " 'clues': [('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('all the same',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", - " ('withal',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", + " ('however',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('withal',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'nonetheless',\n", " 'hint': 'synonyms for nonetheless',\n", " 'clues': [('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('all the same',\n", + " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", + " ('however',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('withal',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('notwithstanding',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'normally',\n", " 'hint': 'synonyms for normally',\n", - " 'clues': [('unremarkably', 'under normal conditions'),\n", - " ('usually', 'under normal conditions'),\n", - " ('ordinarily', 'under normal conditions'),\n", - " ('commonly', 'under normal conditions')]},\n", + " 'clues': [('ordinarily', 'under normal conditions'),\n", + " ('commonly', 'under normal conditions'),\n", + " ('unremarkably', 'under normal conditions'),\n", + " ('usually', 'under normal conditions')]},\n", " {'answer': 'notwithstanding',\n", " 'hint': 'synonyms for notwithstanding',\n", " 'clues': [('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('all the same',\n", + " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", + " ('however',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('withal',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nonetheless',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'now',\n", " 'hint': 'synonyms for now',\n", - " 'clues': [('right away',\n", + " 'clues': [('straight off',\n", " 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", - " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('at present', 'at the present moment'),\n", + " ('right away', 'without delay or hesitation; with no time intervening'),\n", + " ('directly', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('today', 'in these times; - Nancy Mitford'),\n", - " ('nowadays', 'in these times; - Nancy Mitford'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", " ('immediately', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", - " 'without delay or hesitation; with no time intervening')]},\n", + " ('today', 'in these times; - Nancy Mitford'),\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", + " ('nowadays', 'in these times; - Nancy Mitford')]},\n", " {'answer': 'now_and_again',\n", " 'hint': 'synonyms for now and again',\n", " 'clues': [('occasionally', 'now and then or here and there'),\n", " ('at times', 'now and then or here and there'),\n", - " ('on occasion', 'now and then or here and there'),\n", - " ('now and then', 'now and then or here and there'),\n", " ('once in a while', 'now and then or here and there'),\n", - " ('from time to time', 'now and then or here and there')]},\n", + " ('on occasion', 'now and then or here and there'),\n", + " ('from time to time', 'now and then or here and there'),\n", + " ('now and then', 'now and then or here and there')]},\n", " {'answer': 'now_and_then',\n", " 'hint': 'synonyms for now and then',\n", - " 'clues': [('occasionally', 'now and then or here and there'),\n", + " 'clues': [('once in a while', 'now and then or here and there'),\n", + " ('occasionally', 'now and then or here and there'),\n", " ('at times', 'now and then or here and there'),\n", - " ('on occasion', 'now and then or here and there'),\n", - " ('once in a while', 'now and then or here and there'),\n", " ('now and again', 'now and then or here and there'),\n", + " ('on occasion', 'now and then or here and there'),\n", " ('from time to time', 'now and then or here and there')]},\n", " {'answer': 'nuttily',\n", " 'hint': 'synonyms for nuttily',\n", - " 'clues': [('dottily', 'in a mildly insane manner'),\n", + " 'clues': [('balmily', 'in a mildly insane manner'),\n", " ('daftly', 'in a mildly insane manner'),\n", - " ('wackily', 'in a mildly insane manner'),\n", - " ('balmily', 'in a mildly insane manner')]},\n", + " ('dottily', 'in a mildly insane manner'),\n", + " ('wackily', 'in a mildly insane manner')]},\n", " {'answer': 'obdurately',\n", " 'hint': 'synonyms for obdurately',\n", - " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n", - " ('obstinately', 'in a stubborn unregenerate manner'),\n", + " 'clues': [('obstinately', 'in a stubborn unregenerate manner'),\n", " ('cussedly', 'in a stubborn unregenerate manner'),\n", - " ('pig-headedly', 'in a stubborn unregenerate manner'),\n", - " ('mulishly', 'in a stubborn unregenerate manner')]},\n", + " ('mulishly', 'in a stubborn unregenerate manner'),\n", + " ('stubbornly', 'in a stubborn unregenerate manner'),\n", + " ('pig-headedly', 'in a stubborn unregenerate manner')]},\n", " {'answer': 'obliquely',\n", " 'hint': 'synonyms for obliquely',\n", - " 'clues': [('aslant', 'at an oblique angle'),\n", - " ('athwart', 'at an oblique angle'),\n", - " ('sidelong', 'to, toward or at one side'),\n", - " ('sideways', 'to, toward or at one side')]},\n", + " 'clues': [('athwart', 'at an oblique angle'),\n", + " ('sideways', 'to, toward or at one side'),\n", + " ('aslant', 'at an oblique angle'),\n", + " ('sidelong', 'to, toward or at one side')]},\n", " {'answer': 'obstinately',\n", " 'hint': 'synonyms for obstinately',\n", - " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n", - " ('cussedly', 'in a stubborn unregenerate manner'),\n", - " ('pig-headedly', 'in a stubborn unregenerate manner'),\n", + " 'clues': [('cussedly', 'in a stubborn unregenerate manner'),\n", " ('mulishly', 'in a stubborn unregenerate manner'),\n", - " ('obdurately', 'in a stubborn unregenerate manner')]},\n", + " ('stubbornly', 'in a stubborn unregenerate manner'),\n", + " ('obdurately', 'in a stubborn unregenerate manner'),\n", + " ('pig-headedly', 'in a stubborn unregenerate manner')]},\n", " {'answer': 'obviously',\n", " 'hint': 'synonyms for obviously',\n", - " 'clues': [('evidently',\n", + " 'clues': [('patently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('manifestly',\n", + " ('apparently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('plainly',\n", + " ('evidently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('apparently',\n", + " ('manifestly',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('patently',\n", + " ('plain',\n", " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'occasionally',\n", " 'hint': 'synonyms for occasionally',\n", - " 'clues': [('at times', 'now and then or here and there'),\n", - " ('on occasion', 'now and then or here and there'),\n", - " ('now and then', 'now and then or here and there'),\n", - " ('once in a while', 'now and then or here and there'),\n", + " 'clues': [('once in a while', 'now and then or here and there'),\n", + " ('at times', 'now and then or here and there'),\n", " ('now and again', 'now and then or here and there'),\n", - " ('from time to time', 'now and then or here and there')]},\n", + " ('on occasion', 'now and then or here and there'),\n", + " ('from time to time', 'now and then or here and there'),\n", + " ('now and then', 'now and then or here and there')]},\n", " {'answer': 'oddly',\n", " 'hint': 'synonyms for oddly',\n", - " 'clues': [('peculiarly',\n", + " 'clues': [('curiously',\n", " 'in a manner differing from the usual or expected'),\n", + " ('funnily', 'in a strange manner'),\n", " ('strangely', 'in a strange manner'),\n", - " ('curiously', 'in a manner differing from the usual or expected'),\n", " ('queerly', 'in a strange manner'),\n", - " ('funnily', 'in a strange manner')]},\n", + " ('peculiarly', 'in a manner differing from the usual or expected')]},\n", " {'answer': 'often',\n", " 'hint': 'synonyms for often',\n", - " 'clues': [('oft', 'many times at short intervals'),\n", - " ('a great deal', 'frequently or in great quantities'),\n", - " ('ofttimes', 'many times at short intervals'),\n", + " 'clues': [('a great deal', 'frequently or in great quantities'),\n", " ('frequently', 'many times at short intervals'),\n", - " ('much', 'frequently or in great quantities')]},\n", + " ('oft', 'many times at short intervals'),\n", + " ('much', 'frequently or in great quantities'),\n", + " ('oftentimes', 'many times at short intervals')]},\n", " {'answer': 'oftentimes',\n", " 'hint': 'synonyms for oftentimes',\n", " 'clues': [('oft', 'many times at short intervals'),\n", + " ('often', 'many times at short intervals'),\n", " ('frequently', 'many times at short intervals'),\n", - " ('ofttimes', 'many times at short intervals'),\n", - " ('often', 'many times at short intervals')]},\n", + " ('ofttimes', 'many times at short intervals')]},\n", " {'answer': 'ofttimes',\n", " 'hint': 'synonyms for ofttimes',\n", " 'clues': [('oft', 'many times at short intervals'),\n", + " ('often', 'many times at short intervals'),\n", " ('frequently', 'many times at short intervals'),\n", - " ('oftentimes', 'many times at short intervals'),\n", - " ('often', 'many times at short intervals')]},\n", + " ('oftentimes', 'many times at short intervals')]},\n", " {'answer': 'on_an_individual_basis',\n", " 'hint': 'synonyms for on an individual basis',\n", - " 'clues': [('severally', 'apart from others'),\n", - " ('one by one', 'apart from others'),\n", + " 'clues': [('one by one', 'apart from others'),\n", + " ('severally', 'apart from others'),\n", + " ('separately', 'apart from others'),\n", " ('individually', 'apart from others'),\n", - " ('singly', 'apart from others'),\n", - " ('separately', 'apart from others')]},\n", + " ('singly', 'apart from others')]},\n", " {'answer': 'on_occasion',\n", " 'hint': 'synonyms for on occasion',\n", - " 'clues': [('occasionally', 'now and then or here and there'),\n", + " 'clues': [('once in a while', 'now and then or here and there'),\n", + " ('occasionally', 'now and then or here and there'),\n", " ('at times', 'now and then or here and there'),\n", - " ('now and then', 'now and then or here and there'),\n", - " ('once in a while', 'now and then or here and there'),\n", " ('now and again', 'now and then or here and there'),\n", - " ('from time to time', 'now and then or here and there')]},\n", + " ('from time to time', 'now and then or here and there'),\n", + " ('now and then', 'now and then or here and there')]},\n", " {'answer': 'on_purpose',\n", " 'hint': 'synonyms for on purpose',\n", - " 'clues': [('purposely', 'with intention; in an intentional manner'),\n", + " 'clues': [('by choice', 'with intention; in an intentional manner'),\n", " ('intentionally', 'with intention; in an intentional manner'),\n", - " ('by choice', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", + " ('purposely', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", - " ('by design', 'with intention; in an intentional manner')]},\n", + " ('by design', 'with intention; in an intentional manner'),\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'on_the_dot',\n", " 'hint': 'synonyms for on the dot',\n", - " 'clues': [('precisely', 'just as it should be'),\n", - " ('on the nose', 'just as it should be'),\n", + " 'clues': [('on the button', 'just as it should be'),\n", + " ('precisely', 'just as it should be'),\n", " ('exactly', 'just as it should be'),\n", - " ('on the button', 'just as it should be')]},\n", + " ('on the nose', 'just as it should be')]},\n", " {'answer': 'once',\n", " 'hint': 'synonyms for once',\n", - " 'clues': [('at one time', 'at a previous time'),\n", - " ('erstwhile', 'at a previous time'),\n", - " ('erst', 'at a previous time'),\n", - " ('in one case', 'on one occasion'),\n", + " 'clues': [('in one case', 'on one occasion'),\n", " ('one time', 'on one occasion'),\n", - " ('formerly', 'at a previous time')]},\n", + " ('at one time', 'at a previous time'),\n", + " ('erst', 'at a previous time'),\n", + " ('formerly', 'at a previous time'),\n", + " ('erstwhile', 'at a previous time')]},\n", " {'answer': 'once_in_a_while',\n", " 'hint': 'synonyms for once in a while',\n", " 'clues': [('occasionally', 'now and then or here and there'),\n", " ('at times', 'now and then or here and there'),\n", - " ('on occasion', 'now and then or here and there'),\n", - " ('now and then', 'now and then or here and there'),\n", " ('now and again', 'now and then or here and there'),\n", - " ('from time to time', 'now and then or here and there')]},\n", + " ('on occasion', 'now and then or here and there'),\n", + " ('from time to time', 'now and then or here and there'),\n", + " ('now and then', 'now and then or here and there')]},\n", " {'answer': 'one_by_one',\n", " 'hint': 'synonyms for one by one',\n", - " 'clues': [('by the piece', 'one piece at a time'),\n", - " ('one after another', 'in single file'),\n", + " 'clues': [('severally', 'apart from others'),\n", " ('separately', 'apart from others'),\n", - " ('individually', 'apart from others'),\n", - " ('severally', 'apart from others'),\n", - " ('on an individual basis', 'apart from others'),\n", " ('singly', 'apart from others'),\n", - " ('one at a time', 'in single file')]},\n", + " ('one after another', 'in single file'),\n", + " ('by the piece', 'one piece at a time'),\n", + " ('one at a time', 'in single file'),\n", + " ('individually', 'apart from others'),\n", + " ('on an individual basis', 'apart from others')]},\n", " {'answer': 'onward',\n", " 'hint': 'synonyms for onward',\n", " 'clues': [('forward', 'in a forward direction'),\n", " ('onwards', 'in a forward direction'),\n", - " ('forth', 'forward in time or order or degree'),\n", + " ('ahead', 'in a forward direction'),\n", " ('forrader', 'in a forward direction'),\n", - " ('ahead', 'in a forward direction')]},\n", + " ('forth', 'forward in time or order or degree')]},\n", " {'answer': 'onwards',\n", " 'hint': 'synonyms for onwards',\n", - " 'clues': [('forward', 'in a forward direction'),\n", - " ('onward', 'in a forward direction'),\n", + " 'clues': [('onward', 'in a forward direction'),\n", + " ('forwards', 'in a forward direction'),\n", " ('forrader', 'in a forward direction'),\n", " ('ahead', 'in a forward direction')]},\n", " {'answer': 'or_so',\n", " 'hint': 'synonyms for or so',\n", " 'clues': [('roughly',\n", " '(of quantities) imprecise but fairly close to correct'),\n", - " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", " ('around', '(of quantities) imprecise but fairly close to correct'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", + " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'ordinarily',\n", " 'hint': 'synonyms for ordinarily',\n", - " 'clues': [('unremarkably', 'under normal conditions'),\n", + " 'clues': [('commonly', 'under normal conditions'),\n", + " ('unremarkably', 'under normal conditions'),\n", " ('normally', 'under normal conditions'),\n", - " ('usually', 'under normal conditions'),\n", - " ('commonly', 'under normal conditions')]},\n", + " ('usually', 'under normal conditions')]},\n", " {'answer': 'originally',\n", " 'hint': 'synonyms for originally',\n", - " 'clues': [('in the beginning',\n", - " 'with reference to the origin or beginning'),\n", - " ('earlier', 'before now'),\n", - " ('in the first place', 'before now'),\n", + " 'clues': [('primitively', 'with reference to the origin or beginning'),\n", + " ('in the beginning', 'before now'),\n", " ('to begin with', 'before now'),\n", - " ('primitively', 'with reference to the origin or beginning')]},\n", + " ('in the first place', 'before now'),\n", + " ('earlier', 'before now')]},\n", " {'answer': 'over_and_over',\n", " 'hint': 'synonyms for over and over',\n", - " 'clues': [('time and again', 'repeatedly'),\n", - " ('again and again', 'repeatedly'),\n", + " 'clues': [('time and time again', 'repeatedly'),\n", + " ('time and again', 'repeatedly'),\n", " ('over and over again', 'repeatedly'),\n", - " ('time and time again', 'repeatedly')]},\n", + " ('again and again', 'repeatedly')]},\n", " {'answer': 'over_and_over_again',\n", " 'hint': 'synonyms for over and over again',\n", - " 'clues': [('time and again', 'repeatedly'),\n", - " ('again and again', 'repeatedly'),\n", + " 'clues': [('time and time again', 'repeatedly'),\n", + " ('time and again', 'repeatedly'),\n", " ('over and over', 'repeatedly'),\n", - " ('time and time again', 'repeatedly')]},\n", + " ('again and again', 'repeatedly')]},\n", " {'answer': 'p.a.',\n", " 'hint': 'synonyms for p.a.',\n", - " 'clues': [('annually',\n", - " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('per annum',\n", + " 'clues': [('per year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", " ('each year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('per year',\n", + " ('per annum',\n", + " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", + " ('annually',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n", " {'answer': 'passably',\n", " 'hint': 'synonyms for passably',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", - " ('reasonably', 'to a moderately sufficient extent or degree'),\n", - " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", - " ('moderately', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('moderately', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", " ('jolly', 'to a moderately sufficient extent or degree'),\n", - " ('fairly', 'to a moderately sufficient extent or degree')]},\n", + " ('middling', 'to a moderately sufficient extent or degree'),\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", + " ('reasonably', 'to a moderately sufficient extent or degree'),\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'patently',\n", " 'hint': 'synonyms for patently',\n", - " 'clues': [('evidently',\n", + " 'clues': [('apparently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('manifestly',\n", + " ('evidently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('plainly',\n", + " ('obviously',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('apparently',\n", + " ('manifestly',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('obviously',\n", + " ('plain',\n", " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'peculiarly',\n", " 'hint': 'synonyms for peculiarly',\n", " 'clues': [('particularly',\n", " 'to a distinctly greater extent or degree than is common'),\n", - " ('oddly', 'in a manner differing from the usual or expected'),\n", " ('curiously', 'in a manner differing from the usual or expected'),\n", - " ('especially',\n", - " 'to a distinctly greater extent or degree than is common')]},\n", + " ('specially', 'to a distinctly greater extent or degree than is common'),\n", + " ('oddly', 'in a manner differing from the usual or expected')]},\n", " {'answer': 'per_annum',\n", " 'hint': 'synonyms for per annum',\n", - " 'clues': [('annually',\n", + " 'clues': [('per year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", " ('p.a.',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", " ('each year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('per year',\n", + " ('annually',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n", " {'answer': 'per_year',\n", " 'hint': 'synonyms for per year',\n", - " 'clues': [('annually',\n", + " 'clues': [('p.a.',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('per annum',\n", + " ('each year',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('p.a.',\n", + " ('per annum',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)'),\n", - " ('each year',\n", + " ('annually',\n", " 'by the year; every year (usually with reference to a sum of money paid or received)')]},\n", " {'answer': 'peradventure',\n", " 'hint': 'synonyms for peradventure',\n", - " 'clues': [('maybe', 'by chance'),\n", - " ('possibly', 'by chance'),\n", + " 'clues': [('possibly', 'by chance'),\n", " ('perhaps', 'by chance'),\n", - " ('mayhap', 'by chance'),\n", - " ('perchance', 'by chance')]},\n", + " ('perchance', 'by chance'),\n", + " ('maybe', 'by chance'),\n", + " ('mayhap', 'by chance')]},\n", " {'answer': 'perchance',\n", " 'hint': 'synonyms for perchance',\n", - " 'clues': [('maybe', 'by chance'),\n", + " 'clues': [('by chance', 'through chance,'),\n", " ('peradventure', 'by chance'),\n", " ('possibly', 'by chance'),\n", - " ('by chance', 'through chance,'),\n", " ('perhaps', 'by chance'),\n", + " ('maybe', 'by chance'),\n", " ('mayhap', 'by chance')]},\n", " {'answer': 'perhaps',\n", " 'hint': 'synonyms for perhaps',\n", - " 'clues': [('maybe', 'by chance'),\n", - " ('peradventure', 'by chance'),\n", + " 'clues': [('peradventure', 'by chance'),\n", " ('possibly', 'by chance'),\n", - " ('mayhap', 'by chance'),\n", - " ('perchance', 'by chance')]},\n", + " ('perchance', 'by chance'),\n", + " ('maybe', 'by chance'),\n", + " ('mayhap', 'by chance')]},\n", " {'answer': 'perpetually',\n", " 'hint': 'synonyms for perpetually',\n", - " 'clues': [('constantly', 'without interruption'),\n", - " ('forever', 'without interruption'),\n", - " ('incessantly', 'without interruption'),\n", - " ('always', 'without interruption')]},\n", + " 'clues': [('forever', 'without interruption'),\n", + " ('constantly', 'without interruption'),\n", + " ('always', 'without interruption'),\n", + " ('incessantly', 'without interruption')]},\n", " {'answer': 'pertly',\n", " 'hint': 'synonyms for pertly',\n", - " 'clues': [('impertinently', 'in an impudent or impertinent manner'),\n", + " 'clues': [('freshly', 'in an impudent or impertinent manner'),\n", " ('impudently', 'in an impudent or impertinent manner'),\n", - " ('saucily', 'in an impudent or impertinent manner'),\n", - " ('freshly', 'in an impudent or impertinent manner')]},\n", + " ('impertinently', 'in an impudent or impertinent manner'),\n", + " ('saucily', 'in an impudent or impertinent manner')]},\n", " {'answer': 'pig-headedly',\n", " 'hint': 'synonyms for pig-headedly',\n", - " 'clues': [('stubbornly', 'in a stubborn unregenerate manner'),\n", - " ('obstinately', 'in a stubborn unregenerate manner'),\n", + " 'clues': [('obstinately', 'in a stubborn unregenerate manner'),\n", " ('cussedly', 'in a stubborn unregenerate manner'),\n", " ('mulishly', 'in a stubborn unregenerate manner'),\n", + " ('stubbornly', 'in a stubborn unregenerate manner'),\n", " ('obdurately', 'in a stubborn unregenerate manner')]},\n", " {'answer': 'plainly',\n", " 'hint': 'synonyms for plainly',\n", - " 'clues': [('evidently',\n", - " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('manifestly',\n", + " 'clues': [('patently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('apparently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", " ('obviously',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('patently',\n", + " ('manifestly',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('plain',\n", + " ('evidently',\n", " \"unmistakably (`plain' is often used informally for `plainly')\"),\n", - " ('simply', 'in a simple manner; without extravagance or embellishment')]},\n", + " ('simply', 'in a simple manner; without extravagance or embellishment'),\n", + " ('plain',\n", + " \"unmistakably (`plain' is often used informally for `plainly')\")]},\n", " {'answer': 'pleadingly',\n", " 'hint': 'synonyms for pleadingly',\n", - " 'clues': [('importunately', 'in a beseeching manner'),\n", - " ('beseechingly', 'in a beseeching manner'),\n", - " ('imploringly', 'in a beseeching manner'),\n", - " ('entreatingly', 'in a beseeching manner')]},\n", + " 'clues': [('imploringly', 'in a beseeching manner'),\n", + " ('importunately', 'in a beseeching manner'),\n", + " ('entreatingly', 'in a beseeching manner'),\n", + " ('beseechingly', 'in a beseeching manner')]},\n", " {'answer': 'pleasantly',\n", " 'hint': 'synonyms for pleasantly',\n", - " 'clues': [('cheerily', 'in a cheerful manner'),\n", + " 'clues': [('agreeably', 'in an enjoyable manner'),\n", " ('sunnily', 'in a cheerful manner'),\n", - " ('agreeably', 'in an enjoyable manner'),\n", + " ('cheerily', 'in a cheerful manner'),\n", " ('enjoyably', 'in an enjoyable manner')]},\n", " {'answer': 'possibly',\n", " 'hint': 'synonyms for possibly',\n", - " 'clues': [('maybe', 'by chance'),\n", - " ('peradventure', 'by chance'),\n", + " 'clues': [('mayhap', 'by chance'),\n", " ('perhaps', 'by chance'),\n", - " ('mayhap', 'by chance'),\n", - " ('perchance', 'by chance')]},\n", + " ('perchance', 'by chance'),\n", + " ('maybe', 'by chance'),\n", + " ('peradventure', 'by chance')]},\n", " {'answer': 'precisely',\n", " 'hint': 'synonyms for precisely',\n", - " 'clues': [('on the nose', 'just as it should be'),\n", - " ('exactly', 'just as it should be'),\n", - " ('on the button', 'just as it should be'),\n", - " ('just', 'indicating exactness or preciseness'),\n", + " 'clues': [('exactly', 'in a precise manner'),\n", " ('on the dot', 'just as it should be'),\n", - " ('incisively', 'in a precise manner')]},\n", + " ('on the nose', 'just as it should be'),\n", + " ('incisively', 'in a precise manner'),\n", + " ('just', 'indicating exactness or preciseness'),\n", + " ('on the button', 'just as it should be')]},\n", " {'answer': 'presently',\n", " 'hint': 'synonyms for presently',\n", - " 'clues': [('before long', 'in the near future'),\n", - " ('shortly', 'in the near future'),\n", + " 'clues': [('soon', 'in the near future'),\n", " ('currently', 'at this time or period; now'),\n", - " ('soon', 'in the near future')]},\n", + " ('shortly', 'in the near future'),\n", + " ('before long', 'in the near future')]},\n", " {'answer': 'primarily',\n", " 'hint': 'synonyms for primarily',\n", - " 'clues': [('principally', 'for the most part'),\n", - " ('chiefly', 'for the most part'),\n", - " ('in the first place', 'of primary import'),\n", + " 'clues': [('in the first place', 'of primary import'),\n", + " ('mainly', 'for the most part'),\n", " ('in the main', 'for the most part'),\n", - " ('mainly', 'for the most part')]},\n", + " ('principally', 'for the most part'),\n", + " ('chiefly', 'for the most part')]},\n", " {'answer': 'principally',\n", " 'hint': 'synonyms for principally',\n", - " 'clues': [('primarily', 'for the most part'),\n", + " 'clues': [('mainly', 'for the most part'),\n", " ('in the main', 'for the most part'),\n", - " ('chiefly', 'for the most part'),\n", - " ('mainly', 'for the most part')]},\n", + " ('primarily', 'for the most part'),\n", + " ('chiefly', 'for the most part')]},\n", " {'answer': 'probably',\n", " 'hint': 'synonyms for probably',\n", - " 'clues': [('believably',\n", + " 'clues': [('plausibly',\n", " 'easy to believe on the basis of available evidence'),\n", - " ('credibly', 'easy to believe on the basis of available evidence'),\n", " ('in all probability', 'with considerable certainty; without much doubt'),\n", - " ('likely', 'with considerable certainty; without much doubt'),\n", + " ('in all likelihood', 'with considerable certainty; without much doubt'),\n", + " ('believably', 'easy to believe on the basis of available evidence'),\n", " ('belike', 'with considerable certainty; without much doubt'),\n", - " ('plausibly', 'easy to believe on the basis of available evidence'),\n", - " ('in all likelihood',\n", - " 'with considerable certainty; without much doubt')]},\n", + " ('credibly', 'easy to believe on the basis of available evidence'),\n", + " ('likely', 'with considerable certainty; without much doubt')]},\n", " {'answer': 'promptly',\n", " 'hint': 'synonyms for promptly',\n", - " 'clues': [('right away',\n", - " 'at once (usually modifies an undesirable occurrence)'),\n", - " ('quick', 'with little or no delay'),\n", + " 'clues': [('readily', 'in a punctual manner'),\n", " ('pronto', 'in a punctual manner'),\n", - " ('readily', 'in a punctual manner')]},\n", + " ('quickly', 'with little or no delay'),\n", + " ('right away', 'at once (usually modifies an undesirable occurrence)')]},\n", " {'answer': 'properly',\n", " 'hint': 'synonyms for properly',\n", " 'clues': [('decent', 'in the right manner'),\n", - " ('by rights', 'with reason or justice'),\n", + " ('the right way', 'in the right manner'),\n", " ('right', 'in the right manner'),\n", - " ('in good order', 'in the right manner'),\n", - " ('the right way', 'in the right manner')]},\n", + " ('by rights', 'with reason or justice'),\n", + " ('in good order', 'in the right manner')]},\n", " {'answer': 'purposely',\n", " 'hint': 'synonyms for purposely',\n", - " 'clues': [('intentionally', 'with intention; in an intentional manner'),\n", - " ('on purpose', 'with intention; in an intentional manner'),\n", + " 'clues': [('on purpose', 'with intention; in an intentional manner'),\n", " ('by choice', 'with intention; in an intentional manner'),\n", + " ('intentionally', 'with intention; in an intentional manner'),\n", " ('advisedly', 'with intention; in an intentional manner'),\n", - " ('deliberately', 'with intention; in an intentional manner'),\n", + " ('by design', 'with intention; in an intentional manner'),\n", " ('designedly', 'with intention; in an intentional manner'),\n", - " ('by design', 'with intention; in an intentional manner')]},\n", + " ('deliberately', 'with intention; in an intentional manner')]},\n", " {'answer': 'queerly',\n", " 'hint': 'synonyms for queerly',\n", - " 'clues': [('fishily', 'in a questionably unusual manner'),\n", + " 'clues': [('strangely', 'in a strange manner'),\n", + " ('funnily', 'in a strange manner'),\n", " ('oddly', 'in a strange manner'),\n", - " ('strangely', 'in a strange manner'),\n", - " ('funnily', 'in a strange manner')]},\n", + " ('fishily', 'in a questionably unusual manner')]},\n", " {'answer': 'quickly',\n", " 'hint': 'synonyms for quickly',\n", - " 'clues': [('promptly', 'with little or no delay'),\n", - " ('quick', 'with little or no delay'),\n", - " ('apace', 'with rapid movements'),\n", - " ('speedily', 'with rapid movements'),\n", - " ('cursorily', 'without taking pains'),\n", + " 'clues': [('cursorily', 'without taking pains'),\n", + " ('promptly', 'with little or no delay'),\n", " ('rapidly', 'with rapid movements'),\n", - " ('chop-chop', 'with rapid movements')]},\n", + " ('chop-chop', 'with rapid movements'),\n", + " ('apace', 'with rapid movements'),\n", + " ('quick', 'with little or no delay'),\n", + " ('speedily', 'with rapid movements')]},\n", " {'answer': 'randomly',\n", " 'hint': 'synonyms for randomly',\n", " 'clues': [('at random', 'in a random manner'),\n", + " ('willy-nilly', 'in a random manner'),\n", " ('every which way', 'in a random manner'),\n", - " ('indiscriminately', 'in a random manner'),\n", " ('arbitrarily', 'in a random manner'),\n", - " ('willy-nilly', 'in a random manner'),\n", + " ('indiscriminately', 'in a random manner'),\n", " ('haphazardly', 'in a random manner')]},\n", " {'answer': 'rapidly',\n", " 'hint': 'synonyms for rapidly',\n", " 'clues': [('apace', 'with rapid movements'),\n", - " ('quickly', 'with rapid movements'),\n", " ('speedily', 'with rapid movements'),\n", - " ('chop-chop', 'with rapid movements')]},\n", + " ('chop-chop', 'with rapid movements'),\n", + " ('quickly', 'with rapid movements')]},\n", " {'answer': 'rather',\n", " 'hint': 'synonyms for rather',\n", - " 'clues': [('sooner', 'more readily or willingly'),\n", + " 'clues': [('instead', 'on the contrary'),\n", + " ('sooner', 'more readily or willingly'),\n", " ('quite', 'to a degree (not used with a negative)'),\n", - " ('kinda', 'to some (great or small) extent'),\n", - " ('preferably', 'more readily or willingly'),\n", + " ('sort of', 'to some (great or small) extent'),\n", " ('kind of', 'to some (great or small) extent'),\n", - " ('instead', 'on the contrary'),\n", - " ('sort of', 'to some (great or small) extent')]},\n", + " ('preferably', 'more readily or willingly'),\n", + " ('kinda', 'to some (great or small) extent')]},\n", " {'answer': 'really',\n", " 'hint': 'synonyms for really',\n", - " 'clues': [('truly',\n", - " 'in fact (used as intensifiers or sentence modifiers)'),\n", - " ('real',\n", - " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n", - " ('in truth', 'in fact (used as intensifiers or sentence modifiers)'),\n", - " ('genuinely', 'in accordance with truth or fact or reality'),\n", - " ('very',\n", + " 'clues': [('very',\n", " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n", " ('rattling',\n", " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n", - " ('actually', 'in actual fact')]},\n", + " ('actually', 'in actual fact'),\n", + " ('real',\n", + " \"used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal\"),\n", + " ('truly', 'in accordance with truth or fact or reality'),\n", + " ('genuinely', 'in accordance with truth or fact or reality'),\n", + " ('in truth', 'in fact (used as intensifiers or sentence modifiers)')]},\n", " {'answer': 'reasonably',\n", " 'hint': 'synonyms for reasonably',\n", - " 'clues': [('somewhat', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", + " ('jolly', 'to a moderately sufficient extent or degree'),\n", " ('sensibly', 'with good sense or in a reasonable or intelligent manner'),\n", + " ('somewhat', 'to a moderately sufficient extent or degree'),\n", " ('moderately', 'to a moderately sufficient extent or degree'),\n", - " ('jolly', 'to a moderately sufficient extent or degree'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", + " ('sanely', 'with good sense or in a reasonable or intelligent manner'),\n", " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", - " ('fairly', 'to a moderately sufficient extent or degree'),\n", - " ('sanely', 'with good sense or in a reasonable or intelligent manner')]},\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'remarkably',\n", " 'hint': 'synonyms for remarkably',\n", " 'clues': [('outstandingly', 'to a remarkable degree or extent'),\n", - " ('signally', 'in a signal manner'),\n", + " ('unmistakably', 'in a signal manner'),\n", " ('unusually', 'to a remarkable degree or extent'),\n", " ('unco', 'to a remarkable degree or extent'),\n", - " ('unmistakably', 'in a signal manner')]},\n", + " ('signally', 'in a signal manner')]},\n", " {'answer': 'richly',\n", " 'hint': 'synonyms for richly',\n", - " 'clues': [('amply', 'to an ample degree or in an ample manner'),\n", - " ('extravagantly', 'in a rich and lavish manner'),\n", + " 'clues': [('high', 'in a rich manner'),\n", + " ('luxuriously', 'in a rich manner'),\n", " ('lavishly', 'in a rich and lavish manner'),\n", - " ('high', 'in a rich manner'),\n", - " ('luxuriously', 'in a rich manner')]},\n", + " ('amply', 'to an ample degree or in an ample manner'),\n", + " ('extravagantly', 'in a rich and lavish manner')]},\n", " {'answer': 'right_away',\n", " 'hint': 'synonyms for right away',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", - " ('promptly', 'at once (usually modifies an undesirable occurrence)'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('straight off',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('straight off', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('promptly', 'at once (usually modifies an undesirable occurrence)'),\n", + " ('immediately',\n", " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'rottenly',\n", " 'hint': 'synonyms for rottenly',\n", " 'clues': [('abysmally', 'in a terrible manner'),\n", - " ('abominably', 'in a terrible manner'),\n", " ('terribly', 'in a terrible manner'),\n", " ('awfully', 'in a terrible manner'),\n", + " ('abominably', 'in a terrible manner'),\n", " ('atrociously', 'in a terrible manner')]},\n", " {'answer': 'roughly',\n", " 'hint': 'synonyms for roughly',\n", - " 'clues': [('close to',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", + " 'clues': [('rough', 'with rough motion as over a rough surface'),\n", " ('just about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", - " ('rough',\n", - " \"with roughness or violence (`rough' is an informal variant for `roughly')\"),\n", - " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", " ('around', '(of quantities) imprecise but fairly close to correct'),\n", - " ('approximately',\n", - " '(of quantities) imprecise but fairly close to correct'),\n", + " ('close to', '(of quantities) imprecise but fairly close to correct'),\n", + " ('more or less', '(of quantities) imprecise but fairly close to correct'),\n", + " ('some', '(of quantities) imprecise but fairly close to correct'),\n", " ('about', '(of quantities) imprecise but fairly close to correct'),\n", - " ('some', '(of quantities) imprecise but fairly close to correct')]},\n", + " ('or so', '(of quantities) imprecise but fairly close to correct'),\n", + " ('approximately',\n", + " '(of quantities) imprecise but fairly close to correct')]},\n", " {'answer': 'roundly',\n", " 'hint': 'synonyms for roundly',\n", - " 'clues': [('bluffly', 'in a blunt direct manner'),\n", + " 'clues': [('brusquely', 'in a blunt direct manner'),\n", + " ('bluffly', 'in a blunt direct manner'),\n", " ('flat out', 'in a blunt direct manner'),\n", - " ('bluntly', 'in a blunt direct manner'),\n", - " ('brusquely', 'in a blunt direct manner')]},\n", + " ('bluntly', 'in a blunt direct manner')]},\n", " {'answer': 'sadly',\n", " 'hint': 'synonyms for sadly',\n", - " 'clues': [('deplorably', 'in an unfortunate or deplorable manner'),\n", + " 'clues': [('lamentably', 'in an unfortunate or deplorable manner'),\n", " ('woefully', 'in an unfortunate or deplorable manner'),\n", - " ('lamentably', 'in an unfortunate or deplorable manner'),\n", + " ('deplorably', 'in an unfortunate or deplorable manner'),\n", " ('unhappily', 'in an unfortunate way')]},\n", " {'answer': 'sagaciously',\n", " 'hint': 'synonyms for sagaciously',\n", - " 'clues': [('acutely', 'in a shrewd manner'),\n", - " ('astutely', 'in a shrewd manner'),\n", + " 'clues': [('shrewdly', 'in a shrewd manner'),\n", " ('sapiently', 'in a shrewd manner'),\n", - " ('shrewdly', 'in a shrewd manner')]},\n", + " ('astutely', 'in a shrewd manner'),\n", + " ('acutely', 'in a shrewd manner')]},\n", " {'answer': 'sapiently',\n", " 'hint': 'synonyms for sapiently',\n", - " 'clues': [('acutely', 'in a shrewd manner'),\n", + " 'clues': [('shrewdly', 'in a shrewd manner'),\n", " ('sagaciously', 'in a shrewd manner'),\n", " ('astutely', 'in a shrewd manner'),\n", - " ('shrewdly', 'in a shrewd manner')]},\n", + " ('acutely', 'in a shrewd manner')]},\n", " {'answer': 'saucily',\n", " 'hint': 'synonyms for saucily',\n", - " 'clues': [('impertinently', 'in an impudent or impertinent manner'),\n", + " 'clues': [('freshly', 'in an impudent or impertinent manner'),\n", " ('impudently', 'in an impudent or impertinent manner'),\n", - " ('pertly', 'in an impudent or impertinent manner'),\n", - " ('freshly', 'in an impudent or impertinent manner')]},\n", + " ('impertinently', 'in an impudent or impertinent manner'),\n", + " ('pertly', 'in an impudent or impertinent manner')]},\n", " {'answer': 'scarcely',\n", " 'hint': 'synonyms for scarcely',\n", - " 'clues': [('hardly', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", - " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " 'clues': [('hardly', 'almost not'),\n", " ('just', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", + " ('barely', 'only a very short time before; ; ; ; ; - W.B.Yeats'),\n", " ('scarce', 'only a very short time before; ; ; ; ; - W.B.Yeats')]},\n", " {'answer': 'separately',\n", " 'hint': 'synonyms for separately',\n", - " 'clues': [('severally', 'apart from others'),\n", - " ('one by one', 'apart from others'),\n", - " ('individually', 'apart from others'),\n", + " 'clues': [('one by one', 'apart from others'),\n", + " ('severally', 'apart from others'),\n", " ('on an individual basis', 'apart from others'),\n", + " ('individually', 'apart from others'),\n", " ('singly', 'apart from others')]},\n", " {'answer': 'seriously',\n", " 'hint': 'synonyms for seriously',\n", - " 'clues': [('in earnest', 'in a serious manner'),\n", + " 'clues': [('gravely', 'to a severe or serious degree'),\n", + " ('earnestly', 'in a serious manner'),\n", " ('severely', 'to a severe or serious degree'),\n", - " ('badly', 'to a severe or serious degree'),\n", - " ('gravely', 'to a severe or serious degree'),\n", - " ('earnestly', 'in a serious manner')]},\n", + " ('in earnest', 'in a serious manner'),\n", + " ('badly', 'to a severe or serious degree')]},\n", " {'answer': 'severally',\n", " 'hint': 'synonyms for severally',\n", - " 'clues': [('independently', 'apart from others'),\n", - " ('one by one', 'apart from others'),\n", - " ('individually', 'apart from others'),\n", + " 'clues': [('one by one', 'apart from others'),\n", + " ('separately', 'apart from others'),\n", " ('on an individual basis', 'apart from others'),\n", " ('respectively', 'in the order given'),\n", + " ('individually', 'apart from others'),\n", " ('singly', 'apart from others'),\n", - " ('separately', 'apart from others')]},\n", + " ('independently', 'apart from others')]},\n", " {'answer': 'severely',\n", " 'hint': 'synonyms for severely',\n", - " 'clues': [('sternly', 'with sternness; in a severe manner'),\n", + " 'clues': [('gravely', 'to a severe or serious degree'),\n", + " ('seriously', 'to a severe or serious degree'),\n", + " ('sternly', 'with sternness; in a severe manner'),\n", " ('hard', 'causing great damage or hardship'),\n", - " ('badly', 'to a severe or serious degree'),\n", - " ('gravely', 'to a severe or serious degree'),\n", - " ('seriously', 'to a severe or serious degree')]},\n", + " ('badly', 'to a severe or serious degree')]},\n", " {'answer': 'shamefully',\n", " 'hint': 'synonyms for shamefully',\n", - " 'clues': [('dishonorably',\n", + " 'clues': [('dishonourably',\n", " 'in a dishonorable manner or to a dishonorable degree'),\n", + " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('ingloriously', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('discreditably', 'in a dishonorable manner or to a dishonorable degree'),\n", - " ('disgracefully', 'in a dishonorable manner or to a dishonorable degree'),\n", " ('ignominiously',\n", " 'in a dishonorable manner or to a dishonorable degree')]},\n", " {'answer': 'sharply',\n", " 'hint': 'synonyms for sharply',\n", - " 'clues': [('crisply', 'in a well delineated manner'),\n", + " 'clues': [('acutely', 'changing suddenly in direction and degree'),\n", + " ('precipitously', 'very suddenly and to a great degree'),\n", " ('sharp', 'changing suddenly in direction and degree'),\n", - " ('aggressively', 'in an aggressive manner'),\n", - " ('acutely', 'changing suddenly in direction and degree'),\n", - " ('precipitously', 'very suddenly and to a great degree')]},\n", + " ('crisply', 'in a well delineated manner'),\n", + " ('aggressively', 'in an aggressive manner')]},\n", " {'answer': 'shortly',\n", " 'hint': 'synonyms for shortly',\n", - " 'clues': [('presently', 'in the near future'),\n", + " 'clues': [('soon', 'in the near future'),\n", + " ('curtly', 'in a curt, abrupt and discourteous manner'),\n", " ('short', 'in a curt, abrupt and discourteous manner'),\n", - " ('in brief', 'in a concise manner; in a few words'),\n", - " ('before long', 'in the near future'),\n", - " ('in short', 'in a concise manner; in a few words'),\n", " ('concisely', 'in a concise manner; in a few words'),\n", - " ('curtly', 'in a curt, abrupt and discourteous manner'),\n", + " ('in short', 'in a concise manner; in a few words'),\n", " ('briefly', 'in a concise manner; in a few words'),\n", - " ('soon', 'in the near future')]},\n", + " ('in brief', 'in a concise manner; in a few words'),\n", + " ('before long', 'in the near future'),\n", + " ('presently', 'in the near future')]},\n", " {'answer': 'shrewdly',\n", " 'hint': 'synonyms for shrewdly',\n", - " 'clues': [('acutely', 'in a shrewd manner'),\n", + " 'clues': [('sapiently', 'in a shrewd manner'),\n", " ('sagaciously', 'in a shrewd manner'),\n", " ('astutely', 'in a shrewd manner'),\n", - " ('sapiently', 'in a shrewd manner')]},\n", + " ('acutely', 'in a shrewd manner')]},\n", " {'answer': 'simply',\n", " 'hint': 'synonyms for simply',\n", - " 'clues': [('just', 'absolutely'),\n", + " 'clues': [('only', 'and nothing more'),\n", " ('plainly', 'in a simple manner; without extravagance or embellishment'),\n", - " ('merely', 'and nothing more'),\n", + " ('just', 'absolutely'),\n", " ('but', 'and nothing more'),\n", - " ('only', 'and nothing more')]},\n", + " ('merely', 'and nothing more')]},\n", " {'answer': 'singly',\n", " 'hint': 'synonyms for singly',\n", - " 'clues': [('severally', 'apart from others'),\n", - " ('one by one', 'apart from others'),\n", + " 'clues': [('one by one', 'apart from others'),\n", + " ('severally', 'apart from others'),\n", + " ('separately', 'apart from others'),\n", " ('individually', 'apart from others'),\n", - " ('on an individual basis', 'apart from others'),\n", - " ('separately', 'apart from others')]},\n", + " ('on an individual basis', 'apart from others')]},\n", " {'answer': 'slap',\n", " 'hint': 'synonyms for slap',\n", - " 'clues': [('slapdash', 'directly'),\n", - " ('smack', 'directly'),\n", + " 'clues': [('smack', 'directly'),\n", + " ('slapdash', 'directly'),\n", " ('bolt', 'directly'),\n", " ('bang', 'directly')]},\n", " {'answer': 'slenderly',\n", @@ -23371,756 +23389,759 @@ " ('slightly', 'in a slim or slender manner')]},\n", " {'answer': 'slightly',\n", " 'hint': 'synonyms for slightly',\n", - " 'clues': [('slimly', 'in a slim or slender manner'),\n", - " ('more or less', 'to a small degree or extent'),\n", + " 'clues': [('more or less', 'to a small degree or extent'),\n", " ('somewhat', 'to a small degree or extent'),\n", - " ('slenderly', 'in a slim or slender manner')]},\n", + " ('slenderly', 'in a slim or slender manner'),\n", + " ('slimly', 'in a slim or slender manner')]},\n", " {'answer': 'slowly',\n", " 'hint': 'synonyms for slowly',\n", - " 'clues': [('lento', 'in music'),\n", - " ('easy',\n", + " 'clues': [('tardily',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", " ('slow',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", - " ('tardily',\n", - " \"without speed (`slow' is sometimes used informally for `slowly')\")]},\n", + " ('easy',\n", + " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", + " ('lento', 'in music')]},\n", " {'answer': 'slyly',\n", " 'hint': 'synonyms for slyly',\n", - " 'clues': [('foxily', 'in an artful manner'),\n", - " ('craftily', 'in an artful manner'),\n", - " ('knavishly', 'in an artful manner'),\n", + " 'clues': [('artfully', 'in an artful manner'),\n", + " ('trickily', 'in an artful manner'),\n", + " ('foxily', 'in an artful manner'),\n", " ('cunningly', 'in an artful manner'),\n", - " ('artfully', 'in an artful manner'),\n", - " ('trickily', 'in an artful manner')]},\n", + " ('craftily', 'in an artful manner'),\n", + " ('knavishly', 'in an artful manner')]},\n", " {'answer': 'smack',\n", " 'hint': 'synonyms for smack',\n", - " 'clues': [('slapdash', 'directly'),\n", + " 'clues': [('slap', 'directly'),\n", + " ('slapdash', 'directly'),\n", " ('bolt', 'directly'),\n", - " ('bang', 'directly'),\n", - " ('slap', 'directly')]},\n", + " ('bang', 'directly')]},\n", " {'answer': 'smartly',\n", " 'hint': 'synonyms for smartly',\n", " 'clues': [('sprucely', 'in a stylish manner'),\n", - " ('modishly', 'in a stylish manner'),\n", + " ('cleverly', 'in a clever manner'),\n", " ('vigorously', 'with vigor; in a vigorous manner'),\n", - " ('cleverly', 'in a clever manner')]},\n", + " ('modishly', 'in a stylish manner')]},\n", " {'answer': 'so',\n", " 'hint': 'synonyms for so',\n", - " 'clues': [('then',\n", + " 'clues': [('thus',\n", + " \"in the way indicated; ; ; (`thusly' is a nonstandard variant)\"),\n", + " ('and then',\n", " 'subsequently or soon afterward (often used as sentence connectors)'),\n", " ('therefore',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('hence',\n", + " ('indeed', 'in truth (often tends to intensify)'),\n", + " ('thence',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", " ('and so',\n", " 'subsequently or soon afterward (often used as sentence connectors)'),\n", - " ('indeed', 'in truth (often tends to intensify)'),\n", - " ('thus',\n", - " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('and then',\n", + " ('then',\n", " 'subsequently or soon afterward (often used as sentence connectors)')]},\n", " {'answer': 'so_far',\n", " 'hint': 'synonyms for so far',\n", - " 'clues': [('thus far',\n", + " 'clues': [('yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('up to now',\n", + " ('hitherto',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet', 'used after a superlative'),\n", - " ('in so far', 'to the degree or extent that'),\n", " ('to that extent', 'to the degree or extent that'),\n", - " ('til now',\n", + " ('in so far', 'to the degree or extent that'),\n", + " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('heretofore',\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('to that degree', 'to the degree or extent that'),\n", - " ('hitherto',\n", + " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('as yet',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('to that degree', 'to the degree or extent that')]},\n", " {'answer': 'softly',\n", " 'hint': 'synonyms for softly',\n", - " 'clues': [('lightly', 'with little weight or force'),\n", + " 'clues': [('gently', 'with little weight or force'),\n", " ('piano', 'used as a direction in music; to be played relatively softly'),\n", " ('quietly', 'with low volume'),\n", - " ('gently', 'with little weight or force')]},\n", + " ('lightly', 'with little weight or force')]},\n", " {'answer': 'solely',\n", " 'hint': 'synonyms for solely',\n", - " 'clues': [('only', 'without any others being included or involved'),\n", - " ('exclusively', 'without any others being included or involved'),\n", - " ('alone', 'without any others being included or involved'),\n", - " ('entirely', 'without any others being included or involved')]},\n", + " 'clues': [('exclusively', 'without any others being included or involved'),\n", + " ('only', 'without any others being included or involved'),\n", + " ('entirely', 'without any others being included or involved'),\n", + " ('alone', 'without any others being included or involved')]},\n", " {'answer': 'someway',\n", " 'hint': 'synonyms for someway',\n", - " 'clues': [('in some manner',\n", + " 'clues': [('somehow',\n", " 'in some unspecified way or manner; or by some unspecified means'),\n", " ('in some way',\n", " 'in some unspecified way or manner; or by some unspecified means'),\n", - " ('somehow',\n", - " 'in some unspecified way or manner; or by some unspecified means'),\n", " ('someways',\n", + " 'in some unspecified way or manner; or by some unspecified means'),\n", + " ('in some manner',\n", " 'in some unspecified way or manner; or by some unspecified means')]},\n", " {'answer': 'someways',\n", " 'hint': 'synonyms for someways',\n", - " 'clues': [('someway',\n", + " 'clues': [('somehow',\n", " 'in some unspecified way or manner; or by some unspecified means'),\n", - " ('in some manner',\n", + " ('someway',\n", " 'in some unspecified way or manner; or by some unspecified means'),\n", " ('in some way',\n", " 'in some unspecified way or manner; or by some unspecified means'),\n", - " ('somehow',\n", + " ('in some manner',\n", " 'in some unspecified way or manner; or by some unspecified means')]},\n", " {'answer': 'somewhat',\n", " 'hint': 'synonyms for somewhat',\n", - " 'clues': [('more or less', 'to a small degree or extent'),\n", - " ('moderately', 'to a moderately sufficient extent or degree'),\n", + " 'clues': [('passably', 'to a moderately sufficient extent or degree'),\n", + " ('fairly', 'to a moderately sufficient extent or degree'),\n", " ('jolly', 'to a moderately sufficient extent or degree'),\n", - " ('passably', 'to a moderately sufficient extent or degree'),\n", + " ('more or less', 'to a small degree or extent'),\n", + " ('moderately', 'to a moderately sufficient extent or degree'),\n", + " ('slightly', 'to a small degree or extent'),\n", " ('middling', 'to a moderately sufficient extent or degree'),\n", - " ('pretty', 'to a moderately sufficient extent or degree'),\n", " ('reasonably', 'to a moderately sufficient extent or degree'),\n", - " ('slightly', 'to a small degree or extent'),\n", - " ('fairly', 'to a moderately sufficient extent or degree')]},\n", + " ('pretty', 'to a moderately sufficient extent or degree')]},\n", " {'answer': 'speedily',\n", " 'hint': 'synonyms for speedily',\n", " 'clues': [('apace', 'with rapid movements'),\n", - " ('quickly', 'with rapid movements'),\n", " ('rapidly', 'with rapid movements'),\n", - " ('chop-chop', 'with rapid movements')]},\n", + " ('chop-chop', 'with rapid movements'),\n", + " ('quickly', 'with rapid movements')]},\n", " {'answer': 'splendidly',\n", " 'hint': 'synonyms for splendidly',\n", - " 'clues': [('gorgeously', 'in an impressively beautiful manner'),\n", - " ('magnificently', 'extremely well'),\n", + " 'clues': [('magnificently', 'in an impressively beautiful manner'),\n", + " ('excellently', 'extremely well'),\n", " ('famously', 'extremely well'),\n", - " ('resplendently', 'in an impressively beautiful manner'),\n", - " ('excellently', 'extremely well')]},\n", + " ('gorgeously', 'in an impressively beautiful manner'),\n", + " ('resplendently', 'in an impressively beautiful manner')]},\n", " {'answer': 'squarely',\n", " 'hint': 'synonyms for squarely',\n", - " 'clues': [('square', 'in a straight direct way'),\n", - " ('forthrightly', 'directly and without evasion; not roundabout'),\n", - " ('straightforwardly',\n", + " 'clues': [('foursquare',\n", " 'with firmness and conviction; without compromise; - C.G.Bowers'),\n", - " ('foursquare',\n", + " ('square', 'in a straight direct way'),\n", + " ('forthright', 'directly and without evasion; not roundabout'),\n", + " ('straightforwardly',\n", " 'with firmness and conviction; without compromise; - C.G.Bowers')]},\n", " {'answer': 'straight_off',\n", " 'hint': 'synonyms for straight off',\n", - " 'clues': [('now', 'without delay or hesitation; with no time intervening'),\n", - " ('right away', 'without delay or hesitation; with no time intervening'),\n", - " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", + " 'clues': [('right away',\n", + " 'without delay or hesitation; with no time intervening'),\n", " ('directly', 'without delay or hesitation; with no time intervening'),\n", - " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", " ('at once', 'without delay or hesitation; with no time intervening'),\n", - " ('immediately', 'without delay or hesitation; with no time intervening'),\n", + " ('now', 'without delay or hesitation; with no time intervening'),\n", + " ('forthwith', 'without delay or hesitation; with no time intervening'),\n", " ('instantly', 'without delay or hesitation; with no time intervening'),\n", - " ('straightaway',\n", + " ('straightaway', 'without delay or hesitation; with no time intervening'),\n", + " ('like a shot', 'without delay or hesitation; with no time intervening'),\n", + " ('immediately',\n", " 'without delay or hesitation; with no time intervening')]},\n", " {'answer': 'stubbornly',\n", " 'hint': 'synonyms for stubbornly',\n", " 'clues': [('obstinately', 'in a stubborn unregenerate manner'),\n", " ('cussedly', 'in a stubborn unregenerate manner'),\n", - " ('pig-headedly', 'in a stubborn unregenerate manner'),\n", " ('mulishly', 'in a stubborn unregenerate manner'),\n", - " ('obdurately', 'in a stubborn unregenerate manner')]},\n", + " ('obdurately', 'in a stubborn unregenerate manner'),\n", + " ('pig-headedly', 'in a stubborn unregenerate manner')]},\n", " {'answer': 'subsequently',\n", " 'hint': 'synonyms for subsequently',\n", - " 'clues': [('later', 'happening at a time subsequent to a reference time'),\n", - " ('afterward', 'happening at a time subsequent to a reference time'),\n", + " 'clues': [('afterwards',\n", + " 'happening at a time subsequent to a reference time'),\n", " ('later on', 'happening at a time subsequent to a reference time'),\n", + " ('later', 'happening at a time subsequent to a reference time'),\n", " ('after', 'happening at a time subsequent to a reference time')]},\n", " {'answer': 'suddenly',\n", " 'hint': 'synonyms for suddenly',\n", - " 'clues': [('dead', 'quickly and without warning'),\n", + " 'clues': [('of a sudden', 'happening unexpectedly'),\n", " ('short', 'quickly and without warning'),\n", - " ('all of a sudden', 'happening unexpectedly'),\n", " ('abruptly', 'quickly and without warning'),\n", + " ('all of a sudden', 'happening unexpectedly'),\n", " ('on the spur of the moment', 'on impulse; without premeditation'),\n", - " ('of a sudden', 'happening unexpectedly')]},\n", + " ('dead', 'quickly and without warning')]},\n", " {'answer': 'superbly',\n", " 'hint': 'synonyms for superbly',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('terrifically', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", + " ('toppingly', '(used as an intensifier) extremely well'),\n", " ('wondrous', '(used as an intensifier) extremely well'),\n", - " ('toppingly', '(used as an intensifier) extremely well')]},\n", + " ('wonderfully', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well')]},\n", " {'answer': 'sure_enough',\n", " 'hint': 'synonyms for sure enough',\n", - " 'clues': [('sure as shooting',\n", - " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure',\n", + " 'clues': [('sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('certainly',\n", - " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for certain',\n", + " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", + " ('sure as shooting',\n", + " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", + " ('certainly',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'surely',\n", " 'hint': 'synonyms for surely',\n", - " 'clues': [('sure as shooting',\n", + " 'clues': [('sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure',\n", + " ('sure enough',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for sure',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('certainly',\n", - " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", " ('for certain',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", - " ('sure enough',\n", + " ('sure as shooting',\n", + " \"definitely or positively (`sure' is sometimes used informally for `surely')\"),\n", + " ('certainly',\n", " \"definitely or positively (`sure' is sometimes used informally for `surely')\")]},\n", " {'answer': 'tardily',\n", " 'hint': 'synonyms for tardily',\n", - " 'clues': [('slowly',\n", + " 'clues': [('late', 'later than usual or than expected'),\n", + " ('slow',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", - " ('late', 'later than usual or than expected'),\n", " ('easy',\n", " \"without speed (`slow' is sometimes used informally for `slowly')\"),\n", " ('belatedly', 'later than usual or than expected')]},\n", " {'answer': 'terribly',\n", " 'hint': 'synonyms for terribly',\n", - " 'clues': [('awfully', 'used as intensifiers'),\n", - " ('abysmally', 'in a terrible manner'),\n", - " ('atrociously', 'in a terrible manner'),\n", - " ('abominably', 'in a terrible manner'),\n", + " 'clues': [('abysmally', 'in a terrible manner'),\n", + " ('rottenly', 'in a terrible manner'),\n", + " ('awful', 'used as intensifiers'),\n", " ('frightfully', 'used as intensifiers'),\n", - " ('rottenly', 'in a terrible manner')]},\n", + " ('abominably', 'in a terrible manner'),\n", + " ('atrociously', 'in a terrible manner')]},\n", " {'answer': 'terrifically',\n", " 'hint': 'synonyms for terrifically',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", - " ('wondrous', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", " ('toppingly', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('wondrous', '(used as an intensifier) extremely well'),\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('wonderfully', '(used as an intensifier) extremely well')]},\n", " {'answer': 'that_is_to_say',\n", " 'hint': 'synonyms for that is to say',\n", - " 'clues': [('to wit', 'as follows'),\n", - " ('viz.', 'as follows'),\n", - " ('namely', 'as follows'),\n", - " ('videlicet', 'as follows')]},\n", + " 'clues': [('viz.', 'as follows'),\n", + " ('to wit', 'as follows'),\n", + " ('videlicet', 'as follows'),\n", + " ('namely', 'as follows')]},\n", " {'answer': 'the_right_way',\n", " 'hint': 'synonyms for the right way',\n", " 'clues': [('decent', 'in the right manner'),\n", " ('right', 'in the right manner'),\n", - " ('in good order', 'in the right manner'),\n", - " ('properly', 'in the right manner')]},\n", + " ('properly', 'in the right manner'),\n", + " ('in good order', 'in the right manner')]},\n", " {'answer': 'thence',\n", " 'hint': 'synonyms for thence',\n", - " 'clues': [('thus',\n", + " 'clues': [('hence',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", + " ('thereof', 'from that circumstance or source; - W.V.Quine'),\n", + " ('therefrom', 'from that place or from there'),\n", " ('therefore',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('so',\n", - " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('hence',\n", + " ('thus',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('thereof', 'from that circumstance or source; - W.V.Quine'),\n", - " ('therefrom', 'from that place or from there')]},\n", + " ('so',\n", + " '(used to introduce a logical conclusion) from that fact or reason or as a result')]},\n", " {'answer': 'there',\n", " 'hint': 'synonyms for there',\n", - " 'clues': [('in that respect', 'in that matter'),\n", + " 'clues': [('in that location', 'in or at that place'),\n", " ('thither', 'to or toward that place; away from the speaker'),\n", - " ('in that location', 'in or at that place'),\n", + " ('at that place', 'in or at that place'),\n", " ('on that point', 'in that matter'),\n", - " ('at that place', 'in or at that place')]},\n", + " ('in that respect', 'in that matter')]},\n", " {'answer': 'therefore',\n", " 'hint': 'synonyms for therefore',\n", - " 'clues': [('thus',\n", + " 'clues': [('thence',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", " ('consequently', 'as a consequence'),\n", - " ('so',\n", + " ('thus',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('hence',\n", + " ('so',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result')]},\n", " {'answer': 'thus',\n", " 'hint': 'synonyms for thus',\n", - " 'clues': [('therefore',\n", - " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('so',\n", - " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", - " ('hence',\n", + " 'clues': [('thence',\n", " '(used to introduce a logical conclusion) from that fact or reason or as a result'),\n", + " ('so', \"in the way indicated; ; ; (`thusly' is a nonstandard variant)\"),\n", " ('thusly',\n", - " \"in the way indicated; ; ; (`thusly' is a nonstandard variant)\")]},\n", + " \"in the way indicated; ; ; (`thusly' is a nonstandard variant)\"),\n", + " ('therefore',\n", + " '(used to introduce a logical conclusion) from that fact or reason or as a result')]},\n", " {'answer': 'thus_far',\n", " 'hint': 'synonyms for thus far',\n", - " 'clues': [('up to now',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('til now',\n", + " 'clues': [('yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('heretofore',\n", + " ('hitherto',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('so far',\n", + " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('hitherto',\n", + " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('as yet',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('so far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", " {'answer': 'til_now',\n", " 'hint': 'synonyms for til now',\n", - " 'clues': [('thus far',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('up to now',\n", + " 'clues': [('yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('heretofore',\n", + " ('hitherto',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('so far',\n", + " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('until now',\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('hitherto',\n", + " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('as yet',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('so far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", " {'answer': 'time_and_again',\n", " 'hint': 'synonyms for time and again',\n", - " 'clues': [('again and again', 'repeatedly'),\n", - " ('over and over again', 'repeatedly'),\n", + " 'clues': [('time and time again', 'repeatedly'),\n", " ('over and over', 'repeatedly'),\n", - " ('time and time again', 'repeatedly')]},\n", + " ('over and over again', 'repeatedly'),\n", + " ('again and again', 'repeatedly')]},\n", " {'answer': 'time_and_time_again',\n", " 'hint': 'synonyms for time and time again',\n", " 'clues': [('time and again', 'repeatedly'),\n", - " ('again and again', 'repeatedly'),\n", + " ('over and over', 'repeatedly'),\n", " ('over and over again', 'repeatedly'),\n", - " ('over and over', 'repeatedly')]},\n", + " ('again and again', 'repeatedly')]},\n", " {'answer': 'to_a_t',\n", " 'hint': 'synonyms for to a t',\n", - " 'clues': [('just right', 'in every detail'),\n", + " 'clues': [('to the letter', 'in every detail'),\n", + " ('just right', 'in every detail'),\n", " ('to a T', 'in every detail'),\n", - " ('to the letter', 'in every detail'),\n", " ('to perfection', 'in every detail')]},\n", " {'answer': 'to_begin_with',\n", " 'hint': 'synonyms for to begin with',\n", - " 'clues': [('in the beginning', 'before now'),\n", + " 'clues': [('in the first place', 'before now'),\n", " ('earlier', 'before now'),\n", - " ('originally', 'before now'),\n", - " ('in the first place', 'before now')]},\n", + " ('in the beginning', 'before now'),\n", + " ('originally', 'before now')]},\n", " {'answer': 'to_wit',\n", " 'hint': 'synonyms for to wit',\n", - " 'clues': [('that is to say', 'as follows'),\n", + " 'clues': [('videlicet', 'as follows'),\n", " ('viz.', 'as follows'),\n", - " ('namely', 'as follows'),\n", - " ('videlicet', 'as follows')]},\n", + " ('that is to say', 'as follows'),\n", + " ('namely', 'as follows')]},\n", " {'answer': 'too',\n", " 'hint': 'synonyms for too',\n", - " 'clues': [('as well', 'in addition'),\n", - " ('also', 'in addition'),\n", - " ('overly', 'to a degree exceeding normal or proper limits'),\n", + " 'clues': [('likewise', 'in addition'),\n", " ('excessively', 'to a degree exceeding normal or proper limits'),\n", + " ('overly', 'to a degree exceeding normal or proper limits'),\n", " ('to a fault', 'to a degree exceeding normal or proper limits'),\n", - " ('likewise', 'in addition'),\n", - " ('besides', 'in addition')]},\n", + " ('besides', 'in addition'),\n", + " ('also', 'in addition'),\n", + " ('as well', 'in addition')]},\n", " {'answer': 'toppingly',\n", " 'hint': 'synonyms for toppingly',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('terrifically', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", " ('wondrous', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('wonderfully', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well')]},\n", " {'answer': 'topsy-turvily',\n", " 'hint': 'synonyms for topsy-turvily',\n", - " 'clues': [('in great confusion', 'in disorderly haste'),\n", - " ('topsy-turvy', 'in disorderly haste'),\n", - " ('head over heels', 'in disorderly haste'),\n", - " ('heels over head', 'in disorderly haste')]},\n", + " 'clues': [('head over heels', 'in disorderly haste'),\n", + " ('in great confusion', 'in disorderly haste'),\n", + " ('heels over head', 'in disorderly haste'),\n", + " ('topsy-turvy', 'in disorderly haste')]},\n", " {'answer': 'totally',\n", " 'hint': 'synonyms for totally',\n", - " 'clues': [('entirely',\n", + " 'clues': [('completely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('altogether',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('all',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('completely',\n", + " ('whole',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('wholly',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('whole',\n", + " ('entirely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", " {'answer': 'traitorously',\n", " 'hint': 'synonyms for traitorously',\n", - " 'clues': [('false', 'in a disloyal and faithless manner'),\n", - " ('treasonably', 'in a disloyal and faithless manner'),\n", - " ('treacherously', 'in a disloyal and faithless manner'),\n", - " ('faithlessly', 'in a disloyal and faithless manner')]},\n", + " 'clues': [('treacherously', 'in a disloyal and faithless manner'),\n", + " ('faithlessly', 'in a disloyal and faithless manner'),\n", + " ('false', 'in a disloyal and faithless manner'),\n", + " ('treasonably', 'in a disloyal and faithless manner')]},\n", " {'answer': 'treacherously',\n", " 'hint': 'synonyms for treacherously',\n", - " 'clues': [('false', 'in a disloyal and faithless manner'),\n", - " ('treasonably', 'in a disloyal and faithless manner'),\n", - " ('traitorously', 'in a disloyal and faithless manner'),\n", - " ('faithlessly', 'in a disloyal and faithless manner')]},\n", + " 'clues': [('traitorously', 'in a disloyal and faithless manner'),\n", + " ('faithlessly', 'in a disloyal and faithless manner'),\n", + " ('false', 'in a disloyal and faithless manner'),\n", + " ('treasonably', 'in a disloyal and faithless manner')]},\n", " {'answer': 'treasonably',\n", " 'hint': 'synonyms for treasonably',\n", - " 'clues': [('false', 'in a disloyal and faithless manner'),\n", - " ('traitorously', 'in a disloyal and faithless manner'),\n", + " 'clues': [('traitorously', 'in a disloyal and faithless manner'),\n", " ('treacherously', 'in a disloyal and faithless manner'),\n", - " ('faithlessly', 'in a disloyal and faithless manner')]},\n", + " ('faithlessly', 'in a disloyal and faithless manner'),\n", + " ('false', 'in a disloyal and faithless manner')]},\n", " {'answer': 'trickily',\n", " 'hint': 'synonyms for trickily',\n", - " 'clues': [('foxily', 'in an artful manner'),\n", - " ('craftily', 'in an artful manner'),\n", - " ('knavishly', 'in an artful manner'),\n", + " 'clues': [('artfully', 'in an artful manner'),\n", + " ('foxily', 'in an artful manner'),\n", " ('slyly', 'in an artful manner'),\n", " ('cunningly', 'in an artful manner'),\n", - " ('artfully', 'in an artful manner')]},\n", + " ('craftily', 'in an artful manner'),\n", + " ('knavishly', 'in an artful manner')]},\n", " {'answer': 'truly',\n", " 'hint': 'synonyms for truly',\n", - " 'clues': [('really', 'in accordance with truth or fact or reality'),\n", - " ('in truth', 'in fact (used as intensifiers or sentence modifiers)'),\n", - " ('genuinely', 'in accordance with truth or fact or reality'),\n", - " ('sincerely', 'with sincerity; without pretense'),\n", + " 'clues': [('really',\n", + " 'in fact (used as intensifiers or sentence modifiers)'),\n", " ('rightfully', 'by right'),\n", - " ('unfeignedly', 'with sincerity; without pretense')]},\n", + " ('sincerely', 'with sincerity; without pretense'),\n", + " ('genuinely', 'in accordance with truth or fact or reality'),\n", + " ('unfeignedly', 'with sincerity; without pretense'),\n", + " ('in truth', 'in fact (used as intensifiers or sentence modifiers)')]},\n", " {'answer': 'ultimately',\n", " 'hint': 'synonyms for ultimately',\n", - " 'clues': [('at last', 'as the end result of a succession or process'),\n", + " 'clues': [('at long last', 'as the end result of a succession or process'),\n", + " ('at last', 'as the end result of a succession or process'),\n", " ('finally', 'as the end result of a succession or process'),\n", - " ('at long last', 'as the end result of a succession or process'),\n", " ('in the end', 'as the end result of a succession or process')]},\n", " {'answer': 'unceasingly',\n", " 'hint': 'synonyms for unceasingly',\n", - " 'clues': [('unendingly', 'with unflagging resolve'),\n", - " ('incessantly', 'with unflagging resolve'),\n", - " ('endlessly', 'with unflagging resolve'),\n", + " 'clues': [('ceaselessly', 'with unflagging resolve'),\n", + " ('unendingly', 'with unflagging resolve'),\n", " ('continuously', 'with unflagging resolve'),\n", - " ('ceaselessly', 'with unflagging resolve')]},\n", + " ('endlessly', 'with unflagging resolve'),\n", + " ('incessantly', 'with unflagging resolve')]},\n", " {'answer': 'unendingly',\n", " 'hint': 'synonyms for unendingly',\n", - " 'clues': [('unceasingly', 'with unflagging resolve'),\n", - " ('incessantly', 'with unflagging resolve'),\n", - " ('endlessly', 'with unflagging resolve'),\n", + " 'clues': [('ceaselessly', 'with unflagging resolve'),\n", + " ('unceasingly', 'with unflagging resolve'),\n", " ('continuously', 'with unflagging resolve'),\n", - " ('ceaselessly', 'with unflagging resolve')]},\n", + " ('endlessly', 'with unflagging resolve'),\n", + " ('incessantly', 'with unflagging resolve')]},\n", " {'answer': 'unexpectedly',\n", " 'hint': 'synonyms for unexpectedly',\n", - " 'clues': [('accidentally', 'without advance planning'),\n", - " ('circumstantially', 'without advance planning'),\n", + " 'clues': [('circumstantially', 'without advance planning'),\n", + " ('accidentally', 'without advance planning'),\n", " ('by chance', 'without advance planning'),\n", " ('out of the blue', 'in a way that was not expected')]},\n", " {'answer': 'unprofitably',\n", " 'hint': 'synonyms for unprofitably',\n", " 'clues': [('profitlessly', 'without gain or profit'),\n", " ('gainlessly', 'without gain or profit'),\n", - " ('unproductively', 'in an unproductive manner'),\n", - " ('fruitlessly', 'in an unproductive manner')]},\n", + " ('fruitlessly', 'in an unproductive manner'),\n", + " ('unproductively', 'in an unproductive manner')]},\n", " {'answer': 'unquestionably',\n", " 'hint': 'synonyms for unquestionably',\n", - " 'clues': [('emphatically', 'without question and beyond doubt'),\n", - " ('unimpeachably', 'without question'),\n", - " ('by all odds', 'without question and beyond doubt'),\n", + " 'clues': [('by all odds', 'without question and beyond doubt'),\n", + " ('emphatically', 'without question and beyond doubt'),\n", " ('in spades', 'without question and beyond doubt'),\n", - " ('decidedly', 'without question and beyond doubt'),\n", - " ('definitely', 'without question and beyond doubt')]},\n", + " ('unimpeachably', 'without question'),\n", + " ('definitely', 'without question and beyond doubt'),\n", + " ('decidedly', 'without question and beyond doubt')]},\n", " {'answer': 'unremarkably',\n", " 'hint': 'synonyms for unremarkably',\n", - " 'clues': [('usually', 'under normal conditions'),\n", + " 'clues': [('ordinarily', 'under normal conditions'),\n", + " ('commonly', 'under normal conditions'),\n", " ('normally', 'under normal conditions'),\n", - " ('ordinarily', 'under normal conditions'),\n", - " ('commonly', 'under normal conditions')]},\n", + " ('usually', 'under normal conditions')]},\n", " {'answer': 'until_now',\n", " 'hint': 'synonyms for until now',\n", - " 'clues': [('thus far',\n", + " 'clues': [('yet',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('hitherto',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('til now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('til now',\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", + " ('as yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('so far',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('hitherto',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('as yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", " {'answer': 'up_to_now',\n", " 'hint': 'synonyms for up to now',\n", - " 'clues': [('thus far',\n", + " 'clues': [('yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('til now',\n", + " ('hitherto',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('until now',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('thus far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('yet',\n", + " ('as yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('to date', 'prior to the present time'),\n", " ('so far',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('hitherto',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('as yet',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]},\n", + " ('to date', 'prior to the present time')]},\n", " {'answer': 'usually',\n", " 'hint': 'synonyms for usually',\n", - " 'clues': [('unremarkably', 'under normal conditions'),\n", - " ('normally', 'under normal conditions'),\n", - " ('ordinarily', 'under normal conditions'),\n", - " ('commonly', 'under normal conditions')]},\n", + " 'clues': [('ordinarily', 'under normal conditions'),\n", + " ('commonly', 'under normal conditions'),\n", + " ('unremarkably', 'under normal conditions'),\n", + " ('normally', 'under normal conditions')]},\n", " {'answer': 'very_much',\n", " 'hint': 'synonyms for very much',\n", - " 'clues': [('much', 'to a very great degree or extent'),\n", - " ('a good deal', 'to a very great degree or extent'),\n", + " 'clues': [('a good deal', 'to a very great degree or extent'),\n", + " ('much', 'to a very great degree or extent'),\n", " ('lots', 'to a very great degree or extent'),\n", " ('a lot', 'to a very great degree or extent'),\n", " ('a great deal', 'to a very great degree or extent')]},\n", " {'answer': 'videlicet',\n", " 'hint': 'synonyms for videlicet',\n", - " 'clues': [('to wit', 'as follows'),\n", + " 'clues': [('viz.', 'as follows'),\n", + " ('to wit', 'as follows'),\n", " ('that is to say', 'as follows'),\n", - " ('namely', 'as follows'),\n", - " ('viz.', 'as follows')]},\n", + " ('namely', 'as follows')]},\n", " {'answer': 'virtually',\n", " 'hint': 'synonyms for virtually',\n", - " 'clues': [('nearly',\n", + " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('nigh',\n", + " ('well-nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('almost',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('well-nigh',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", + " ('nearly',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('about',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('most',\n", " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", " {'answer': 'viz.',\n", " 'hint': 'synonyms for viz.',\n", - " 'clues': [('to wit', 'as follows'),\n", + " 'clues': [('videlicet', 'as follows'),\n", + " ('to wit', 'as follows'),\n", " ('that is to say', 'as follows'),\n", - " ('namely', 'as follows'),\n", - " ('videlicet', 'as follows')]},\n", + " ('namely', 'as follows')]},\n", " {'answer': 'wackily',\n", " 'hint': 'synonyms for wackily',\n", - " 'clues': [('dottily', 'in a mildly insane manner'),\n", - " ('daftly', 'in a mildly insane manner'),\n", + " 'clues': [('balmily', 'in a mildly insane manner'),\n", " ('nuttily', 'in a mildly insane manner'),\n", - " ('balmily', 'in a mildly insane manner')]},\n", + " ('daftly', 'in a mildly insane manner'),\n", + " ('dottily', 'in a mildly insane manner')]},\n", " {'answer': 'well-nigh',\n", " 'hint': 'synonyms for well-nigh',\n", - " 'clues': [('nearly',\n", - " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('nigh',\n", + " 'clues': [('nigh',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('almost',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('most',\n", + " ('nearly',\n", + " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", + " ('virtually',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", " ('about',\n", " '(of actions or states) slightly short of or not quite accomplished; all but'),\n", - " ('virtually',\n", + " ('most',\n", " '(of actions or states) slightly short of or not quite accomplished; all but')]},\n", " {'answer': 'when_the_time_comes',\n", " 'hint': 'synonyms for when the time comes',\n", " 'clues': [('in due season', 'at the appropriate time'),\n", - " ('in good time', 'at the appropriate time'),\n", " ('in due course', 'at the appropriate time'),\n", - " ('in due time', 'at the appropriate time')]},\n", + " ('in due time', 'at the appropriate time'),\n", + " ('in good time', 'at the appropriate time')]},\n", " {'answer': 'wholly',\n", " 'hint': 'synonyms for wholly',\n", - " 'clues': [('entirely',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('altogether',\n", - " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('all',\n", + " 'clues': [('totally',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('completely',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", - " ('totally',\n", + " ('altogether',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", " ('whole',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('entirely',\n", + " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\"),\n", + " ('all',\n", " \"to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly')\")]},\n", " {'answer': 'willy-nilly',\n", " 'hint': 'synonyms for willy-nilly',\n", " 'clues': [('at random', 'in a random manner'),\n", + " ('randomly', 'in a random manner'),\n", " ('every which way', 'in a random manner'),\n", - " ('indiscriminately', 'in a random manner'),\n", " ('arbitrarily', 'in a random manner'),\n", - " ('randomly', 'in a random manner'),\n", + " ('indiscriminately', 'in a random manner'),\n", " ('haphazardly', 'in a random manner')]},\n", " {'answer': 'withal',\n", " 'hint': 'synonyms for withal',\n", " 'clues': [('even so',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('all the same',\n", + " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('yet',\n", + " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('nonetheless',\n", + " ('however',\n", " 'despite anything to the contrary (usually following a concession)'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('notwithstanding',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('still',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('yet',\n", " 'despite anything to the contrary (usually following a concession)')]},\n", " {'answer': 'wonderfully',\n", " 'hint': 'synonyms for wonderfully',\n", - " 'clues': [('terrifically', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", - " ('wondrous', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", " ('toppingly', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('wondrous', '(used as an intensifier) extremely well'),\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well')]},\n", " {'answer': 'wondrously',\n", " 'hint': 'synonyms for wondrously',\n", - " 'clues': [('wonderfully', '(used as an intensifier) extremely well'),\n", - " ('terrifically', '(used as an intensifier) extremely well'),\n", - " ('marvelously', '(used as an intensifier) extremely well'),\n", - " ('wondrous', '(used as an intensifier) extremely well'),\n", + " 'clues': [('marvelously', '(used as an intensifier) extremely well'),\n", " ('toppingly', '(used as an intensifier) extremely well'),\n", - " ('superbly', '(used as an intensifier) extremely well')]},\n", + " ('wondrous', '(used as an intensifier) extremely well'),\n", + " ('superbly', '(used as an intensifier) extremely well'),\n", + " ('wonderfully', '(used as an intensifier) extremely well'),\n", + " ('terrifically', '(used as an intensifier) extremely well')]},\n", " {'answer': 'yet',\n", " 'hint': 'synonyms for yet',\n", - " 'clues': [('thus far',\n", + " 'clues': [('hitherto',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('in time', 'within an indefinite time or at an unspecified future time'),\n", - " ('so far', 'used after a superlative'),\n", - " ('til now',\n", + " ('until now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('all the same',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", - " ('even', 'to a greater degree or extent; used with comparisons'),\n", - " ('withal',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", " ('nonetheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", + " ('still', 'to a greater degree or extent; used with comparisons'),\n", + " ('so far', 'used after a superlative'),\n", " ('nevertheless',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('however',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", - " ('as yet',\n", - " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('still', 'to a greater degree or extent; used with comparisons'),\n", " ('up to now',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", - " ('even so',\n", - " 'despite anything to the contrary (usually following a concession)'),\n", + " ('in time', 'within an indefinite time or at an unspecified future time'),\n", + " ('thus far',\n", + " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", " ('heretofore',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time'),\n", + " ('all the same',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('even so',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", " ('notwithstanding',\n", " 'despite anything to the contrary (usually following a concession)'),\n", - " ('hitherto',\n", + " ('even', 'to a greater degree or extent; used with comparisons'),\n", + " ('however',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('withal',\n", + " 'despite anything to the contrary (usually following a concession)'),\n", + " ('as yet',\n", " 'used in negative statement to describe a situation that has existed up to this point or up to the present time')]}],\n", " 'portion': 0.54},\n", " {'name': 'nouns',\n", " 'groups': [{'answer': '0',\n", " 'hint': 'synonyms for 0',\n", - " 'clues': [('cipher',\n", - " 'a mathematical element that when added to another number yields the same number'),\n", - " ('cypher',\n", + " 'clues': [('cypher',\n", " 'a mathematical element that when added to another number yields the same number'),\n", - " ('nought',\n", + " ('cipher',\n", " 'a mathematical element that when added to another number yields the same number'),\n", " ('zero',\n", + " 'a mathematical element that when added to another number yields the same number'),\n", + " ('nought',\n", " 'a mathematical element that when added to another number yields the same number')]},\n", " {'answer': '1',\n", " 'hint': 'synonyms for 1',\n", - " 'clues': [('ace',\n", + " 'clues': [('single',\n", " 'the smallest whole number or a numeral representing this number'),\n", - " ('one',\n", - " 'the smallest whole number or a numeral representing this number'),\n", - " ('single',\n", + " ('ace',\n", " 'the smallest whole number or a numeral representing this number'),\n", " ('unity',\n", + " 'the smallest whole number or a numeral representing this number'),\n", + " ('one',\n", " 'the smallest whole number or a numeral representing this number')]},\n", " {'answer': '1000',\n", " 'hint': 'synonyms for 1000',\n", - " 'clues': [('chiliad',\n", + " 'clues': [('thou',\n", " 'the cardinal number that is the product of 10 and 100'),\n", " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", " ('grand', 'the cardinal number that is the product of 10 and 100'),\n", " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thousand', 'the cardinal number that is the product of 10 and 100')]},\n", + " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n", + " ('chiliad', 'the cardinal number that is the product of 10 and 100')]},\n", " {'answer': '3',\n", " 'hint': 'synonyms for 3',\n", - " 'clues': [('ternary',\n", + " 'clues': [('threesome',\n", " 'the cardinal number that is the sum of one and one and one'),\n", - " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", " ('troika', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", - " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", - " ('three', 'the cardinal number that is the sum of one and one and one'),\n", - " ('threesome',\n", - " 'the cardinal number that is the sum of one and one and one'),\n", " ('trey', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", - " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n", " ('deuce-ace',\n", " 'the cardinal number that is the sum of one and one and one'),\n", " ('triad', 'the cardinal number that is the sum of one and one and one'),\n", " ('terzetto',\n", + " 'the cardinal number that is the sum of one and one and one'),\n", + " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", + " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", + " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", + " ('three', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternary', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tercet',\n", " 'the cardinal number that is the sum of one and one and one')]},\n", " {'answer': '4',\n", " 'hint': 'synonyms for 4',\n", - " 'clues': [('tetrad',\n", + " 'clues': [('quatern',\n", " 'the cardinal number that is the sum of three and one'),\n", - " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", " ('quartet', 'the cardinal number that is the sum of three and one'),\n", - " ('foursome', 'the cardinal number that is the sum of three and one'),\n", - " ('quaternity', 'the cardinal number that is the sum of three and one'),\n", + " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", + " ('tetrad', 'the cardinal number that is the sum of three and one'),\n", " ('four', 'the cardinal number that is the sum of three and one'),\n", + " ('quadruplet', 'the cardinal number that is the sum of three and one'),\n", + " ('foursome', 'the cardinal number that is the sum of three and one'),\n", " ('quaternary', 'the cardinal number that is the sum of three and one'),\n", - " ('quatern', 'the cardinal number that is the sum of three and one'),\n", - " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n", + " ('quaternity', 'the cardinal number that is the sum of three and one')]},\n", " {'answer': '5',\n", " 'hint': 'synonyms for 5',\n", - " 'clues': [('quintet',\n", + " 'clues': [('pentad',\n", " 'the cardinal number that is the sum of four and one'),\n", - " ('pentad', 'the cardinal number that is the sum of four and one'),\n", - " ('quint', 'the cardinal number that is the sum of four and one'),\n", + " ('quintet', 'the cardinal number that is the sum of four and one'),\n", + " ('fivesome', 'the cardinal number that is the sum of four and one'),\n", " ('fin', 'the cardinal number that is the sum of four and one'),\n", - " ('cinque', 'the cardinal number that is the sum of four and one'),\n", " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n", - " ('fivesome', 'the cardinal number that is the sum of four and one'),\n", - " ('five', 'the cardinal number that is the sum of four and one')]},\n", + " ('quint', 'the cardinal number that is the sum of four and one'),\n", + " ('five', 'the cardinal number that is the sum of four and one'),\n", + " ('cinque', 'the cardinal number that is the sum of four and one')]},\n", " {'answer': '6',\n", " 'hint': 'synonyms for 6',\n", - " 'clues': [('sextuplet',\n", - " 'the cardinal number that is the sum of five and one'),\n", - " ('hexad', 'the cardinal number that is the sum of five and one'),\n", + " 'clues': [('sise', 'the cardinal number that is the sum of five and one'),\n", " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n", - " ('sise', 'the cardinal number that is the sum of five and one'),\n", - " ('sextet', 'the cardinal number that is the sum of five and one'),\n", + " ('sextuplet', 'the cardinal number that is the sum of five and one'),\n", + " ('sestet', 'the cardinal number that is the sum of five and one'),\n", + " ('hexad', 'the cardinal number that is the sum of five and one'),\n", " ('sixer', 'the cardinal number that is the sum of five and one'),\n", - " ('six', 'the cardinal number that is the sum of five and one'),\n", - " ('sestet', 'the cardinal number that is the sum of five and one')]},\n", + " ('sextet', 'the cardinal number that is the sum of five and one'),\n", + " ('six', 'the cardinal number that is the sum of five and one')]},\n", " {'answer': '7',\n", " 'hint': 'synonyms for 7',\n", - " 'clues': [('septet', 'the cardinal number that is the sum of six and one'),\n", + " 'clues': [('seven', 'the cardinal number that is the sum of six and one'),\n", + " ('sevener', 'the cardinal number that is the sum of six and one'),\n", " ('septenary', 'the cardinal number that is the sum of six and one'),\n", - " ('heptad', 'the cardinal number that is the sum of six and one'),\n", - " ('seven', 'the cardinal number that is the sum of six and one'),\n", - " ('sevener', 'the cardinal number that is the sum of six and one')]},\n", + " ('septet', 'the cardinal number that is the sum of six and one'),\n", + " ('heptad', 'the cardinal number that is the sum of six and one')]},\n", " {'answer': '8',\n", " 'hint': 'synonyms for 8',\n", - " 'clues': [('eighter from Decatur',\n", + " 'clues': [('octad',\n", " 'the cardinal number that is the sum of seven and one'),\n", - " ('eight', 'the cardinal number that is the sum of seven and one'),\n", - " ('octonary', 'the cardinal number that is the sum of seven and one'),\n", - " ('octad', 'the cardinal number that is the sum of seven and one'),\n", " ('eighter', 'the cardinal number that is the sum of seven and one'),\n", - " ('octet', 'the cardinal number that is the sum of seven and one'),\n", - " ('ogdoad', 'the cardinal number that is the sum of seven and one')]},\n", + " ('octonary', 'the cardinal number that is the sum of seven and one'),\n", + " ('eighter from Decatur',\n", + " 'the cardinal number that is the sum of seven and one'),\n", + " ('eight', 'the cardinal number that is the sum of seven and one'),\n", + " ('ogdoad', 'the cardinal number that is the sum of seven and one'),\n", + " ('octet', 'the cardinal number that is the sum of seven and one')]},\n", " {'answer': 'abstract',\n", " 'hint': 'synonyms for abstract',\n", " 'clues': [('outline',\n", " 'a sketchy summary of the main points of an argument or theory'),\n", " ('synopsis',\n", " 'a sketchy summary of the main points of an argument or theory'),\n", - " ('precis',\n", - " 'a sketchy summary of the main points of an argument or theory'),\n", " ('abstraction',\n", - " 'a concept or idea not associated with any specific instance')]},\n", + " 'a concept or idea not associated with any specific instance'),\n", + " ('precis',\n", + " 'a sketchy summary of the main points of an argument or theory')]},\n", " {'answer': 'accessory',\n", " 'hint': 'synonyms for accessory',\n", " 'clues': [('accouterment',\n", @@ -24130,106 +24151,108 @@ " ('add-on', 'a supplementary component that improves capability')]},\n", " {'answer': 'ace',\n", " 'hint': 'synonyms for ace',\n", - " 'clues': [('angiotensin converting enzyme',\n", - " 'proteolytic enzyme that converts angiotensin I into angiotensin II'),\n", - " ('one',\n", + " 'clues': [('1',\n", " 'the smallest whole number or a numeral representing this number'),\n", - " ('single',\n", + " ('one',\n", " 'the smallest whole number or a numeral representing this number'),\n", - " ('1', 'the smallest whole number or a numeral representing this number'),\n", " ('unity',\n", + " 'the smallest whole number or a numeral representing this number'),\n", + " ('angiotensin converting enzyme',\n", + " 'proteolytic enzyme that converts angiotensin I into angiotensin II'),\n", + " ('single',\n", " 'the smallest whole number or a numeral representing this number')]},\n", " {'answer': 'acid',\n", " 'hint': 'synonyms for acid',\n", - " 'clues': [('battery-acid', 'street name for lysergic acid diethylamide'),\n", - " ('dose', 'street name for lysergic acid diethylamide'),\n", + " 'clues': [('back breaker', 'street name for lysergic acid diethylamide'),\n", + " ('loony toons', 'street name for lysergic acid diethylamide'),\n", " ('pane', 'street name for lysergic acid diethylamide'),\n", - " ('back breaker', 'street name for lysergic acid diethylamide'),\n", - " ('superman', 'street name for lysergic acid diethylamide'),\n", - " ('window pane', 'street name for lysergic acid diethylamide'),\n", + " ('battery-acid', 'street name for lysergic acid diethylamide'),\n", + " ('dose', 'street name for lysergic acid diethylamide'),\n", " ('dot', 'street name for lysergic acid diethylamide'),\n", - " ('loony toons', 'street name for lysergic acid diethylamide')]},\n", + " ('window pane', 'street name for lysergic acid diethylamide'),\n", + " ('superman', 'street name for lysergic acid diethylamide')]},\n", " {'answer': 'advance',\n", " 'hint': 'synonyms for advance',\n", - " 'clues': [('rise', 'increase in price or value'),\n", + " 'clues': [('forward motion',\n", + " 'the act of moving forward (as toward a goal)'),\n", + " ('approach',\n", + " 'a tentative suggestion designed to elicit the reactions of others'),\n", + " ('advancement', 'the act of moving forward (as toward a goal)'),\n", + " ('improvement', 'a change for the better; progress in development'),\n", + " ('progression', 'a movement forward'),\n", + " ('cash advance', 'an amount paid before it is earned'),\n", " ('feeler',\n", " 'a tentative suggestion designed to elicit the reactions of others'),\n", + " ('progress', 'a movement forward'),\n", " ('betterment', 'a change for the better; progress in development'),\n", - " ('progression', 'the act of moving forward (as toward a goal)'),\n", - " ('progress', 'the act of moving forward (as toward a goal)'),\n", + " ('rise', 'increase in price or value'),\n", " ('overture',\n", - " 'a tentative suggestion designed to elicit the reactions of others'),\n", - " ('improvement', 'a change for the better; progress in development'),\n", - " ('onward motion', 'the act of moving forward (as toward a goal)'),\n", - " ('cash advance', 'an amount paid before it is earned'),\n", - " ('advancement', 'the act of moving forward (as toward a goal)'),\n", - " ('approach',\n", " 'a tentative suggestion designed to elicit the reactions of others')]},\n", " {'answer': 'agglomerate',\n", " 'hint': 'synonyms for agglomerate',\n", " 'clues': [('cumulation',\n", " 'a collection of objects laid on top of each other'),\n", + " ('heap', 'a collection of objects laid on top of each other'),\n", " ('cumulus', 'a collection of objects laid on top of each other'),\n", " ('mound', 'a collection of objects laid on top of each other'),\n", - " ('heap', 'a collection of objects laid on top of each other'),\n", " ('pile', 'a collection of objects laid on top of each other')]},\n", " {'answer': 'aggregate',\n", " 'hint': 'synonyms for aggregate',\n", " 'clues': [('totality', 'the whole amount'),\n", " ('sum', 'the whole amount'),\n", - " ('conglomeration',\n", - " 'a sum total of many heterogenous things taken together'),\n", " ('congeries', 'a sum total of many heterogenous things taken together'),\n", - " ('total', 'the whole amount')]},\n", + " ('total', 'the whole amount'),\n", + " ('conglomeration',\n", + " 'a sum total of many heterogenous things taken together')]},\n", " {'answer': 'animal',\n", " 'hint': 'synonyms for animal',\n", - " 'clues': [('beast',\n", + " 'clues': [('creature',\n", " 'a living organism characterized by voluntary movement'),\n", " ('animate being',\n", " 'a living organism characterized by voluntary movement'),\n", " ('brute', 'a living organism characterized by voluntary movement'),\n", " ('fauna', 'a living organism characterized by voluntary movement'),\n", - " ('creature', 'a living organism characterized by voluntary movement')]},\n", + " ('beast', 'a living organism characterized by voluntary movement')]},\n", " {'answer': 'antiaircraft',\n", " 'hint': 'synonyms for antiaircraft',\n", - " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", + " 'clues': [('ack-ack gun',\n", + " 'artillery designed to shoot upward at airplanes'),\n", + " ('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", " ('antiaircraft gun', 'artillery designed to shoot upward at airplanes'),\n", " ('flak', 'artillery designed to shoot upward at airplanes'),\n", - " ('ack-ack gun', 'artillery designed to shoot upward at airplanes'),\n", " ('ack-ack', 'artillery designed to shoot upward at airplanes')]},\n", " {'answer': 'antic',\n", " 'hint': 'synonyms for antic',\n", - " 'clues': [('trick',\n", + " 'clues': [('prank',\n", " 'a ludicrous or grotesque act done for fun and amusement'),\n", - " ('prank', 'a ludicrous or grotesque act done for fun and amusement'),\n", " ('joke', 'a ludicrous or grotesque act done for fun and amusement'),\n", + " ('trick', 'a ludicrous or grotesque act done for fun and amusement'),\n", " ('put-on', 'a ludicrous or grotesque act done for fun and amusement'),\n", " ('caper', 'a ludicrous or grotesque act done for fun and amusement')]},\n", " {'answer': 'antifungal',\n", " 'hint': 'synonyms for antifungal',\n", - " 'clues': [('fungicide',\n", - " 'any agent that destroys or prevents the growth of fungi'),\n", - " ('antimycotic agent',\n", + " 'clues': [('antimycotic agent',\n", " 'any agent that destroys or prevents the growth of fungi'),\n", + " ('fungicide', 'any agent that destroys or prevents the growth of fungi'),\n", " ('antimycotic',\n", " 'any agent that destroys or prevents the growth of fungi'),\n", " ('antifungal agent',\n", " 'any agent that destroys or prevents the growth of fungi')]},\n", " {'answer': 'arctic',\n", " 'hint': 'synonyms for arctic',\n", - " 'clues': [('gumshoe',\n", + " 'clues': [('rubber',\n", + " 'a waterproof overshoe that protects shoes from water or snow'),\n", + " ('gumshoe',\n", " 'a waterproof overshoe that protects shoes from water or snow'),\n", " ('galosh',\n", " 'a waterproof overshoe that protects shoes from water or snow'),\n", " ('golosh',\n", - " 'a waterproof overshoe that protects shoes from water or snow'),\n", - " ('rubber',\n", " 'a waterproof overshoe that protects shoes from water or snow')]},\n", " {'answer': 'ataractic',\n", " 'hint': 'synonyms for ataractic',\n", - " 'clues': [('tranquilliser',\n", + " 'clues': [('antianxiety agent',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('antianxiety agent',\n", + " ('tranquilizer',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", " ('ataractic drug',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", @@ -24237,1580 +24260,1580 @@ " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n", " {'answer': 'azure',\n", " 'hint': 'synonyms for azure',\n", - " 'clues': [('sapphire', 'a light shade of blue'),\n", - " ('lazuline', 'a light shade of blue'),\n", + " 'clues': [('lazuline', 'a light shade of blue'),\n", " ('cerulean', 'a light shade of blue'),\n", - " ('sky-blue', 'a light shade of blue')]},\n", + " ('sky-blue', 'a light shade of blue'),\n", + " ('sapphire', 'a light shade of blue')]},\n", " {'answer': 'bacchanal',\n", " 'hint': 'synonyms for bacchanal',\n", - " 'clues': [('bacchanalia',\n", + " 'clues': [('debauch',\n", + " 'a wild gathering involving excessive drinking and promiscuity'),\n", + " ('saturnalia',\n", " 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('drunken revelry',\n", " 'a wild gathering involving excessive drinking and promiscuity'),\n", - " ('saturnalia',\n", + " ('orgy', 'a wild gathering involving excessive drinking and promiscuity'),\n", + " ('bacchanalia',\n", " 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('riot', 'a wild gathering involving excessive drinking and promiscuity'),\n", - " ('debauch',\n", - " 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('debauchery',\n", - " 'a wild gathering involving excessive drinking and promiscuity'),\n", - " ('orgy',\n", " 'a wild gathering involving excessive drinking and promiscuity')]},\n", " {'answer': 'back',\n", " 'hint': 'synonyms for back',\n", - " 'clues': [('binding',\n", + " 'clues': [('book binding',\n", " 'the protective covering on the front, back, and spine of a book'),\n", - " ('book binding',\n", + " ('binding',\n", " 'the protective covering on the front, back, and spine of a book'),\n", - " ('backrest', 'a support that you can lean against while sitting'),\n", " ('rear', 'the side that goes last or is not normally seen'),\n", " ('cover',\n", - " 'the protective covering on the front, back, and spine of a book')]},\n", + " 'the protective covering on the front, back, and spine of a book'),\n", + " ('backrest', 'a support that you can lean against while sitting')]},\n", " {'answer': 'base',\n", " 'hint': 'synonyms for base',\n", - " 'clues': [('basis',\n", - " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", - " ('cornerstone',\n", - " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", - " ('groundwork', 'lowest support of a structure'),\n", - " ('radix',\n", - " '(numeration system) the positive integer that is equivalent to one in the next higher counting place'),\n", - " ('substructure', 'lowest support of a structure'),\n", - " ('root',\n", - " '(linguistics) the form of a word after all affixes are removed'),\n", - " ('fundament',\n", + " 'clues': [('fundament',\n", " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", - " (\"al-Qa'ida\",\n", - " 'a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries'),\n", - " ('foot', 'lowest support of a structure'),\n", - " ('base of operations',\n", - " 'installation from which a military force initiates operations'),\n", - " ('nucleotide',\n", - " 'a phosphoric ester of a nucleoside; the basic structural unit of nucleic acids (DNA or RNA)'),\n", " ('root word',\n", " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('floor', 'a lower limit'),\n", + " ('home',\n", + " 'the place where you are stationed and from which missions start and end'),\n", " ('al-Qaeda',\n", " 'a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries'),\n", - " ('radical',\n", - " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('basis', 'the most important or necessary part of something'),\n", " ('theme',\n", " '(linguistics) the form of a word after all affixes are removed'),\n", - " ('bag', 'a place that the runner must touch before scoring'),\n", - " ('floor', 'a lower limit'),\n", " ('infrastructure',\n", " 'the stock of basic facilities and capital equipment needed for the functioning of a country or area'),\n", - " ('foundation', 'lowest support of a structure'),\n", - " ('pedestal', 'a support or foundation'),\n", - " ('understructure', 'lowest support of a structure'),\n", - " ('alkali',\n", - " 'any of various water-soluble compounds capable of turning litmus blue and reacting with an acid to form a salt and water'),\n", - " ('home',\n", - " 'the place where you are stationed and from which missions start and end'),\n", + " ('groundwork',\n", + " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", + " ('root',\n", + " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('foundation',\n", + " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", + " ('bag', 'a place that the runner must touch before scoring'),\n", " ('stem',\n", " '(linguistics) the form of a word after all affixes are removed'),\n", - " ('stand', 'a support or foundation')]},\n", + " ('stand', 'a support or foundation'),\n", + " ('radix',\n", + " '(numeration system) the positive integer that is equivalent to one in the next higher counting place'),\n", + " ('substructure', 'lowest support of a structure'),\n", + " ('nucleotide',\n", + " 'a phosphoric ester of a nucleoside; the basic structural unit of nucleic acids (DNA or RNA)'),\n", + " ('cornerstone',\n", + " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", + " ('radical',\n", + " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('base of operations',\n", + " 'installation from which a military force initiates operations'),\n", + " ('foot', 'lowest support of a structure'),\n", + " ('alkali',\n", + " 'any of various water-soluble compounds capable of turning litmus blue and reacting with an acid to form a salt and water'),\n", + " ('pedestal', 'a support or foundation'),\n", + " ('understructure', 'lowest support of a structure'),\n", + " (\"al-Qa'ida\",\n", + " 'a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries')]},\n", " {'answer': 'bass',\n", " 'hint': 'synonyms for bass',\n", - " 'clues': [('bass voice', 'the lowest adult male singing voice'),\n", + " 'clues': [('freshwater bass',\n", + " 'any of various North American freshwater fish with lean flesh (especially of the genus Micropterus)'),\n", " ('basso', 'the lowest adult male singing voice'),\n", " ('bass part', 'the lowest part in polyphonic music'),\n", - " ('freshwater bass',\n", - " 'any of various North American freshwater fish with lean flesh (especially of the genus Micropterus)'),\n", " ('sea bass',\n", - " 'the lean flesh of a saltwater fish of the family Serranidae')]},\n", + " 'the lean flesh of a saltwater fish of the family Serranidae'),\n", + " ('bass voice', 'the lowest adult male singing voice')]},\n", " {'answer': 'bats',\n", " 'hint': 'synonyms for bats',\n", - " 'clues': [('bat', '(baseball) a turn trying to get a hit'),\n", - " ('at-bat', '(baseball) a turn trying to get a hit'),\n", - " ('squash racquet',\n", + " 'clues': [('cricket bat', 'the club used in playing cricket'),\n", + " ('bat', 'a small racket with a long handle used for playing squash'),\n", + " ('squash racket',\n", " 'a small racket with a long handle used for playing squash'),\n", - " ('cricket bat', 'the club used in playing cricket')]},\n", + " ('at-bat', '(baseball) a turn trying to get a hit')]},\n", " {'answer': 'bearing',\n", " 'hint': 'synonyms for bearing',\n", " 'clues': [('presence', 'dignified manner or conduct'),\n", + " ('heraldic bearing',\n", + " 'heraldry consisting of a design or image depicted on a shield'),\n", " ('mien', 'dignified manner or conduct'),\n", " ('comportment', 'dignified manner or conduct'),\n", - " ('charge',\n", - " 'heraldry consisting of a design or image depicted on a shield'),\n", + " ('heading',\n", + " 'the direction or path along which something moves or along which it lies'),\n", " ('posture', \"characteristic way of bearing one's body\"),\n", " ('aim',\n", " 'the direction or path along which something moves or along which it lies'),\n", - " ('armorial bearing',\n", + " ('charge',\n", " 'heraldry consisting of a design or image depicted on a shield'),\n", - " ('heading',\n", - " 'the direction or path along which something moves or along which it lies'),\n", - " ('heraldic bearing',\n", + " ('armorial bearing',\n", " 'heraldry consisting of a design or image depicted on a shield'),\n", " ('carriage', \"characteristic way of bearing one's body\")]},\n", " {'answer': 'beat',\n", " 'hint': 'synonyms for beat',\n", - " 'clues': [('measure', '(prosody) the accent in a metrical foot of verse'),\n", - " ('pulse',\n", - " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", - " ('meter', '(prosody) the accent in a metrical foot of verse'),\n", - " ('pulsation',\n", - " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", + " 'clues': [('musical rhythm',\n", + " 'the basic rhythmic unit in a piece of music'),\n", + " ('metre', '(prosody) the accent in a metrical foot of verse'),\n", " ('heartbeat',\n", " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", " ('round', 'a regular route for a sentry or policeman'),\n", + " ('pulse',\n", + " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", " ('cadence', '(prosody) the accent in a metrical foot of verse'),\n", - " ('rhythm', 'the basic rhythmic unit in a piece of music'),\n", - " ('musical rhythm', 'the basic rhythmic unit in a piece of music'),\n", - " ('metre', '(prosody) the accent in a metrical foot of verse')]},\n", + " ('pulsation',\n", + " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", + " ('meter', '(prosody) the accent in a metrical foot of verse'),\n", + " ('measure', '(prosody) the accent in a metrical foot of verse'),\n", + " ('rhythm', 'the basic rhythmic unit in a piece of music')]},\n", " {'answer': 'beginning',\n", " 'hint': 'synonyms for beginning',\n", - " 'clues': [('get-go', 'the time at which something is supposed to begin'),\n", - " ('showtime', 'the time at which something is supposed to begin'),\n", - " ('offset', 'the time at which something is supposed to begin'),\n", - " ('first', 'the time at which something is supposed to begin'),\n", - " ('starting time', 'the time at which something is supposed to begin'),\n", - " ('kickoff', 'the time at which something is supposed to begin'),\n", - " ('start', 'the time at which something is supposed to begin'),\n", - " ('commencement', 'the act of starting something'),\n", - " ('outset', 'the time at which something is supposed to begin'),\n", - " ('rootage',\n", + " 'clues': [('commencement', 'the act of starting something'),\n", + " ('start', 'the act of starting something'),\n", + " ('origin',\n", " 'the place where something begins, where it springs into being'),\n", - " ('root', 'the place where something begins, where it springs into being'),\n", " ('source',\n", " 'the place where something begins, where it springs into being'),\n", - " ('origin',\n", - " 'the place where something begins, where it springs into being')]},\n", + " ('rootage',\n", + " 'the place where something begins, where it springs into being'),\n", + " ('starting time', 'the time at which something is supposed to begin'),\n", + " ('first', 'the time at which something is supposed to begin'),\n", + " ('outset', 'the time at which something is supposed to begin'),\n", + " ('showtime', 'the time at which something is supposed to begin'),\n", + " ('get-go', 'the time at which something is supposed to begin'),\n", + " ('root', 'the place where something begins, where it springs into being'),\n", + " ('offset', 'the time at which something is supposed to begin'),\n", + " ('kickoff', 'the time at which something is supposed to begin')]},\n", " {'answer': 'billion',\n", " 'hint': 'synonyms for billion',\n", - " 'clues': [('trillion',\n", + " 'clues': [('gazillion',\n", " 'a very large indefinite number (usually hyperbole)'),\n", " ('1000000000000',\n", " 'the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen'),\n", - " ('zillion', 'a very large indefinite number (usually hyperbole)'),\n", - " ('one million million',\n", - " 'the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen'),\n", " ('one thousand million',\n", - " 'the number that is represented as a one followed by 9 zeros')]},\n", + " 'the number that is represented as a one followed by 9 zeros'),\n", + " ('jillion', 'a very large indefinite number (usually hyperbole)'),\n", + " ('trillion', 'a very large indefinite number (usually hyperbole)'),\n", + " ('one million million',\n", + " 'the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen')]},\n", " {'answer': 'binding',\n", " 'hint': 'synonyms for binding',\n", - " 'clues': [('back',\n", - " 'the protective covering on the front, back, and spine of a book'),\n", - " ('book binding',\n", + " 'clues': [('book binding',\n", " 'the protective covering on the front, back, and spine of a book'),\n", " ('dressing', 'the act of applying a bandage'),\n", - " ('ski binding',\n", - " 'one of a pair of mechanical devices that are attached to a ski and that will grip a ski boot; the bindings should release in case of a fall'),\n", " ('cover',\n", " 'the protective covering on the front, back, and spine of a book'),\n", - " ('bandaging', 'the act of applying a bandage')]},\n", + " ('ski binding',\n", + " 'one of a pair of mechanical devices that are attached to a ski and that will grip a ski boot; the bindings should release in case of a fall'),\n", + " ('bandaging', 'the act of applying a bandage'),\n", + " ('back',\n", + " 'the protective covering on the front, back, and spine of a book')]},\n", " {'answer': 'biquadratic',\n", " 'hint': 'synonyms for biquadratic',\n", - " 'clues': [('quartic polynomial', 'a polynomial of the fourth degree'),\n", + " 'clues': [('biquadratic equation', 'an equation of the fourth degree'),\n", " ('fourth power', 'an algebraic equation of the fourth degree'),\n", - " ('biquadrate', 'an algebraic equation of the fourth degree'),\n", - " ('biquadratic equation', 'an equation of the fourth degree'),\n", - " ('quartic', 'an algebraic equation of the fourth degree')]},\n", + " ('quartic', 'an algebraic equation of the fourth degree'),\n", + " ('biquadratic polynomial', 'a polynomial of the fourth degree'),\n", + " ('biquadrate', 'an algebraic equation of the fourth degree')]},\n", " {'answer': 'blank',\n", " 'hint': 'synonyms for blank',\n", - " 'clues': [('lacuna', 'a blank gap or missing part'),\n", - " ('blank shell',\n", + " 'clues': [('dummy',\n", " 'a cartridge containing an explosive charge but no bullet'),\n", + " ('lacuna', 'a blank gap or missing part'),\n", " ('space',\n", " 'a blank character used to separate successive words in writing or printing'),\n", - " ('dummy', 'a cartridge containing an explosive charge but no bullet')]},\n", + " ('blank shell',\n", + " 'a cartridge containing an explosive charge but no bullet')]},\n", " {'answer': 'blaring',\n", " 'hint': 'synonyms for blaring',\n", - " 'clues': [('blare', 'a loud harsh or strident noise'),\n", - " ('din', 'a loud harsh or strident noise'),\n", + " 'clues': [('din', 'a loud harsh or strident noise'),\n", " ('cacophony', 'a loud harsh or strident noise'),\n", - " ('clamor', 'a loud harsh or strident noise')]},\n", + " ('clamor', 'a loud harsh or strident noise'),\n", + " ('blare', 'a loud harsh or strident noise')]},\n", " {'answer': 'blinking',\n", " 'hint': 'synonyms for blinking',\n", - " 'clues': [('winking', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('blink', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('eye blink', 'a reflex that closes and opens the eyes rapidly')]},\n", + " 'clues': [('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('eye blink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('wink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('blink', 'a reflex that closes and opens the eyes rapidly')]},\n", " {'answer': 'blue',\n", " 'hint': 'synonyms for blue',\n", " 'clues': [('blue air', 'the sky as viewed during daylight'),\n", + " ('blueness',\n", + " 'blue color or pigment; resembling the color of the clear sky in the daytime'),\n", " ('wild blue yonder', 'the sky as viewed during daylight'),\n", - " ('blueing', 'used to whiten laundry or hair or give it a bluish tinge'),\n", + " ('blue sky', 'the sky as viewed during daylight'),\n", " ('amobarbital sodium',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('blue devil',\n", - " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('blueness',\n", - " 'blue color or pigment; resembling the color of the clear sky in the daytime'),\n", + " ('blueing', 'used to whiten laundry or hair or give it a bluish tinge'),\n", " ('blue angel',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('blue sky', 'the sky as viewed during daylight')]},\n", + " ('blue devil',\n", + " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic')]},\n", " {'answer': 'bone',\n", " 'hint': 'synonyms for bone',\n", " 'clues': [('ivory', 'a shade of white the color of bleached bones'),\n", - " ('pearl', 'a shade of white the color of bleached bones'),\n", " ('osseous tissue',\n", " 'the porous calcified substance from which bones are made'),\n", + " ('pearl', 'a shade of white the color of bleached bones'),\n", " ('off-white', 'a shade of white the color of bleached bones')]},\n", " {'answer': 'borderline',\n", " 'hint': 'synonyms for borderline',\n", - " 'clues': [('delimitation', 'a line that indicates a boundary'),\n", + " 'clues': [('boundary line', 'a line that indicates a boundary'),\n", + " ('mete', 'a line that indicates a boundary'),\n", " ('border', 'a line that indicates a boundary'),\n", - " ('boundary line', 'a line that indicates a boundary'),\n", - " ('mete', 'a line that indicates a boundary')]},\n", + " ('delimitation', 'a line that indicates a boundary')]},\n", " {'answer': 'bottom',\n", " 'hint': 'synonyms for bottom',\n", - " 'clues': [('bottom of the inning',\n", + " 'clues': [('underside', 'the lower side of anything'),\n", + " ('bottom of the inning',\n", " 'the second half of an inning; while the home team is at bat'),\n", - " ('freighter', 'a cargo ship'),\n", - " ('underside', 'the lower side of anything'),\n", - " ('bottomland', 'low-lying alluvial land near a river'),\n", - " ('merchant ship', 'a cargo ship'),\n", " ('merchantman', 'a cargo ship'),\n", " ('bed', 'a depression forming the ground under a body of water'),\n", + " ('merchant ship', 'a cargo ship'),\n", + " ('freighter', 'a cargo ship'),\n", + " ('bottomland', 'low-lying alluvial land near a river'),\n", " ('undersurface', 'the lower side of anything')]},\n", " {'answer': 'bound',\n", " 'hint': 'synonyms for bound',\n", - " 'clues': [('bounce',\n", - " 'a light, self-propelled movement upwards or forwards'),\n", + " 'clues': [('edge', 'a line determining the limits of an area'),\n", " ('bounds',\n", " 'the line or plane indicating the limit or extent of something'),\n", - " ('leap', 'a light, self-propelled movement upwards or forwards'),\n", " ('spring', 'a light, self-propelled movement upwards or forwards'),\n", - " ('boundary',\n", - " 'the line or plane indicating the limit or extent of something'),\n", + " ('boundary', 'a line determining the limits of an area'),\n", + " ('leaping', 'a light, self-propelled movement upwards or forwards'),\n", " ('limit', 'the greatest possible degree of something'),\n", - " ('saltation', 'a light, self-propelled movement upwards or forwards'),\n", - " ('edge', 'a line determining the limits of an area')]},\n", + " ('bounce', 'a light, self-propelled movement upwards or forwards'),\n", + " ('saltation', 'a light, self-propelled movement upwards or forwards')]},\n", " {'answer': 'brag',\n", " 'hint': 'synonyms for brag',\n", - " 'clues': [('line-shooting', 'an instance of boastful talk'),\n", + " 'clues': [('vaporing', 'an instance of boastful talk'),\n", + " ('bragging', 'an instance of boastful talk'),\n", " ('gasconade', 'an instance of boastful talk'),\n", - " ('crowing', 'an instance of boastful talk'),\n", - " ('vaporing', 'an instance of boastful talk'),\n", - " ('bragging', 'an instance of boastful talk')]},\n", + " ('line-shooting', 'an instance of boastful talk'),\n", + " ('crow', 'an instance of boastful talk')]},\n", " {'answer': 'bragging',\n", " 'hint': 'synonyms for bragging',\n", - " 'clues': [('line-shooting', 'an instance of boastful talk'),\n", + " 'clues': [('vaporing', 'an instance of boastful talk'),\n", " ('gasconade', 'an instance of boastful talk'),\n", - " ('crowing', 'an instance of boastful talk'),\n", - " ('vaporing', 'an instance of boastful talk'),\n", - " ('brag', 'an instance of boastful talk')]},\n", + " ('brag', 'an instance of boastful talk'),\n", + " ('line-shooting', 'an instance of boastful talk'),\n", + " ('crow', 'an instance of boastful talk')]},\n", " {'answer': 'breeding',\n", " 'hint': 'synonyms for breeding',\n", - " 'clues': [('bringing up',\n", - " 'helping someone grow up to be an accepted member of the community'),\n", - " ('education',\n", - " 'the result of good upbringing (especially knowledge of correct social behavior)'),\n", + " 'clues': [('reproduction',\n", + " 'the sexual activity of conceiving and bearing offspring'),\n", " ('rearing',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('gentility', 'elegance by virtue of fineness of manner and expression'),\n", - " ('procreation',\n", - " 'the sexual activity of conceiving and bearing offspring'),\n", - " ('genteelness',\n", - " 'elegance by virtue of fineness of manner and expression'),\n", " ('training',\n", " 'the result of good upbringing (especially knowledge of correct social behavior)'),\n", - " ('upbringing',\n", + " ('fostering',\n", + " 'helping someone grow up to be an accepted member of the community'),\n", + " ('nurture',\n", " 'helping someone grow up to be an accepted member of the community'),\n", " ('raising',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('reproduction',\n", - " 'the sexual activity of conceiving and bearing offspring'),\n", + " ('gentility', 'elegance by virtue of fineness of manner and expression'),\n", " ('facts of life',\n", " 'the sexual activity of conceiving and bearing offspring'),\n", - " ('fosterage',\n", + " ('education',\n", + " 'the result of good upbringing (especially knowledge of correct social behavior)'),\n", + " ('procreation',\n", + " 'the sexual activity of conceiving and bearing offspring'),\n", + " ('upbringing',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('nurture',\n", + " ('genteelness',\n", + " 'elegance by virtue of fineness of manner and expression'),\n", + " ('bringing up',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('fostering',\n", + " ('fosterage',\n", " 'helping someone grow up to be an accepted member of the community')]},\n", " {'answer': 'broadside',\n", " 'hint': 'synonyms for broadside',\n", - " 'clues': [('philippic', 'a speech of violent denunciation'),\n", - " ('throwaway',\n", + " 'clues': [('circular',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('flier',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('broadsheet',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('tirade', 'a speech of violent denunciation'),\n", - " ('flyer',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('circular',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('handbill',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('bill',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('throwaway',\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('philippic', 'a speech of violent denunciation'),\n", + " ('flyer',\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('tirade', 'a speech of violent denunciation')]},\n", " {'answer': 'brute',\n", " 'hint': 'synonyms for brute',\n", - " 'clues': [('beast',\n", + " 'clues': [('creature',\n", " 'a living organism characterized by voluntary movement'),\n", " ('animate being',\n", " 'a living organism characterized by voluntary movement'),\n", " ('animal', 'a living organism characterized by voluntary movement'),\n", " ('fauna', 'a living organism characterized by voluntary movement'),\n", - " ('creature', 'a living organism characterized by voluntary movement')]},\n", + " ('beast', 'a living organism characterized by voluntary movement')]},\n", " {'answer': 'buff',\n", " 'hint': 'synonyms for buff',\n", - " 'clues': [('caramel', 'a medium to dark tan color'),\n", - " ('caramel brown', 'a medium to dark tan color'),\n", - " ('yellowish brown', 'a medium to dark tan color'),\n", - " ('raw sienna', 'a medium to dark tan color'),\n", + " 'clues': [('raw sienna', 'a medium to dark tan color'),\n", " ('buffer',\n", - " 'an implement consisting of soft material mounted on a block; used for polishing (as in manicuring)')]},\n", + " 'an implement consisting of soft material mounted on a block; used for polishing (as in manicuring)'),\n", + " ('caramel brown', 'a medium to dark tan color'),\n", + " ('caramel', 'a medium to dark tan color'),\n", + " ('yellowish brown', 'a medium to dark tan color')]},\n", " {'answer': 'burlesque',\n", " 'hint': 'synonyms for burlesque',\n", - " 'clues': [('lampoon',\n", + " 'clues': [('sendup',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", - " ('charade',\n", + " ('travesty',\n", + " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", + " ('pasquinade',\n", + " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", + " ('takeoff',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", " ('parody',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", - " ('pasquinade',\n", + " ('mockery',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", " ('spoof',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", " ('put-on',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", - " ('travesty',\n", - " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", - " ('takeoff',\n", - " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", - " ('mockery',\n", + " ('charade',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\"),\n", - " ('sendup',\n", + " ('lampoon',\n", " \"a composition that imitates or misrepresents somebody's style, usually in a humorous way\")]},\n", " {'answer': 'bust',\n", " 'hint': 'synonyms for bust',\n", - " 'clues': [('bout', 'an occasion for excessive eating or drinking'),\n", - " ('flop', 'a complete failure'),\n", + " 'clues': [('flop', 'a complete failure'),\n", + " ('bout', 'an occasion for excessive eating or drinking'),\n", " ('binge', 'an occasion for excessive eating or drinking'),\n", " ('tear', 'an occasion for excessive eating or drinking'),\n", " ('fizzle', 'a complete failure')]},\n", " {'answer': 'c',\n", " 'hint': 'synonyms for c',\n", - " 'clues': [('ampere-second',\n", - " 'a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second'),\n", - " ('hundred', 'ten 10s'),\n", - " ('vitamin C',\n", + " 'clues': [('ascorbic acid',\n", " 'a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy'),\n", + " ('cytosine',\n", + " 'a base found in DNA and RNA and derived from pyrimidine; pairs with guanine'),\n", " ('deoxycytidine monophosphate',\n", " 'one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)'),\n", - " ('century', 'ten 10s'),\n", + " ('degree Celsius', 'a degree on the centigrade scale of temperature'),\n", + " ('100', 'ten 10s'),\n", + " ('atomic number 6',\n", + " 'an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds'),\n", " ('coulomb',\n", " 'a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second'),\n", + " ('century', 'ten 10s'),\n", + " ('hundred', 'ten 10s'),\n", " ('snow', 'street names for cocaine'),\n", - " ('coke', 'street names for cocaine'),\n", + " ('degree centigrade', 'a degree on the centigrade scale of temperature'),\n", + " ('one C', 'ten 10s'),\n", " ('blow', 'street names for cocaine'),\n", - " ('light speed',\n", - " 'the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second'),\n", + " ('ampere-second',\n", + " 'a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second'),\n", + " ('vitamin C',\n", + " 'a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy'),\n", " ('nose candy', 'street names for cocaine'),\n", - " ('degree Celsius', 'a degree on the centigrade scale of temperature'),\n", - " ('speed of light',\n", + " ('coke', 'street names for cocaine'),\n", + " ('light speed',\n", " 'the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second'),\n", - " ('100', 'ten 10s'),\n", - " ('degree centigrade', 'a degree on the centigrade scale of temperature'),\n", - " ('cytosine',\n", - " 'a base found in DNA and RNA and derived from pyrimidine; pairs with guanine'),\n", " ('carbon',\n", " 'an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds'),\n", - " ('atomic number 6',\n", - " 'an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds'),\n", - " ('one C', 'ten 10s'),\n", - " ('ascorbic acid',\n", - " 'a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy')]},\n", + " ('speed of light',\n", + " 'the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second')]},\n", " {'answer': 'caesarean',\n", " 'hint': 'synonyms for caesarean',\n", - " 'clues': [('caesarian delivery',\n", + " 'clues': [('cesarean section',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian section',\n", + " ('caesarian delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarean',\n", + " ('cesarian',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", " ('abdominal delivery',\n", - " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('caesarian',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n", " {'answer': 'caesarian',\n", " 'hint': 'synonyms for caesarian',\n", - " 'clues': [('caesarian delivery',\n", + " 'clues': [('cesarean section',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('caesarean',\n", + " ('caesarian delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian section',\n", + " ('cesarian',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('abdominal delivery',\n", + " ('caesarean',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian',\n", + " ('abdominal delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n", " {'answer': 'calm',\n", " 'hint': 'synonyms for calm',\n", - " 'clues': [('equanimity', 'steadiness of mind under stress'),\n", - " ('composure', 'steadiness of mind under stress'),\n", - " ('calmness', 'steadiness of mind under stress'),\n", - " ('calm air',\n", - " 'wind moving at less than 1 knot; 0 on the Beaufort scale')]},\n", + " 'clues': [('calmness', 'steadiness of mind under stress'),\n", + " ('calm air', 'wind moving at less than 1 knot; 0 on the Beaufort scale'),\n", + " ('equanimity', 'steadiness of mind under stress'),\n", + " ('composure', 'steadiness of mind under stress')]},\n", " {'answer': 'camp',\n", " 'hint': 'synonyms for camp',\n", - " 'clues': [('clique',\n", - " 'an exclusive circle of people with a common purpose'),\n", - " ('encampment',\n", + " 'clues': [('cantonment',\n", " 'temporary living quarters specially built by the army for soldiers'),\n", + " ('clique', 'an exclusive circle of people with a common purpose'),\n", " ('pack', 'an exclusive circle of people with a common purpose'),\n", + " ('encampment',\n", + " 'temporary living quarters specially built by the army for soldiers'),\n", + " ('coterie', 'an exclusive circle of people with a common purpose'),\n", + " ('ingroup', 'an exclusive circle of people with a common purpose'),\n", + " ('inner circle', 'an exclusive circle of people with a common purpose'),\n", " ('summer camp',\n", " 'a site where care and activities are provided for children during the summer months'),\n", - " ('inner circle', 'an exclusive circle of people with a common purpose'),\n", " ('bivouac',\n", " 'temporary living quarters specially built by the army for soldiers'),\n", - " ('ingroup', 'an exclusive circle of people with a common purpose'),\n", - " ('coterie', 'an exclusive circle of people with a common purpose'),\n", - " ('cantonment',\n", - " 'temporary living quarters specially built by the army for soldiers'),\n", " ('refugee camp',\n", " 'shelter for persons displaced by war or political oppression or for religious beliefs')]},\n", " {'answer': 'capital',\n", " 'hint': 'synonyms for capital',\n", " 'clues': [('working capital',\n", " 'assets available for use in the production of further assets'),\n", - " ('cap', 'the upper part of a column that supports the entablature'),\n", - " ('chapiter', 'the upper part of a column that supports the entablature'),\n", " ('majuscule',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", + " ('upper-case letter',\n", + " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", " ('capital letter',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", + " ('chapiter', 'the upper part of a column that supports the entablature'),\n", + " ('cap', 'the upper part of a column that supports the entablature'),\n", " ('uppercase',\n", - " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", - " ('upper-case letter',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis')]},\n", " {'answer': 'caramel',\n", " 'hint': 'synonyms for caramel',\n", - " 'clues': [('buff', 'a medium to dark tan color'),\n", - " ('raw sienna', 'a medium to dark tan color'),\n", + " 'clues': [('raw sienna', 'a medium to dark tan color'),\n", + " ('buff', 'a medium to dark tan color'),\n", + " ('caramelized sugar', 'burnt sugar; used to color and flavor food'),\n", " ('caramel brown', 'a medium to dark tan color'),\n", - " ('yellowish brown', 'a medium to dark tan color'),\n", - " ('caramelized sugar', 'burnt sugar; used to color and flavor food')]},\n", + " ('yellowish brown', 'a medium to dark tan color')]},\n", " {'answer': 'caramel_brown',\n", " 'hint': 'synonyms for caramel brown',\n", - " 'clues': [('yellowish brown', 'a medium to dark tan color'),\n", + " 'clues': [('raw sienna', 'a medium to dark tan color'),\n", + " ('buff', 'a medium to dark tan color'),\n", " ('caramel', 'a medium to dark tan color'),\n", - " ('raw sienna', 'a medium to dark tan color'),\n", - " ('buff', 'a medium to dark tan color')]},\n", + " ('yellowish brown', 'a medium to dark tan color')]},\n", " {'answer': 'catching',\n", " 'hint': 'synonyms for catching',\n", - " 'clues': [('spotting',\n", + " 'clues': [('espial',\n", " 'the act of detecting something; catching sight of something'),\n", - " ('espial', 'the act of detecting something; catching sight of something'),\n", " ('detection',\n", " 'the act of detecting something; catching sight of something'),\n", + " ('spotting',\n", + " 'the act of detecting something; catching sight of something'),\n", " ('contracting', 'becoming infected'),\n", " ('spying',\n", " 'the act of detecting something; catching sight of something')]},\n", " {'answer': 'cc',\n", " 'hint': 'synonyms for cc',\n", - " 'clues': [('cubic centimeter',\n", + " 'clues': [('milliliter',\n", " 'a metric unit of volume equal to one thousandth of a liter'),\n", - " ('ml', 'a metric unit of volume equal to one thousandth of a liter'),\n", - " ('milliliter',\n", + " ('cubic centimetre',\n", " 'a metric unit of volume equal to one thousandth of a liter'),\n", + " ('ml', 'a metric unit of volume equal to one thousandth of a liter'),\n", " ('mil', 'a metric unit of volume equal to one thousandth of a liter')]},\n", " {'answer': 'cd',\n", " 'hint': 'synonyms for cd',\n", - " 'clues': [('candela',\n", + " 'clues': [('standard candle',\n", " \"the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin\"),\n", - " ('standard candle',\n", + " ('cadmium',\n", + " 'a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores'),\n", + " ('candle',\n", " \"the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin\"),\n", - " ('compact disk',\n", + " ('compact disc',\n", " 'a digitally encoded recording on an optical disk that is smaller than a phonograph record; played back by a laser'),\n", - " ('candle',\n", + " ('candela',\n", " \"the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin\"),\n", - " ('cadmium',\n", - " 'a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores'),\n", - " ('atomic number 48',\n", - " 'a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores'),\n", " ('certificate of deposit',\n", - " 'a debt instrument issued by a bank; usually pays interest')]},\n", + " 'a debt instrument issued by a bank; usually pays interest'),\n", + " ('atomic number 48',\n", + " 'a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores')]},\n", " {'answer': 'center',\n", " 'hint': 'synonyms for center',\n", - " 'clues': [('mall',\n", - " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n", - " ('middle',\n", - " 'an area that is approximately central within some larger region'),\n", - " ('shopping mall',\n", + " 'clues': [('pith',\n", + " 'the choicest or most essential or most vital part of some idea or experience'),\n", + " ('mall',\n", " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n", - " ('centerfield',\n", - " 'the piece of ground in the outfield directly ahead of the catcher'),\n", - " ('centre', 'a building dedicated to a particular activity'),\n", - " ('sum',\n", + " ('marrow',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", " ('heart',\n", " 'an area that is approximately central within some larger region'),\n", - " ('pith',\n", + " ('nub',\n", + " 'the choicest or most essential or most vital part of some idea or experience'),\n", + " ('centre', 'the object upon which interest and attention focuses'),\n", + " ('sum',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('midpoint',\n", - " 'a point equidistant from the ends of a line or the extremities of a figure'),\n", " ('center of attention',\n", " 'the object upon which interest and attention focuses'),\n", - " ('shopping centre',\n", - " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n", - " ('essence',\n", - " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('meat',\n", + " ('gist',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('kernel',\n", + " ('shopping mall',\n", + " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n", + " ('eye',\n", + " 'an area that is approximately central within some larger region'),\n", + " ('center field',\n", + " 'the piece of ground in the outfield directly ahead of the catcher'),\n", + " ('shopping center',\n", + " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n", + " ('middle',\n", + " 'an area that is approximately central within some larger region'),\n", + " ('nitty-gritty',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('core',\n", + " ('inwardness',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", " ('substance',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('nub',\n", + " ('essence',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('plaza',\n", - " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace'),\n", - " ('gist',\n", + " ('kernel',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('eye',\n", - " 'an area that is approximately central within some larger region'),\n", " ('heart and soul',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('nitty-gritty',\n", + " ('midpoint',\n", + " 'a point equidistant from the ends of a line or the extremities of a figure'),\n", + " ('core',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('inwardness',\n", + " ('meat',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('marrow',\n", - " 'the choicest or most essential or most vital part of some idea or experience')]},\n", + " ('plaza',\n", + " 'mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace')]},\n", " {'answer': 'cerulean',\n", " 'hint': 'synonyms for cerulean',\n", - " 'clues': [('azure', 'a light shade of blue'),\n", - " ('sapphire', 'a light shade of blue'),\n", - " ('lazuline', 'a light shade of blue'),\n", - " ('sky-blue', 'a light shade of blue')]},\n", + " 'clues': [('lazuline', 'a light shade of blue'),\n", + " ('sky-blue', 'a light shade of blue'),\n", + " ('azure', 'a light shade of blue'),\n", + " ('sapphire', 'a light shade of blue')]},\n", " {'answer': 'cesarean',\n", " 'hint': 'synonyms for cesarean',\n", - " 'clues': [('caesarian delivery',\n", + " 'clues': [('cesarean section',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('caesarean',\n", + " ('caesarian delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian section',\n", + " ('cesarian',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('abdominal delivery',\n", + " ('caesarean',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian',\n", + " ('abdominal delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n", " {'answer': 'cesarian',\n", " 'hint': 'synonyms for cesarian',\n", - " 'clues': [('caesarian delivery',\n", + " 'clues': [('cesarean section',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('caesarean',\n", + " ('caesarian delivery',\n", + " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", + " ('caesarian',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian section',\n", + " ('cesarean',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", " ('abdominal delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n", " {'answer': 'chance',\n", " 'hint': 'synonyms for chance',\n", - " 'clues': [('fortune',\n", + " 'clues': [('luck',\n", + " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another'),\n", + " ('fortune',\n", " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another'),\n", " ('hazard',\n", " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another'),\n", " ('probability',\n", - " 'a measure of how likely it is that some event will occur; a number expressing the ratio of favorable cases to the whole number of cases possible'),\n", - " ('luck',\n", - " 'an unknown and unpredictable phenomenon that causes an event to result one way rather than another')]},\n", + " 'a measure of how likely it is that some event will occur; a number expressing the ratio of favorable cases to the whole number of cases possible')]},\n", " {'answer': 'charcoal',\n", " 'hint': 'synonyms for charcoal',\n", - " 'clues': [('fusain', 'a stick of black carbon material used for drawing'),\n", - " ('oxford grey', 'a very dark grey color'),\n", + " 'clues': [('charcoal grey', 'a very dark grey color'),\n", + " ('oxford gray', 'a very dark grey color'),\n", + " ('fusain', 'a stick of black carbon material used for drawing'),\n", " ('wood coal',\n", - " 'a carbonaceous material obtained by heating wood or other organic matter in the absence of air'),\n", - " ('charcoal gray', 'a very dark grey color')]},\n", + " 'a carbonaceous material obtained by heating wood or other organic matter in the absence of air')]},\n", " {'answer': 'chic',\n", " 'hint': 'synonyms for chic',\n", - " 'clues': [('chicness', 'elegance by virtue of being fashionable'),\n", + " 'clues': [('modishness', 'elegance by virtue of being fashionable'),\n", + " ('chichi', 'elegance by virtue of being fashionable'),\n", + " ('smartness', 'elegance by virtue of being fashionable'),\n", " ('stylishness', 'elegance by virtue of being fashionable'),\n", " ('last word', 'elegance by virtue of being fashionable'),\n", - " ('smartness', 'elegance by virtue of being fashionable'),\n", - " ('swank', 'elegance by virtue of being fashionable'),\n", - " ('chichi', 'elegance by virtue of being fashionable'),\n", - " ('modishness', 'elegance by virtue of being fashionable')]},\n", + " ('chicness', 'elegance by virtue of being fashionable'),\n", + " ('swank', 'elegance by virtue of being fashionable')]},\n", " {'answer': 'chichi',\n", " 'hint': 'synonyms for chichi',\n", - " 'clues': [('chicness', 'elegance by virtue of being fashionable'),\n", + " 'clues': [('modishness', 'elegance by virtue of being fashionable'),\n", + " ('chic', 'elegance by virtue of being fashionable'),\n", " ('stylishness', 'elegance by virtue of being fashionable'),\n", " ('last word', 'elegance by virtue of being fashionable'),\n", + " ('chicness', 'elegance by virtue of being fashionable'),\n", " ('smartness', 'elegance by virtue of being fashionable'),\n", - " ('swank', 'elegance by virtue of being fashionable'),\n", - " ('modishness', 'elegance by virtue of being fashionable'),\n", - " ('chic', 'elegance by virtue of being fashionable')]},\n", + " ('swank', 'elegance by virtue of being fashionable')]},\n", " {'answer': 'choice',\n", " 'hint': 'synonyms for choice',\n", " 'clues': [('option', 'the act of choosing or selecting'),\n", - " ('pick', 'the act of choosing or selecting'),\n", - " ('selection', 'the person or thing chosen or selected'),\n", " ('alternative',\n", - " 'one of a number of things from which only one can be chosen')]},\n", + " 'one of a number of things from which only one can be chosen'),\n", + " ('pick', 'the act of choosing or selecting'),\n", + " ('selection', 'the person or thing chosen or selected')]},\n", " {'answer': 'circular',\n", " 'hint': 'synonyms for circular',\n", - " 'clues': [('bill',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('throwaway',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('flyer',\n", + " 'clues': [('broadside',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('flier',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('broadsheet',\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('handbill',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('broadsheet',\n", + " ('flyer',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('broadside',\n", + " ('bill',\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('throwaway',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n", " {'answer': 'cleft',\n", " 'hint': 'synonyms for cleft',\n", - " 'clues': [('scissure', 'a long narrow opening'),\n", - " ('crevice', 'a long narrow opening'),\n", + " 'clues': [('crevice', 'a long narrow opening'),\n", + " ('crack', 'a long narrow opening'),\n", " ('fissure', 'a long narrow opening'),\n", - " ('crack', 'a long narrow opening')]},\n", + " ('scissure', 'a long narrow opening')]},\n", " {'answer': 'close',\n", " 'hint': 'synonyms for close',\n", - " 'clues': [('closing', 'the last section of a communication'),\n", - " ('stopping point', 'the temporal end; the concluding time'),\n", - " ('finale', 'the temporal end; the concluding time'),\n", - " ('finis', 'the temporal end; the concluding time'),\n", - " ('conclusion', 'the last section of a communication'),\n", + " 'clues': [('finis', 'the concluding part of any performance'),\n", + " ('closing curtain', 'the concluding part of any performance'),\n", " ('end', 'the last section of a communication'),\n", + " ('conclusion', 'the last section of a communication'),\n", + " ('finale', 'the concluding part of any performance'),\n", + " ('stopping point', 'the temporal end; the concluding time'),\n", " ('last', 'the temporal end; the concluding time'),\n", - " ('closing curtain', 'the concluding part of any performance')]},\n", + " ('closing', 'the last section of a communication')]},\n", " {'answer': 'closing',\n", " 'hint': 'synonyms for closing',\n", - " 'clues': [('mop up', 'a concluding action'),\n", + " 'clues': [('completion', 'a concluding action'),\n", + " ('windup', 'a concluding action'),\n", " ('closedown', 'termination of operations'),\n", - " ('shutdown', 'termination of operations'),\n", - " ('closure', 'termination of operations'),\n", + " ('mop up', 'a concluding action'),\n", " ('shutting', 'the act of closing something'),\n", - " ('conclusion', 'the last section of a communication'),\n", - " ('culmination', 'a concluding action'),\n", - " ('windup', 'a concluding action'),\n", " ('end', 'the last section of a communication'),\n", + " ('conclusion', 'the last section of a communication'),\n", " ('close', 'the last section of a communication'),\n", - " ('completion', 'a concluding action')]},\n", + " ('shutdown', 'termination of operations'),\n", + " ('closure',\n", + " 'approaching a particular destination; a coming closer; a narrowing of a gap'),\n", + " ('culmination', 'a concluding action')]},\n", " {'answer': 'cold',\n", " 'hint': 'synonyms for cold',\n", - " 'clues': [('frigidness', 'the absence of heat'),\n", - " ('coldness', 'the absence of heat'),\n", + " 'clues': [('coldness', 'the sensation produced by low temperatures'),\n", + " ('frigidity', 'the absence of heat'),\n", " ('low temperature', 'the absence of heat'),\n", - " ('frigidity', 'the absence of heat')]},\n", + " ('frigidness', 'the absence of heat')]},\n", " {'answer': 'color',\n", " 'hint': 'synonyms for color',\n", - " 'clues': [('coloration', 'the timbre of a musical sound'),\n", + " 'clues': [('colouring',\n", + " 'a visual attribute of things that results from the light they emit or transmit or reflect'),\n", + " ('colouring material', 'any material used for its color'),\n", + " ('colouration', 'the timbre of a musical sound'),\n", + " ('semblance',\n", + " 'an outward or token appearance or form that is deliberately misleading'),\n", " ('people of color',\n", " 'a race with skin pigmentation different from the white race (especially Blacks)'),\n", - " ('colour', 'the timbre of a musical sound'),\n", - " ('gloss',\n", - " 'an outward or token appearance or form that is deliberately misleading'),\n", - " ('coloring material', 'any material used for its color'),\n", - " ('coloring',\n", - " 'a visual attribute of things that results from the light they emit or transmit or reflect'),\n", " ('vividness', 'interest and variety and intensity'),\n", - " ('semblance',\n", + " ('gloss',\n", " 'an outward or token appearance or form that is deliberately misleading')]},\n", " {'answer': 'colour',\n", " 'hint': 'synonyms for colour',\n", - " 'clues': [('people of color',\n", - " 'a race with skin pigmentation different from the white race (especially Blacks)'),\n", - " ('coloration', 'the timbre of a musical sound'),\n", - " ('gloss',\n", - " 'an outward or token appearance or form that is deliberately misleading'),\n", - " ('coloring material', 'any material used for its color'),\n", - " ('color', 'the timbre of a musical sound'),\n", + " 'clues': [('color', 'any material used for its color'),\n", " ('colouring',\n", " 'a visual attribute of things that results from the light they emit or transmit or reflect'),\n", - " ('vividness', 'interest and variety and intensity'),\n", + " ('colouring material', 'any material used for its color'),\n", + " ('colouration', 'the timbre of a musical sound'),\n", " ('semblance',\n", + " 'an outward or token appearance or form that is deliberately misleading'),\n", + " ('people of color',\n", + " 'a race with skin pigmentation different from the white race (especially Blacks)'),\n", + " ('vividness', 'interest and variety and intensity'),\n", + " ('gloss',\n", " 'an outward or token appearance or form that is deliberately misleading')]},\n", " {'answer': 'comestible',\n", " 'hint': 'synonyms for comestible',\n", - " 'clues': [('victual', 'any substance that can be used as food'),\n", + " 'clues': [('edible', 'any substance that can be used as food'),\n", " ('eatable', 'any substance that can be used as food'),\n", - " ('edible', 'any substance that can be used as food'),\n", + " ('victuals', 'any substance that can be used as food'),\n", " ('pabulum', 'any substance that can be used as food')]},\n", " {'answer': 'coming',\n", " 'hint': 'synonyms for coming',\n", - " 'clues': [('approach', 'the act of drawing spatially closer to something'),\n", - " ('advent',\n", - " 'arrival that has been awaited (especially of something momentous)'),\n", - " ('sexual climax',\n", + " 'clues': [('sexual climax',\n", " 'the moment of most intense pleasure in sexual intercourse'),\n", + " ('approaching', 'the act of drawing spatially closer to something'),\n", " ('climax', 'the moment of most intense pleasure in sexual intercourse'),\n", - " ('orgasm', 'the moment of most intense pleasure in sexual intercourse')]},\n", + " ('orgasm', 'the moment of most intense pleasure in sexual intercourse'),\n", + " ('advent',\n", + " 'arrival that has been awaited (especially of something momentous)')]},\n", " {'answer': 'commonplace',\n", " 'hint': 'synonyms for commonplace',\n", - " 'clues': [('cliche', 'a trite or obvious remark'),\n", + " 'clues': [('bromide', 'a trite or obvious remark'),\n", + " ('banality', 'a trite or obvious remark'),\n", " ('platitude', 'a trite or obvious remark'),\n", - " ('bromide', 'a trite or obvious remark'),\n", - " ('banality', 'a trite or obvious remark')]},\n", + " ('cliche', 'a trite or obvious remark')]},\n", " {'answer': 'compact',\n", " 'hint': 'synonyms for compact',\n", - " 'clues': [('powder compact',\n", - " \"a small cosmetics case with a mirror; to be carried in a woman's purse\"),\n", + " 'clues': [('compact car', 'a small and economical car'),\n", " ('covenant',\n", " 'a signed written agreement between two or more parties (nations) to perform some action'),\n", - " ('compact car', 'a small and economical car'),\n", " ('concordat',\n", - " 'a signed written agreement between two or more parties (nations) to perform some action')]},\n", + " 'a signed written agreement between two or more parties (nations) to perform some action'),\n", + " ('powder compact',\n", + " \"a small cosmetics case with a mirror; to be carried in a woman's purse\")]},\n", " {'answer': 'connective',\n", " 'hint': 'synonyms for connective',\n", " 'clues': [('conjunction',\n", " 'an uninflected function word that serves to conjoin words or phrases or clauses or sentences'),\n", " ('conjunctive',\n", " 'an uninflected function word that serves to conjoin words or phrases or clauses or sentences'),\n", - " ('connecter', 'an instrumentality that connects'),\n", " ('connexion', 'an instrumentality that connects'),\n", + " ('connector', 'an instrumentality that connects'),\n", " ('continuative',\n", " 'an uninflected function word that serves to conjoin words or phrases or clauses or sentences')]},\n", " {'answer': 'constituent',\n", " 'hint': 'synonyms for constituent',\n", - " 'clues': [('component', 'an abstract part of something'),\n", - " ('element',\n", + " 'clues': [('component',\n", " 'an artifact that is one of the individual parts of which a composite entity is made up; especially a part that can be separated from or attached to a system'),\n", " ('component part',\n", " 'something determined in relation to something that includes it'),\n", - " ('portion',\n", - " 'something determined in relation to something that includes it'),\n", - " ('grammatical constituent',\n", - " '(grammar) a word or phrase or clause forming part of a larger grammatical construction'),\n", " ('factor', 'an abstract part of something'),\n", + " ('element', 'an abstract part of something'),\n", " ('ingredient', 'an abstract part of something'),\n", + " ('grammatical constituent',\n", + " '(grammar) a word or phrase or clause forming part of a larger grammatical construction'),\n", + " ('portion',\n", + " 'something determined in relation to something that includes it'),\n", " ('part',\n", " 'something determined in relation to something that includes it')]},\n", " {'answer': 'content',\n", " 'hint': 'synonyms for content',\n", - " 'clues': [('cognitive content',\n", - " 'the sum or range of what has been perceived, discovered, or learned'),\n", - " ('message', 'what a communication that is about something is about'),\n", + " 'clues': [('subject matter',\n", + " 'what a communication that is about something is about'),\n", " ('substance', 'what a communication that is about something is about'),\n", - " ('capacity', 'the amount that can be contained'),\n", + " ('mental object',\n", + " 'the sum or range of what has been perceived, discovered, or learned'),\n", " ('depicted object',\n", " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n", " ('subject',\n", " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n", - " ('subject matter',\n", - " 'what a communication that is about something is about'),\n", - " ('mental object',\n", - " 'the sum or range of what has been perceived, discovered, or learned')]},\n", + " ('cognitive content',\n", + " 'the sum or range of what has been perceived, discovered, or learned'),\n", + " ('capacity', 'the amount that can be contained'),\n", + " ('message', 'what a communication that is about something is about')]},\n", " {'answer': 'contrabass',\n", " 'hint': 'synonyms for contrabass',\n", - " 'clues': [('bass fiddle',\n", + " 'clues': [('double bass',\n", " 'largest and lowest member of the violin family'),\n", - " ('string bass', 'largest and lowest member of the violin family'),\n", + " ('bass viol', 'largest and lowest member of the violin family'),\n", " ('bull fiddle', 'largest and lowest member of the violin family'),\n", - " ('double bass', 'largest and lowest member of the violin family'),\n", - " ('bass viol', 'largest and lowest member of the violin family')]},\n", + " ('bass fiddle', 'largest and lowest member of the violin family'),\n", + " ('string bass', 'largest and lowest member of the violin family')]},\n", " {'answer': 'contraceptive',\n", " 'hint': 'synonyms for contraceptive',\n", - " 'clues': [('contraceptive device',\n", - " 'an agent or device intended to prevent conception'),\n", - " ('prophylactic device',\n", + " 'clues': [('prophylactic device',\n", " 'an agent or device intended to prevent conception'),\n", - " ('preventative', 'an agent or device intended to prevent conception'),\n", + " ('preventive', 'an agent or device intended to prevent conception'),\n", " ('birth control device',\n", + " 'an agent or device intended to prevent conception'),\n", + " ('contraceptive device',\n", " 'an agent or device intended to prevent conception')]},\n", " {'answer': 'cool',\n", " 'hint': 'synonyms for cool',\n", " 'clues': [('assuredness', 'great coolness and composure under strain'),\n", + " ('sang-froid', 'great coolness and composure under strain'),\n", " ('poise', 'great coolness and composure under strain'),\n", - " ('aplomb', 'great coolness and composure under strain'),\n", - " ('sang-froid', 'great coolness and composure under strain')]},\n", + " ('aplomb', 'great coolness and composure under strain')]},\n", " {'answer': 'counter',\n", " 'hint': 'synonyms for counter',\n", - " 'clues': [('rejoinder',\n", + " 'clues': [('sideboard',\n", + " 'a piece of furniture that stands at the side of a dining room; has shelves and drawers'),\n", + " ('rejoinder',\n", " 'a quick reply to a question or remark (especially a witty or critical one)'),\n", - " ('parry', 'a return punch (especially by a boxer)'),\n", - " ('return',\n", + " ('retort',\n", + " 'a quick reply to a question or remark (especially a witty or critical one)'),\n", + " ('replication',\n", " 'a quick reply to a question or remark (especially a witty or critical one)'),\n", - " ('heel counter', 'a piece of leather forming the back of a shoe or boot'),\n", " ('riposte',\n", " 'a quick reply to a question or remark (especially a witty or critical one)'),\n", - " ('sideboard',\n", - " 'a piece of furniture that stands at the side of a dining room; has shelves and drawers'),\n", - " ('counterpunch', 'a return punch (especially by a boxer)'),\n", + " ('heel counter', 'a piece of leather forming the back of a shoe or boot'),\n", " ('buffet',\n", " 'a piece of furniture that stands at the side of a dining room; has shelves and drawers'),\n", - " ('retort',\n", - " 'a quick reply to a question or remark (especially a witty or critical one)'),\n", + " ('counterpunch', 'a return punch (especially by a boxer)'),\n", " ('tabulator',\n", " 'a calculator that keeps a record of the number of times something happens'),\n", - " ('comeback',\n", + " ('return',\n", " 'a quick reply to a question or remark (especially a witty or critical one)'),\n", - " ('replication',\n", + " ('parry', 'a return punch (especially by a boxer)'),\n", + " ('comeback',\n", " 'a quick reply to a question or remark (especially a witty or critical one)')]},\n", " {'answer': 'crack',\n", " 'hint': 'synonyms for crack',\n", - " 'clues': [('wisecrack', 'witty remark'),\n", - " ('fissure', 'a long narrow opening'),\n", - " ('snap', 'a sudden sharp noise'),\n", - " ('go', 'a usually brief attempt'),\n", + " 'clues': [('snap', 'a sudden sharp noise'),\n", + " ('cranny', 'a long narrow depression in a surface'),\n", + " ('cleft', 'a long narrow opening'),\n", + " ('fissure', 'a long narrow depression in a surface'),\n", + " ('wisecrack', 'witty remark'),\n", " ('scissure', 'a long narrow opening'),\n", - " ('pass', 'a usually brief attempt'),\n", " ('chap', 'a long narrow depression in a surface'),\n", " ('whirl', 'a usually brief attempt'),\n", - " ('crevice', 'a long narrow opening'),\n", - " ('cranny', 'a long narrow depression in a surface'),\n", - " ('quip', 'witty remark'),\n", - " ('crack cocaine',\n", - " 'a purified and potent form of cocaine that is smoked rather than snorted; highly addictive'),\n", - " ('cracking', 'a sudden sharp noise'),\n", + " ('cracking', 'the act of cracking something'),\n", + " ('sally', 'witty remark'),\n", + " ('fling', 'a usually brief attempt'),\n", + " ('gap', 'a narrow opening'),\n", + " ('crevice', 'a long narrow depression in a surface'),\n", + " ('go', 'a usually brief attempt'),\n", " ('tornado',\n", " 'a purified and potent form of cocaine that is smoked rather than snorted; highly addictive'),\n", - " ('fling', 'a usually brief attempt'),\n", - " ('sally', 'witty remark'),\n", + " ('quip', 'witty remark'),\n", + " ('pass', 'a usually brief attempt'),\n", " ('offer', 'a usually brief attempt'),\n", - " ('cleft', 'a long narrow opening'),\n", - " ('gap', 'a narrow opening'),\n", + " ('crack cocaine',\n", + " 'a purified and potent form of cocaine that is smoked rather than snorted; highly addictive'),\n", " ('fracture', 'the act of cracking something')]},\n", " {'answer': 'crackers',\n", " 'hint': 'synonyms for crackers',\n", - " 'clues': [('snapper',\n", - " 'a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends'),\n", - " ('cracker',\n", + " 'clues': [('cracker',\n", + " 'a thin crisp wafer made of flour and water with or without leavening and shortening; unsweetened or semisweet'),\n", + " ('firecracker',\n", " 'firework consisting of a small explosive charge and fuse in a heavy paper casing'),\n", - " ('cracker bonbon',\n", - " 'a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends'),\n", " ('banger',\n", " 'firework consisting of a small explosive charge and fuse in a heavy paper casing'),\n", - " ('firecracker',\n", - " 'firework consisting of a small explosive charge and fuse in a heavy paper casing')]},\n", + " ('snapper',\n", + " 'a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends'),\n", + " ('cracker bonbon',\n", + " 'a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends')]},\n", " {'answer': 'crackle',\n", " 'hint': 'synonyms for crackle',\n", " 'clues': [('crepitation', 'the sharp sound of snapping noises'),\n", - " ('crackleware',\n", - " 'glazed china with a network of fine cracks on the surface'),\n", " ('crackle china',\n", " 'glazed china with a network of fine cracks on the surface'),\n", + " ('crackleware',\n", + " 'glazed china with a network of fine cracks on the surface'),\n", " ('crackling', 'the sharp sound of snapping noises')]},\n", " {'answer': 'crank',\n", " 'hint': 'synonyms for crank',\n", - " 'clues': [('trash',\n", - " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", - " ('chicken feed',\n", - " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", - " ('shabu',\n", + " 'clues': [('chalk',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", - " ('starter',\n", - " 'a hand tool consisting of a rotating shaft with parallel handle'),\n", " ('glass',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", " ('methamphetamine',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", " ('methamphetamine hydrochloride',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", + " ('trash',\n", + " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", " ('ice',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", " ('deoxyephedrine',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", - " ('chalk',\n", + " ('starter',\n", + " 'a hand tool consisting of a rotating shaft with parallel handle'),\n", + " ('chicken feed',\n", + " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", + " ('shabu',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant'),\n", " ('meth',\n", " 'an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant')]},\n", " {'answer': 'cross',\n", " 'hint': 'synonyms for cross',\n", - " 'clues': [('hybridizing',\n", - " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n", - " ('crisscross', 'a marking that consists of lines that cross each other'),\n", - " ('hybridisation',\n", + " 'clues': [('crossbreeding',\n", " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n", " ('mark', 'a marking that consists of lines that cross each other'),\n", - " ('crossbreeding',\n", + " ('hybridisation',\n", " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n", " ('interbreeding',\n", " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n", + " ('crisscross', 'a marking that consists of lines that cross each other'),\n", + " ('hybridizing',\n", + " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids'),\n", " ('crossing',\n", " '(genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids')]},\n", " {'answer': 'crowing',\n", " 'hint': 'synonyms for crowing',\n", - " 'clues': [('line-shooting', 'an instance of boastful talk'),\n", + " 'clues': [('vaporing', 'an instance of boastful talk'),\n", " ('gasconade', 'an instance of boastful talk'),\n", - " ('vaporing', 'an instance of boastful talk'),\n", " ('bragging', 'an instance of boastful talk'),\n", - " ('crow', 'an instance of boastful talk'),\n", - " ('brag', 'an instance of boastful talk')]},\n", + " ('brag', 'an instance of boastful talk'),\n", + " ('line-shooting', 'an instance of boastful talk'),\n", + " ('crow', 'an instance of boastful talk')]},\n", " {'answer': 'crude',\n", " 'hint': 'synonyms for crude',\n", - " 'clues': [('oil', 'a dark oil consisting mainly of hydrocarbons'),\n", - " ('crude oil', 'a dark oil consisting mainly of hydrocarbons'),\n", - " ('fossil oil', 'a dark oil consisting mainly of hydrocarbons'),\n", + " 'clues': [('petroleum', 'a dark oil consisting mainly of hydrocarbons'),\n", + " ('oil', 'a dark oil consisting mainly of hydrocarbons'),\n", " ('rock oil', 'a dark oil consisting mainly of hydrocarbons'),\n", - " ('petroleum', 'a dark oil consisting mainly of hydrocarbons')]},\n", + " ('fossil oil', 'a dark oil consisting mainly of hydrocarbons'),\n", + " ('crude oil', 'a dark oil consisting mainly of hydrocarbons')]},\n", " {'answer': 'crying',\n", " 'hint': 'synonyms for crying',\n", - " 'clues': [('battle cry', 'a slogan used to rally support for a cause'),\n", + " 'clues': [('war cry', 'a slogan used to rally support for a cause'),\n", " ('cry', 'a loud utterance; often in protest or opposition'),\n", + " ('yell', 'a loud utterance; often in protest or opposition'),\n", " ('watchword', 'a slogan used to rally support for a cause'),\n", - " ('outcry', 'a loud utterance; often in protest or opposition'),\n", - " ('yell', 'a loud utterance of emotion (especially when inarticulate)'),\n", - " ('shout', 'a loud utterance; often in protest or opposition'),\n", + " ('battle cry', 'a slogan used to rally support for a cause'),\n", " ('call', 'a loud utterance; often in protest or opposition'),\n", - " ('war cry', 'a slogan used to rally support for a cause'),\n", + " ('vociferation', 'a loud utterance; often in protest or opposition'),\n", " ('rallying cry', 'a slogan used to rally support for a cause'),\n", + " ('shout', 'a loud utterance; often in protest or opposition'),\n", + " ('weeping',\n", + " 'the process of shedding tears (usually accompanied by sobs or other inarticulate sounds)'),\n", " ('tears',\n", " 'the process of shedding tears (usually accompanied by sobs or other inarticulate sounds)'),\n", - " ('vociferation', 'a loud utterance; often in protest or opposition'),\n", - " ('weeping',\n", - " 'the process of shedding tears (usually accompanied by sobs or other inarticulate sounds)')]},\n", + " ('outcry', 'a loud utterance; often in protest or opposition')]},\n", " {'answer': 'cunning',\n", " 'hint': 'synonyms for cunning',\n", - " 'clues': [('craft',\n", + " 'clues': [('foxiness',\n", " 'shrewdness as demonstrated by being skilled in deception'),\n", - " ('slyness', 'shrewdness as demonstrated by being skilled in deception'),\n", - " ('guile', 'shrewdness as demonstrated by being skilled in deception'),\n", " ('wiliness', 'shrewdness as demonstrated by being skilled in deception'),\n", - " ('foxiness', 'shrewdness as demonstrated by being skilled in deception'),\n", + " ('craft', 'shrewdness as demonstrated by being skilled in deception'),\n", + " ('slyness', 'shrewdness as demonstrated by being skilled in deception'),\n", " ('craftiness',\n", - " 'shrewdness as demonstrated by being skilled in deception')]},\n", + " 'shrewdness as demonstrated by being skilled in deception'),\n", + " ('guile', 'shrewdness as demonstrated by being skilled in deception')]},\n", " {'answer': 'custom',\n", " 'hint': 'synonyms for custom',\n", - " 'clues': [('impost', 'money collected under a tariff'),\n", + " 'clues': [('usage', 'accepted or habitual practice'),\n", " ('tradition', 'a specific practice of long standing'),\n", + " ('customs', 'money collected under a tariff'),\n", + " ('impost', 'money collected under a tariff'),\n", " ('usance', 'accepted or habitual practice'),\n", - " ('customs duty', 'money collected under a tariff'),\n", - " ('usage', 'accepted or habitual practice'),\n", - " ('customs', 'money collected under a tariff')]},\n", + " ('customs duty', 'money collected under a tariff')]},\n", " {'answer': 'cut',\n", " 'hint': 'synonyms for cut',\n", - " 'clues': [('excision',\n", - " 'the omission that is made when an editorial change shortens a written passage'),\n", - " ('cold shoulder', 'a refusal to recognize someone you know'),\n", - " ('swing', \"in baseball; a batter's attempt to hit a pitched ball\"),\n", - " ('cutting off',\n", - " 'the act of shortening something by chopping off the ends'),\n", - " ('gash',\n", + " 'clues': [('gash',\n", " 'a trench resembling a furrow that was made by erosion or excavation'),\n", - " ('baseball swing',\n", - " \"in baseball; a batter's attempt to hit a pitched ball\"),\n", - " ('cutting', 'the division of a deck of cards before dealing'),\n", + " ('stinger', 'a remark capable of wounding mentally'),\n", + " ('cutting', 'the act of cutting something into parts'),\n", + " ('excision',\n", + " 'the omission that is made when an editorial change shortens a written passage'),\n", + " ('snub', 'a refusal to recognize someone you know'),\n", " ('track',\n", " 'a distinct selection of music from a recording or a compact disc'),\n", - " ('undercut', '(sports) a stroke that puts reverse spin on the ball'),\n", - " ('snub', 'a refusal to recognize someone you know'),\n", - " ('stinger', 'a remark capable of wounding mentally'),\n", " ('deletion',\n", " 'the omission that is made when an editorial change shortens a written passage'),\n", + " ('baseball swing',\n", + " \"in baseball; a batter's attempt to hit a pitched ball\"),\n", + " ('swing', \"in baseball; a batter's attempt to hit a pitched ball\"),\n", + " ('cutting off',\n", + " 'the act of shortening something by chopping off the ends'),\n", + " ('undercut', '(sports) a stroke that puts reverse spin on the ball'),\n", " ('cut of meat',\n", - " 'a piece of meat that has been cut from an animal carcass')]},\n", + " 'a piece of meat that has been cut from an animal carcass'),\n", + " ('cold shoulder', 'a refusal to recognize someone you know')]},\n", " {'answer': 'cutting',\n", " 'hint': 'synonyms for cutting',\n", - " 'clues': [('press clipping',\n", - " 'an excerpt cut from a newspaper or magazine'),\n", - " ('cut', 'the act of shortening something by chopping off the ends'),\n", - " ('press cutting', 'an excerpt cut from a newspaper or magazine'),\n", - " ('cutting off',\n", - " 'the act of shortening something by chopping off the ends'),\n", - " ('carving',\n", - " 'removing parts from hard material to create a desired pattern or shape'),\n", + " 'clues': [('press cutting', 'an excerpt cut from a newspaper or magazine'),\n", + " ('film editing',\n", + " 'the activity of selecting the scenes to be shown and putting them together to create a film'),\n", + " ('cut', 'the division of a deck of cards before dealing'),\n", " ('clipping', 'an excerpt cut from a newspaper or magazine'),\n", - " ('thinning', 'the act of diluting something'),\n", " ('newspaper clipping', 'an excerpt cut from a newspaper or magazine'),\n", - " ('film editing',\n", - " 'the activity of selecting the scenes to be shown and putting them together to create a film')]},\n", + " ('press clipping', 'an excerpt cut from a newspaper or magazine'),\n", + " ('thinning', 'the act of diluting something'),\n", + " ('carving',\n", + " 'removing parts from hard material to create a desired pattern or shape'),\n", + " ('cutting off',\n", + " 'the act of shortening something by chopping off the ends')]},\n", " {'answer': 'd',\n", " 'hint': 'synonyms for d',\n", - " 'clues': [('vitamin D', 'a fat-soluble vitamin that prevents rickets'),\n", - " ('cholecalciferol', 'a fat-soluble vitamin that prevents rickets'),\n", + " 'clues': [('cholecalciferol',\n", + " 'a fat-soluble vitamin that prevents rickets'),\n", + " ('ergocalciferol', 'a fat-soluble vitamin that prevents rickets'),\n", " ('calciferol', 'a fat-soluble vitamin that prevents rickets'),\n", + " ('viosterol', 'a fat-soluble vitamin that prevents rickets'),\n", + " ('vitamin D', 'a fat-soluble vitamin that prevents rickets'),\n", " ('500',\n", " 'the cardinal number that is the product of one hundred and five'),\n", - " ('ergocalciferol', 'a fat-soluble vitamin that prevents rickets'),\n", - " ('viosterol', 'a fat-soluble vitamin that prevents rickets'),\n", " ('five hundred',\n", " 'the cardinal number that is the product of one hundred and five')]},\n", " {'answer': 'dainty',\n", " 'hint': 'synonyms for dainty',\n", - " 'clues': [('goody', 'something considered choice to eat'),\n", - " ('treat', 'something considered choice to eat'),\n", + " 'clues': [('delicacy', 'something considered choice to eat'),\n", + " ('goody', 'something considered choice to eat'),\n", " ('kickshaw', 'something considered choice to eat'),\n", - " ('delicacy', 'something considered choice to eat')]},\n", + " ('treat', 'something considered choice to eat')]},\n", " {'answer': 'damn',\n", " 'hint': 'synonyms for damn',\n", - " 'clues': [(\"tinker's damn\", 'something of little value'),\n", + " 'clues': [(\"tinker's dam\", 'something of little value'),\n", " ('shucks', 'something of little value'),\n", - " ('darn', 'something of little value'),\n", + " ('hoot', 'something of little value'),\n", " ('red cent', 'something of little value'),\n", - " ('shit', 'something of little value'),\n", - " ('hoot', 'something of little value')]},\n", + " ('darn', 'something of little value'),\n", + " ('shit', 'something of little value')]},\n", " {'answer': 'daring',\n", " 'hint': 'synonyms for daring',\n", - " 'clues': [('dare', 'a challenge to do something dangerous or foolhardy'),\n", - " ('boldness',\n", + " 'clues': [('hardihood',\n", " 'the trait of being willing to undertake things that involve risk or danger'),\n", " ('hardiness',\n", " 'the trait of being willing to undertake things that involve risk or danger'),\n", - " ('hardihood',\n", + " ('dare', 'a challenge to do something dangerous or foolhardy'),\n", + " ('boldness',\n", " 'the trait of being willing to undertake things that involve risk or danger')]},\n", " {'answer': 'dark',\n", " 'hint': 'synonyms for dark',\n", - " 'clues': [('darkness', 'an unilluminated area'),\n", - " ('shadow', 'an unilluminated area'),\n", - " ('nighttime',\n", + " 'clues': [('nighttime',\n", " 'the time after sunset and before sunrise while it is dark outside'),\n", + " ('darkness', 'an unenlightened state'),\n", " ('night',\n", - " 'the time after sunset and before sunrise while it is dark outside')]},\n", + " 'the time after sunset and before sunrise while it is dark outside'),\n", + " ('shadow', 'an unilluminated area')]},\n", " {'answer': 'declarative',\n", " 'hint': 'synonyms for declarative',\n", - " 'clues': [('indicative mood',\n", + " 'clues': [('declarative mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", - " ('common mood',\n", + " ('indicative mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", " ('fact mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", - " ('indicative',\n", + " ('common mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", - " ('declarative mood',\n", + " ('indicative',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact')]},\n", " {'answer': 'derivative',\n", " 'hint': 'synonyms for derivative',\n", - " 'clues': [('first derivative',\n", + " 'clues': [('differential coefficient',\n", " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", - " ('differential coefficient',\n", + " ('differential',\n", " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", - " ('derivative instrument',\n", - " 'a financial instrument whose value is based on another security'),\n", " ('derived function',\n", " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", - " ('differential',\n", - " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx')]},\n", + " ('first derivative',\n", + " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", + " ('derivative instrument',\n", + " 'a financial instrument whose value is based on another security')]},\n", " {'answer': 'determinant',\n", " 'hint': 'synonyms for determinant',\n", - " 'clues': [('determining factor',\n", - " 'a determining or causal element or factor'),\n", - " ('determiner', 'a determining or causal element or factor'),\n", - " ('epitope',\n", + " 'clues': [('epitope',\n", + " 'the site on the surface of an antigen molecule to which an antibody attaches itself'),\n", + " ('determining factor', 'a determining or causal element or factor'),\n", + " ('antigenic determinant',\n", " 'the site on the surface of an antigen molecule to which an antibody attaches itself'),\n", " ('causal factor', 'a determining or causal element or factor'),\n", " ('determinative', 'a determining or causal element or factor'),\n", - " ('antigenic determinant',\n", - " 'the site on the surface of an antigen molecule to which an antibody attaches itself')]},\n", + " ('determiner', 'a determining or causal element or factor')]},\n", " {'answer': 'determinative',\n", " 'hint': 'synonyms for determinative',\n", - " 'clues': [('determining factor',\n", - " 'a determining or causal element or factor'),\n", - " ('determiner', 'a determining or causal element or factor'),\n", - " ('determinant', 'a determining or causal element or factor'),\n", + " 'clues': [('determinant', 'a determining or causal element or factor'),\n", + " ('determining factor', 'a determining or causal element or factor'),\n", + " ('determiner',\n", + " 'one of a limited class of noun modifiers that determine the referents of noun phrases'),\n", " ('causal factor', 'a determining or causal element or factor')]},\n", " {'answer': 'deterrent',\n", " 'hint': 'synonyms for deterrent',\n", - " 'clues': [('hinderance',\n", + " 'clues': [('impediment',\n", " 'something immaterial that interferes with or delays action or progress'),\n", " ('check',\n", " 'something immaterial that interferes with or delays action or progress'),\n", - " ('balk',\n", + " ('hinderance',\n", " 'something immaterial that interferes with or delays action or progress'),\n", - " ('impediment',\n", + " ('balk',\n", " 'something immaterial that interferes with or delays action or progress'),\n", " ('handicap',\n", " 'something immaterial that interferes with or delays action or progress')]},\n", " {'answer': 'diagonal',\n", " 'hint': 'synonyms for diagonal',\n", - " 'clues': [('separatrix',\n", + " 'clues': [('slash',\n", + " 'a punctuation mark (/) used to separate related items of information'),\n", + " ('bias',\n", + " 'a line or cut across a fabric that is not at right angles to a side of the fabric'),\n", + " ('stroke',\n", " 'a punctuation mark (/) used to separate related items of information'),\n", - " ('slash',\n", + " ('separatrix',\n", " 'a punctuation mark (/) used to separate related items of information'),\n", " ('virgule',\n", " 'a punctuation mark (/) used to separate related items of information'),\n", - " ('stroke',\n", - " 'a punctuation mark (/) used to separate related items of information'),\n", - " ('bias',\n", - " 'a line or cut across a fabric that is not at right angles to a side of the fabric'),\n", " ('solidus',\n", " 'a punctuation mark (/) used to separate related items of information')]},\n", " {'answer': 'dickey',\n", " 'hint': 'synonyms for dickey',\n", - " 'clues': [('dickie-seat',\n", - " 'a small third seat in the back of an old-fashioned two-seater'),\n", - " ('shirtfront',\n", + " 'clues': [('shirtfront',\n", " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n", " ('dicky',\n", - " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n", + " 'a small third seat in the back of an old-fashioned two-seater'),\n", + " ('dickey-seat',\n", + " 'a small third seat in the back of an old-fashioned two-seater'),\n", " ('dickie',\n", " \"a man's detachable insert (usually starched) to simulate the front of a shirt\")]},\n", " {'answer': 'dicky',\n", " 'hint': 'synonyms for dicky',\n", - " 'clues': [('dickey',\n", + " 'clues': [('shirtfront',\n", " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n", - " ('dickie-seat',\n", - " 'a small third seat in the back of an old-fashioned two-seater'),\n", - " ('shirtfront',\n", + " ('dickey',\n", " \"a man's detachable insert (usually starched) to simulate the front of a shirt\"),\n", + " ('dickey-seat',\n", + " 'a small third seat in the back of an old-fashioned two-seater'),\n", " ('dickie',\n", - " \"a man's detachable insert (usually starched) to simulate the front of a shirt\")]},\n", + " 'a small third seat in the back of an old-fashioned two-seater')]},\n", " {'answer': 'differential',\n", " 'hint': 'synonyms for differential',\n", - " 'clues': [('derivative',\n", + " 'clues': [('differential coefficient',\n", " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", - " ('first derivative',\n", - " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", - " ('differential coefficient',\n", + " ('derivative',\n", " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", " ('differential gear',\n", " 'a bevel gear that permits rotation of two shafts at different speeds; used on the rear axle of automobiles to allow wheels to rotate at different speeds on curves'),\n", " ('derived function',\n", + " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx'),\n", + " ('first derivative',\n", " 'the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx')]},\n", " {'answer': 'dirt',\n", " 'hint': 'synonyms for dirt',\n", " 'clues': [('shite', 'obscene terms for feces'),\n", - " ('poop', 'obscene terms for feces'),\n", " ('crap', 'obscene terms for feces'),\n", - " ('turd', 'obscene terms for feces'),\n", " ('malicious gossip',\n", " 'disgraceful gossip about the private lives of other people'),\n", " ('scandal', 'disgraceful gossip about the private lives of other people'),\n", + " ('turd', 'obscene terms for feces'),\n", + " ('poop', 'obscene terms for feces'),\n", " ('soil',\n", " \"the part of the earth's surface consisting of humus and disintegrated rock\")]},\n", " {'answer': 'double',\n", " 'hint': 'synonyms for double',\n", - " 'clues': [('two-baser',\n", - " 'a base hit on which the batter stops safely at second base'),\n", + " 'clues': [('doubling',\n", + " 'raising the stakes in a card game by a factor of 2'),\n", " ('two-bagger',\n", " 'a base hit on which the batter stops safely at second base'),\n", " ('two-base hit',\n", " 'a base hit on which the batter stops safely at second base'),\n", - " ('doubling', 'raising the stakes in a card game by a factor of 2')]},\n", + " ('two-baser',\n", + " 'a base hit on which the batter stops safely at second base')]},\n", " {'answer': 'dress',\n", " 'hint': 'synonyms for dress',\n", " 'clues': [('wearing apparel', 'clothing in general'),\n", - " ('clothes', 'clothing in general'),\n", " ('attire',\n", " 'clothing of a distinctive style or for a particular occasion'),\n", " ('apparel', 'clothing in general'),\n", " ('frock', 'a one-piece garment for a woman; has skirt and bodice'),\n", + " ('clothes', 'clothing in general'),\n", " ('garb',\n", " 'clothing of a distinctive style or for a particular occasion')]},\n", " {'answer': 'eager',\n", " 'hint': 'synonyms for eager',\n", - " 'clues': [('tidal bore',\n", + " 'clues': [('eagre',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", " ('aegir',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", - " ('bore',\n", + " ('tidal bore',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", - " ('eagre',\n", + " ('bore',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)')]},\n", " {'answer': 'eatable',\n", " 'hint': 'synonyms for eatable',\n", - " 'clues': [('victual', 'any substance that can be used as food'),\n", + " 'clues': [('edible', 'any substance that can be used as food'),\n", " ('comestible', 'any substance that can be used as food'),\n", - " ('edible', 'any substance that can be used as food'),\n", + " ('victuals', 'any substance that can be used as food'),\n", " ('pabulum', 'any substance that can be used as food')]},\n", " {'answer': 'ebony',\n", " 'hint': 'synonyms for ebony',\n", - " 'clues': [('sable', 'a very dark black'),\n", - " ('jet black', 'a very dark black'),\n", - " ('soot black', 'a very dark black'),\n", + " 'clues': [('coal black', 'a very dark black'),\n", " ('pitch black', 'a very dark black'),\n", - " ('coal black', 'a very dark black')]},\n", + " ('sable', 'a very dark black'),\n", + " ('jet black', 'a very dark black'),\n", + " ('soot black', 'a very dark black')]},\n", " {'answer': 'edible',\n", " 'hint': 'synonyms for edible',\n", - " 'clues': [('victual', 'any substance that can be used as food'),\n", + " 'clues': [('eatable', 'any substance that can be used as food'),\n", " ('comestible', 'any substance that can be used as food'),\n", - " ('eatable', 'any substance that can be used as food'),\n", + " ('victuals', 'any substance that can be used as food'),\n", " ('pabulum', 'any substance that can be used as food')]},\n", " {'answer': 'eight',\n", " 'hint': 'synonyms for eight',\n", - " 'clues': [('eighter from Decatur',\n", + " 'clues': [('octad',\n", " 'the cardinal number that is the sum of seven and one'),\n", - " ('octad', 'the cardinal number that is the sum of seven and one'),\n", + " ('8', 'the cardinal number that is the sum of seven and one'),\n", + " ('eighter', 'the cardinal number that is the sum of seven and one'),\n", " ('eight-spot',\n", " 'one of four playing cards in a deck with eight pips on the face'),\n", " ('octonary', 'the cardinal number that is the sum of seven and one'),\n", - " ('8', 'the cardinal number that is the sum of seven and one'),\n", - " ('eighter', 'the cardinal number that is the sum of seven and one'),\n", - " ('octet', 'the cardinal number that is the sum of seven and one'),\n", - " ('ogdoad', 'the cardinal number that is the sum of seven and one')]},\n", + " ('eighter from Decatur',\n", + " 'the cardinal number that is the sum of seven and one'),\n", + " ('ogdoad', 'the cardinal number that is the sum of seven and one'),\n", + " ('octet', 'the cardinal number that is the sum of seven and one')]},\n", " {'answer': 'elevated',\n", " 'hint': 'synonyms for elevated',\n", - " 'clues': [('elevated railroad',\n", + " 'clues': [('elevated railway',\n", " 'a railway that is powered by electricity and that runs on a track that is raised above the street level'),\n", - " ('el',\n", + " ('overhead railway',\n", " 'a railway that is powered by electricity and that runs on a track that is raised above the street level'),\n", - " ('elevated railway',\n", + " ('elevated railroad',\n", " 'a railway that is powered by electricity and that runs on a track that is raised above the street level'),\n", - " ('overhead railway',\n", + " ('el',\n", " 'a railway that is powered by electricity and that runs on a track that is raised above the street level')]},\n", " {'answer': 'empyrean',\n", " 'hint': 'synonyms for empyrean',\n", - " 'clues': [('sphere',\n", + " 'clues': [('firmament',\n", " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n", - " ('vault of heaven',\n", + " ('welkin',\n", " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n", " ('celestial sphere',\n", " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n", - " ('firmament',\n", + " ('vault of heaven',\n", " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n", - " ('welkin',\n", + " ('sphere',\n", " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected'),\n", " ('heavens',\n", " 'the apparent surface of the imaginary sphere on which celestial bodies appear to be projected')]},\n", " {'answer': 'essential',\n", " 'hint': 'synonyms for essential',\n", - " 'clues': [('necessity', 'anything indispensable'),\n", - " ('necessary', 'anything indispensable'),\n", + " 'clues': [('requirement', 'anything indispensable'),\n", " ('requisite', 'anything indispensable'),\n", - " ('requirement', 'anything indispensable')]},\n", + " ('necessary', 'anything indispensable'),\n", + " ('necessity', 'anything indispensable')]},\n", " {'answer': 'evil',\n", " 'hint': 'synonyms for evil',\n", " 'clues': [('evilness',\n", " 'the quality of being morally wrong in principle or practice'),\n", + " ('wickedness', 'morally objectionable behavior'),\n", " ('immorality', 'morally objectionable behavior'),\n", - " ('iniquity', 'morally objectionable behavior'),\n", - " ('wickedness', 'morally objectionable behavior')]},\n", + " ('iniquity', 'morally objectionable behavior')]},\n", " {'answer': 'excess',\n", " 'hint': 'synonyms for excess',\n", - " 'clues': [('overindulgence', 'excessive indulgence'),\n", - " ('surplus', 'a quantity much larger than is needed'),\n", - " ('surplusage', 'a quantity much larger than is needed'),\n", + " 'clues': [('nimiety', 'a quantity much larger than is needed'),\n", + " ('overindulgence', 'excessive indulgence'),\n", " ('inordinateness',\n", " 'immoderation as a consequence of going beyond sufficient or permitted limits'),\n", + " ('surplusage', 'a quantity much larger than is needed'),\n", " ('excessiveness',\n", " 'immoderation as a consequence of going beyond sufficient or permitted limits'),\n", - " ('nimiety', 'a quantity much larger than is needed')]},\n", + " ('surplus', 'a quantity much larger than is needed')]},\n", " {'answer': 'fancy',\n", " 'hint': 'synonyms for fancy',\n", - " 'clues': [('illusion', 'something many people believe that is false'),\n", + " 'clues': [('fantasy', 'something many people believe that is false'),\n", + " ('illusion', 'something many people believe that is false'),\n", " ('fondness', 'a predisposition to like something'),\n", - " ('fantasy', 'something many people believe that is false'),\n", " ('phantasy', 'something many people believe that is false'),\n", " ('partiality', 'a predisposition to like something')]},\n", " {'answer': 'first',\n", " 'hint': 'synonyms for first',\n", - " 'clues': [('get-go', 'the time at which something is supposed to begin'),\n", - " ('showtime', 'the time at which something is supposed to begin'),\n", - " ('offset', 'the time at which something is supposed to begin'),\n", - " ('starting time', 'the time at which something is supposed to begin'),\n", - " ('low',\n", - " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n", + " 'clues': [('number one', 'the first element in a countable series'),\n", " ('beginning', 'the time at which something is supposed to begin'),\n", - " ('kickoff', 'the time at which something is supposed to begin'),\n", + " ('first-class honours degree', 'an honours degree of the highest class'),\n", + " ('get-go', 'the time at which something is supposed to begin'),\n", + " ('low gear',\n", + " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n", + " ('starting time', 'the time at which something is supposed to begin'),\n", + " ('number 1', 'the first element in a countable series'),\n", + " ('commencement', 'the time at which something is supposed to begin'),\n", + " ('outset', 'the time at which something is supposed to begin'),\n", " ('start', 'the time at which something is supposed to begin'),\n", + " ('showtime', 'the time at which something is supposed to begin'),\n", " ('first base',\n", " 'the fielding position of the player on a baseball team who is stationed at first of the bases in the infield (counting counterclockwise from home plate)'),\n", - " ('first-class honours degree', 'an honours degree of the highest class'),\n", - " ('outset', 'the time at which something is supposed to begin'),\n", - " ('low gear',\n", + " ('offset', 'the time at which something is supposed to begin'),\n", + " ('low',\n", " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n", " ('first gear',\n", " 'the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving'),\n", - " ('number 1', 'the first element in a countable series'),\n", - " ('number one', 'the first element in a countable series'),\n", - " ('commencement', 'the time at which something is supposed to begin')]},\n", + " ('kickoff', 'the time at which something is supposed to begin')]},\n", " {'answer': 'fitting',\n", " 'hint': 'synonyms for fitting',\n", - " 'clues': [('appointment',\n", + " 'clues': [('try-on', 'putting clothes on to see whether they fit'),\n", + " ('appointment',\n", " '(usually plural) furnishings and equipment (especially for a ship or hotel)'),\n", - " ('try-on', 'putting clothes on to see whether they fit'),\n", - " ('trying on', 'putting clothes on to see whether they fit'),\n", - " ('adjustment', 'making or becoming suitable; adjusting to circumstances'),\n", " ('accommodation',\n", + " 'making or becoming suitable; adjusting to circumstances'),\n", + " ('trying on', 'putting clothes on to see whether they fit'),\n", + " ('adjustment',\n", " 'making or becoming suitable; adjusting to circumstances')]},\n", " {'answer': 'five',\n", " 'hint': 'synonyms for five',\n", - " 'clues': [('5', 'the cardinal number that is the sum of four and one'),\n", + " 'clues': [('pentad',\n", + " 'the cardinal number that is the sum of four and one'),\n", + " ('five-spot',\n", + " 'a playing card or a domino or a die whose upward face shows five pips'),\n", " ('quintet', 'the cardinal number that is the sum of four and one'),\n", - " ('pentad', 'the cardinal number that is the sum of four and one'),\n", - " ('quint', 'the cardinal number that is the sum of four and one'),\n", - " ('fin', 'the cardinal number that is the sum of four and one'),\n", - " ('cinque', 'the cardinal number that is the sum of four and one'),\n", - " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n", + " ('5', 'the cardinal number that is the sum of four and one'),\n", " ('fivesome', 'the cardinal number that is the sum of four and one'),\n", " ('basketball team', 'a team that plays basketball'),\n", - " ('five-spot',\n", - " 'a playing card or a domino or a die whose upward face shows five pips')]},\n", + " ('fin', 'the cardinal number that is the sum of four and one'),\n", + " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n", + " ('quint', 'the cardinal number that is the sum of four and one'),\n", + " ('cinque', 'the cardinal number that is the sum of four and one')]},\n", " {'answer': 'flash',\n", " 'hint': 'synonyms for flash',\n", - " 'clues': [('flashbulb',\n", - " 'a lamp for providing momentary light to take a photograph'),\n", - " ('flare', 'a burst of light used to communicate or illuminate'),\n", - " ('flash lamp',\n", - " 'a lamp for providing momentary light to take a photograph'),\n", - " ('trice',\n", - " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('instant',\n", - " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('photoflash',\n", - " 'a lamp for providing momentary light to take a photograph'),\n", - " ('twinkling',\n", + " 'clues': [('instant',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('fanfare', 'a gaudy outward display'),\n", " ('news bulletin',\n", " 'a short news announcement concerning some on-going news story'),\n", - " ('newsflash',\n", - " 'a short news announcement concerning some on-going news story'),\n", - " ('heartbeat',\n", + " ('trice',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('split second',\n", + " ('blink of an eye',\n", + " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('flashgun', 'a lamp for providing momentary light to take a photograph'),\n", + " ('wink',\n", + " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('twinkling',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('newsbreak',\n", " 'a short news announcement concerning some on-going news story'),\n", - " ('blink of an eye',\n", + " ('fanfare', 'a gaudy outward display'),\n", + " ('flare', 'a burst of light used to communicate or illuminate'),\n", + " ('heartbeat',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('flashgun', 'a lamp for providing momentary light to take a photograph'),\n", + " ('flash lamp',\n", + " 'a lamp for providing momentary light to take a photograph'),\n", " ('jiffy',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('wink',\n", + " ('photoflash',\n", + " 'a lamp for providing momentary light to take a photograph'),\n", + " ('split second',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('flash bulb',\n", + " 'a lamp for providing momentary light to take a photograph'),\n", + " ('newsflash',\n", + " 'a short news announcement concerning some on-going news story'),\n", " ('flashing', 'a short vivid experience'),\n", " ('ostentation', 'a gaudy outward display')]},\n", " {'answer': 'flat',\n", " 'hint': 'synonyms for flat',\n", - " 'clues': [('flatcar', 'freight car without permanent sides or roof'),\n", - " ('apartment',\n", + " 'clues': [('apartment',\n", " 'a suite of rooms usually on one floor of an apartment house'),\n", - " ('flatbed', 'freight car without permanent sides or roof'),\n", - " ('flat tire', 'a deflated pneumatic tire')]},\n", + " ('flat tire', 'a deflated pneumatic tire'),\n", + " ('flatcar', 'freight car without permanent sides or roof'),\n", + " ('flatbed', 'freight car without permanent sides or roof')]},\n", " {'answer': 'flip',\n", " 'hint': 'synonyms for flip',\n", " 'clues': [('toss', 'the act of flipping a coin'),\n", - " ('pass',\n", - " '(sports) the act of throwing the ball to another member of your team'),\n", + " ('summerset',\n", + " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n", " ('somerset',\n", " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n", - " ('somersaulting',\n", + " ('summersault',\n", " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n", - " ('summerset',\n", + " ('somersaulting',\n", " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return'),\n", - " ('summersault',\n", - " 'an acrobatic feat in which the feet roll over the head (either forward or backward) and return')]},\n", + " ('pass',\n", + " '(sports) the act of throwing the ball to another member of your team')]},\n", " {'answer': 'flowering',\n", " 'hint': 'synonyms for flowering',\n", " 'clues': [('unfolding', 'a developmental process'),\n", - " ('blossoming',\n", - " 'the time and process of budding and unfolding of blossoms'),\n", " ('efflorescence',\n", " 'the time and process of budding and unfolding of blossoms'),\n", - " ('anthesis', 'the time and process of budding and unfolding of blossoms'),\n", " ('inflorescence',\n", + " 'the time and process of budding and unfolding of blossoms'),\n", + " ('anthesis', 'the time and process of budding and unfolding of blossoms'),\n", + " ('blossoming',\n", " 'the time and process of budding and unfolding of blossoms')]},\n", " {'answer': 'flush',\n", " 'hint': 'synonyms for flush',\n", - " 'clues': [('bloom', 'the period of greatest prosperity or productivity'),\n", + " 'clues': [('gush', 'a sudden rapid flow (as of water)'),\n", + " ('outpouring', 'a sudden rapid flow (as of water)'),\n", + " ('bloom', 'the period of greatest prosperity or productivity'),\n", + " ('flower', 'the period of greatest prosperity or productivity'),\n", " ('boot', 'the swift release of a store of affective force'),\n", - " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", " ('rush', 'the swift release of a store of affective force'),\n", " ('blush',\n", " 'sudden reddening of the face (as from embarrassment or guilt or shame or modesty)'),\n", - " ('heyday', 'the period of greatest prosperity or productivity'),\n", - " ('peak', 'the period of greatest prosperity or productivity'),\n", - " ('gush', 'a sudden rapid flow (as of water)'),\n", - " ('bang', 'the swift release of a store of affective force'),\n", - " ('charge', 'the swift release of a store of affective force'),\n", - " ('prime', 'the period of greatest prosperity or productivity'),\n", " ('kick', 'the swift release of a store of affective force'),\n", - " ('flower', 'the period of greatest prosperity or productivity'),\n", - " ('thrill', 'the swift release of a store of affective force'),\n", " ('blossom', 'the period of greatest prosperity or productivity'),\n", - " ('outpouring', 'a sudden rapid flow (as of water)')]},\n", + " ('charge', 'the swift release of a store of affective force'),\n", + " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", + " ('peak', 'the period of greatest prosperity or productivity'),\n", + " ('prime', 'the period of greatest prosperity or productivity'),\n", + " ('bang', 'the swift release of a store of affective force'),\n", + " ('heyday', 'the period of greatest prosperity or productivity'),\n", + " ('thrill', 'the swift release of a store of affective force')]},\n", " {'answer': 'fly',\n", " 'hint': 'synonyms for fly',\n", - " 'clues': [('tent-fly',\n", + " 'clues': [('fly front',\n", + " 'an opening in a garment that is closed by a zipper or by buttons concealed under a fold of cloth'),\n", + " ('rainfly',\n", + " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n", + " ('tent-fly',\n", " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n", " ('tent flap',\n", " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n", " ('fly sheet',\n", " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n", - " ('fly front',\n", - " 'an opening in a garment that is closed by a zipper or by buttons concealed under a fold of cloth'),\n", - " ('rainfly',\n", - " 'flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent'),\n", " ('fly ball', '(baseball) a hit that flies up in the air')]},\n", " {'answer': 'following',\n", " 'hint': 'synonyms for following',\n", - " 'clues': [('pursual',\n", + " 'clues': [('chase',\n", " 'the act of pursuing in an effort to overtake or capture'),\n", + " ('pursuit', 'the act of pursuing in an effort to overtake or capture'),\n", " ('followers', 'a group of followers or enthusiasts'),\n", - " ('chase', 'the act of pursuing in an effort to overtake or capture'),\n", - " ('pursuit', 'the act of pursuing in an effort to overtake or capture')]},\n", + " ('pursual', 'the act of pursuing in an effort to overtake or capture')]},\n", " {'answer': 'formal',\n", " 'hint': 'synonyms for formal',\n", - " 'clues': [('ball', 'a lavish dance requiring formal attire'),\n", - " ('evening gown', 'a gown for evening wear'),\n", + " 'clues': [('evening gown', 'a gown for evening wear'),\n", " ('dinner gown', 'a gown for evening wear'),\n", + " ('ball', 'a lavish dance requiring formal attire'),\n", " ('dinner dress', 'a gown for evening wear')]},\n", " {'answer': 'forte',\n", " 'hint': 'synonyms for forte',\n", - " 'clues': [('strong point', 'an asset of special worth or utility'),\n", - " ('strong suit', 'an asset of special worth or utility'),\n", + " 'clues': [('strength', 'an asset of special worth or utility'),\n", " ('speciality', 'an asset of special worth or utility'),\n", - " ('strength', 'an asset of special worth or utility'),\n", + " ('strong point', 'an asset of special worth or utility'),\n", " ('long suit', 'an asset of special worth or utility'),\n", - " ('fortissimo', '(music) loud'),\n", - " ('metier', 'an asset of special worth or utility')]},\n", + " ('metier', 'an asset of special worth or utility'),\n", + " ('strong suit', 'an asset of special worth or utility'),\n", + " ('fortissimo', '(music) loud')]},\n", " {'answer': 'four',\n", " 'hint': 'synonyms for four',\n", - " 'clues': [('tetrad',\n", + " 'clues': [('quatern',\n", " 'the cardinal number that is the sum of three and one'),\n", - " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", " ('quartet', 'the cardinal number that is the sum of three and one'),\n", - " ('foursome', 'the cardinal number that is the sum of three and one'),\n", - " ('quaternity', 'the cardinal number that is the sum of three and one'),\n", - " ('4', 'the cardinal number that is the sum of three and one'),\n", + " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", + " ('tetrad', 'the cardinal number that is the sum of three and one'),\n", " ('four-spot',\n", " 'a playing card or domino or die whose upward face shows four pips'),\n", + " ('4', 'the cardinal number that is the sum of three and one'),\n", + " ('quadruplet', 'the cardinal number that is the sum of three and one'),\n", + " ('foursome', 'the cardinal number that is the sum of three and one'),\n", " ('quaternary', 'the cardinal number that is the sum of three and one'),\n", - " ('quatern', 'the cardinal number that is the sum of three and one'),\n", - " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n", + " ('quaternity', 'the cardinal number that is the sum of three and one')]},\n", " {'answer': 'fourth',\n", " 'hint': 'synonyms for fourth',\n", " 'clues': [('fourth part', 'one of four equal parts'),\n", - " ('one-fourth', 'one of four equal parts'),\n", - " ('quartern', 'one of four equal parts'),\n", + " ('quarter', 'one of four equal parts'),\n", " ('one-quarter', 'one of four equal parts'),\n", + " ('one-fourth', 'one of four equal parts'),\n", " ('twenty-five percent', 'one of four equal parts')]},\n", " {'answer': 'frank',\n", " 'hint': 'synonyms for frank',\n", - " 'clues': [('wiener',\n", + " 'clues': [('weenie',\n", " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n", " ('dog',\n", " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n", - " ('hotdog',\n", + " ('hot dog',\n", " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n", - " ('weenie',\n", + " ('frankfurter',\n", " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n", - " ('wienerwurst',\n", + " ('wiener',\n", " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll'),\n", - " ('frankfurter',\n", + " ('wienerwurst',\n", " 'a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll')]},\n", " {'answer': 'front',\n", " 'hint': 'synonyms for front',\n", - " 'clues': [('battlefront',\n", - " 'the line along which opposing armies face each other'),\n", - " ('front line', 'the line along which opposing armies face each other'),\n", - " ('forepart', 'the side that is forward or prominent'),\n", - " ('movement',\n", + " 'clues': [('movement',\n", " 'a group of people with a common ideology who try together to achieve certain general goals'),\n", + " ('front end', 'the side that is forward or prominent'),\n", + " ('battlefront', 'the line along which opposing armies face each other'),\n", " ('presence', 'the immediate proximity of someone or something'),\n", + " ('front line', 'the line along which opposing armies face each other'),\n", + " ('forepart', 'the side that is forward or prominent'),\n", " ('social movement',\n", - " 'a group of people with a common ideology who try together to achieve certain general goals'),\n", - " ('front end', 'the side that is forward or prominent')]},\n", + " 'a group of people with a common ideology who try together to achieve certain general goals')]},\n", " {'answer': 'fucking',\n", " 'hint': 'synonyms for fucking',\n", - " 'clues': [('piece of tail', 'slang for sexual intercourse'),\n", + " 'clues': [('piece of ass', 'slang for sexual intercourse'),\n", + " ('roll in the hay', 'slang for sexual intercourse'),\n", + " ('piece of tail', 'slang for sexual intercourse'),\n", + " ('shtup', 'slang for sexual intercourse'),\n", + " ('screw', 'slang for sexual intercourse'),\n", " ('nookie', 'slang for sexual intercourse'),\n", + " ('ass', 'slang for sexual intercourse'),\n", " ('nooky', 'slang for sexual intercourse'),\n", - " ('piece of ass', 'slang for sexual intercourse'),\n", - " ('screw', 'slang for sexual intercourse'),\n", - " ('roll in the hay', 'slang for sexual intercourse'),\n", " ('shag', 'slang for sexual intercourse'),\n", - " ('ass', 'slang for sexual intercourse'),\n", - " ('fuck', 'slang for sexual intercourse'),\n", - " ('shtup', 'slang for sexual intercourse')]},\n", + " ('fuck', 'slang for sexual intercourse')]},\n", " {'answer': 'future',\n", " 'hint': 'synonyms for future',\n", - " 'clues': [('futurity', 'the time yet to come'),\n", + " 'clues': [('time to come', 'the time yet to come'),\n", + " ('futurity', 'the time yet to come'),\n", " ('hereafter', 'the time yet to come'),\n", " ('future tense',\n", - " 'a verb tense that expresses actions or states in the future'),\n", - " ('time to come', 'the time yet to come')]},\n", + " 'a verb tense that expresses actions or states in the future')]},\n", " {'answer': 'gimcrack',\n", " 'hint': 'synonyms for gimcrack',\n", " 'clues': [('trumpery', 'ornamental objects of no great value'),\n", " ('gimcrackery', 'ornamental objects of no great value'),\n", " ('nonsense', 'ornamental objects of no great value'),\n", - " ('falderol', 'ornamental objects of no great value'),\n", " ('frill', 'ornamental objects of no great value'),\n", + " ('falderol', 'ornamental objects of no great value'),\n", " ('folderal', 'ornamental objects of no great value')]},\n", " {'answer': 'ginger',\n", " 'hint': 'synonyms for ginger',\n", - " 'clues': [('pep', 'liveliness and energy'),\n", - " ('gingerroot',\n", + " 'clues': [('gingerroot',\n", " 'pungent rhizome of the common ginger plant; used fresh as a seasoning especially in Asian cookery'),\n", + " ('pep', 'liveliness and energy'),\n", " ('peppiness', 'liveliness and energy'),\n", " ('powdered ginger', 'dried ground gingerroot')]},\n", " {'answer': 'gleaming',\n", " 'hint': 'synonyms for gleaming',\n", - " 'clues': [('glimmer', 'a flash of light (especially reflected light)'),\n", + " 'clues': [('lambency', 'an appearance of reflected light'),\n", + " ('glimmer', 'a flash of light (especially reflected light)'),\n", " ('gleam', 'an appearance of reflected light'),\n", - " ('lambency', 'an appearance of reflected light'),\n", " ('glow', 'an appearance of reflected light')]},\n", " {'answer': 'go',\n", " 'hint': 'synonyms for go',\n", - " 'clues': [('disco biscuit',\n", - " 'street names for methylenedioxymethamphetamine'),\n", - " ('fling', 'a usually brief attempt'),\n", - " ('crack', 'a usually brief attempt'),\n", - " ('go game',\n", - " \"a board game for two players who place counters on a grid; the object is to surround and so capture the opponent's counters\"),\n", - " ('offer', 'a usually brief attempt'),\n", - " ('spell',\n", + " 'clues': [('turn',\n", " 'a time for working (after which you will be relieved by someone else)'),\n", " ('tour',\n", " 'a time for working (after which you will be relieved by someone else)'),\n", - " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", - " ('pass', 'a usually brief attempt'),\n", - " ('turn',\n", + " ('spell',\n", " 'a time for working (after which you will be relieved by someone else)'),\n", + " ('go game',\n", + " \"a board game for two players who place counters on a grid; the object is to surround and so capture the opponent's counters\"),\n", " ('whirl', 'a usually brief attempt'),\n", - " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n", - " ('ecstasy', 'street names for methylenedioxymethamphetamine')]},\n", + " ('pass', 'a usually brief attempt'),\n", + " ('disco biscuit', 'street names for methylenedioxymethamphetamine'),\n", + " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n", + " ('offer', 'a usually brief attempt'),\n", + " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", + " ('crack', 'a usually brief attempt'),\n", + " ('fling', 'a usually brief attempt'),\n", + " ('hug drug', 'street names for methylenedioxymethamphetamine')]},\n", " {'answer': 'going',\n", " 'hint': 'synonyms for going',\n", - " 'clues': [('exit', 'euphemistic expressions for death'),\n", + " 'clues': [('departure', 'the act of departing'),\n", + " ('loss', 'euphemistic expressions for death'),\n", " ('passing', 'euphemistic expressions for death'),\n", " ('sledding', 'advancing toward a goal'),\n", - " ('leaving', 'the act of departing'),\n", - " ('loss', 'euphemistic expressions for death'),\n", - " ('departure', 'the act of departing'),\n", - " ('expiration', 'euphemistic expressions for death'),\n", " ('release', 'euphemistic expressions for death'),\n", + " ('expiration', 'euphemistic expressions for death'),\n", + " ('leaving', 'the act of departing'),\n", + " ('exit', 'euphemistic expressions for death'),\n", " ('going away', 'the act of departing')]},\n", " {'answer': 'governing',\n", " 'hint': 'synonyms for governing',\n", - " 'clues': [('governance', 'the act of governing; exercising authority'),\n", - " ('government', 'the act of governing; exercising authority'),\n", - " ('administration', 'the act of governing; exercising authority'),\n", - " ('government activity', 'the act of governing; exercising authority')]},\n", + " 'clues': [('government', 'the act of governing; exercising authority'),\n", + " ('government activity', 'the act of governing; exercising authority'),\n", + " ('governance', 'the act of governing; exercising authority'),\n", + " ('administration', 'the act of governing; exercising authority')]},\n", " {'answer': 'grand',\n", " 'hint': 'synonyms for grand',\n", - " 'clues': [('chiliad',\n", - " 'the cardinal number that is the product of 10 and 100'),\n", + " 'clues': [('grand piano',\n", + " 'a piano with the strings on a horizontal harp-shaped frame; usually supported by three legs'),\n", + " ('chiliad', 'the cardinal number that is the product of 10 and 100'),\n", + " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('grand piano',\n", - " 'a piano with the strings on a horizontal harp-shaped frame; usually supported by three legs'),\n", " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n", " {'answer': 'green',\n", " 'hint': 'synonyms for green',\n", - " 'clues': [('viridity',\n", + " 'clues': [('greenness',\n", " 'green color or pigment; resembling the color of growing grass'),\n", - " ('greenness',\n", - " 'green color or pigment; resembling the color of growing grass'),\n", - " ('cat valium', 'street names for ketamine'),\n", + " ('jet', 'street names for ketamine'),\n", + " ('park', 'a piece of open land for recreational use in an urban area'),\n", + " ('super acid', 'street names for ketamine'),\n", " ('putting surface',\n", " 'an area of closely cropped grass surrounding the hole on a golf course'),\n", - " ('jet', 'street names for ketamine'),\n", + " ('special K', 'street names for ketamine'),\n", " ('leafy vegetable',\n", " 'any of various leafy plants or their leaves and stems eaten as vegetables'),\n", " ('honey oil', 'street names for ketamine'),\n", - " ('special K', 'street names for ketamine'),\n", + " ('viridity',\n", + " 'green color or pigment; resembling the color of growing grass'),\n", " ('commons', 'a piece of open land for recreational use in an urban area'),\n", - " ('park', 'a piece of open land for recreational use in an urban area'),\n", - " ('putting green',\n", - " 'an area of closely cropped grass surrounding the hole on a golf course'),\n", + " ('super C', 'street names for ketamine'),\n", + " ('cat valium', 'street names for ketamine'),\n", " ('greens',\n", " 'any of various leafy plants or their leaves and stems eaten as vegetables'),\n", - " ('super C', 'street names for ketamine'),\n", - " ('super acid', 'street names for ketamine')]},\n", + " ('putting green',\n", + " 'an area of closely cropped grass surrounding the hole on a golf course')]},\n", " {'answer': 'growing',\n", " 'hint': 'synonyms for growing',\n", - " 'clues': [('growth',\n", - " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n", - " ('ontogeny',\n", + " 'clues': [('development',\n", " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n", " ('ontogenesis',\n", " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n", - " ('development',\n", + " ('ontogeny',\n", " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n", " ('maturation',\n", + " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level'),\n", + " ('growth',\n", " '(biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level')]},\n", " {'answer': 'grumbling',\n", " 'hint': 'synonyms for grumbling',\n", - " 'clues': [('mutter', 'a complaint uttered in a low and indistinct tone'),\n", - " ('grumble', 'a loud low dull continuous noise'),\n", + " 'clues': [('rumble', 'a loud low dull continuous noise'),\n", " ('murmuring', 'a complaint uttered in a low and indistinct tone'),\n", + " ('mutter', 'a complaint uttered in a low and indistinct tone'),\n", " ('rumbling', 'a loud low dull continuous noise')]},\n", " {'answer': 'handless',\n", " 'hint': 'synonyms for handless',\n", @@ -25824,134 +25847,134 @@ " 'the appendage to an object that is designed to be held in order to use or move it')]},\n", " {'answer': 'hearing',\n", " 'hint': 'synonyms for hearing',\n", - " 'clues': [('auditory sense', 'the ability to hear; the auditory faculty'),\n", - " ('sense of hearing', 'the ability to hear; the auditory faculty'),\n", + " 'clues': [('listening', 'the act of hearing attentively'),\n", " ('earreach', 'the range within which a voice can be heard'),\n", - " ('auditory modality', 'the ability to hear; the auditory faculty'),\n", + " ('auditory sense', 'the ability to hear; the auditory faculty'),\n", " ('audition', 'the ability to hear; the auditory faculty'),\n", - " ('listening', 'the act of hearing attentively'),\n", - " ('earshot', 'the range within which a voice can be heard')]},\n", + " ('earshot', 'the range within which a voice can be heard'),\n", + " ('sense of hearing', 'the ability to hear; the auditory faculty'),\n", + " ('auditory modality', 'the ability to hear; the auditory faculty')]},\n", " {'answer': 'high',\n", " 'hint': 'synonyms for high',\n", - " 'clues': [('high gear',\n", - " 'a forward gear with a gear ratio that gives the greatest vehicle velocity for a given engine speed'),\n", - " ('heights', 'a high place'),\n", + " 'clues': [('senior high school',\n", + " 'a public secondary school usually including grades 9 through 12'),\n", " ('senior high',\n", " 'a public secondary school usually including grades 9 through 12'),\n", - " ('high school',\n", + " ('highschool',\n", " 'a public secondary school usually including grades 9 through 12'),\n", - " ('senior high school',\n", - " 'a public secondary school usually including grades 9 through 12')]},\n", + " ('high gear',\n", + " 'a forward gear with a gear ratio that gives the greatest vehicle velocity for a given engine speed'),\n", + " ('heights', 'a high place')]},\n", " {'answer': 'home',\n", " 'hint': 'synonyms for home',\n", - " 'clues': [('domicile', 'housing that someone is living in'),\n", + " 'clues': [('dwelling', 'housing that someone is living in'),\n", " ('home plate',\n", " '(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score'),\n", " ('place', 'where you live at a particular time'),\n", - " ('habitation', 'housing that someone is living in'),\n", - " ('dwelling', 'housing that someone is living in'),\n", - " ('abode', 'housing that someone is living in'),\n", - " ('family', 'a social unit living together'),\n", + " ('dwelling house', 'housing that someone is living in'),\n", " ('home base',\n", " '(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score'),\n", " ('house', 'a social unit living together'),\n", + " ('menage', 'a social unit living together'),\n", + " ('domicile', 'housing that someone is living in'),\n", + " ('abode', 'housing that someone is living in'),\n", " ('nursing home', 'an institution where people are cared for'),\n", + " ('habitation', 'housing that someone is living in'),\n", " ('household', 'a social unit living together'),\n", + " ('family', 'a social unit living together'),\n", " ('plate',\n", " '(baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score'),\n", - " ('dwelling house', 'housing that someone is living in'),\n", - " ('rest home', 'an institution where people are cared for'),\n", - " ('menage', 'a social unit living together'),\n", " ('base',\n", - " 'the place where you are stationed and from which missions start and end')]},\n", + " 'the place where you are stationed and from which missions start and end'),\n", + " ('rest home', 'an institution where people are cared for')]},\n", " {'answer': 'hurt',\n", " 'hint': 'synonyms for hurt',\n", " 'clues': [('suffering', 'psychological suffering'),\n", + " ('harm', 'the act of damaging something or someone'),\n", + " ('detriment', 'a damage or loss'),\n", " ('distress', 'psychological suffering'),\n", - " ('damage', 'the act of damaging something or someone'),\n", " ('scathe', 'the act of damaging something or someone'),\n", - " ('harm', 'the act of damaging something or someone'),\n", - " ('detriment', 'a damage or loss')]},\n", + " ('damage', 'the act of damaging something or someone')]},\n", " {'answer': 'i',\n", " 'hint': 'synonyms for i',\n", - " 'clues': [('atomic number 53',\n", + " 'clues': [('ace',\n", + " 'the smallest whole number or a numeral representing this number'),\n", + " ('iodin',\n", " 'a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks)'),\n", - " ('iodine',\n", + " ('atomic number 53',\n", " 'a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks)'),\n", " ('single',\n", " 'the smallest whole number or a numeral representing this number'),\n", " ('1', 'the smallest whole number or a numeral representing this number'),\n", - " ('ace',\n", - " 'the smallest whole number or a numeral representing this number'),\n", " ('one',\n", " 'the smallest whole number or a numeral representing this number'),\n", " ('unity',\n", " 'the smallest whole number or a numeral representing this number')]},\n", " {'answer': 'iii',\n", " 'hint': 'synonyms for iii',\n", - " 'clues': [('ternary',\n", - " 'the cardinal number that is the sum of one and one and one'),\n", - " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", - " ('3', 'the cardinal number that is the sum of one and one and one'),\n", - " ('troika', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", - " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", - " ('three', 'the cardinal number that is the sum of one and one and one'),\n", - " ('threesome',\n", + " 'clues': [('threesome',\n", " 'the cardinal number that is the sum of one and one and one'),\n", - " ('trey', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", - " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n", + " ('troika', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trey', 'the cardinal number that is the sum of one and one and one'),\n", " ('deuce-ace',\n", " 'the cardinal number that is the sum of one and one and one'),\n", " ('triad', 'the cardinal number that is the sum of one and one and one'),\n", " ('terzetto',\n", + " 'the cardinal number that is the sum of one and one and one'),\n", + " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", + " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", + " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", + " ('three', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternary', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", + " ('3', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tercet',\n", " 'the cardinal number that is the sum of one and one and one')]},\n", " {'answer': 'immunosuppressive',\n", " 'hint': 'synonyms for immunosuppressive',\n", - " 'clues': [('immune suppressant drug',\n", + " 'clues': [('immunosuppressive drug',\n", " \"a drug that lowers the body's normal immune response\"),\n", " ('immunosuppressant',\n", " \"a drug that lowers the body's normal immune response\"),\n", " ('immunosuppressor',\n", " \"a drug that lowers the body's normal immune response\"),\n", - " ('immunosuppressive drug',\n", + " ('immune suppressant drug',\n", " \"a drug that lowers the body's normal immune response\")]},\n", " {'answer': 'imperfect',\n", " 'hint': 'synonyms for imperfect',\n", " 'clues': [('imperfect tense',\n", " 'a tense of verbs used in describing action that is on-going'),\n", + " ('progressive tense',\n", + " 'a tense of verbs used in describing action that is on-going'),\n", " ('progressive',\n", " 'a tense of verbs used in describing action that is on-going'),\n", " ('continuous tense',\n", - " 'a tense of verbs used in describing action that is on-going'),\n", - " ('progressive tense',\n", " 'a tense of verbs used in describing action that is on-going')]},\n", " {'answer': 'incoming',\n", " 'hint': 'synonyms for incoming',\n", - " 'clues': [('entering', 'the act of entering'),\n", - " ('entry', 'the act of entering'),\n", + " 'clues': [('entry', 'the act of entering'),\n", " ('ingress', 'the act of entering'),\n", - " ('entrance', 'the act of entering')]},\n", + " ('entrance', 'the act of entering'),\n", + " ('entering', 'the act of entering')]},\n", " {'answer': 'indicative',\n", " 'hint': 'synonyms for indicative',\n", - " 'clues': [('indicative mood',\n", + " 'clues': [('declarative mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", - " ('declarative',\n", + " ('indicative mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", " ('fact mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", " ('common mood',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact'),\n", - " ('declarative mood',\n", + " ('declarative',\n", " 'a mood (grammatically unmarked) that represents the act or state as an objective fact')]},\n", " {'answer': 'individual',\n", " 'hint': 'synonyms for individual',\n", - " 'clues': [('somebody', 'a human being'),\n", - " ('person', 'a human being'),\n", + " 'clues': [('person', 'a human being'),\n", + " ('somebody', 'a human being'),\n", " ('someone', 'a human being'),\n", " ('soul', 'a human being'),\n", " ('mortal', 'a human being')]},\n", @@ -25959,1585 +25982,1596 @@ " 'hint': 'synonyms for infrared',\n", " 'clues': [('infrared light',\n", " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves'),\n", - " ('infrared radiation',\n", - " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves'),\n", " ('infrared frequency',\n", " 'the infrared region of the electromagnetic spectrum; electromagnetic wave frequencies below the visible range'),\n", " ('infrared emission',\n", + " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves'),\n", + " ('infrared radiation',\n", " 'electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves')]},\n", " {'answer': 'initiative',\n", " 'hint': 'synonyms for initiative',\n", - " 'clues': [('go-ahead', 'readiness to embark on bold new ventures'),\n", + " 'clues': [('enterprisingness', 'readiness to embark on bold new ventures'),\n", " ('enterprise', 'readiness to embark on bold new ventures'),\n", - " ('first step', 'the first of a series of actions'),\n", " ('opening', 'the first of a series of actions'),\n", - " ('enterprisingness', 'readiness to embark on bold new ventures'),\n", - " ('opening move', 'the first of a series of actions')]},\n", + " ('go-ahead', 'readiness to embark on bold new ventures'),\n", + " ('opening move', 'the first of a series of actions'),\n", + " ('first step', 'the first of a series of actions')]},\n", " {'answer': 'instant',\n", " 'hint': 'synonyms for instant',\n", - " 'clues': [('split second',\n", - " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('minute', 'a particular point in time'),\n", - " ('flash',\n", + " 'clues': [('flash',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('moment', 'a particular point in time'),\n", - " ('blink of an eye',\n", + " ('jiffy',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('trice',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('jiffy',\n", + " ('split second',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('twinkling',\n", + " ('blink of an eye',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('wink',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('twinkling',\n", + " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('moment', 'a particular point in time'),\n", " ('second', 'a particular point in time'),\n", + " ('minute', 'a particular point in time'),\n", " ('heartbeat',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)')]},\n", " {'answer': 'intent',\n", " 'hint': 'synonyms for intent',\n", " 'clues': [('spirit', 'the intended meaning of a communication'),\n", - " ('purpose',\n", - " 'an anticipated outcome that is intended or that guides your planned actions'),\n", + " ('purport', 'the intended meaning of a communication'),\n", " ('aim',\n", " 'an anticipated outcome that is intended or that guides your planned actions'),\n", " ('intention',\n", " 'an anticipated outcome that is intended or that guides your planned actions'),\n", " ('design',\n", " 'an anticipated outcome that is intended or that guides your planned actions'),\n", - " ('purport', 'the intended meaning of a communication')]},\n", + " ('purpose',\n", + " 'an anticipated outcome that is intended or that guides your planned actions')]},\n", " {'answer': 'interrogative',\n", " 'hint': 'synonyms for interrogative',\n", " 'clues': [('interrogation', 'a sentence of inquiry that asks for a reply'),\n", - " ('interrogative sentence', 'a sentence of inquiry that asks for a reply'),\n", " ('question', 'a sentence of inquiry that asks for a reply'),\n", + " ('interrogative sentence', 'a sentence of inquiry that asks for a reply'),\n", " ('interrogative mood',\n", " 'some linguists consider interrogative sentences to constitute a mood')]},\n", " {'answer': 'intoxicant',\n", " 'hint': 'synonyms for intoxicant',\n", - " 'clues': [('alcoholic drink',\n", - " 'a liquor or brew containing alcohol as the active agent'),\n", - " ('alcoholic beverage',\n", + " 'clues': [('inebriant',\n", " 'a liquor or brew containing alcohol as the active agent'),\n", " ('alcohol', 'a liquor or brew containing alcohol as the active agent'),\n", - " ('inebriant',\n", + " ('alcoholic drink',\n", + " 'a liquor or brew containing alcohol as the active agent'),\n", + " ('alcoholic beverage',\n", " 'a liquor or brew containing alcohol as the active agent')]},\n", " {'answer': 'iv',\n", " 'hint': 'synonyms for iv',\n", - " 'clues': [('tetrad',\n", + " 'clues': [('quatern',\n", " 'the cardinal number that is the sum of three and one'),\n", - " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", - " ('intravenous feeding', 'administration of nutrients through a vein'),\n", " ('quartet', 'the cardinal number that is the sum of three and one'),\n", - " ('foursome', 'the cardinal number that is the sum of three and one'),\n", - " ('quaternity', 'the cardinal number that is the sum of three and one'),\n", + " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", + " ('tetrad', 'the cardinal number that is the sum of three and one'),\n", " ('four', 'the cardinal number that is the sum of three and one'),\n", " ('4', 'the cardinal number that is the sum of three and one'),\n", + " ('quadruplet', 'the cardinal number that is the sum of three and one'),\n", + " ('intravenous feeding', 'administration of nutrients through a vein'),\n", + " ('foursome', 'the cardinal number that is the sum of three and one'),\n", " ('quaternary', 'the cardinal number that is the sum of three and one'),\n", - " ('quatern', 'the cardinal number that is the sum of three and one'),\n", - " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n", + " ('quaternity', 'the cardinal number that is the sum of three and one')]},\n", " {'answer': 'jet',\n", " 'hint': 'synonyms for jet',\n", - " 'clues': [('blue jet',\n", - " 'atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward'),\n", - " ('cat valium', 'street names for ketamine'),\n", - " ('reverse lightning',\n", + " 'clues': [('squirt',\n", + " 'the occurrence of a sudden discharge (as of liquid)'),\n", + " ('blue jet',\n", " 'atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward'),\n", + " ('super acid', 'street names for ketamine'),\n", " ('spurt', 'the occurrence of a sudden discharge (as of liquid)'),\n", - " ('jet-propelled plane', 'an airplane powered by one or more jet engines'),\n", - " ('fountain', 'an artificially produced flow of water'),\n", - " ('squirt', 'the occurrence of a sudden discharge (as of liquid)'),\n", - " ('honey oil', 'street names for ketamine'),\n", - " ('special K', 'street names for ketamine'),\n", " ('green', 'street names for ketamine'),\n", - " ('super C', 'street names for ketamine'),\n", + " ('special K', 'street names for ketamine'),\n", + " ('honey oil', 'street names for ketamine'),\n", + " ('cat valium', 'street names for ketamine'),\n", + " ('fountain', 'an artificially produced flow of water'),\n", " ('jet plane', 'an airplane powered by one or more jet engines'),\n", + " ('reverse lightning',\n", + " 'atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward'),\n", " ('spirt', 'the occurrence of a sudden discharge (as of liquid)'),\n", - " ('super acid', 'street names for ketamine')]},\n", + " ('super C', 'street names for ketamine'),\n", + " ('jet-propelled plane',\n", + " 'an airplane powered by one or more jet engines')]},\n", " {'answer': 'joint',\n", " 'hint': 'synonyms for joint',\n", " 'clues': [('join',\n", " 'the shape or manner in which things come together and a connection is made'),\n", - " ('stick', 'marijuana leaves rolled into a cigarette for smoking'),\n", - " ('roast',\n", - " 'a piece of meat roasted or for roasting and of a size for slicing into more than one portion'),\n", - " ('juncture',\n", + " ('articulation',\n", " 'the shape or manner in which things come together and a connection is made'),\n", + " ('stick', 'marijuana leaves rolled into a cigarette for smoking'),\n", " ('junction',\n", " 'the shape or manner in which things come together and a connection is made'),\n", - " ('articulation',\n", + " ('juncture',\n", " 'the shape or manner in which things come together and a connection is made'),\n", + " ('reefer', 'marijuana leaves rolled into a cigarette for smoking'),\n", + " ('roast',\n", + " 'a piece of meat roasted or for roasting and of a size for slicing into more than one portion'),\n", " ('marijuana cigarette',\n", " 'marijuana leaves rolled into a cigarette for smoking'),\n", - " ('reefer', 'marijuana leaves rolled into a cigarette for smoking'),\n", " ('spliff', 'marijuana leaves rolled into a cigarette for smoking')]},\n", " {'answer': 'k',\n", " 'hint': 'synonyms for k',\n", - " 'clues': [('chiliad',\n", - " 'the cardinal number that is the product of 10 and 100'),\n", - " ('atomic number 19',\n", - " 'a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite'),\n", - " ('kibibyte', 'a unit of information equal to 1024 bytes'),\n", + " 'clues': [('kilobyte', 'a unit of information equal to 1000 bytes'),\n", " ('jet', 'street names for ketamine'),\n", - " ('kilobyte', 'a unit of information equal to 1000 bytes'),\n", - " ('honey oil', 'street names for ketamine'),\n", + " ('kibibyte', 'a unit of information equal to 1024 bytes'),\n", + " ('green', 'street names for ketamine'),\n", " ('special K', 'street names for ketamine'),\n", - " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", - " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", + " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", + " ('chiliad', 'the cardinal number that is the product of 10 and 100'),\n", " ('potassium',\n", " 'a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite'),\n", + " ('cat valium', 'street names for ketamine'),\n", " ('kelvin',\n", " \"the basic unit of thermodynamic temperature adopted under the Systeme International d'Unites\"),\n", - " ('1000', 'the cardinal number that is the product of 10 and 100'),\n", - " ('green', 'street names for ketamine'),\n", - " ('kB', 'a unit of information equal to 1000 bytes'),\n", - " ('cat valium', 'street names for ketamine'),\n", + " ('kB', 'a unit of information equal to 1024 bytes'),\n", + " ('super acid', 'street names for ketamine'),\n", + " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", + " ('honey oil', 'street names for ketamine'),\n", + " ('atomic number 19',\n", + " 'a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite'),\n", + " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", " ('grand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('super C', 'street names for ketamine'),\n", " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('super acid', 'street names for ketamine')]},\n", + " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n", " {'answer': 'key',\n", " 'hint': 'synonyms for key',\n", - " 'clues': [('cay', 'a coral reef off the southern coast of Florida'),\n", - " ('keystone', 'the central building block at the top of an arch or vault'),\n", - " ('tonality',\n", - " 'any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music'),\n", + " 'clues': [('keystone',\n", + " 'the central building block at the top of an arch or vault'),\n", " ('winder',\n", " 'mechanical device used to wind another device that is driven by a spring (as a clock)'),\n", + " ('tonality',\n", + " 'any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music'),\n", + " ('cay', 'a coral reef off the southern coast of Florida'),\n", " ('headstone',\n", " 'the central building block at the top of an arch or vault'),\n", " ('paint',\n", " '(basketball) a space (including the foul line) in front of the basket at each end of a basketball court; usually painted a different color from the rest of the court')]},\n", " {'answer': 'killing',\n", " 'hint': 'synonyms for killing',\n", - " 'clues': [('violent death', 'an event that causes someone to die'),\n", - " ('cleanup', 'a very large profit'),\n", - " ('putting to death', 'the act of terminating a life'),\n", - " ('kill', 'the act of terminating a life')]},\n", + " 'clues': [('putting to death', 'the act of terminating a life'),\n", + " ('violent death', 'an event that causes someone to die'),\n", + " ('kill', 'the act of terminating a life'),\n", + " ('cleanup', 'a very large profit')]},\n", " {'answer': 'kin',\n", " 'hint': 'synonyms for kin',\n", - " 'clues': [('kin group', 'group of people related by blood or marriage'),\n", + " 'clues': [('kinship group',\n", + " 'group of people related by blood or marriage'),\n", " ('tribe', 'group of people related by blood or marriage'),\n", - " ('clan', 'group of people related by blood or marriage'),\n", - " ('kinship group', 'group of people related by blood or marriage'),\n", - " ('kindred', 'group of people related by blood or marriage')]},\n", + " ('kin group', 'group of people related by blood or marriage'),\n", + " ('kindred', 'group of people related by blood or marriage'),\n", + " ('clan', 'group of people related by blood or marriage')]},\n", " {'answer': 'kindred',\n", " 'hint': 'synonyms for kindred',\n", " 'clues': [('kin', 'group of people related by blood or marriage'),\n", - " ('kin group', 'group of people related by blood or marriage'),\n", + " ('kinship group', 'group of people related by blood or marriage'),\n", " ('tribe', 'group of people related by blood or marriage'),\n", - " ('clan', 'group of people related by blood or marriage'),\n", - " ('kinship group', 'group of people related by blood or marriage')]},\n", + " ('kin group', 'group of people related by blood or marriage'),\n", + " ('clan', 'group of people related by blood or marriage')]},\n", " {'answer': 'l',\n", " 'hint': 'synonyms for l',\n", - " 'clues': [('liter',\n", + " 'clues': [('cubic decimetre',\n", + " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n", + " ('liter',\n", " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n", " ('fifty', 'the cardinal number that is the product of ten and five'),\n", - " ('lambert',\n", - " 'a cgs unit of illumination equal to the brightness of a perfectly diffusing surface that emits or reflects one lumen per square centimeter'),\n", " ('litre',\n", " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n", - " ('cubic decimeter',\n", - " 'a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints)'),\n", + " ('lambert',\n", + " 'a cgs unit of illumination equal to the brightness of a perfectly diffusing surface that emits or reflects one lumen per square centimeter'),\n", " ('50', 'the cardinal number that is the product of ten and five')]},\n", " {'answer': 'lashing',\n", " 'hint': 'synonyms for lashing',\n", - " 'clues': [('tanning',\n", + " 'clues': [('flagellation',\n", " 'beating with a whip or strap or rope as a form of punishment'),\n", - " ('flagellation',\n", - " 'beating with a whip or strap or rope as a form of punishment'),\n", - " ('whipping',\n", + " ('tanning',\n", " 'beating with a whip or strap or rope as a form of punishment'),\n", " ('flogging',\n", + " 'beating with a whip or strap or rope as a form of punishment'),\n", + " ('whipping',\n", " 'beating with a whip or strap or rope as a form of punishment')]},\n", " {'answer': 'last',\n", " 'hint': 'synonyms for last',\n", " 'clues': [('final stage',\n", " 'the concluding parts of an event or occurrence'),\n", - " ('stopping point', 'the temporal end; the concluding time'),\n", - " ('finale', 'the temporal end; the concluding time'),\n", - " ('finis', 'the temporal end; the concluding time'),\n", " ('close', 'the temporal end; the concluding time'),\n", " (\"cobbler's last\",\n", " 'holding device shaped like a human foot that is used to fashion or repair shoes'),\n", + " ('finis', 'the temporal end; the concluding time'),\n", " ('death', 'the time at which life ends; continuing until dead'),\n", - " ('end', 'the concluding parts of an event or occurrence'),\n", - " ('conclusion', 'the temporal end; the concluding time'),\n", + " ('stopping point', 'the temporal end; the concluding time'),\n", + " ('finale', 'the temporal end; the concluding time'),\n", " (\"shoemaker's last\",\n", - " 'holding device shaped like a human foot that is used to fashion or repair shoes')]},\n", + " 'holding device shaped like a human foot that is used to fashion or repair shoes'),\n", + " ('conclusion', 'the temporal end; the concluding time'),\n", + " ('end', 'the concluding parts of an event or occurrence')]},\n", " {'answer': 'lean',\n", " 'hint': 'synonyms for lean',\n", - " 'clues': [('tilt',\n", + " 'clues': [('list',\n", " 'the property possessed by a line or surface that departs from the vertical'),\n", " ('leaning',\n", " 'the property possessed by a line or surface that departs from the vertical'),\n", - " ('inclination',\n", + " ('tilt',\n", " 'the property possessed by a line or surface that departs from the vertical'),\n", - " ('list',\n", + " ('inclination',\n", " 'the property possessed by a line or surface that departs from the vertical')]},\n", " {'answer': 'leaning',\n", " 'hint': 'synonyms for leaning',\n", - " 'clues': [('proclivity', 'a natural inclination'),\n", - " ('propensity', 'an inclination to do something'),\n", - " ('tilt',\n", - " 'the property possessed by a line or surface that departs from the vertical'),\n", - " ('lean',\n", - " 'the property possessed by a line or surface that departs from the vertical'),\n", + " 'clues': [('tendency', 'an inclination to do something'),\n", " ('list',\n", " 'the property possessed by a line or surface that departs from the vertical'),\n", " ('inclination',\n", " 'the property possessed by a line or surface that departs from the vertical'),\n", - " ('tendency', 'an inclination to do something')]},\n", + " ('lean',\n", + " 'the property possessed by a line or surface that departs from the vertical'),\n", + " ('propensity', 'an inclination to do something'),\n", + " ('tilt',\n", + " 'the property possessed by a line or surface that departs from the vertical'),\n", + " ('proclivity', 'a natural inclination')]},\n", " {'answer': 'level',\n", " 'hint': 'synonyms for level',\n", - " 'clues': [('story',\n", - " 'a structure consisting of a room or set of rooms at a single position along a vertical scale'),\n", + " 'clues': [('degree',\n", + " 'a position on a scale of intensity or amount or quality'),\n", " ('horizontal surface', 'a flat surface at right angles to a plumb line'),\n", + " ('stratum', 'an abstract place usually conceived as having depth'),\n", " ('grade', 'a position on a scale of intensity or amount or quality'),\n", + " ('storey',\n", + " 'a structure consisting of a room or set of rooms at a single position along a vertical scale'),\n", " ('layer', 'an abstract place usually conceived as having depth'),\n", " ('spirit level',\n", " 'indicator that establishes the horizontal when a bubble is centered in a tube of liquid'),\n", " ('floor',\n", - " 'a structure consisting of a room or set of rooms at a single position along a vertical scale'),\n", - " ('stratum', 'an abstract place usually conceived as having depth'),\n", - " ('degree', 'a position on a scale of intensity or amount or quality')]},\n", + " 'a structure consisting of a room or set of rooms at a single position along a vertical scale')]},\n", " {'answer': 'light',\n", " 'hint': 'synonyms for light',\n", - " 'clues': [('twinkle',\n", + " 'clues': [('ignitor',\n", + " 'a device for lighting or igniting fuel or charges or fires'),\n", + " ('sparkle',\n", + " 'merriment expressed by a brightness or gleam or animation of countenance'),\n", + " ('twinkle',\n", " 'merriment expressed by a brightness or gleam or animation of countenance'),\n", - " ('visible light',\n", - " '(physics) electromagnetic radiation that can produce a visual sensation'),\n", " ('brightness',\n", " 'the quality of being luminous; emitting or reflecting light'),\n", - " ('igniter', 'a device for lighting or igniting fuel or charges or fires'),\n", - " ('visible radiation',\n", - " '(physics) electromagnetic radiation that can produce a visual sensation'),\n", - " ('luminousness',\n", - " 'the quality of being luminous; emitting or reflecting light'),\n", + " ('light source', 'any device serving as a source of illumination'),\n", " ('spark',\n", " 'merriment expressed by a brightness or gleam or animation of countenance'),\n", " ('brightness level',\n", " 'the quality of being luminous; emitting or reflecting light'),\n", - " ('lighter', 'a device for lighting or igniting fuel or charges or fires'),\n", - " ('light source', 'any device serving as a source of illumination'),\n", + " ('visible radiation',\n", + " '(physics) electromagnetic radiation that can produce a visual sensation'),\n", " ('lightness',\n", " 'the visual effect of illumination on objects or scenes as created in pictures'),\n", + " ('visible light',\n", + " '(physics) electromagnetic radiation that can produce a visual sensation'),\n", + " ('lighter', 'a device for lighting or igniting fuel or charges or fires'),\n", + " ('luminance',\n", + " 'the quality of being luminous; emitting or reflecting light'),\n", " ('luminosity',\n", " 'the quality of being luminous; emitting or reflecting light'),\n", - " ('sparkle',\n", - " 'merriment expressed by a brightness or gleam or animation of countenance'),\n", - " ('luminance',\n", + " ('luminousness',\n", " 'the quality of being luminous; emitting or reflecting light')]},\n", " {'answer': 'literal',\n", " 'hint': 'synonyms for literal',\n", - " 'clues': [('misprint',\n", + " 'clues': [('typographical error',\n", " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n", - " ('erratum',\n", + " ('typo',\n", " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n", " ('literal error',\n", " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n", - " ('typo',\n", + " ('misprint',\n", " 'a mistake in printed matter resulting from mechanical failures of some kind'),\n", - " ('typographical error',\n", + " ('erratum',\n", " 'a mistake in printed matter resulting from mechanical failures of some kind')]},\n", " {'answer': 'living',\n", " 'hint': 'synonyms for living',\n", - " 'clues': [('life',\n", - " 'the experience of being alive; the course of human events and activities'),\n", - " ('sustenance', 'the financial means whereby one lives'),\n", + " 'clues': [('keep', 'the financial means whereby one lives'),\n", + " ('livelihood', 'the financial means whereby one lives'),\n", " ('bread and butter', 'the financial means whereby one lives'),\n", - " ('keep', 'the financial means whereby one lives'),\n", " ('support', 'the financial means whereby one lives'),\n", - " ('livelihood', 'the financial means whereby one lives')]},\n", + " ('sustenance', 'the financial means whereby one lives'),\n", + " ('life',\n", + " 'the experience of being alive; the course of human events and activities')]},\n", " {'answer': 'm',\n", " 'hint': 'synonyms for m',\n", - " 'clues': [('chiliad',\n", - " 'the cardinal number that is the product of 10 and 100'),\n", - " ('meter',\n", - " \"the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)\"),\n", - " ('grand', 'the cardinal number that is the product of 10 and 100'),\n", + " 'clues': [('megabyte',\n", + " 'a unit of information equal to 1024 kibibytes or 2^20 (1,048,576) bytes'),\n", + " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", " ('molar concentration',\n", " 'concentration measured by the number of moles of solute per liter of solution'),\n", + " ('metre',\n", + " \"the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)\"),\n", + " ('chiliad', 'the cardinal number that is the product of 10 and 100'),\n", " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", - " ('megabyte',\n", - " 'a unit of information equal to 1000 kilobytes or 10^6 (1,000,000) bytes'),\n", - " ('molarity',\n", - " 'concentration measured by the number of moles of solute per liter of solution'),\n", " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", - " ('metre',\n", + " ('meter',\n", " \"the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards)\"),\n", - " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", + " ('grand', 'the cardinal number that is the product of 10 and 100'),\n", " ('mebibyte',\n", " 'a unit of information equal to 1024 kibibytes or 2^20 (1,048,576) bytes'),\n", + " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n", " ('1000', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thousand', 'the cardinal number that is the product of 10 and 100')]},\n", + " ('molarity',\n", + " 'concentration measured by the number of moles of solute per liter of solution')]},\n", " {'answer': 'magic',\n", " 'hint': 'synonyms for magic',\n", - " 'clues': [('deception',\n", + " 'clues': [('illusion',\n", " 'an illusory feat; considered magical by naive observers'),\n", - " ('trick', 'an illusory feat; considered magical by naive observers'),\n", + " ('deception', 'an illusory feat; considered magical by naive observers'),\n", " ('legerdemain',\n", " 'an illusory feat; considered magical by naive observers'),\n", - " ('illusion', 'an illusory feat; considered magical by naive observers'),\n", + " ('conjuration',\n", + " 'an illusory feat; considered magical by naive observers'),\n", " ('magic trick',\n", " 'an illusory feat; considered magical by naive observers'),\n", + " ('thaumaturgy',\n", + " 'an illusory feat; considered magical by naive observers'),\n", " ('conjuring trick',\n", " 'an illusory feat; considered magical by naive observers'),\n", - " ('thaumaturgy', 'any art that invokes supernatural powers'),\n", - " ('conjuration',\n", - " 'an illusory feat; considered magical by naive observers')]},\n", + " ('trick', 'an illusory feat; considered magical by naive observers')]},\n", " {'answer': 'majuscule',\n", " 'hint': 'synonyms for majuscule',\n", " 'clues': [('capital',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", - " ('capital letter',\n", - " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", " ('uppercase',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", " ('upper-case letter',\n", + " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", + " ('capital letter',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis')]},\n", " {'answer': 'mass',\n", " 'hint': 'synonyms for mass',\n", - " 'clues': [('pile',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", + " 'clues': [('multitude', 'the common people generally'),\n", + " ('people', 'the common people generally'),\n", + " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('peck', \"(often followed by `of') a large number or amount or extent\"),\n", " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('good deal',\n", + " ('quite a little',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('volume', 'the property of something that is great in magnitude'),\n", + " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('bulk', 'the property of something that is great in magnitude'),\n", + " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mountain',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('great deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('multitude', 'the common people generally'),\n", - " ('hoi polloi', 'the common people generally'),\n", - " ('people', 'the common people generally'),\n", - " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('quite a little',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('masses', 'the common people generally'),\n", - " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('tidy sum',\n", + " ('pile', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('the great unwashed', 'the common people generally'),\n", + " ('great deal',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('bulk', 'the property of something that is great in magnitude'),\n", + " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('volume', 'the property of something that is great in magnitude'),\n", + " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('the great unwashed', 'the common people generally'),\n", - " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n", + " ('hoi polloi', 'the common people generally'),\n", + " ('tidy sum',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('masses', 'the common people generally'),\n", + " ('good deal',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mountain',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('raft', \"(often followed by `of') a large number or amount or extent\")]},\n", " {'answer': 'master',\n", " 'hint': 'synonyms for master',\n", - " 'clues': [('original',\n", - " 'an original creation (i.e., an audio recording) from which copies can be made'),\n", - " ('master copy',\n", + " 'clues': [('master copy',\n", " 'an original creation (i.e., an audio recording) from which copies can be made'),\n", - " ('passkey', 'key that secures entrance everywhere'),\n", " ('passe-partout', 'key that secures entrance everywhere'),\n", - " ('master key', 'key that secures entrance everywhere')]},\n", + " ('original',\n", + " 'an original creation (i.e., an audio recording) from which copies can be made'),\n", + " ('master key', 'key that secures entrance everywhere'),\n", + " ('passkey', 'key that secures entrance everywhere')]},\n", " {'answer': 'mat',\n", " 'hint': 'synonyms for mat',\n", - " 'clues': [('matting',\n", - " 'mounting consisting of a border or background for a picture'),\n", - " ('lusterlessness',\n", + " 'clues': [('lustrelessness',\n", + " 'the property of having little or no contrast; lacking highlights or gloss'),\n", + " ('matt',\n", " 'the property of having little or no contrast; lacking highlights or gloss'),\n", " ('gym mat',\n", " 'sports equipment consisting of a piece of thick padding on the floor for gymnastic sports'),\n", - " ('matte',\n", - " 'the property of having little or no contrast; lacking highlights or gloss'),\n", " ('flatness',\n", " 'the property of having little or no contrast; lacking highlights or gloss')]},\n", " {'answer': 'material',\n", " 'hint': 'synonyms for material',\n", - " 'clues': [('fabric',\n", + " 'clues': [('textile',\n", " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers'),\n", " ('cloth',\n", " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers'),\n", - " ('textile',\n", - " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers'),\n", " ('stuff',\n", - " 'the tangible substance that goes into the makeup of a physical object')]},\n", + " 'the tangible substance that goes into the makeup of a physical object'),\n", + " ('fabric',\n", + " 'artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers')]},\n", " {'answer': 'matt',\n", " 'hint': 'synonyms for matt',\n", - " 'clues': [('lusterlessness',\n", + " 'clues': [('lustrelessness',\n", " 'the property of having little or no contrast; lacking highlights or gloss'),\n", " ('mat',\n", " 'the property of having little or no contrast; lacking highlights or gloss'),\n", - " ('matte',\n", - " 'the property of having little or no contrast; lacking highlights or gloss'),\n", " ('flatness',\n", + " 'the property of having little or no contrast; lacking highlights or gloss'),\n", + " ('matte',\n", " 'the property of having little or no contrast; lacking highlights or gloss')]},\n", " {'answer': 'maximum',\n", " 'hint': 'synonyms for maximum',\n", " 'clues': [('utmost', 'the greatest possible degree'),\n", - " ('upper limit', 'the largest possible quantity'),\n", + " ('uttermost', 'the greatest possible degree'),\n", " ('level best', 'the greatest possible degree'),\n", - " ('uttermost', 'the greatest possible degree')]},\n", + " ('upper limit', 'the largest possible quantity')]},\n", " {'answer': 'meaning',\n", " 'hint': 'synonyms for meaning',\n", - " 'clues': [('signification',\n", - " 'the message that is intended or expressed or signified'),\n", + " 'clues': [('substance', 'the idea that is intended'),\n", " ('significance',\n", " 'the message that is intended or expressed or signified'),\n", - " ('substance', 'the idea that is intended'),\n", + " ('signification',\n", + " 'the message that is intended or expressed or signified'),\n", " ('import', 'the message that is intended or expressed or signified')]},\n", " {'answer': 'medical',\n", " 'hint': 'synonyms for medical',\n", - " 'clues': [('medical checkup',\n", + " 'clues': [('medical examination',\n", " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n", - " ('checkup',\n", + " ('medical exam',\n", " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n", " ('health check',\n", " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n", - " ('medical exam',\n", + " ('medical checkup',\n", " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person'),\n", - " ('medical examination',\n", + " ('checkup',\n", " 'a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person')]},\n", " {'answer': 'merging',\n", " 'hint': 'synonyms for merging',\n", " 'clues': [('meeting', 'the act of joining together as one'),\n", - " ('confluence', 'a flowing together'),\n", " ('conflux', 'a flowing together'),\n", - " ('coming together', 'the act of joining together as one')]},\n", + " ('coming together', 'the act of joining together as one'),\n", + " ('confluence', 'a flowing together')]},\n", " {'answer': 'middle',\n", " 'hint': 'synonyms for middle',\n", - " 'clues': [('heart',\n", + " 'clues': [('centre',\n", " 'an area that is approximately central within some larger region'),\n", " ('eye',\n", " 'an area that is approximately central within some larger region'),\n", - " ('center',\n", + " ('heart',\n", " 'an area that is approximately central within some larger region'),\n", - " ('centre',\n", + " ('center',\n", " 'an area that is approximately central within some larger region')]},\n", " {'answer': 'military',\n", " 'hint': 'synonyms for military',\n", " 'clues': [('war machine', 'the military forces of a nation'),\n", + " ('armed services', 'the military forces of a nation'),\n", " ('armed forces', 'the military forces of a nation'),\n", - " ('military machine', 'the military forces of a nation'),\n", - " ('armed services', 'the military forces of a nation')]},\n", + " ('military machine', 'the military forces of a nation')]},\n", " {'answer': 'million',\n", " 'hint': 'synonyms for million',\n", - " 'clues': [('trillion',\n", + " 'clues': [('gazillion',\n", " 'a very large indefinite number (usually hyperbole)'),\n", + " ('jillion', 'a very large indefinite number (usually hyperbole)'),\n", " ('1000000',\n", " 'the number that is represented as a one followed by 6 zeros'),\n", - " ('zillion', 'a very large indefinite number (usually hyperbole)'),\n", + " ('meg', 'the number that is represented as a one followed by 6 zeros'),\n", + " ('trillion', 'a very large indefinite number (usually hyperbole)'),\n", " ('one thousand thousand',\n", - " 'the number that is represented as a one followed by 6 zeros'),\n", - " ('meg', 'the number that is represented as a one followed by 6 zeros')]},\n", + " 'the number that is represented as a one followed by 6 zeros')]},\n", " {'answer': 'mint',\n", " 'hint': 'synonyms for mint',\n", - " 'clues': [('pile',\n", + " 'clues': [('heap',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('peck', \"(often followed by `of') a large number or amount or extent\"),\n", " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('good deal',\n", + " ('quite a little',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mountain',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('great deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('pile', \"(often followed by `of') a large number or amount or extent\"),\n", " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mint candy', 'a candy that is flavored with a mint oil'),\n", - " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('quite a little',\n", + " ('great deal',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", " ('tidy sum',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n", + " ('good deal',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mountain',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('raft', \"(often followed by `of') a large number or amount or extent\")]},\n", " {'answer': 'minute',\n", " 'hint': 'synonyms for minute',\n", - " 'clues': [('bit', 'an indefinitely short time'),\n", + " 'clues': [('hour', 'distance measured by the time taken to cover it'),\n", + " ('second', 'a particular point in time'),\n", + " ('mo', 'an indefinitely short time'),\n", " ('minute of arc',\n", " 'a unit of angular distance equal to a 60th of a degree'),\n", - " ('moment', 'an indefinitely short time'),\n", - " ('hour', 'distance measured by the time taken to cover it'),\n", - " ('arcminute', 'a unit of angular distance equal to a 60th of a degree'),\n", - " ('second', 'an indefinitely short time'),\n", - " ('mo', 'an indefinitely short time'),\n", + " ('moment', 'a particular point in time'),\n", + " ('min', 'a unit of time equal to 60 seconds or 1/60th of an hour'),\n", " ('instant', 'a particular point in time'),\n", - " ('min', 'a unit of time equal to 60 seconds or 1/60th of an hour')]},\n", + " ('arcminute', 'a unit of angular distance equal to a 60th of a degree'),\n", + " ('bit', 'an indefinitely short time')]},\n", " {'answer': 'model',\n", " 'hint': 'synonyms for model',\n", " 'clues': [('simulation',\n", " 'representation of something (sometimes on a smaller scale)'),\n", + " ('good example', 'something to be imitated'),\n", + " ('example', 'a representative form or pattern'),\n", " ('exemplar', 'something to be imitated'),\n", " ('framework',\n", " 'a hypothetical description of a complex entity or process'),\n", - " ('good example', 'something to be imitated'),\n", - " ('example', 'a representative form or pattern'),\n", - " ('modeling',\n", - " 'the act of representing something (usually on a smaller scale)'),\n", " ('theoretical account',\n", - " 'a hypothetical description of a complex entity or process')]},\n", + " 'a hypothetical description of a complex entity or process'),\n", + " ('modelling',\n", + " 'the act of representing something (usually on a smaller scale)')]},\n", " {'answer': 'mortal',\n", " 'hint': 'synonyms for mortal',\n", - " 'clues': [('somebody', 'a human being'),\n", + " 'clues': [('person', 'a human being'),\n", " ('individual', 'a human being'),\n", + " ('somebody', 'a human being'),\n", " ('someone', 'a human being'),\n", - " ('person', 'a human being'),\n", " ('soul', 'a human being')]},\n", " {'answer': 'motley',\n", " 'hint': 'synonyms for motley',\n", - " 'clues': [('miscellanea',\n", + " 'clues': [('smorgasbord',\n", " 'a collection containing a variety of sorts of things'),\n", - " ('variety', 'a collection containing a variety of sorts of things'),\n", - " ('mixture', 'a collection containing a variety of sorts of things'),\n", - " ('assortment', 'a collection containing a variety of sorts of things'),\n", - " ('smorgasbord', 'a collection containing a variety of sorts of things'),\n", + " ('mixed bag', 'a collection containing a variety of sorts of things'),\n", " ('potpourri', 'a collection containing a variety of sorts of things'),\n", - " ('salmagundi', 'a collection containing a variety of sorts of things'),\n", - " ('mixed bag', 'a collection containing a variety of sorts of things')]},\n", + " ('miscellanea', 'a collection containing a variety of sorts of things'),\n", + " ('assortment', 'a collection containing a variety of sorts of things'),\n", + " ('mixture', 'a collection containing a variety of sorts of things'),\n", + " ('variety', 'a collection containing a variety of sorts of things'),\n", + " ('salmagundi', 'a collection containing a variety of sorts of things')]},\n", " {'answer': 'murmuring',\n", " 'hint': 'synonyms for murmuring',\n", - " 'clues': [('mutter', 'a complaint uttered in a low and indistinct tone'),\n", - " ('grumbling', 'a complaint uttered in a low and indistinct tone'),\n", - " ('murmuration',\n", + " 'clues': [('grumbling',\n", + " 'a complaint uttered in a low and indistinct tone'),\n", + " ('mutter',\n", " 'a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech'),\n", - " ('murmur', 'a complaint uttered in a low and indistinct tone'),\n", + " ('grumble', 'a complaint uttered in a low and indistinct tone'),\n", " ('mussitation',\n", " 'a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech'),\n", - " ('grumble', 'a complaint uttered in a low and indistinct tone')]},\n", + " ('murmur',\n", + " 'a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech'),\n", + " ('murmuration',\n", + " 'a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech')]},\n", " {'answer': 'musing',\n", " 'hint': 'synonyms for musing',\n", - " 'clues': [('contemplation', 'a calm, lengthy, intent consideration'),\n", + " 'clues': [('thoughtfulness', 'a calm, lengthy, intent consideration'),\n", + " ('rumination', 'a calm, lengthy, intent consideration'),\n", " ('reflexion', 'a calm, lengthy, intent consideration'),\n", - " ('reflection', 'a calm, lengthy, intent consideration'),\n", - " ('thoughtfulness', 'a calm, lengthy, intent consideration'),\n", - " ('rumination', 'a calm, lengthy, intent consideration')]},\n", + " ('contemplation', 'a calm, lengthy, intent consideration'),\n", + " ('reflection', 'a calm, lengthy, intent consideration')]},\n", " {'answer': 'necessary',\n", " 'hint': 'synonyms for necessary',\n", - " 'clues': [('necessity', 'anything indispensable'),\n", + " 'clues': [('requirement', 'anything indispensable'),\n", " ('requisite', 'anything indispensable'),\n", - " ('essential', 'anything indispensable'),\n", - " ('requirement', 'anything indispensable')]},\n", + " ('necessity', 'anything indispensable'),\n", + " ('essential', 'anything indispensable')]},\n", " {'answer': 'net',\n", " 'hint': 'synonyms for net',\n", " 'clues': [('network',\n", " 'an open fabric of string or rope or wire woven together at regular intervals'),\n", + " ('cyberspace',\n", + " 'a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange'),\n", + " ('profit',\n", + " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n", " ('mesh',\n", " 'an open fabric of string or rope or wire woven together at regular intervals'),\n", - " ('meshwork',\n", - " 'an open fabric of string or rope or wire woven together at regular intervals'),\n", - " ('net profit',\n", + " ('net income',\n", " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n", - " ('cyberspace',\n", + " ('internet',\n", " 'a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange'),\n", " ('earnings',\n", " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n", - " ('net income',\n", - " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n", " ('lucre',\n", " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)'),\n", - " ('internet',\n", - " 'a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange'),\n", - " ('profits',\n", + " ('meshwork',\n", + " 'an open fabric of string or rope or wire woven together at regular intervals'),\n", + " ('net profit',\n", " 'the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses)')]},\n", " {'answer': 'nine',\n", " 'hint': 'synonyms for nine',\n", - " 'clues': [('ball club',\n", - " 'a team of professional baseball players who play and travel together'),\n", + " 'clues': [('ennead',\n", + " 'the cardinal number that is the sum of eight and one'),\n", + " ('9', 'the cardinal number that is the sum of eight and one'),\n", " ('baseball club',\n", " 'a team of professional baseball players who play and travel together'),\n", - " ('niner', 'the cardinal number that is the sum of eight and one'),\n", " ('club',\n", " 'a team of professional baseball players who play and travel together'),\n", - " ('9', 'the cardinal number that is the sum of eight and one'),\n", - " ('ennead', 'the cardinal number that is the sum of eight and one'),\n", " ('nine-spot',\n", - " 'one of four playing cards in a deck with nine pips on the face')]},\n", + " 'one of four playing cards in a deck with nine pips on the face'),\n", + " ('ball club',\n", + " 'a team of professional baseball players who play and travel together'),\n", + " ('niner', 'the cardinal number that is the sum of eight and one')]},\n", " {'answer': 'nip_and_tuck',\n", " 'hint': 'synonyms for nip and tuck',\n", - " 'clues': [('rhytidectomy',\n", - " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n", - " ('cosmetic surgery',\n", + " 'clues': [('cosmetic surgery',\n", " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n", " ('facelift',\n", " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n", - " ('rhytidoplasty',\n", + " ('lift',\n", + " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n", + " ('rhytidectomy',\n", " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n", " ('face lifting',\n", " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised'),\n", - " ('lift',\n", + " ('rhytidoplasty',\n", " 'plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised')]},\n", " {'answer': 'nonsense',\n", " 'hint': 'synonyms for nonsense',\n", " 'clues': [('gimcrackery', 'ornamental objects of no great value'),\n", - " ('frill', 'ornamental objects of no great value'),\n", - " ('bunk', 'a message that seems to convey no meaning'),\n", - " ('folderal', 'ornamental objects of no great value'),\n", - " ('trumpery', 'ornamental objects of no great value'),\n", + " ('meaninglessness', 'a message that seems to convey no meaning'),\n", + " ('falderol', 'ornamental objects of no great value'),\n", " ('nonsensicality', 'a message that seems to convey no meaning'),\n", + " ('folderal', 'ornamental objects of no great value'),\n", + " ('bunk', 'a message that seems to convey no meaning'),\n", + " ('frill', 'ornamental objects of no great value'),\n", " ('gimcrack', 'ornamental objects of no great value'),\n", - " ('falderol', 'ornamental objects of no great value'),\n", - " ('meaninglessness', 'a message that seems to convey no meaning'),\n", - " ('hokum', 'a message that seems to convey no meaning')]},\n", + " ('hokum', 'a message that seems to convey no meaning'),\n", + " ('trumpery', 'ornamental objects of no great value')]},\n", " {'answer': 'normal',\n", " 'hint': 'synonyms for normal',\n", - " 'clues': [('pattern', 'something regarded as a normative example'),\n", + " 'clues': [('formula', 'something regarded as a normative example'),\n", " ('convention', 'something regarded as a normative example'),\n", - " ('rule', 'something regarded as a normative example'),\n", - " ('formula', 'something regarded as a normative example')]},\n", + " ('pattern', 'something regarded as a normative example'),\n", + " ('rule', 'something regarded as a normative example')]},\n", " {'answer': 'north',\n", " 'hint': 'synonyms for north',\n", " 'clues': [('northward',\n", " 'the cardinal compass point that is at 0 or 360 degrees'),\n", + " ('due north', 'the cardinal compass point that is at 0 or 360 degrees'),\n", " ('magnetic north', 'the direction in which a compass needle points'),\n", - " ('compass north', 'the direction in which a compass needle points'),\n", - " ('due north', 'the cardinal compass point that is at 0 or 360 degrees')]},\n", + " ('compass north', 'the direction in which a compass needle points')]},\n", " {'answer': 'null',\n", " 'hint': 'synonyms for null',\n", - " 'clues': [('nada', 'a quantity of no importance'),\n", - " ('zippo', 'a quantity of no importance'),\n", + " 'clues': [('zip', 'a quantity of no importance'),\n", + " ('naught', 'a quantity of no importance'),\n", + " ('nix', 'a quantity of no importance'),\n", " ('zilch', 'a quantity of no importance'),\n", " ('cypher', 'a quantity of no importance'),\n", - " ('aught', 'a quantity of no importance'),\n", - " ('nix', 'a quantity of no importance'),\n", - " ('goose egg', 'a quantity of no importance'),\n", - " ('cipher', 'a quantity of no importance'),\n", - " ('zero', 'a quantity of no importance'),\n", - " ('zip', 'a quantity of no importance'),\n", " ('nil', 'a quantity of no importance'),\n", - " ('nothing', 'a quantity of no importance')]},\n", + " ('nothing', 'a quantity of no importance'),\n", + " ('zero', 'a quantity of no importance'),\n", + " ('nada', 'a quantity of no importance'),\n", + " ('cipher', 'a quantity of no importance'),\n", + " ('zippo', 'a quantity of no importance'),\n", + " ('goose egg', 'a quantity of no importance')]},\n", " {'answer': 'objective',\n", " 'hint': 'synonyms for objective',\n", - " 'clues': [('target',\n", + " 'clues': [('object',\n", + " 'the goal intended to be attained (and which is believed to be attainable)'),\n", + " ('aim',\n", " 'the goal intended to be attained (and which is believed to be attainable)'),\n", - " ('object',\n", + " ('target',\n", " 'the goal intended to be attained (and which is believed to be attainable)'),\n", " ('object glass',\n", " 'the lens or system of lenses in a telescope or microscope that is nearest the object being viewed'),\n", " ('object lens',\n", - " 'the lens or system of lenses in a telescope or microscope that is nearest the object being viewed'),\n", - " ('aim',\n", - " 'the goal intended to be attained (and which is believed to be attainable)')]},\n", + " 'the lens or system of lenses in a telescope or microscope that is nearest the object being viewed')]},\n", " {'answer': 'occlusive',\n", " 'hint': 'synonyms for occlusive',\n", " 'clues': [('stop',\n", " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n", " ('plosive consonant',\n", " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n", + " ('stop consonant',\n", + " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n", " ('plosive',\n", " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n", " ('plosive speech sound',\n", - " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it'),\n", - " ('stop consonant',\n", " 'a consonant produced by stopping the flow of air at some point and suddenly releasing it')]},\n", " {'answer': 'omnibus',\n", " 'hint': 'synonyms for omnibus',\n", - " 'clues': [('motorbus',\n", - " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('coach',\n", + " 'clues': [('bus',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('motorcoach',\n", + " ('charabanc',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", " ('autobus',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('charabanc',\n", + " ('passenger vehicle',\n", + " 'a vehicle carrying many passengers; used for public transport'),\n", + " ('double-decker',\n", + " 'a vehicle carrying many passengers; used for public transport'),\n", + " ('motorbus',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('bus', 'a vehicle carrying many passengers; used for public transport'),\n", " ('jitney',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('passenger vehicle',\n", + " ('motorcoach',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('double-decker',\n", + " ('coach',\n", " 'a vehicle carrying many passengers; used for public transport')]},\n", " {'answer': 'one',\n", " 'hint': 'synonyms for one',\n", - " 'clues': [('ace',\n", - " 'the smallest whole number or a numeral representing this number'),\n", - " ('single',\n", + " 'clues': [('1',\n", " 'the smallest whole number or a numeral representing this number'),\n", - " ('1', 'the smallest whole number or a numeral representing this number'),\n", " ('unity',\n", + " 'the smallest whole number or a numeral representing this number'),\n", + " ('ace',\n", + " 'the smallest whole number or a numeral representing this number'),\n", + " ('single',\n", " 'the smallest whole number or a numeral representing this number')]},\n", " {'answer': 'one_thousand',\n", " 'hint': 'synonyms for one thousand',\n", " 'clues': [('chiliad',\n", " 'the cardinal number that is the product of 10 and 100'),\n", + " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", " ('grand', 'the cardinal number that is the product of 10 and 100'),\n", " ('thousand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n", " {'answer': 'open',\n", " 'hint': 'synonyms for open',\n", " 'clues': [('surface', 'information that has become public'),\n", - " ('outdoors', 'where the air is unconfined'),\n", + " ('out-of-doors', 'where the air is unconfined'),\n", " ('clear', 'a clear or unobstructed space or expanse of land or water'),\n", " ('open air', 'where the air is unconfined'),\n", - " ('out-of-doors', 'where the air is unconfined')]},\n", + " ('outdoors', 'where the air is unconfined')]},\n", " {'answer': 'opening',\n", " 'hint': 'synonyms for opening',\n", " 'clues': [('gap', 'an open or empty space in or between things'),\n", - " ('possible action', 'a possible alternative'),\n", - " ('hatchway',\n", - " 'an entrance equipped with a hatch; especially a passageway between decks of a ship'),\n", " ('possibility', 'a possible alternative'),\n", - " ('curtain raising',\n", - " 'the first performance (as of a theatrical production)'),\n", + " ('initiative', 'the first of a series of actions'),\n", " ('opening night',\n", " 'the first performance (as of a theatrical production)'),\n", + " ('opening move', 'the first of a series of actions'),\n", + " ('first step', 'the first of a series of actions'),\n", + " ('possible action', 'a possible alternative'),\n", " ('chess opening',\n", " 'a recognized sequence of moves at the beginning of a game of chess'),\n", + " ('curtain raising',\n", + " 'the first performance (as of a theatrical production)'),\n", " ('scuttle',\n", " 'an entrance equipped with a hatch; especially a passageway between decks of a ship'),\n", - " ('first step', 'the first of a series of actions'),\n", - " ('opening move', 'the first of a series of actions'),\n", - " ('initiative', 'the first of a series of actions')]},\n", + " ('hatchway',\n", + " 'an entrance equipped with a hatch; especially a passageway between decks of a ship')]},\n", " {'answer': 'opposite',\n", " 'hint': 'synonyms for opposite',\n", - " 'clues': [('antonym',\n", + " 'clues': [('opposite word',\n", " 'a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other'),\n", + " ('contrary', 'a relation of direct opposition'),\n", " ('inverse', 'something inverted in sequence or character or effect'),\n", - " ('opposite word',\n", + " ('antonym',\n", " 'a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other'),\n", - " ('reverse', 'a relation of direct opposition'),\n", - " ('contrary', 'a relation of direct opposition')]},\n", + " ('reverse', 'a relation of direct opposition')]},\n", " {'answer': 'oral',\n", " 'hint': 'synonyms for oral',\n", - " 'clues': [('oral exam',\n", + " 'clues': [('oral examination',\n", " 'an examination conducted by spoken communication'),\n", " ('viva', 'an examination conducted by spoken communication'),\n", - " ('viva voce', 'an examination conducted by spoken communication'),\n", - " ('oral examination',\n", - " 'an examination conducted by spoken communication')]},\n", + " ('oral exam', 'an examination conducted by spoken communication'),\n", + " ('viva voce', 'an examination conducted by spoken communication')]},\n", " {'answer': 'original',\n", " 'hint': 'synonyms for original',\n", - " 'clues': [('archetype',\n", + " 'clues': [('pilot',\n", " 'something that serves as a model or a basis for making copies'),\n", " ('master copy',\n", " 'an original creation (i.e., an audio recording) from which copies can be made'),\n", - " ('pilot',\n", + " ('archetype',\n", " 'something that serves as a model or a basis for making copies'),\n", " ('master',\n", " 'an original creation (i.e., an audio recording) from which copies can be made')]},\n", " {'answer': 'ottoman',\n", " 'hint': 'synonyms for ottoman',\n", - " 'clues': [('footstool',\n", + " 'clues': [('pouf', 'thick cushion used as a seat'),\n", + " ('footstool',\n", " 'a low seat or a stool to rest the feet of a seated person'),\n", - " ('pouffe', 'thick cushion used as a seat'),\n", + " ('hassock', 'thick cushion used as a seat'),\n", + " ('footrest', 'a low seat or a stool to rest the feet of a seated person'),\n", " ('puff', 'thick cushion used as a seat'),\n", " ('tuffet', 'a low seat or a stool to rest the feet of a seated person'),\n", - " ('footrest', 'a low seat or a stool to rest the feet of a seated person'),\n", - " ('pouf', 'thick cushion used as a seat'),\n", - " ('hassock', 'thick cushion used as a seat')]},\n", + " ('pouffe', 'thick cushion used as a seat')]},\n", " {'answer': 'overhead',\n", " 'hint': 'synonyms for overhead',\n", - " 'clues': [('smash',\n", - " 'a hard return hitting the tennis ball above your head'),\n", - " ('operating cost',\n", + " 'clues': [('operating cost',\n", " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n", - " ('command overhead',\n", - " '(computer science) the processing time required by a device prior to the execution of a command'),\n", - " ('disk overhead',\n", - " '(computer science) the disk space required for information that is not data but is used for location and timing'),\n", " ('budget items',\n", " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n", " ('command processing overhead',\n", " '(computer science) the processing time required by a device prior to the execution of a command'),\n", " ('operating expense',\n", " 'the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes'),\n", + " ('smash', 'a hard return hitting the tennis ball above your head'),\n", + " ('command overhead',\n", + " '(computer science) the processing time required by a device prior to the execution of a command'),\n", + " ('disk overhead',\n", + " '(computer science) the disk space required for information that is not data but is used for location and timing'),\n", " ('viewgraph', 'a transparency for use with an overhead projector')]},\n", " {'answer': 'paperback',\n", " 'hint': 'synonyms for paperback',\n", - " 'clues': [('paper-back book', 'a book with paper covers'),\n", + " 'clues': [('soft-cover book', 'a book with paper covers'),\n", " ('softback book', 'a book with paper covers'),\n", - " ('softback', 'a book with paper covers'),\n", - " ('soft-cover book', 'a book with paper covers'),\n", - " ('soft-cover', 'a book with paper covers')]},\n", + " ('paperback book', 'a book with paper covers'),\n", + " ('soft-cover', 'a book with paper covers'),\n", + " ('softback', 'a book with paper covers')]},\n", " {'answer': 'parallel',\n", " 'hint': 'synonyms for parallel',\n", " 'clues': [('analogue',\n", " 'something having the property of being analogous to something else'),\n", - " ('latitude',\n", - " 'an imaginary line around the Earth parallel to the equator'),\n", " ('parallel of latitude',\n", " 'an imaginary line around the Earth parallel to the equator'),\n", " ('line of latitude',\n", + " 'an imaginary line around the Earth parallel to the equator'),\n", + " ('latitude',\n", " 'an imaginary line around the Earth parallel to the equator')]},\n", " {'answer': 'particular',\n", " 'hint': 'synonyms for particular',\n", - " 'clues': [('particular proposition',\n", + " 'clues': [('specific', 'a fact about some part (as opposed to general)'),\n", + " ('item', 'a small part that can be considered separately from the whole'),\n", + " ('particular proposition',\n", " '(logic) a proposition that asserts something about some (but not all) members of a class'),\n", " ('detail',\n", - " 'a small part that can be considered separately from the whole'),\n", - " ('item', 'a small part that can be considered separately from the whole'),\n", - " ('specific', 'a fact about some part (as opposed to general)')]},\n", + " 'a small part that can be considered separately from the whole')]},\n", " {'answer': 'pass',\n", " 'hint': 'synonyms for pass',\n", - " 'clues': [('straits', 'a difficult juncture'),\n", - " ('go', 'a usually brief attempt'),\n", - " ('toss',\n", + " 'clues': [('passing play',\n", + " '(American football) a play that involves one player throwing the ball to a teammate'),\n", + " ('notch',\n", + " 'the location in a range of mountains of a geological formation that is lower than the surrounding peaks'),\n", + " ('whirl', 'a usually brief attempt'),\n", + " ('pas', '(ballet) a step in dancing (especially in classical ballet)'),\n", + " ('fling', 'a usually brief attempt'),\n", + " ('flip',\n", " '(sports) the act of throwing the ball to another member of your team'),\n", - " ('laissez passer',\n", - " 'a document indicating permission to do something without restrictions'),\n", - " ('head', 'a difficult juncture'),\n", - " ('bye',\n", - " 'you advance to the next round in a tournament without playing an opponent'),\n", + " ('walk',\n", + " '(baseball) an advance to first base by a batter who receives four balls'),\n", " ('mountain pass',\n", " 'the location in a range of mountains of a geological formation that is lower than the surrounding peaks'),\n", - " ('whirl', 'a usually brief attempt'),\n", + " ('qualifying', 'success in satisfying a test or requirement'),\n", + " ('straits', 'a difficult juncture'),\n", + " ('passing', 'success in satisfying a test or requirement'),\n", + " ('go', 'a usually brief attempt'),\n", " ('passport', 'any authorization to pass or go somewhere'),\n", - " ('passing',\n", - " '(American football) a play that involves one player throwing the ball to a teammate'),\n", - " ('fling', 'a usually brief attempt'),\n", " ('base on balls',\n", " '(baseball) an advance to first base by a batter who receives four balls'),\n", - " ('crack', 'a usually brief attempt'),\n", - " ('notch',\n", - " 'the location in a range of mountains of a geological formation that is lower than the surrounding peaks'),\n", - " ('liberty chit', 'a permit to enter or leave a military installation'),\n", + " ('bye',\n", + " 'you advance to the next round in a tournament without playing an opponent'),\n", " ('offer', 'a usually brief attempt'),\n", - " ('walk',\n", - " '(baseball) an advance to first base by a batter who receives four balls'),\n", - " ('flip',\n", + " ('crack', 'a usually brief attempt'),\n", + " ('toss',\n", " '(sports) the act of throwing the ball to another member of your team'),\n", - " ('pas', '(ballet) a step in dancing (especially in classical ballet)'),\n", + " ('laissez passer',\n", + " 'a document indicating permission to do something without restrictions'),\n", + " ('liberty chit', 'a permit to enter or leave a military installation'),\n", + " ('head', 'a difficult juncture'),\n", " ('passing game',\n", - " '(American football) a play that involves one player throwing the ball to a teammate'),\n", - " ('qualifying', 'success in satisfying a test or requirement'),\n", - " ('passing play',\n", " '(American football) a play that involves one player throwing the ball to a teammate')]},\n", " {'answer': 'passing',\n", " 'hint': 'synonyms for passing',\n", - " 'clues': [('exit', 'euphemistic expressions for death'),\n", - " ('pass',\n", + " 'clues': [('passing play',\n", " '(American football) a play that involves one player throwing the ball to a teammate'),\n", - " ('passage', 'the motion of one object relative to another'),\n", - " ('qualifying', 'success in satisfying a test or requirement'),\n", + " ('pass', 'success in satisfying a test or requirement'),\n", + " ('loss', 'euphemistic expressions for death'),\n", + " ('departure', 'euphemistic expressions for death'),\n", " ('overtaking',\n", " 'going by something that is moving in order to get in front of it'),\n", - " ('loss', 'euphemistic expressions for death'),\n", + " ('passage',\n", + " 'a bodily reaction of changing from one place or stage to another'),\n", + " ('release', 'euphemistic expressions for death'),\n", " ('expiration', 'euphemistic expressions for death'),\n", + " ('qualifying', 'success in satisfying a test or requirement'),\n", + " ('going', 'euphemistic expressions for death'),\n", " ('passing game',\n", " '(American football) a play that involves one player throwing the ball to a teammate'),\n", - " ('release', 'euphemistic expressions for death'),\n", - " ('going', 'euphemistic expressions for death'),\n", - " ('departure', 'euphemistic expressions for death'),\n", - " ('passing play',\n", - " '(American football) a play that involves one player throwing the ball to a teammate')]},\n", + " ('exit', 'euphemistic expressions for death')]},\n", " {'answer': 'peanut',\n", " 'hint': 'synonyms for peanut',\n", - " 'clues': [('goober pea',\n", - " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n", - " ('goober',\n", - " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n", - " ('groundnut',\n", + " 'clues': [('groundnut',\n", " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n", " ('earthnut',\n", " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n", " ('monkey nut',\n", + " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n", + " ('goober pea',\n", + " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\"),\n", + " ('goober',\n", " \"pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms\")]},\n", " {'answer': 'pedal',\n", " 'hint': 'synonyms for pedal',\n", - " 'clues': [('foot lever', 'a lever that is operated with the foot'),\n", + " 'clues': [('pedal point', 'a sustained bass note'),\n", + " ('foot pedal', 'a lever that is operated with the foot'),\n", " ('treadle', 'a lever that is operated with the foot'),\n", - " ('pedal point', 'a sustained bass note'),\n", - " ('foot pedal', 'a lever that is operated with the foot')]},\n", + " ('foot lever', 'a lever that is operated with the foot')]},\n", " {'answer': 'pedigree',\n", " 'hint': 'synonyms for pedigree',\n", - " 'clues': [('line of descent', 'the descendants of one individual'),\n", - " ('ancestry', 'the descendants of one individual'),\n", - " ('stock', 'the descendants of one individual'),\n", + " 'clues': [('bloodline', 'the descendants of one individual'),\n", " ('line', 'the descendants of one individual'),\n", - " ('descent', 'the descendants of one individual'),\n", - " ('origin', 'the descendants of one individual'),\n", " ('lineage', 'the descendants of one individual'),\n", + " ('origin', 'the descendants of one individual'),\n", + " ('blood', 'the descendants of one individual'),\n", + " ('stemma', 'the descendants of one individual'),\n", + " ('stock', 'the descendants of one individual'),\n", + " ('ancestry', 'the descendants of one individual'),\n", + " ('line of descent', 'the descendants of one individual'),\n", " ('parentage', 'the descendants of one individual'),\n", - " ('bloodline', 'ancestry of a purebred animal'),\n", - " ('blood', 'the descendants of one individual'),\n", - " ('stemma', 'the descendants of one individual')]},\n", + " ('descent', 'the descendants of one individual')]},\n", " {'answer': 'phantom',\n", " 'hint': 'synonyms for phantom',\n", - " 'clues': [('fantasm', 'something existing in perception only'),\n", - " ('shadow', 'something existing in perception only'),\n", - " ('phantasma', 'something existing in perception only'),\n", - " ('apparition', 'something existing in perception only')]},\n", + " 'clues': [('shadow', 'something existing in perception only'),\n", + " ('phantasm', 'something existing in perception only'),\n", + " ('apparition', 'something existing in perception only'),\n", + " ('fantasm', 'something existing in perception only')]},\n", " {'answer': 'plain',\n", " 'hint': 'synonyms for plain',\n", " 'clues': [('plain stitch', 'a basic knitting stitch'),\n", - " ('knit', 'a basic knitting stitch'),\n", - " ('field', 'extensive tract of level open land'),\n", " ('knit stitch', 'a basic knitting stitch'),\n", - " ('champaign', 'extensive tract of level open land')]},\n", + " ('champaign', 'extensive tract of level open land'),\n", + " ('knit', 'a basic knitting stitch'),\n", + " ('field', 'extensive tract of level open land')]},\n", " {'answer': 'plane',\n", " 'hint': 'synonyms for plane',\n", " 'clues': [('airplane',\n", " 'an aircraft that has a fixed wing and is powered by propellers or jets'),\n", - " ('planing machine', 'a power tool for smoothing or shaping wood'),\n", " ('planer', 'a power tool for smoothing or shaping wood'),\n", + " ('sheet', '(mathematics) an unbounded two-dimensional shape'),\n", " ('woodworking plane',\n", " \"a carpenter's hand tool with an adjustable blade for smoothing or shaping wood\"),\n", + " ('planing machine', 'a power tool for smoothing or shaping wood'),\n", " (\"carpenter's plane\",\n", " \"a carpenter's hand tool with an adjustable blade for smoothing or shaping wood\"),\n", " ('aeroplane',\n", - " 'an aircraft that has a fixed wing and is powered by propellers or jets'),\n", - " ('sheet', '(mathematics) an unbounded two-dimensional shape')]},\n", + " 'an aircraft that has a fixed wing and is powered by propellers or jets')]},\n", " {'answer': 'plodding',\n", " 'hint': 'synonyms for plodding',\n", - " 'clues': [('grind', 'hard monotonous routine work'),\n", + " 'clues': [('donkeywork', 'hard monotonous routine work'),\n", " ('drudgery', 'hard monotonous routine work'),\n", - " ('donkeywork', 'hard monotonous routine work'),\n", + " ('grind', 'hard monotonous routine work'),\n", " ('plod', 'the act of walking with a slow heavy gait')]},\n", " {'answer': 'pokey',\n", " 'hint': 'synonyms for pokey',\n", - " 'clues': [('jailhouse',\n", + " 'clues': [('poky',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('slammer',\n", + " ('jailhouse',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('gaol',\n", + " ('clink',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('poky',\n", + " ('gaol',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", " ('jail',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('clink',\n", + " ('slammer',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)')]},\n", " {'answer': 'poky',\n", " 'hint': 'synonyms for poky',\n", - " 'clues': [('pokey',\n", + " 'clues': [('jailhouse',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('jailhouse',\n", + " ('pokey',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('slammer',\n", + " ('clink',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", " ('gaol',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", " ('jail',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)'),\n", - " ('clink',\n", + " ('slammer',\n", " 'a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence)')]},\n", " {'answer': 'pop',\n", " 'hint': 'synonyms for pop',\n", " 'clues': [('soda pop',\n", " 'a sweet drink containing carbonated water and flavoring'),\n", - " ('soda', 'a sweet drink containing carbonated water and flavoring'),\n", + " ('soda water', 'a sweet drink containing carbonated water and flavoring'),\n", " ('pop music',\n", " \"music of general appeal to teenagers; a bland watered-down version of rock'n'roll with more rhythm and harmony and an emphasis on romantic love\"),\n", + " ('soda', 'a sweet drink containing carbonated water and flavoring'),\n", + " ('tonic', 'a sweet drink containing carbonated water and flavoring'),\n", " ('popping',\n", - " 'a sharp explosive sound as from a gunshot or drawing a cork'),\n", - " ('soda water', 'a sweet drink containing carbonated water and flavoring'),\n", - " ('tonic', 'a sweet drink containing carbonated water and flavoring')]},\n", + " 'a sharp explosive sound as from a gunshot or drawing a cork')]},\n", " {'answer': 'port',\n", " 'hint': 'synonyms for port',\n", - " 'clues': [('embrasure',\n", - " 'an opening (in a wall or ship or armored vehicle) for firing through'),\n", - " ('port wine', 'sweet dark-red dessert wine originally from Portugal'),\n", - " ('porthole',\n", - " 'an opening (in a wall or ship or armored vehicle) for firing through'),\n", + " 'clues': [('port wine',\n", + " 'sweet dark-red dessert wine originally from Portugal'),\n", " ('larboard',\n", " 'the left side of a ship or aircraft to someone who is aboard and facing the bow or nose'),\n", " ('interface',\n", - " '(computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals)')]},\n", + " '(computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals)'),\n", + " ('porthole',\n", + " 'an opening (in a wall or ship or armored vehicle) for firing through'),\n", + " ('embrasure',\n", + " 'an opening (in a wall or ship or armored vehicle) for firing through')]},\n", " {'answer': 'postmortem',\n", " 'hint': 'synonyms for postmortem',\n", - " 'clues': [('postmortem examination',\n", + " 'clues': [('necropsy',\n", " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease'),\n", - " ('post-mortem', 'discussion of an event after it has occurred'),\n", - " ('necropsy',\n", + " ('post-mortem examination',\n", " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease'),\n", " ('autopsy',\n", - " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease')]},\n", + " 'an examination and dissection of a dead body to determine cause of death or the changes produced by disease'),\n", + " ('post-mortem', 'discussion of an event after it has occurred')]},\n", " {'answer': 'potential',\n", " 'hint': 'synonyms for potential',\n", " 'clues': [('potential drop',\n", " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n", - " ('electric potential',\n", - " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n", " ('potential difference',\n", " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n", + " ('electric potential',\n", + " 'the difference in electrical charge between two points in a circuit expressed in volts'),\n", " ('voltage',\n", " 'the difference in electrical charge between two points in a circuit expressed in volts')]},\n", " {'answer': 'potty',\n", " 'hint': 'synonyms for potty',\n", - " 'clues': [('stool', 'a plumbing fixture for defecation and urination'),\n", + " 'clues': [('can', 'a plumbing fixture for defecation and urination'),\n", + " ('thunder mug',\n", + " 'a receptacle for urination or defecation in the bedroom'),\n", + " ('stool', 'a plumbing fixture for defecation and urination'),\n", + " ('pot', 'a plumbing fixture for defecation and urination'),\n", " ('toilet', 'a plumbing fixture for defecation and urination'),\n", " ('throne', 'a plumbing fixture for defecation and urination'),\n", " ('chamberpot', 'a receptacle for urination or defecation in the bedroom'),\n", - " ('can', 'a plumbing fixture for defecation and urination'),\n", - " ('crapper', 'a plumbing fixture for defecation and urination'),\n", - " ('pot', 'a plumbing fixture for defecation and urination'),\n", - " ('thunder mug',\n", - " 'a receptacle for urination or defecation in the bedroom'),\n", - " ('commode', 'a plumbing fixture for defecation and urination')]},\n", + " ('commode', 'a plumbing fixture for defecation and urination'),\n", + " ('crapper', 'a plumbing fixture for defecation and urination')]},\n", " {'answer': 'premium',\n", " 'hint': 'synonyms for premium',\n", - " 'clues': [('bounty',\n", - " 'payment or reward (especially from a government) for acts such as catching criminals or killing predatory animals or enlisting in the military'),\n", - " ('insurance premium', 'payment for insurance'),\n", + " 'clues': [('insurance premium', 'payment for insurance'),\n", " ('agiotage', 'a fee charged for exchanging currencies'),\n", " ('agio', 'a fee charged for exchanging currencies'),\n", + " ('bounty',\n", + " 'payment or reward (especially from a government) for acts such as catching criminals or killing predatory animals or enlisting in the military'),\n", " ('exchange premium', 'a fee charged for exchanging currencies')]},\n", " {'answer': 'preventative',\n", " 'hint': 'synonyms for preventative',\n", - " 'clues': [('hitch', 'any obstruction that impedes or is burdensome'),\n", - " ('hinderance', 'any obstruction that impedes or is burdensome'),\n", - " ('prophylactic',\n", - " 'remedy that prevents or slows the course of an illness or disease'),\n", - " ('preventive', 'any obstruction that impedes or is burdensome'),\n", - " ('birth control device',\n", + " 'clues': [('incumbrance', 'any obstruction that impedes or is burdensome'),\n", + " ('prophylactic device',\n", " 'an agent or device intended to prevent conception'),\n", - " ('contraceptive', 'an agent or device intended to prevent conception'),\n", + " ('hindrance', 'any obstruction that impedes or is burdensome'),\n", + " ('preventive', 'an agent or device intended to prevent conception'),\n", + " ('interference', 'any obstruction that impedes or is burdensome'),\n", " ('contraceptive device',\n", " 'an agent or device intended to prevent conception'),\n", - " ('incumbrance', 'any obstruction that impedes or is burdensome'),\n", - " ('prophylactic device',\n", - " 'an agent or device intended to prevent conception'),\n", - " ('interference', 'any obstruction that impedes or is burdensome')]},\n", - " {'answer': 'preventive',\n", - " 'hint': 'synonyms for preventive',\n", - " 'clues': [('hitch', 'any obstruction that impedes or is burdensome'),\n", - " ('hinderance', 'any obstruction that impedes or is burdensome'),\n", " ('prophylactic',\n", " 'remedy that prevents or slows the course of an illness or disease'),\n", - " ('preventative', 'any obstruction that impedes or is burdensome'),\n", " ('birth control device',\n", " 'an agent or device intended to prevent conception'),\n", " ('contraceptive', 'an agent or device intended to prevent conception'),\n", + " ('hitch', 'any obstruction that impedes or is burdensome')]},\n", + " {'answer': 'preventive',\n", + " 'hint': 'synonyms for preventive',\n", + " 'clues': [('incumbrance', 'any obstruction that impedes or is burdensome'),\n", + " ('prophylactic device',\n", + " 'an agent or device intended to prevent conception'),\n", + " ('hindrance', 'any obstruction that impedes or is burdensome'),\n", + " ('interference', 'any obstruction that impedes or is burdensome'),\n", " ('contraceptive device',\n", " 'an agent or device intended to prevent conception'),\n", - " ('incumbrance', 'any obstruction that impedes or is burdensome'),\n", - " ('prophylactic device',\n", + " ('prophylactic',\n", + " 'remedy that prevents or slows the course of an illness or disease'),\n", + " ('contraceptive', 'an agent or device intended to prevent conception'),\n", + " ('birth control device',\n", " 'an agent or device intended to prevent conception'),\n", - " ('interference', 'any obstruction that impedes or is burdensome')]},\n", + " ('preventative', 'an agent or device intended to prevent conception'),\n", + " ('hitch', 'any obstruction that impedes or is burdensome')]},\n", " {'answer': 'prime',\n", " 'hint': 'synonyms for prime',\n", " 'clues': [('bloom', 'the period of greatest prosperity or productivity'),\n", - " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", + " ('flower', 'the period of greatest prosperity or productivity'),\n", + " ('prime quantity', 'a number that has no factor but itself and 1'),\n", " ('prime of life',\n", " 'the time of maturity when power and vigor are greatest'),\n", + " ('blossom', 'the period of greatest prosperity or productivity'),\n", + " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", " ('flush', 'the period of greatest prosperity or productivity'),\n", - " ('heyday', 'the period of greatest prosperity or productivity'),\n", - " ('prime quantity', 'a number that has no factor but itself and 1'),\n", " ('peak', 'the period of greatest prosperity or productivity'),\n", - " ('flower', 'the period of greatest prosperity or productivity'),\n", - " ('blossom', 'the period of greatest prosperity or productivity')]},\n", + " ('heyday', 'the period of greatest prosperity or productivity')]},\n", " {'answer': 'privy',\n", " 'hint': 'synonyms for privy',\n", - " 'clues': [('bathroom',\n", + " 'clues': [('toilet',\n", " 'a room or building equipped with one or more toilets'),\n", + " ('bathroom', 'a room or building equipped with one or more toilets'),\n", " ('earth-closet',\n", " 'a small outbuilding with a bench having holes through which a user can defecate'),\n", - " ('lav', 'a room or building equipped with one or more toilets'),\n", - " ('toilet', 'a room or building equipped with one or more toilets'),\n", " ('outhouse',\n", " 'a small outbuilding with a bench having holes through which a user can defecate'),\n", - " ('can', 'a room or building equipped with one or more toilets'),\n", - " ('lavatory', 'a room or building equipped with one or more toilets'),\n", + " ('lav', 'a room or building equipped with one or more toilets'),\n", " ('john', 'a room or building equipped with one or more toilets'),\n", " ('jakes',\n", - " 'a small outbuilding with a bench having holes through which a user can defecate')]},\n", + " 'a small outbuilding with a bench having holes through which a user can defecate'),\n", + " ('can', 'a room or building equipped with one or more toilets'),\n", + " ('lavatory', 'a room or building equipped with one or more toilets')]},\n", " {'answer': 'prize',\n", " 'hint': 'synonyms for prize',\n", - " 'clues': [('dirty money', 'goods or money obtained illegally'),\n", - " ('plunder', 'goods or money obtained illegally'),\n", - " ('loot', 'goods or money obtained illegally'),\n", - " ('booty', 'goods or money obtained illegally'),\n", + " 'clues': [('pillage', 'goods or money obtained illegally'),\n", " ('swag', 'goods or money obtained illegally'),\n", + " ('plunder', 'goods or money obtained illegally'),\n", + " ('trophy', 'something given as a token of victory'),\n", + " ('dirty money', 'goods or money obtained illegally'),\n", " ('award',\n", " 'something given for victory or superiority in a contest or competition or for winning a lottery'),\n", - " ('pillage', 'goods or money obtained illegally'),\n", - " ('trophy', 'something given as a token of victory')]},\n", + " ('loot', 'goods or money obtained illegally'),\n", + " ('booty', 'goods or money obtained illegally')]},\n", " {'answer': 'prognostic',\n", " 'hint': 'synonyms for prognostic',\n", " 'clues': [('omen', 'a sign of something about to happen'),\n", " ('prodigy', 'a sign of something about to happen'),\n", - " ('portent', 'a sign of something about to happen'),\n", " ('prognostication', 'a sign of something about to happen'),\n", - " ('presage', 'a sign of something about to happen')]},\n", + " ('presage', 'a sign of something about to happen'),\n", + " ('portent', 'a sign of something about to happen')]},\n", " {'answer': 'progressive',\n", " 'hint': 'synonyms for progressive',\n", " 'clues': [('imperfect tense',\n", " 'a tense of verbs used in describing action that is on-going'),\n", + " ('progressive tense',\n", + " 'a tense of verbs used in describing action that is on-going'),\n", " ('imperfect',\n", " 'a tense of verbs used in describing action that is on-going'),\n", " ('continuous tense',\n", - " 'a tense of verbs used in describing action that is on-going'),\n", - " ('progressive tense',\n", " 'a tense of verbs used in describing action that is on-going')]},\n", " {'answer': 'proof',\n", " 'hint': 'synonyms for proof',\n", - " 'clues': [('cogent evidence',\n", + " 'clues': [('test copy',\n", + " '(printing) an impression made to check for errors'),\n", + " ('cogent evidence',\n", " 'any factual evidence that helps to establish the truth of something'),\n", + " ('substantiation',\n", + " 'the act of validating; finding or testing the truth of something'),\n", " ('validation',\n", " 'the act of validating; finding or testing the truth of something'),\n", - " ('trial impression', '(printing) an impression made to check for errors'),\n", - " ('test copy', '(printing) an impression made to check for errors'),\n", - " ('substantiation',\n", - " 'the act of validating; finding or testing the truth of something')]},\n", + " ('trial impression',\n", + " '(printing) an impression made to check for errors')]},\n", " {'answer': 'prophylactic',\n", " 'hint': 'synonyms for prophylactic',\n", - " 'clues': [('preventive',\n", - " 'remedy that prevents or slows the course of an illness or disease'),\n", - " ('safe',\n", + " 'clues': [('safe',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", " ('rubber',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", - " ('safety',\n", - " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", + " ('preventive',\n", + " 'remedy that prevents or slows the course of an illness or disease'),\n", " ('condom',\n", + " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", + " ('safety',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse')]},\n", " {'answer': 'puff',\n", " 'hint': 'synonyms for puff',\n", - " 'clues': [('pouffe', 'thick cushion used as a seat'),\n", - " ('whiff', 'a short light gust of air'),\n", + " 'clues': [('blow', 'forceful exhalation through the nose or mouth'),\n", + " ('powderpuff',\n", + " 'a soft spherical object made from fluffy fibers; for applying powder to the skin'),\n", " ('comfort',\n", " 'bedding made of two layers of cloth filled with stuffing and stitched together'),\n", + " ('quilt',\n", + " 'bedding made of two layers of cloth filled with stuffing and stitched together'),\n", " ('pouf', 'thick cushion used as a seat'),\n", - " ('drag', 'a slow inhalation (as of tobacco smoke)'),\n", " ('pull', 'a slow inhalation (as of tobacco smoke)'),\n", " ('ottoman', 'thick cushion used as a seat'),\n", " ('puff of air', 'a short light gust of air'),\n", - " ('blow', 'forceful exhalation through the nose or mouth'),\n", - " ('powderpuff',\n", - " 'a soft spherical object made from fluffy fibers; for applying powder to the skin'),\n", - " ('quilt',\n", - " 'bedding made of two layers of cloth filled with stuffing and stitched together'),\n", - " ('hassock', 'thick cushion used as a seat')]},\n", + " ('hassock', 'thick cushion used as a seat'),\n", + " ('drag', 'a slow inhalation (as of tobacco smoke)'),\n", + " ('whiff', 'a short light gust of air'),\n", + " ('pouffe', 'thick cushion used as a seat')]},\n", " {'answer': 'punk',\n", " 'hint': 'synonyms for punk',\n", - " 'clues': [('kindling', 'material for starting a fire'),\n", + " 'clues': [('tinder', 'material for starting a fire'),\n", + " ('kindling', 'material for starting a fire'),\n", " ('punk rock',\n", " 'rock music with deliberately offensive lyrics expressing anger and social alienation; in part a reaction against progressive rock'),\n", " ('touchwood', 'material for starting a fire'),\n", - " ('tinder', 'material for starting a fire'),\n", " ('spunk', 'material for starting a fire')]},\n", " {'answer': 'quality',\n", " 'hint': 'synonyms for quality',\n", - " 'clues': [('lineament',\n", - " 'a characteristic property that defines the apparent individual nature of something'),\n", - " ('calibre', 'a degree or grade of excellence or worth'),\n", - " ('character',\n", + " 'clues': [('tone',\n", + " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)'),\n", + " ('lineament',\n", " 'a characteristic property that defines the apparent individual nature of something'),\n", " ('timber',\n", " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)'),\n", - " ('tone',\n", - " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)'),\n", + " ('character',\n", + " 'a characteristic property that defines the apparent individual nature of something'),\n", + " ('calibre', 'a degree or grade of excellence or worth'),\n", " ('timbre',\n", " '(music) the distinctive property of a complex sound (a voice or noise or musical sound)')]},\n", " {'answer': 'quaternary',\n", " 'hint': 'synonyms for quaternary',\n", - " 'clues': [('tetrad',\n", + " 'clues': [('quatern',\n", " 'the cardinal number that is the sum of three and one'),\n", - " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", " ('quartet', 'the cardinal number that is the sum of three and one'),\n", - " ('foursome', 'the cardinal number that is the sum of three and one'),\n", - " ('quaternity', 'the cardinal number that is the sum of three and one'),\n", + " ('quaternion', 'the cardinal number that is the sum of three and one'),\n", + " ('tetrad', 'the cardinal number that is the sum of three and one'),\n", " ('four', 'the cardinal number that is the sum of three and one'),\n", " ('4', 'the cardinal number that is the sum of three and one'),\n", - " ('quatern', 'the cardinal number that is the sum of three and one'),\n", - " ('quadruplet', 'the cardinal number that is the sum of three and one')]},\n", + " ('quadruplet', 'the cardinal number that is the sum of three and one'),\n", + " ('foursome', 'the cardinal number that is the sum of three and one'),\n", + " ('quaternity', 'the cardinal number that is the sum of three and one')]},\n", " {'answer': 'quiet',\n", " 'hint': 'synonyms for quiet',\n", - " 'clues': [('placidity', 'a disposition free from stress or emotion'),\n", + " 'clues': [('tranquility', 'a disposition free from stress or emotion'),\n", " ('repose', 'a disposition free from stress or emotion'),\n", + " ('placidity', 'a disposition free from stress or emotion'),\n", " ('serenity', 'a disposition free from stress or emotion'),\n", - " ('tranquillity', 'a disposition free from stress or emotion'),\n", " ('silence', 'the absence of sound')]},\n", " {'answer': 'radical',\n", " 'hint': 'synonyms for radical',\n", - " 'clues': [('base',\n", - " '(linguistics) the form of a word after all affixes are removed'),\n", - " ('free radical',\n", - " 'an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule'),\n", - " ('root',\n", + " 'clues': [('root word',\n", " '(linguistics) the form of a word after all affixes are removed'),\n", " ('chemical group',\n", " '(chemistry) two or more atoms bound together as a single unit and forming part of a molecule'),\n", - " ('stem',\n", - " '(linguistics) the form of a word after all affixes are removed'),\n", - " ('root word',\n", - " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('free radical',\n", + " 'an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule'),\n", " ('group',\n", " '(chemistry) two or more atoms bound together as a single unit and forming part of a molecule'),\n", " ('theme',\n", + " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('base',\n", + " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('root',\n", + " '(linguistics) the form of a word after all affixes are removed'),\n", + " ('stem',\n", " '(linguistics) the form of a word after all affixes are removed')]},\n", " {'answer': 'radio',\n", " 'hint': 'synonyms for radio',\n", - " 'clues': [('wireless', 'medium for communication'),\n", - " ('receiving set',\n", + " 'clues': [('radiocommunication', 'medium for communication'),\n", + " ('radio receiver',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", - " ('radio set',\n", + " ('receiving set',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", - " ('radiocommunication', 'medium for communication'),\n", - " ('radio receiver',\n", + " ('wireless',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", " ('tuner',\n", + " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", + " ('radio set',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals')]},\n", " {'answer': 'raising',\n", " 'hint': 'synonyms for raising',\n", - " 'clues': [('bringing up',\n", - " 'helping someone grow up to be an accepted member of the community'),\n", - " ('breeding',\n", - " 'helping someone grow up to be an accepted member of the community'),\n", - " ('rearing',\n", + " 'clues': [('rearing',\n", + " 'the properties acquired as a consequence of the way you were treated as a child'),\n", + " ('lift', 'the event of something being raised upward'),\n", + " ('fostering',\n", " 'helping someone grow up to be an accepted member of the community'),\n", " ('elevation', 'the event of something being raised upward'),\n", + " ('nurture',\n", + " 'the properties acquired as a consequence of the way you were treated as a child'),\n", " ('upbringing',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('fosterage',\n", + " ('bringing up',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('lift', 'the event of something being raised upward'),\n", - " ('nurture',\n", - " 'the properties acquired as a consequence of the way you were treated as a child'),\n", - " ('fostering',\n", + " ('breeding',\n", + " 'helping someone grow up to be an accepted member of the community'),\n", + " ('fosterage',\n", " 'helping someone grow up to be an accepted member of the community')]},\n", " {'answer': 'rearing',\n", " 'hint': 'synonyms for rearing',\n", - " 'clues': [('bringing up',\n", - " 'helping someone grow up to be an accepted member of the community'),\n", - " ('breeding',\n", + " 'clues': [('fostering',\n", " 'helping someone grow up to be an accepted member of the community'),\n", " ('raising',\n", " 'the properties acquired as a consequence of the way you were treated as a child'),\n", + " ('nurture',\n", + " 'the properties acquired as a consequence of the way you were treated as a child'),\n", " ('upbringing',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('fosterage',\n", + " ('bringing up',\n", " 'helping someone grow up to be an accepted member of the community'),\n", - " ('nurture',\n", - " 'the properties acquired as a consequence of the way you were treated as a child'),\n", - " ('fostering',\n", + " ('breeding',\n", + " 'helping someone grow up to be an accepted member of the community'),\n", + " ('fosterage',\n", " 'helping someone grow up to be an accepted member of the community')]},\n", " {'answer': 'reflex',\n", " 'hint': 'synonyms for reflex',\n", - " 'clues': [('innate reflex',\n", - " 'an automatic instinctive unlearned reaction to a stimulus'),\n", - " ('unconditioned reflex',\n", + " 'clues': [('reflex action',\n", " 'an automatic instinctive unlearned reaction to a stimulus'),\n", - " ('physiological reaction',\n", + " ('reflex response',\n", " 'an automatic instinctive unlearned reaction to a stimulus'),\n", " ('instinctive reflex',\n", " 'an automatic instinctive unlearned reaction to a stimulus'),\n", - " ('reflex action',\n", + " ('innate reflex',\n", " 'an automatic instinctive unlearned reaction to a stimulus'),\n", - " ('inborn reflex',\n", + " ('unconditioned reflex',\n", " 'an automatic instinctive unlearned reaction to a stimulus'),\n", - " ('reflex response',\n", + " ('physiological reaction',\n", + " 'an automatic instinctive unlearned reaction to a stimulus'),\n", + " ('inborn reflex',\n", " 'an automatic instinctive unlearned reaction to a stimulus')]},\n", " {'answer': 'regulation',\n", " 'hint': 'synonyms for regulation',\n", - " 'clues': [('regularisation',\n", - " 'the act of bringing to uniformity; making regular'),\n", - " ('regulating', 'the act of controlling or directing according to rule'),\n", - " ('rule', 'a principle or condition that customarily governs behavior'),\n", - " ('ordinance', 'an authoritative rule')]},\n", + " 'clues': [('rule',\n", + " 'a principle or condition that customarily governs behavior'),\n", + " ('regularization', 'the act of bringing to uniformity; making regular'),\n", + " ('ordinance', 'an authoritative rule'),\n", + " ('regulating', 'the act of controlling or directing according to rule')]},\n", " {'answer': 'requisite',\n", " 'hint': 'synonyms for requisite',\n", - " 'clues': [('necessity', 'anything indispensable'),\n", + " 'clues': [('requirement', 'anything indispensable'),\n", " ('necessary', 'anything indispensable'),\n", - " ('essential', 'anything indispensable'),\n", - " ('requirement', 'anything indispensable')]},\n", + " ('necessity', 'anything indispensable'),\n", + " ('essential', 'anything indispensable')]},\n", " {'answer': 'residual',\n", " 'hint': 'synonyms for residual',\n", - " 'clues': [('balance',\n", + " 'clues': [('residuum',\n", " 'something left after other parts have been taken away'),\n", - " ('rest', 'something left after other parts have been taken away'),\n", - " ('residue', 'something left after other parts have been taken away'),\n", + " ('balance', 'something left after other parts have been taken away'),\n", " ('remainder', 'something left after other parts have been taken away'),\n", - " ('residuum', 'something left after other parts have been taken away')]},\n", + " ('rest', 'something left after other parts have been taken away'),\n", + " ('residue', 'something left after other parts have been taken away')]},\n", " {'answer': 'resultant',\n", " 'hint': 'synonyms for resultant',\n", - " 'clues': [('outcome', 'something that results'),\n", - " ('result', 'something that results'),\n", - " ('termination', 'something that results'),\n", + " 'clues': [('termination', 'something that results'),\n", + " ('final result', 'something that results'),\n", + " ('outcome', 'something that results'),\n", " ('vector sum', 'a vector that is the sum of two or more other vectors'),\n", - " ('final result', 'something that results')]},\n", + " ('result', 'something that results')]},\n", " {'answer': 'reverse',\n", " 'hint': 'synonyms for reverse',\n", - " 'clues': [('reversion', 'turning in the opposite direction'),\n", - " ('reversal',\n", + " 'clues': [('reversal',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('turnaround', 'turning in the opposite direction'),\n", + " ('turnabout', 'turning in the opposite direction'),\n", " ('opposite', 'a relation of direct opposition'),\n", " ('verso',\n", " 'the side of a coin or medal that does not bear the principal design'),\n", - " ('setback',\n", + " ('blow',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", + " ('reversion', 'turning in the opposite direction'),\n", " ('black eye',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('turnabout', 'turning in the opposite direction'),\n", - " ('blow',\n", - " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", + " ('contrary', 'a relation of direct opposition'),\n", " ('reverse gear',\n", " 'the gears by which the motion of a machine can be reversed'),\n", - " ('contrary', 'a relation of direct opposition')]},\n", + " ('setback',\n", + " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", + " ('turnaround', 'turning in the opposite direction')]},\n", " {'answer': 'reverting',\n", " 'hint': 'synonyms for reverting',\n", - " 'clues': [('lapsing', 'a failure to maintain a higher state'),\n", - " ('lapse', 'a failure to maintain a higher state'),\n", - " ('backsliding', 'a failure to maintain a higher state'),\n", + " 'clues': [('lapse', 'a failure to maintain a higher state'),\n", + " ('relapse', 'a failure to maintain a higher state'),\n", + " ('lapsing', 'a failure to maintain a higher state'),\n", " ('reversion', 'a failure to maintain a higher state'),\n", - " ('relapse', 'a failure to maintain a higher state')]},\n", + " ('backsliding', 'a failure to maintain a higher state')]},\n", " {'answer': 'rising',\n", " 'hint': 'synonyms for rising',\n", - " 'clues': [('rebellion',\n", - " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n", - " ('rise', 'a movement upward'),\n", - " ('ascent', 'a movement upward'),\n", - " ('revolt',\n", + " 'clues': [('insurrection',\n", " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n", " ('uprising',\n", " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n", - " ('insurrection',\n", + " ('rebellion',\n", + " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n", + " ('ascent', 'a movement upward'),\n", + " ('revolt',\n", " 'organized opposition to authority; a conflict in which one faction tries to wrest control from another'),\n", + " ('rise', 'a movement upward'),\n", " ('ascension', 'a movement upward')]},\n", " {'answer': 'roaring',\n", " 'hint': 'synonyms for roaring',\n", " 'clues': [('roar', 'a very loud utterance (like the sound of an animal)'),\n", - " ('thunder', 'a deep prolonged loud noise'),\n", - " ('holla', 'a very loud utterance (like the sound of an animal)'),\n", - " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n", - " ('holler', 'a very loud utterance (like the sound of an animal)'),\n", + " ('hollering', 'a very loud utterance (like the sound of an animal)'),\n", + " ('holloa', 'a very loud utterance (like the sound of an animal)'),\n", " ('bellow', 'a very loud utterance (like the sound of an animal)'),\n", - " ('yowl', 'a very loud utterance (like the sound of an animal)'),\n", - " ('boom', 'a deep prolonged loud noise')]},\n", + " ('boom', 'a deep prolonged loud noise'),\n", + " ('thunder', 'a deep prolonged loud noise'),\n", + " ('yowl', 'a very loud utterance (like the sound of an animal)')]},\n", " {'answer': 'rose',\n", " 'hint': 'synonyms for rose',\n", " 'clues': [('rosiness', 'a dusty pink color'),\n", - " ('rose wine',\n", + " ('blush wine',\n", " 'pinkish table wine from red grapes whose skins were removed after fermentation began'),\n", " ('pink wine',\n", " 'pinkish table wine from red grapes whose skins were removed after fermentation began'),\n", - " ('blush wine',\n", + " ('rose wine',\n", " 'pinkish table wine from red grapes whose skins were removed after fermentation began')]},\n", " {'answer': 'rotary',\n", " 'hint': 'synonyms for rotary',\n", - " 'clues': [('synchronous converter',\n", - " 'electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa'),\n", - " ('rotary converter',\n", + " 'clues': [('rotary converter',\n", " 'electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa'),\n", + " ('traffic circle',\n", + " 'a road junction at which traffic streams circularly around a central island'),\n", " ('roundabout',\n", " 'a road junction at which traffic streams circularly around a central island'),\n", " ('circle',\n", " 'a road junction at which traffic streams circularly around a central island'),\n", - " ('traffic circle',\n", - " 'a road junction at which traffic streams circularly around a central island')]},\n", + " ('synchronous converter',\n", + " 'electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa')]},\n", " {'answer': 'rough-and-tumble',\n", " 'hint': 'synonyms for rough-and-tumble',\n", - " 'clues': [('tussle', 'disorderly fighting'),\n", - " ('dogfight', 'disorderly fighting'),\n", - " ('scuffle', 'disorderly fighting'),\n", - " ('hassle', 'disorderly fighting')]},\n", + " 'clues': [('scuffle', 'disorderly fighting'),\n", + " ('tussle', 'disorderly fighting'),\n", + " ('hassle', 'disorderly fighting'),\n", + " ('dogfight', 'disorderly fighting')]},\n", " {'answer': 'round',\n", " 'hint': 'synonyms for round',\n", - " 'clues': [('circle', 'any circular or rotating mechanism'),\n", - " ('troll',\n", - " 'a partsong in which voices follow each other; one voice starts and others join in one after another until all are singing different parts of the song at the same time'),\n", + " 'clues': [('one shot', 'a charge of ammunition for a single shot'),\n", + " ('daily round', 'the usual activities in your day'),\n", + " ('rung', 'a crosspiece between the legs of a chair'),\n", + " ('unit of ammunition', 'a charge of ammunition for a single shot'),\n", " ('rhythm',\n", " 'an interval during which a recurring sequence of events occurs'),\n", - " ('beat', 'a regular route for a sentry or policeman'),\n", " ('stave', 'a crosspiece between the legs of a chair'),\n", - " ('round of golf', 'the activity of playing 18 holes of golf'),\n", - " ('round of drinks', 'a serving to each of a group (usually alcoholic)'),\n", - " ('one shot', 'a charge of ammunition for a single shot'),\n", - " ('rung', 'a crosspiece between the legs of a chair'),\n", " ('turn', '(sports) a division during which one team is on the offensive'),\n", - " ('unit of ammunition', 'a charge of ammunition for a single shot'),\n", - " ('daily round', 'the usual activities in your day'),\n", + " ('troll',\n", + " 'a partsong in which voices follow each other; one voice starts and others join in one after another until all are singing different parts of the song at the same time'),\n", + " ('round of drinks', 'a serving to each of a group (usually alcoholic)'),\n", + " ('circle', 'any circular or rotating mechanism'),\n", " ('cycle',\n", " 'an interval during which a recurring sequence of events occurs'),\n", - " ('bout',\n", - " '(sports) a division during which one team is on the offensive')]},\n", + " ('beat', 'a regular route for a sentry or policeman'),\n", + " ('bout', '(sports) a division during which one team is on the offensive'),\n", + " ('round of golf', 'the activity of playing 18 holes of golf')]},\n", " {'answer': 'roundabout',\n", " 'hint': 'synonyms for roundabout',\n", - " 'clues': [('rotary',\n", - " 'a road junction at which traffic streams circularly around a central island'),\n", - " ('carrousel',\n", + " 'clues': [('carousel',\n", + " 'a large, rotating machine with seats for children to ride or amusement'),\n", + " ('merry-go-round',\n", " 'a large, rotating machine with seats for children to ride or amusement'),\n", " ('whirligig',\n", " 'a large, rotating machine with seats for children to ride or amusement'),\n", - " ('circle',\n", + " ('rotary',\n", " 'a road junction at which traffic streams circularly around a central island'),\n", " ('traffic circle',\n", " 'a road junction at which traffic streams circularly around a central island'),\n", - " ('merry-go-round',\n", - " 'a large, rotating machine with seats for children to ride or amusement')]},\n", + " ('circle',\n", + " 'a road junction at which traffic streams circularly around a central island')]},\n", " {'answer': 'routine',\n", " 'hint': 'synonyms for routine',\n", - " 'clues': [('procedure',\n", + " 'clues': [('modus operandi',\n", + " 'an unvarying or habitual method or procedure'),\n", + " ('subroutine',\n", " 'a set sequence of steps, part of larger computer program'),\n", - " ('bit',\n", - " 'a short theatrical performance that is part of a longer program'),\n", " ('number',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('function', 'a set sequence of steps, part of larger computer program'),\n", - " ('subroutine',\n", - " 'a set sequence of steps, part of larger computer program'),\n", " ('subprogram',\n", " 'a set sequence of steps, part of larger computer program'),\n", - " ('modus operandi', 'an unvarying or habitual method or procedure'),\n", " ('turn',\n", " 'a short theatrical performance that is part of a longer program'),\n", + " ('bit',\n", + " 'a short theatrical performance that is part of a longer program'),\n", " ('act',\n", - " 'a short theatrical performance that is part of a longer program')]},\n", + " 'a short theatrical performance that is part of a longer program'),\n", + " ('procedure', 'a set sequence of steps, part of larger computer program'),\n", + " ('function',\n", + " 'a set sequence of steps, part of larger computer program')]},\n", " {'answer': 'rubber',\n", " 'hint': 'synonyms for rubber',\n", - " 'clues': [('natural rubber',\n", - " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n", - " ('rubber eraser',\n", - " 'an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil'),\n", - " ('pencil eraser',\n", - " 'an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil'),\n", - " ('prophylactic',\n", + " 'clues': [('safe',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", " ('synthetic rubber',\n", " 'any of various synthetic elastic materials whose properties resemble natural rubber'),\n", - " ('safe',\n", - " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", - " ('arctic',\n", - " 'a waterproof overshoe that protects shoes from water or snow'),\n", " ('caoutchouc',\n", " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n", - " ('safety',\n", - " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", - " ('gum elastic',\n", - " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n", " ('galosh',\n", " 'a waterproof overshoe that protects shoes from water or snow'),\n", " ('golosh',\n", " 'a waterproof overshoe that protects shoes from water or snow'),\n", - " ('gumshoe',\n", - " 'a waterproof overshoe that protects shoes from water or snow'),\n", + " ('natural rubber',\n", + " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n", + " ('pencil eraser',\n", + " 'an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil'),\n", " ('condom',\n", - " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse')]},\n", + " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", + " ('safety',\n", + " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", + " ('prophylactic',\n", + " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", + " ('arctic',\n", + " 'a waterproof overshoe that protects shoes from water or snow'),\n", + " ('gum elastic',\n", + " 'an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products'),\n", + " ('rubber eraser',\n", + " 'an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil'),\n", + " ('gumshoe',\n", + " 'a waterproof overshoe that protects shoes from water or snow')]},\n", " {'answer': 'runaway',\n", " 'hint': 'synonyms for runaway',\n", - " 'clues': [('walkaway', 'an easy victory'),\n", - " ('laugher', 'an easy victory'),\n", - " ('shoo-in', 'an easy victory'),\n", + " 'clues': [('laugher', 'an easy victory'),\n", + " ('romp', 'an easy victory'),\n", + " ('walkaway', 'an easy victory'),\n", " ('blowout', 'an easy victory'),\n", - " ('romp', 'an easy victory')]},\n", + " ('shoo-in', 'an easy victory')]},\n", " {'answer': 'running',\n", " 'hint': 'synonyms for running',\n", - " 'clues': [('run', 'the act of running; traveling on foot at a fast pace'),\n", + " 'clues': [('running game',\n", + " '(American football) a play in which a player attempts to carry the ball through or past the opposing team'),\n", + " ('run',\n", + " '(American football) a play in which a player attempts to carry the ball through or past the opposing team'),\n", " ('track',\n", " 'the act of participating in an athletic competition involving running on a track'),\n", - " ('running game',\n", - " '(American football) a play in which a player attempts to carry the ball through or past the opposing team'),\n", " ('running play',\n", " '(American football) a play in which a player attempts to carry the ball through or past the opposing team')]},\n", " {'answer': 'rush',\n", " 'hint': 'synonyms for rush',\n", - " 'clues': [('rushing',\n", - " 'the act of moving hurriedly and in a careless manner'),\n", + " 'clues': [('spate', 'a sudden forceful flow'),\n", + " ('rushing',\n", + " '(American football) an attempt to advance the ball by running into the line'),\n", + " ('hurry', 'the act of moving hurriedly and in a careless manner'),\n", " ('boot', 'the swift release of a store of affective force'),\n", - " ('surge', 'a sudden forceful flow'),\n", + " ('flush', 'the swift release of a store of affective force'),\n", + " ('kick', 'the swift release of a store of affective force'),\n", " ('upsurge', 'a sudden forceful flow'),\n", - " ('haste', 'the act of moving hurriedly and in a careless manner'),\n", - " ('bang', 'the swift release of a store of affective force'),\n", " ('charge', 'the swift release of a store of affective force'),\n", - " ('kick', 'the swift release of a store of affective force'),\n", - " ('flush', 'the swift release of a store of affective force'),\n", - " ('thrill', 'the swift release of a store of affective force'),\n", - " ('hurry', 'the act of moving hurriedly and in a careless manner'),\n", - " ('spate', 'a sudden forceful flow')]},\n", + " ('surge', 'a sudden forceful flow'),\n", + " ('bang', 'the swift release of a store of affective force'),\n", + " ('haste', 'the act of moving hurriedly and in a careless manner'),\n", + " ('thrill', 'the swift release of a store of affective force')]},\n", " {'answer': 'sable',\n", " 'hint': 'synonyms for sable',\n", - " 'clues': [('sable brush', \"an artist's brush made of sable hairs\"),\n", - " ('jet black', 'a very dark black'),\n", - " (\"sable's hair pencil\", \"an artist's brush made of sable hairs\"),\n", - " ('soot black', 'a very dark black'),\n", - " ('pitch black', 'a very dark black'),\n", + " 'clues': [('pitch black', 'a very dark black'),\n", " ('coal black', 'a very dark black'),\n", - " ('ebony', 'a very dark black')]},\n", + " (\"sable's hair pencil\", \"an artist's brush made of sable hairs\"),\n", + " ('ebony', 'a very dark black'),\n", + " ('jet black', 'a very dark black'),\n", + " ('sable brush', \"an artist's brush made of sable hairs\"),\n", + " ('soot black', 'a very dark black')]},\n", " {'answer': 'safe',\n", " 'hint': 'synonyms for safe',\n", " 'clues': [('rubber',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", - " ('prophylactic',\n", - " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", " ('safety',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", " ('condom',\n", + " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse'),\n", + " ('prophylactic',\n", " 'contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse')]},\n", " {'answer': 'salt',\n", " 'hint': 'synonyms for salt',\n", - " 'clues': [('table salt',\n", + " 'clues': [('common salt',\n", " 'white crystalline form of especially sodium chloride used to season and preserve food'),\n", " ('saltiness',\n", " 'the taste experience when common salt is taken into the mouth'),\n", + " ('table salt',\n", + " 'white crystalline form of especially sodium chloride used to season and preserve food'),\n", " ('salinity',\n", - " 'the taste experience when common salt is taken into the mouth'),\n", - " ('common salt',\n", - " 'white crystalline form of especially sodium chloride used to season and preserve food')]},\n", + " 'the taste experience when common salt is taken into the mouth')]},\n", " {'answer': 'sapphire',\n", " 'hint': 'synonyms for sapphire',\n", - " 'clues': [('azure', 'a light shade of blue'),\n", - " ('lazuline', 'a light shade of blue'),\n", + " 'clues': [('lazuline', 'a light shade of blue'),\n", " ('cerulean', 'a light shade of blue'),\n", - " ('sky-blue', 'a light shade of blue')]},\n", + " ('sky-blue', 'a light shade of blue'),\n", + " ('azure', 'a light shade of blue')]},\n", " {'answer': 'saving',\n", " 'hint': 'synonyms for saving',\n", - " 'clues': [('economy', 'an act of economizing; reduction in cost'),\n", - " ('deliverance', 'recovery or preservation from loss or danger'),\n", - " ('delivery', 'recovery or preservation from loss or danger'),\n", + " 'clues': [('rescue', 'recovery or preservation from loss or danger'),\n", + " ('economy', 'an act of economizing; reduction in cost'),\n", " ('preservation',\n", " 'the activity of protecting something from loss or danger'),\n", - " ('rescue', 'recovery or preservation from loss or danger')]},\n", + " ('delivery', 'recovery or preservation from loss or danger'),\n", + " ('deliverance', 'recovery or preservation from loss or danger')]},\n", " {'answer': 'scrub',\n", " 'hint': 'synonyms for scrub',\n", - " 'clues': [('scouring',\n", + " 'clues': [('bush',\n", + " 'dense vegetation consisting of stunted trees or bushes'),\n", + " ('scrubbing',\n", " 'the act of cleaning a surface by rubbing it with a brush and soap and water'),\n", " ('chaparral', 'dense vegetation consisting of stunted trees or bushes'),\n", - " ('bush', 'dense vegetation consisting of stunted trees or bushes'),\n", - " ('scrubbing',\n", + " ('scouring',\n", " 'the act of cleaning a surface by rubbing it with a brush and soap and water')]},\n", " {'answer': 'second',\n", " 'hint': 'synonyms for second',\n", - " 'clues': [('arcsecond', 'a 60th part of a minute of arc'),\n", - " ('sec',\n", - " \"1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites\"),\n", - " ('bit', 'an indefinitely short time'),\n", - " ('minute', 'an indefinitely short time'),\n", - " ('endorsement', 'a speech seconding a motion'),\n", - " ('moment', 'an indefinitely short time'),\n", + " 'clues': [('endorsement', 'a speech seconding a motion'),\n", " ('s',\n", " \"1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites\"),\n", " ('second gear',\n", " 'the gear that has the second lowest forward gear ratio in the gear box of a motor vehicle'),\n", - " ('second base',\n", - " 'the fielding position of the player on a baseball team who is stationed near the second of the bases in the infield'),\n", - " ('mo', 'an indefinitely short time'),\n", - " ('instant', 'a particular point in time'),\n", + " ('arcsecond', 'a 60th part of a minute of arc'),\n", + " ('secondment', 'a speech seconding a motion'),\n", " ('irregular',\n", " 'merchandise that has imperfections; usually sold at a reduced price without the brand name'),\n", - " ('secondment', 'a speech seconding a motion')]},\n", + " ('mo', 'an indefinitely short time'),\n", + " ('moment', 'a particular point in time'),\n", + " ('instant', 'a particular point in time'),\n", + " ('sec',\n", + " \"1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites\"),\n", + " ('second base',\n", + " 'the fielding position of the player on a baseball team who is stationed near the second of the bases in the infield'),\n", + " ('bit', 'an indefinitely short time'),\n", + " ('minute', 'an indefinitely short time')]},\n", " {'answer': 'secret',\n", " 'hint': 'synonyms for secret',\n", - " 'clues': [('arcanum', 'information known only to a special group'),\n", - " ('mystery',\n", - " 'something that baffles understanding and cannot be explained'),\n", - " ('closed book',\n", + " 'clues': [('closed book',\n", " 'something that baffles understanding and cannot be explained'),\n", + " ('arcanum', 'information known only to a special group'),\n", " ('enigma',\n", + " 'something that baffles understanding and cannot be explained'),\n", + " ('mystery',\n", " 'something that baffles understanding and cannot be explained')]},\n", " {'answer': 'seeing',\n", " 'hint': 'synonyms for seeing',\n", @@ -27547,473 +27581,480 @@ " ('sightedness', 'normal use of the faculty of vision')]},\n", " {'answer': 'set',\n", " 'hint': 'synonyms for set',\n", - " 'clues': [('lot', 'an unofficial association of people or groups'),\n", - " ('circle', 'an unofficial association of people or groups'),\n", - " ('solidification',\n", + " 'clues': [('exercise set',\n", + " 'several exercises intended to be done in series'),\n", + " ('readiness',\n", + " '(psychology) being temporarily ready to respond in a particular way'),\n", + " ('solidifying',\n", " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n", - " ('curing',\n", + " ('lot', 'an unofficial association of people or groups'),\n", + " ('stage set',\n", + " 'representation consisting of the scenery and other properties used to identify the location of a dramatic production'),\n", + " ('solidification',\n", " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n", " ('bent',\n", " 'a relatively permanent inclination to react in a particular way'),\n", - " ('exercise set', 'several exercises intended to be done in series'),\n", - " ('readiness',\n", - " '(psychology) being temporarily ready to respond in a particular way'),\n", + " ('circle', 'an unofficial association of people or groups'),\n", " ('hardening',\n", " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n", - " ('stage set',\n", - " 'representation consisting of the scenery and other properties used to identify the location of a dramatic production'),\n", - " ('band', 'an unofficial association of people or groups'),\n", - " ('solidifying',\n", - " 'the process of becoming hard or solid by cooling or drying or crystallization')]},\n", + " ('curing',\n", + " 'the process of becoming hard or solid by cooling or drying or crystallization'),\n", + " ('band', 'an unofficial association of people or groups')]},\n", " {'answer': 'seven',\n", " 'hint': 'synonyms for seven',\n", - " 'clues': [('7', 'the cardinal number that is the sum of six and one'),\n", + " 'clues': [('sevener',\n", + " 'the cardinal number that is the sum of six and one'),\n", + " ('septenary', 'the cardinal number that is the sum of six and one'),\n", + " ('7', 'the cardinal number that is the sum of six and one'),\n", + " ('septet', 'the cardinal number that is the sum of six and one'),\n", " ('seven-spot',\n", " 'one of four playing cards in a deck with seven pips on the face'),\n", - " ('septet', 'the cardinal number that is the sum of six and one'),\n", - " ('septenary', 'the cardinal number that is the sum of six and one'),\n", - " ('heptad', 'the cardinal number that is the sum of six and one'),\n", - " ('sevener', 'the cardinal number that is the sum of six and one')]},\n", + " ('heptad', 'the cardinal number that is the sum of six and one')]},\n", " {'answer': 'shot',\n", " 'hint': 'synonyms for shot',\n", - " 'clues': [('jibe',\n", - " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('shooting', 'the act of firing a projectile'),\n", - " ('snap',\n", - " 'an informal photograph; usually made with a small hand-held camera'),\n", - " ('guessing', 'an estimate based on little or no information'),\n", - " ('dead reckoning', 'an estimate based on little or no information'),\n", - " ('dig',\n", + " 'clues': [('dig',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('shaft',\n", + " ('stab', 'informal words for any attempt or effort'),\n", + " ('nip', 'a small drink of liquor'),\n", + " ('slam',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", + " ('pellet', 'a solid missile discharged from a firearm'),\n", " ('blastoff',\n", " 'the launching of a missile or spacecraft to a specified destination'),\n", - " ('pellet', 'a solid missile discharged from a firearm'),\n", - " ('stroke',\n", - " '(sports) the act of swinging or striking at a ball with a club or racket or bat or cue or hand'),\n", - " ('injection',\n", - " 'the act of putting a liquid into the body by means of a syringe'),\n", - " ('slam',\n", - " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('snapshot',\n", - " 'an informal photograph; usually made with a small hand-held camera'),\n", " ('gibe',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('guesswork', 'an estimate based on little or no information'),\n", - " ('stab', 'informal words for any attempt or effort'),\n", + " ('jibe',\n", + " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", + " ('shaft',\n", + " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", + " ('guessing', 'an estimate based on little or no information'),\n", + " ('injection',\n", + " 'the act of putting a liquid into the body by means of a syringe'),\n", + " ('dead reckoning', 'an estimate based on little or no information'),\n", + " ('shooting', 'the act of firing a projectile'),\n", " ('scene',\n", " 'a consecutive series of pictures that constitutes a unit of action in a film'),\n", + " ('guesswork', 'an estimate based on little or no information'),\n", + " ('snapshot',\n", + " 'an informal photograph; usually made with a small hand-held camera'),\n", " ('barb',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('nip', 'a small drink of liquor')]},\n", + " ('snap',\n", + " 'an informal photograph; usually made with a small hand-held camera'),\n", + " ('stroke',\n", + " '(sports) the act of swinging or striking at a ball with a club or racket or bat or cue or hand')]},\n", " {'answer': 'side',\n", " 'hint': 'synonyms for side',\n", - " 'clues': [('incline', 'an elevated geological formation'),\n", + " 'clues': [('side of meat',\n", + " \"a lengthwise dressed half of an animal's carcass used for food\"),\n", + " ('face', 'a surface forming part of the outside of an object'),\n", " ('slope', 'an elevated geological formation'),\n", " ('position',\n", " 'an opinion that is held in opposition to another in an argument or dispute'),\n", - " ('side of meat',\n", - " \"a lengthwise dressed half of an animal's carcass used for food\"),\n", - " ('face', 'a surface forming part of the outside of an object')]},\n", + " ('incline', 'an elevated geological formation')]},\n", " {'answer': 'sign',\n", " 'hint': 'synonyms for sign',\n", - " 'clues': [('mark',\n", - " 'a perceptible indication of something not immediately apparent (as a visible clue that something has happened)'),\n", - " ('mansion',\n", - " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", + " 'clues': [('signboard',\n", + " 'structure displaying a board on which advertisements can be posted'),\n", " ('polarity',\n", " 'having an indicated pole (as the distinction between positive and negative electric charges)'),\n", - " ('signal', 'any nonverbal action or gesture that encodes a message'),\n", - " ('star sign',\n", - " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", - " ('foretoken',\n", - " 'an event that is experienced as indicating important things to come'),\n", " ('house',\n", " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", - " ('signboard',\n", - " 'structure displaying a board on which advertisements can be posted'),\n", - " ('sign of the zodiac',\n", - " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", " ('augury',\n", " 'an event that is experienced as indicating important things to come'),\n", + " ('signaling', 'any nonverbal action or gesture that encodes a message'),\n", + " ('foretoken',\n", + " 'an event that is experienced as indicating important things to come'),\n", " ('preindication',\n", " 'an event that is experienced as indicating important things to come'),\n", + " ('star sign',\n", + " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", + " ('mark',\n", + " 'a perceptible indication of something not immediately apparent (as a visible clue that something has happened)'),\n", " ('planetary house',\n", + " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", + " ('sign of the zodiac',\n", + " '(astrology) one of 12 equal areas into which the zodiac is divided'),\n", + " ('mansion',\n", " '(astrology) one of 12 equal areas into which the zodiac is divided')]},\n", " {'answer': 'silver',\n", " 'hint': 'synonyms for silver',\n", - " 'clues': [('atomic number 47',\n", - " 'a soft white precious univalent metallic element having the highest electrical and thermal conductivity of any metal; occurs in argentite and in free form; used in coins and jewelry and tableware and photography'),\n", - " ('ash gray', 'a light shade of grey'),\n", + " 'clues': [('silver medal',\n", + " 'a trophy made of silver (or having the appearance of silver) that is usually awarded for winning second place in a competition'),\n", " ('silver gray', 'a light shade of grey'),\n", - " ('flatware', 'silverware eating utensils'),\n", - " ('silver medal',\n", - " 'a trophy made of silver (or having the appearance of silver) that is usually awarded for winning second place in a competition')]},\n", + " ('ash gray', 'a light shade of grey'),\n", + " ('atomic number 47',\n", + " 'a soft white precious univalent metallic element having the highest electrical and thermal conductivity of any metal; occurs in argentite and in free form; used in coins and jewelry and tableware and photography'),\n", + " ('flatware', 'silverware eating utensils')]},\n", " {'answer': 'single',\n", " 'hint': 'synonyms for single',\n", - " 'clues': [('bingle',\n", - " 'a base hit on which the batter stops safely at first base'),\n", + " 'clues': [('1',\n", + " 'the smallest whole number or a numeral representing this number'),\n", + " ('unity',\n", + " 'the smallest whole number or a numeral representing this number'),\n", " ('ace',\n", " 'the smallest whole number or a numeral representing this number'),\n", + " ('bingle', 'a base hit on which the batter stops safely at first base'),\n", " ('one',\n", - " 'the smallest whole number or a numeral representing this number'),\n", - " ('1', 'the smallest whole number or a numeral representing this number'),\n", - " ('unity',\n", " 'the smallest whole number or a numeral representing this number')]},\n", " {'answer': 'six',\n", " 'hint': 'synonyms for six',\n", - " 'clues': [('hexad', 'the cardinal number that is the sum of five and one'),\n", + " 'clues': [('six-spot',\n", + " 'a playing card or domino or die whose upward face shows six pips'),\n", + " ('sise', 'the cardinal number that is the sum of five and one'),\n", + " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n", " ('sextuplet', 'the cardinal number that is the sum of five and one'),\n", + " ('sestet', 'the cardinal number that is the sum of five and one'),\n", + " ('hexad', 'the cardinal number that is the sum of five and one'),\n", " ('6', 'the cardinal number that is the sum of five and one'),\n", - " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n", - " ('sise', 'the cardinal number that is the sum of five and one'),\n", - " ('sextet', 'the cardinal number that is the sum of five and one'),\n", " ('sixer', 'the cardinal number that is the sum of five and one'),\n", - " ('sestet', 'the cardinal number that is the sum of five and one'),\n", - " ('six-spot',\n", - " 'a playing card or domino or die whose upward face shows six pips')]},\n", + " ('sextet', 'the cardinal number that is the sum of five and one')]},\n", " {'answer': 'sky-blue',\n", " 'hint': 'synonyms for sky-blue',\n", - " 'clues': [('azure', 'a light shade of blue'),\n", - " ('sapphire', 'a light shade of blue'),\n", - " ('lazuline', 'a light shade of blue'),\n", - " ('cerulean', 'a light shade of blue')]},\n", + " 'clues': [('lazuline', 'a light shade of blue'),\n", + " ('cerulean', 'a light shade of blue'),\n", + " ('azure', 'a light shade of blue'),\n", + " ('sapphire', 'a light shade of blue')]},\n", " {'answer': 'slack',\n", " 'hint': 'synonyms for slack',\n", - " 'clues': [('slump',\n", - " 'a noticeable deterioration in performance or quality'),\n", - " ('quag', 'a soft wet area of low-lying land that sinks underfoot'),\n", - " ('falling off', 'a noticeable deterioration in performance or quality'),\n", - " ('falloff', 'a noticeable deterioration in performance or quality'),\n", + " 'clues': [('morass',\n", + " 'a soft wet area of low-lying land that sinks underfoot'),\n", " ('slackness', 'the quality of being loose (not taut)'),\n", - " ('mire', 'a soft wet area of low-lying land that sinks underfoot'),\n", - " ('morass', 'a soft wet area of low-lying land that sinks underfoot'),\n", " ('drop-off', 'a noticeable deterioration in performance or quality'),\n", + " ('slack water', 'a stretch of water without current or movement'),\n", " ('quagmire', 'a soft wet area of low-lying land that sinks underfoot'),\n", - " ('slack water', 'a stretch of water without current or movement')]},\n", + " ('mire', 'a soft wet area of low-lying land that sinks underfoot'),\n", + " ('falloff', 'a noticeable deterioration in performance or quality'),\n", + " ('quag', 'a soft wet area of low-lying land that sinks underfoot'),\n", + " ('falling off', 'a noticeable deterioration in performance or quality'),\n", + " ('slump', 'a noticeable deterioration in performance or quality')]},\n", " {'answer': 'slick',\n", " 'hint': 'synonyms for slick',\n", - " 'clues': [('slipperiness', 'a slippery smoothness'),\n", - " ('slick magazine', 'a magazine printed on good quality paper'),\n", - " ('slip', 'a slippery smoothness'),\n", + " 'clues': [('slick magazine', 'a magazine printed on good quality paper'),\n", " ('slickness', 'a slippery smoothness'),\n", - " ('glossy', 'a magazine printed on good quality paper')]},\n", + " ('slip', 'a slippery smoothness'),\n", + " ('glossy', 'a magazine printed on good quality paper'),\n", + " ('slipperiness', 'a slippery smoothness')]},\n", " {'answer': 'snub',\n", " 'hint': 'synonyms for snub',\n", - " 'clues': [('cut', 'a refusal to recognize someone you know'),\n", + " 'clues': [('rebuff', 'an instance of driving away or warding off'),\n", + " ('cut', 'a refusal to recognize someone you know'),\n", " ('cold shoulder', 'a refusal to recognize someone you know'),\n", - " ('rebuff', 'an instance of driving away or warding off'),\n", " ('repulse', 'an instance of driving away or warding off')]},\n", " {'answer': 'soaring',\n", " 'hint': 'synonyms for soaring',\n", - " 'clues': [('sailplaning', 'the activity of flying a glider'),\n", + " 'clues': [('sailing', 'the activity of flying a glider'),\n", " ('gliding', 'the activity of flying a glider'),\n", - " ('sailing', 'the activity of flying a glider'),\n", - " ('glide', 'the activity of flying a glider')]},\n", + " ('glide', 'the activity of flying a glider'),\n", + " ('sailplaning', 'the activity of flying a glider')]},\n", " {'answer': 'solvent',\n", " 'hint': 'synonyms for solvent',\n", - " 'clues': [('dissolving agent',\n", + " 'clues': [('dissolver',\n", " 'a liquid substance capable of dissolving other substances'),\n", - " ('solution',\n", + " ('resolution',\n", " 'a statement that solves a problem or explains how to solve the problem'),\n", + " ('dissolvent',\n", + " 'a liquid substance capable of dissolving other substances'),\n", " ('answer',\n", " 'a statement that solves a problem or explains how to solve the problem'),\n", " ('result',\n", " 'a statement that solves a problem or explains how to solve the problem'),\n", - " ('dissolver',\n", + " ('dissolving agent',\n", " 'a liquid substance capable of dissolving other substances'),\n", " ('resolvent',\n", - " 'a liquid substance capable of dissolving other substances'),\n", - " ('dissolvent',\n", " 'a liquid substance capable of dissolving other substances')]},\n", " {'answer': 'sound',\n", " 'hint': 'synonyms for sound',\n", - " 'clues': [('audio', 'the audible part of a transmitted signal'),\n", - " ('phone',\n", - " '(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language'),\n", + " 'clues': [('strait',\n", + " 'a narrow channel of the sea joining two larger bodies of water'),\n", " ('speech sound',\n", " '(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language'),\n", - " ('strait',\n", - " 'a narrow channel of the sea joining two larger bodies of water'),\n", - " ('auditory sensation', 'the subjective sensation of hearing something')]},\n", + " ('phone',\n", + " '(phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language'),\n", + " ('auditory sensation', 'the subjective sensation of hearing something'),\n", + " ('audio', 'the audible part of a transmitted signal')]},\n", " {'answer': 'speaking',\n", " 'hint': 'synonyms for speaking',\n", - " 'clues': [('speechmaking', 'delivering an address to a public audience'),\n", - " ('oral presentation', 'delivering an address to a public audience'),\n", - " ('speech production', 'the utterance of intelligible speech'),\n", - " ('public speaking', 'delivering an address to a public audience')]},\n", + " 'clues': [('oral presentation',\n", + " 'delivering an address to a public audience'),\n", + " ('speechmaking', 'delivering an address to a public audience'),\n", + " ('public speaking', 'delivering an address to a public audience'),\n", + " ('speech production', 'the utterance of intelligible speech')]},\n", " {'answer': 'speckless',\n", " 'hint': 'synonyms for speckless',\n", " 'clues': [('maculation', 'a small contrasting part of something'),\n", + " ('patch', 'a small contrasting part of something'),\n", " ('fleck', 'a small contrasting part of something'),\n", + " ('speckle', 'a small contrasting part of something'),\n", " ('spot', 'a small contrasting part of something'),\n", - " ('dapple', 'a small contrasting part of something'),\n", - " ('patch', 'a small contrasting part of something'),\n", - " ('speckle', 'a small contrasting part of something')]},\n", + " ('dapple', 'a small contrasting part of something')]},\n", " {'answer': 'spiral',\n", " 'hint': 'synonyms for spiral',\n", " 'clues': [('volute',\n", " 'a structure consisting of something wound in a continuous series of loops'),\n", " ('helix',\n", - " 'a curve that lies on the surface of a cylinder or cone and cuts the element at a constant angle'),\n", + " 'a structure consisting of something wound in a continuous series of loops'),\n", " ('whorl',\n", " 'a structure consisting of something wound in a continuous series of loops'),\n", " ('coil',\n", " 'a structure consisting of something wound in a continuous series of loops')]},\n", " {'answer': 'split',\n", " 'hint': 'synonyms for split',\n", - " 'clues': [('rent', 'the act of rending or ripping or splitting something'),\n", - " ('stock split',\n", - " \"an increase in the number of outstanding shares of a corporation without changing the shareholders' equity\"),\n", - " ('rip', 'an opening made forcibly as by pulling apart'),\n", + " 'clues': [('rent', 'an opening made forcibly as by pulling apart'),\n", + " ('schism', 'division of a group into opposing factions'),\n", " ('split up',\n", " \"an increase in the number of outstanding shares of a corporation without changing the shareholders' equity\"),\n", - " ('schism', 'division of a group into opposing factions'),\n", + " ('rip', 'the act of rending or ripping or splitting something'),\n", " ('tear', 'an opening made forcibly as by pulling apart'),\n", - " ('snag', 'an opening made forcibly as by pulling apart')]},\n", + " ('snag', 'an opening made forcibly as by pulling apart'),\n", + " ('stock split',\n", + " \"an increase in the number of outstanding shares of a corporation without changing the shareholders' equity\")]},\n", " {'answer': 'spread',\n", " 'hint': 'synonyms for spread',\n", - " 'clues': [('spreading',\n", - " 'process or result of distributing or extending over a wide expanse of space'),\n", - " ('bed cover', 'decorative cover for a bed'),\n", - " ('paste',\n", - " 'a tasty mixture to be spread on bread or crackers or used in preparing other dishes'),\n", - " ('banquet', 'a meal that is well prepared and greatly enjoyed'),\n", + " 'clues': [('gap',\n", + " 'a conspicuous disparity or difference as between two figures'),\n", " ('cattle ranch',\n", " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)'),\n", - " ('spreadhead', 'two facing pages of a book or other publication'),\n", - " ('scatter', 'a haphazard distribution in all directions'),\n", - " ('gap', 'a conspicuous disparity or difference as between two figures'),\n", - " ('counterpane', 'decorative cover for a bed'),\n", - " ('facing pages', 'two facing pages of a book or other publication'),\n", - " ('feast', 'a meal that is well prepared and greatly enjoyed'),\n", - " ('bedspread', 'decorative cover for a bed'),\n", + " ('spreading',\n", + " 'act of extending over a wider scope or expanse of space or time'),\n", " ('ranch',\n", " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)'),\n", + " ('bedspread', 'decorative cover for a bed'),\n", + " ('feast', 'a meal that is well prepared and greatly enjoyed'),\n", + " ('spreadhead', 'two facing pages of a book or other publication'),\n", + " ('bedcover', 'decorative cover for a bed'),\n", + " ('counterpane', 'decorative cover for a bed'),\n", + " ('bed covering', 'decorative cover for a bed'),\n", + " ('scatter', 'a haphazard distribution in all directions'),\n", " ('cattle farm',\n", - " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)')]},\n", + " 'farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle)'),\n", + " ('banquet', 'a meal that is well prepared and greatly enjoyed'),\n", + " ('paste',\n", + " 'a tasty mixture to be spread on bread or crackers or used in preparing other dishes'),\n", + " ('facing pages', 'two facing pages of a book or other publication')]},\n", " {'answer': 'squat',\n", " 'hint': 'synonyms for squat',\n", - " 'clues': [('diddly-squat', 'a small worthless amount'),\n", + " 'clues': [('diddly', 'a small worthless amount'),\n", + " ('shit', 'a small worthless amount'),\n", " ('knee bend',\n", " 'exercising by repeatedly assuming a crouching position with the knees bent; strengthens the leg muscles'),\n", - " ('jack', 'a small worthless amount'),\n", + " ('diddly-squat', 'a small worthless amount'),\n", + " ('diddly-shit', 'a small worthless amount'),\n", " ('doodly-squat', 'a small worthless amount'),\n", - " ('diddly', 'a small worthless amount'),\n", + " ('jack', 'a small worthless amount'),\n", " ('squatting',\n", - " 'the act of assuming or maintaining a crouching position with the knees bent and the buttocks near the heels'),\n", - " ('diddlyshit', 'a small worthless amount'),\n", - " ('shit', 'a small worthless amount')]},\n", + " 'exercising by repeatedly assuming a crouching position with the knees bent; strengthens the leg muscles')]},\n", " {'answer': 'standard',\n", " 'hint': 'synonyms for standard',\n", - " 'clues': [('measure',\n", - " 'a basis for comparison; a reference point against which other things can be evaluated'),\n", - " ('criterion', 'the ideal in terms of which something can be judged'),\n", + " 'clues': [('banner', 'any distinctive flag'),\n", " ('touchstone',\n", " 'a basis for comparison; a reference point against which other things can be evaluated'),\n", - " ('banner', 'any distinctive flag'),\n", - " ('monetary standard',\n", - " 'the value behind the money in a monetary system')]},\n", + " ('criterion',\n", + " 'a basis for comparison; a reference point against which other things can be evaluated'),\n", + " ('monetary standard', 'the value behind the money in a monetary system'),\n", + " ('measure',\n", + " 'a basis for comparison; a reference point against which other things can be evaluated')]},\n", " {'answer': 'stereo',\n", " 'hint': 'synonyms for stereo',\n", - " 'clues': [('stereophony',\n", + " 'clues': [('stereo system',\n", " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound'),\n", " ('stereoscopic picture',\n", " 'two photographs taken from slightly different angles that appear three-dimensional when viewed together'),\n", - " ('stereo system',\n", + " ('stereophonic system',\n", + " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound'),\n", + " ('stereophony',\n", " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound'),\n", " ('stereoscopic photograph',\n", - " 'two photographs taken from slightly different angles that appear three-dimensional when viewed together'),\n", - " ('stereophonic system',\n", - " 'reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound')]},\n", + " 'two photographs taken from slightly different angles that appear three-dimensional when viewed together')]},\n", " {'answer': 'stern',\n", " 'hint': 'synonyms for stern',\n", - " 'clues': [('quarter', 'the rear part of a ship'),\n", - " ('poop', 'the rear part of a ship'),\n", - " ('tail', 'the rear part of a ship'),\n", - " ('after part', 'the rear part of a ship')]},\n", + " 'clues': [('poop', 'the rear part of a ship'),\n", + " ('quarter', 'the rear part of a ship'),\n", + " ('after part', 'the rear part of a ship'),\n", + " ('tail', 'the rear part of a ship')]},\n", " {'answer': 'stimulant',\n", " 'hint': 'synonyms for stimulant',\n", - " 'clues': [('stimulus',\n", + " 'clues': [('excitant',\n", + " 'a drug that temporarily quickens some vital process'),\n", + " ('stimulus',\n", " 'any stimulating information or event; acts to arouse action'),\n", - " ('stimulant drug', 'a drug that temporarily quickens some vital process'),\n", " ('stimulation',\n", " 'any stimulating information or event; acts to arouse action'),\n", - " ('input', 'any stimulating information or event; acts to arouse action'),\n", - " ('excitant', 'a drug that temporarily quickens some vital process')]},\n", + " ('stimulant drug', 'a drug that temporarily quickens some vital process'),\n", + " ('input',\n", + " 'any stimulating information or event; acts to arouse action')]},\n", " {'answer': 'stock',\n", " 'hint': 'synonyms for stock',\n", - " 'clues': [('gunstock',\n", - " 'the handle of a handgun or the butt end of a rifle or shotgun or part of the support of a machine gun or artillery gun'),\n", - " ('line of descent', 'the descendants of one individual'),\n", + " 'clues': [('line', 'the descendants of one individual'),\n", " ('origin', 'the descendants of one individual'),\n", - " ('lineage', 'the descendants of one individual'),\n", - " ('fund', 'a supply of something available for future use'),\n", - " ('bloodline', 'the descendants of one individual'),\n", - " ('stemma', 'the descendants of one individual'),\n", + " ('neckcloth', 'an ornamental white cravat'),\n", + " ('blood', 'the descendants of one individual'),\n", " ('pedigree', 'the descendants of one individual'),\n", + " ('stemma', 'the descendants of one individual'),\n", + " ('line of descent', 'the descendants of one individual'),\n", + " ('blood line', 'the descendants of one individual'),\n", + " ('gunstock',\n", + " 'the handle of a handgun or the butt end of a rifle or shotgun or part of the support of a machine gun or artillery gun'),\n", + " ('breed', 'a special variety of domesticated animals within a species'),\n", + " ('inventory', 'the merchandise that a shop has on hand'),\n", + " ('broth',\n", + " 'liquid in which meat and vegetables are simmered; used as a basis for e.g. soups or sauces'),\n", + " ('lineage', 'the descendants of one individual'),\n", " ('strain', 'a special variety of domesticated animals within a species'),\n", + " ('fund', 'a supply of something available for future use'),\n", + " ('store', 'a supply of something available for future use'),\n", + " ('ancestry', 'the descendants of one individual'),\n", " ('stock certificate',\n", " \"a certificate documenting the shareholder's ownership in the corporation\"),\n", - " ('ancestry', 'the descendants of one individual'),\n", - " ('store', 'a supply of something available for future use'),\n", - " ('line', 'the descendants of one individual'),\n", - " ('descent', 'the descendants of one individual'),\n", " ('parentage', 'the descendants of one individual'),\n", - " ('breed', 'a special variety of domesticated animals within a species'),\n", - " ('blood', 'the descendants of one individual'),\n", - " ('inventory', 'the merchandise that a shop has on hand'),\n", - " ('neckcloth', 'an ornamental white cravat'),\n", - " ('broth',\n", - " 'liquid in which meat and vegetables are simmered; used as a basis for e.g. soups or sauces')]},\n", + " ('descent', 'the descendants of one individual')]},\n", " {'answer': 'straining',\n", " 'hint': 'synonyms for straining',\n", - " 'clues': [('torture',\n", + " 'clues': [('strain', 'an intense or violent exertion'),\n", + " ('distortion',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", - " ('strain', 'an intense or violent exertion'),\n", " ('twisting',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", - " ('distortion',\n", + " ('torture',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", " ('overrefinement',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean')]},\n", " {'answer': 'straw',\n", " 'hint': 'synonyms for straw',\n", - " 'clues': [('pale yellow',\n", - " 'a variable yellow tint; dull yellow, often diluted with white'),\n", - " ('wheat',\n", - " 'a variable yellow tint; dull yellow, often diluted with white'),\n", + " 'clues': [('shuck',\n", + " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n", " ('chaff',\n", " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n", + " ('wheat',\n", + " 'a variable yellow tint; dull yellow, often diluted with white'),\n", " ('drinking straw',\n", " 'a thin paper or plastic tube used to suck liquids into the mouth'),\n", + " ('pale yellow',\n", + " 'a variable yellow tint; dull yellow, often diluted with white'),\n", " ('husk',\n", " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n", - " ('shuck',\n", + " ('stalk',\n", " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n", " ('stubble',\n", - " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds'),\n", - " ('stalk',\n", " 'material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds')]},\n", " {'answer': 'stretch',\n", " 'hint': 'synonyms for stretch',\n", - " 'clues': [('stretchiness', 'the capacity for being stretched'),\n", - " ('stretchability', 'the capacity for being stretched'),\n", - " ('stretching',\n", + " 'clues': [('stretching',\n", " 'exercise designed to extend the limbs and muscles to their full extent'),\n", + " ('stretchiness', 'the capacity for being stretched'),\n", " ('stint', 'an unbroken period of time during which you do something'),\n", + " ('stretchability', 'the capacity for being stretched'),\n", " ('reaching', 'the act of physically reaching or thrusting out')]},\n", " {'answer': 'striking',\n", " 'hint': 'synonyms for striking',\n", - " 'clues': [('impinging',\n", + " 'clues': [('contact',\n", " 'the physical coming together of two or more things'),\n", " ('hit', 'the act of contacting one thing with another'),\n", " ('hitting', 'the act of contacting one thing with another'),\n", - " ('contact', 'the physical coming together of two or more things')]},\n", + " ('impinging', 'the physical coming together of two or more things')]},\n", " {'answer': 'subject',\n", " 'hint': 'synonyms for subject',\n", - " 'clues': [('discipline', 'a branch of knowledge'),\n", - " ('content',\n", - " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n", - " ('field', 'a branch of knowledge'),\n", + " 'clues': [('field of study', 'a branch of knowledge'),\n", " ('depicted object',\n", " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n", + " ('subject area', 'a branch of knowledge'),\n", + " ('field', 'a branch of knowledge'),\n", " ('study', 'a branch of knowledge'),\n", + " ('bailiwick', 'a branch of knowledge'),\n", + " ('matter', 'some situation or event that is thought about'),\n", " ('subject field', 'a branch of knowledge'),\n", + " ('content',\n", + " 'something (a person or object or scene) selected by an artist or photographer for graphic representation'),\n", + " ('topic', 'some situation or event that is thought about'),\n", + " ('theme', 'the subject matter of a conversation or discussion'),\n", " ('issue', 'some situation or event that is thought about'),\n", - " ('topic', 'the subject matter of a conversation or discussion'),\n", - " ('subject area', 'a branch of knowledge'),\n", - " ('matter', 'some situation or event that is thought about'),\n", - " ('field of study', 'a branch of knowledge'),\n", - " ('bailiwick', 'a branch of knowledge'),\n", - " ('theme', 'the subject matter of a conversation or discussion')]},\n", + " ('discipline', 'a branch of knowledge')]},\n", " {'answer': 'submarine',\n", " 'hint': 'synonyms for submarine',\n", - " 'clues': [('poor boy',\n", - " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('pigboat', 'a submersible warship usually armed with torpedoes'),\n", - " ('hero',\n", + " 'clues': [('bomber',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('torpedo',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('grinder',\n", + " ('submarine sandwich',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('bomber',\n", + " ('hoagie',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('hoagy',\n", + " ('poor boy',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('wedge',\n", + " ('hero sandwich',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('zep',\n", + " ('hero',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('sub',\n", + " ('hoagy',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('hoagie',\n", + " ('sub', 'a submersible warship usually armed with torpedoes'),\n", + " ('grinder',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('hero sandwich',\n", + " ('wedge',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('submarine sandwich',\n", - " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States')]},\n", + " ('zep',\n", + " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", + " ('pigboat', 'a submersible warship usually armed with torpedoes')]},\n", " {'answer': 'sunrise',\n", " 'hint': 'synonyms for sunrise',\n", - " 'clues': [('sunup', 'the first light of day'),\n", - " ('daybreak', 'the first light of day'),\n", + " 'clues': [('break of day', 'the first light of day'),\n", + " ('first light', 'the first light of day'),\n", + " ('sunup', 'the first light of day'),\n", " ('dawn', 'the first light of day'),\n", - " ('morning', 'the first light of day'),\n", - " ('cockcrow', 'the first light of day'),\n", + " ('daybreak', 'the first light of day'),\n", " ('aurora', 'the first light of day'),\n", - " ('break of the day', 'the first light of day'),\n", - " ('first light', 'the first light of day'),\n", - " ('dayspring', 'the first light of day')]},\n", + " ('dayspring', 'the first light of day'),\n", + " ('morning', 'the first light of day'),\n", + " ('cockcrow', 'the first light of day')]},\n", " {'answer': 'surface',\n", " 'hint': 'synonyms for surface',\n", - " 'clues': [('airfoil',\n", + " 'clues': [('open', 'information that has become public'),\n", + " ('control surface',\n", " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n", " ('aerofoil',\n", " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n", - " ('control surface',\n", - " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight'),\n", - " ('open', 'information that has become public')]},\n", + " ('airfoil',\n", + " 'a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight')]},\n", " {'answer': 'swank',\n", " 'hint': 'synonyms for swank',\n", - " 'clues': [('chicness', 'elegance by virtue of being fashionable'),\n", + " 'clues': [('modishness', 'elegance by virtue of being fashionable'),\n", + " ('chichi', 'elegance by virtue of being fashionable'),\n", + " ('chic', 'elegance by virtue of being fashionable'),\n", " ('stylishness', 'elegance by virtue of being fashionable'),\n", " ('last word', 'elegance by virtue of being fashionable'),\n", - " ('smartness', 'elegance by virtue of being fashionable'),\n", - " ('chichi', 'elegance by virtue of being fashionable'),\n", - " ('modishness', 'elegance by virtue of being fashionable'),\n", - " ('chic', 'elegance by virtue of being fashionable')]},\n", + " ('chicness', 'elegance by virtue of being fashionable'),\n", + " ('smartness', 'elegance by virtue of being fashionable')]},\n", " {'answer': 'sweet',\n", " 'hint': 'synonyms for sweet',\n", " 'clues': [('afters', 'a dish served as the last course of a meal'),\n", - " ('confection', 'a food rich in sugar'),\n", - " ('sweetness', 'the property of tasting as if it contains sugar'),\n", + " ('sugariness', 'the taste experience when sugar dissolves in the mouth'),\n", " ('dessert', 'a dish served as the last course of a meal'),\n", - " ('sugariness',\n", - " 'the taste experience when sugar dissolves in the mouth')]},\n", + " ('sweetness', 'the taste experience when sugar dissolves in the mouth'),\n", + " ('confection', 'a food rich in sugar')]},\n", " {'answer': 'teasing',\n", " 'hint': 'synonyms for teasing',\n", - " 'clues': [('tantalization',\n", - " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances'),\n", - " ('comb-out', 'the act of removing tangles from you hair with a comb'),\n", + " 'clues': [('comb-out',\n", + " 'the act of removing tangles from you hair with a comb'),\n", " ('tease',\n", " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances'),\n", " ('ribbing',\n", + " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances'),\n", + " ('tantalization',\n", " 'the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances')]},\n", " {'answer': 'telling',\n", " 'hint': 'synonyms for telling',\n", - " 'clues': [('recounting', 'an act of narration'),\n", + " 'clues': [('tattle',\n", + " 'disclosing information or giving evidence about another'),\n", + " ('recounting', 'an act of narration'),\n", + " ('relation', 'an act of narration'),\n", " ('singing', 'disclosing information or giving evidence about another'),\n", " ('apprisal', 'informing by words'),\n", - " ('notification', 'informing by words'),\n", - " ('tattle', 'disclosing information or giving evidence about another'),\n", - " ('relation', 'an act of narration')]},\n", + " ('notification', 'informing by words')]},\n", " {'answer': 'ten',\n", " 'hint': 'synonyms for ten',\n", - " 'clues': [('tenner',\n", + " 'clues': [('decade',\n", " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", - " ('decade',\n", + " ('tenner',\n", " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", " ('10',\n", " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", @@ -28023,228 +28064,225 @@ " 'hint': 'synonyms for tender',\n", " 'clues': [(\"ship's boat\",\n", " 'a boat for communication between ship and shore'),\n", + " ('stamp', 'something that can be used as an official medium of payment'),\n", + " ('legal tender',\n", + " 'something that can be used as an official medium of payment'),\n", " ('cutter', 'a boat for communication between ship and shore'),\n", " ('supply ship', 'ship that usually provides supplies to other ships'),\n", - " ('stamp', 'something that can be used as an official medium of payment'),\n", - " ('pinnace', 'a boat for communication between ship and shore'),\n", " ('bid', 'a formal proposal to buy at a specified price'),\n", - " ('legal tender',\n", - " 'something that can be used as an official medium of payment')]},\n", + " ('pinnace', 'a boat for communication between ship and shore')]},\n", " {'answer': 'terminal',\n", " 'hint': 'synonyms for terminal',\n", - " 'clues': [('terminus',\n", + " 'clues': [('end', 'either extremity of something that has length'),\n", + " ('depot',\n", + " 'station where transport vehicles load or unload passengers or goods'),\n", + " ('terminus',\n", " 'station where transport vehicles load or unload passengers or goods'),\n", - " ('end', 'either extremity of something that has length'),\n", " ('pole',\n", - " 'a contact on an electrical device (such as a battery) at which electric current enters or leaves'),\n", - " ('depot',\n", - " 'station where transport vehicles load or unload passengers or goods')]},\n", + " 'a contact on an electrical device (such as a battery) at which electric current enters or leaves')]},\n", " {'answer': 'ternary',\n", " 'hint': 'synonyms for ternary',\n", - " 'clues': [('ternion',\n", + " 'clues': [('threesome',\n", " 'the cardinal number that is the sum of one and one and one'),\n", - " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", - " ('3', 'the cardinal number that is the sum of one and one and one'),\n", " ('troika', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", - " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", - " ('three', 'the cardinal number that is the sum of one and one and one'),\n", - " ('threesome',\n", - " 'the cardinal number that is the sum of one and one and one'),\n", " ('trey', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", - " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n", " ('deuce-ace',\n", " 'the cardinal number that is the sum of one and one and one'),\n", " ('triad', 'the cardinal number that is the sum of one and one and one'),\n", " ('terzetto',\n", + " 'the cardinal number that is the sum of one and one and one'),\n", + " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", + " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", + " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", + " ('three', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", + " ('3', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tercet',\n", " 'the cardinal number that is the sum of one and one and one')]},\n", " {'answer': 'testimonial',\n", " 'hint': 'synonyms for testimonial',\n", - " 'clues': [('testimony', 'something that serves as evidence'),\n", - " ('recommendation',\n", + " 'clues': [('recommendation',\n", " 'something that recommends (or expresses commendation of) a person or thing as worthy or desirable'),\n", - " ('tribute', 'something given or done as an expression of esteem'),\n", " ('good word',\n", - " 'something that recommends (or expresses commendation of) a person or thing as worthy or desirable')]},\n", + " 'something that recommends (or expresses commendation of) a person or thing as worthy or desirable'),\n", + " ('testimony', 'something that serves as evidence'),\n", + " ('tribute', 'something given or done as an expression of esteem')]},\n", " {'answer': 'textbook',\n", " 'hint': 'synonyms for textbook',\n", - " 'clues': [('school text',\n", - " 'a book prepared for use in schools or colleges'),\n", + " 'clues': [('schoolbook', 'a book prepared for use in schools or colleges'),\n", + " ('school text', 'a book prepared for use in schools or colleges'),\n", " ('text', 'a book prepared for use in schools or colleges'),\n", - " ('schoolbook', 'a book prepared for use in schools or colleges'),\n", " ('text edition', 'a book prepared for use in schools or colleges')]},\n", " {'answer': 'thickening',\n", " 'hint': 'synonyms for thickening',\n", " 'clues': [('inspissation', 'the act of thickening'),\n", - " ('node', 'any thickened enlargement'),\n", " ('thickener', 'any material used to thicken'),\n", + " ('node', 'any thickened enlargement'),\n", " ('knob', 'any thickened enlargement')]},\n", " {'answer': 'thieving',\n", " 'hint': 'synonyms for thieving',\n", - " 'clues': [('stealing',\n", - " 'the act of taking something from someone unlawfully'),\n", + " 'clues': [('theft', 'the act of taking something from someone unlawfully'),\n", + " ('larceny', 'the act of taking something from someone unlawfully'),\n", " ('thievery', 'the act of taking something from someone unlawfully'),\n", - " ('theft', 'the act of taking something from someone unlawfully'),\n", - " ('larceny', 'the act of taking something from someone unlawfully')]},\n", + " ('stealing', 'the act of taking something from someone unlawfully')]},\n", " {'answer': 'thinking',\n", " 'hint': 'synonyms for thinking',\n", " 'clues': [('mentation',\n", " 'the process of using your mind to consider something carefully'),\n", - " ('intellection',\n", - " 'the process of using your mind to consider something carefully'),\n", - " ('thought',\n", - " 'the process of using your mind to consider something carefully'),\n", " ('thought process',\n", " 'the process of using your mind to consider something carefully'),\n", " ('cerebration',\n", + " 'the process of using your mind to consider something carefully'),\n", + " ('intellection',\n", + " 'the process of using your mind to consider something carefully'),\n", + " ('thought',\n", " 'the process of using your mind to consider something carefully')]},\n", " {'answer': 'third',\n", " 'hint': 'synonyms for third',\n", - " 'clues': [('tierce', 'one of three equal parts of a divisible whole'),\n", + " 'clues': [('third gear',\n", + " 'the third from the lowest forward ratio gear in the gear box of a motor vehicle'),\n", " ('one-third', 'one of three equal parts of a divisible whole'),\n", " ('third base',\n", - " 'the fielding position of the player on a baseball team who is stationed near the third of the bases in the infield (counting counterclockwise from home plate)'),\n", - " ('third gear',\n", - " 'the third from the lowest forward ratio gear in the gear box of a motor vehicle')]},\n", + " 'the base that must be touched third by a base runner in baseball'),\n", + " ('tierce', 'one of three equal parts of a divisible whole')]},\n", " {'answer': 'thousand',\n", " 'hint': 'synonyms for thousand',\n", " 'clues': [('chiliad',\n", " 'the cardinal number that is the product of 10 and 100'),\n", + " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('yard', 'the cardinal number that is the product of 10 and 100'),\n", " ('grand', 'the cardinal number that is the product of 10 and 100'),\n", " ('one thousand', 'the cardinal number that is the product of 10 and 100'),\n", - " ('thou', 'the cardinal number that is the product of 10 and 100'),\n", " ('1000', 'the cardinal number that is the product of 10 and 100')]},\n", " {'answer': 'three',\n", " 'hint': 'synonyms for three',\n", - " 'clues': [('ternary',\n", + " 'clues': [('threesome',\n", " 'the cardinal number that is the sum of one and one and one'),\n", - " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", - " ('3', 'the cardinal number that is the sum of one and one and one'),\n", " ('troika', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", - " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", - " ('threesome',\n", - " 'the cardinal number that is the sum of one and one and one'),\n", " ('trey', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", - " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", - " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", - " ('tercet', 'the cardinal number that is the sum of one and one and one'),\n", " ('deuce-ace',\n", " 'the cardinal number that is the sum of one and one and one'),\n", " ('triad', 'the cardinal number that is the sum of one and one and one'),\n", " ('terzetto',\n", + " 'the cardinal number that is the sum of one and one and one'),\n", + " ('trio', 'the cardinal number that is the sum of one and one and one'),\n", + " ('triplet', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tierce', 'the cardinal number that is the sum of one and one and one'),\n", + " ('leash', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternary', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trinity', 'the cardinal number that is the sum of one and one and one'),\n", + " ('trine', 'the cardinal number that is the sum of one and one and one'),\n", + " ('3', 'the cardinal number that is the sum of one and one and one'),\n", + " ('ternion', 'the cardinal number that is the sum of one and one and one'),\n", + " ('tercet',\n", " 'the cardinal number that is the sum of one and one and one')]},\n", " {'answer': 'throwaway',\n", " 'hint': 'synonyms for throwaway',\n", - " 'clues': [('bill',\n", + " 'clues': [('broadside',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('flyer',\n", + " ('circular',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('flier',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('circular',\n", + " ('broadsheet',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", " ('handbill',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('broadsheet',\n", + " ('flyer',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('broadside',\n", + " ('bill',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution')]},\n", " {'answer': 'thumping',\n", " 'hint': 'synonyms for thumping',\n", - " 'clues': [('thump',\n", + " 'clues': [('clump',\n", " 'a heavy dull sound (as made by impact of heavy objects)'),\n", - " ('clump', 'a heavy dull sound (as made by impact of heavy objects)'),\n", + " ('thud', 'a heavy dull sound (as made by impact of heavy objects)'),\n", " ('clunk', 'a heavy dull sound (as made by impact of heavy objects)'),\n", - " ('thud', 'a heavy dull sound (as made by impact of heavy objects)')]},\n", + " ('thump', 'a heavy dull sound (as made by impact of heavy objects)')]},\n", " {'answer': 'token',\n", " 'hint': 'synonyms for token',\n", - " 'clues': [('item', 'an individual instance of a type of symbol'),\n", - " ('keepsake', 'something of sentimental value'),\n", - " ('relic', 'something of sentimental value'),\n", - " ('souvenir', 'something of sentimental value')]},\n", + " 'clues': [('keepsake', 'something of sentimental value'),\n", + " ('souvenir', 'something of sentimental value'),\n", + " ('item', 'an individual instance of a type of symbol'),\n", + " ('relic', 'something of sentimental value')]},\n", " {'answer': 'tonic',\n", " 'hint': 'synonyms for tonic',\n", - " 'clues': [('quinine water',\n", - " 'lime- or lemon-flavored carbonated water containing quinine'),\n", - " ('tonic water',\n", + " 'clues': [('tonic water',\n", " 'lime- or lemon-flavored carbonated water containing quinine'),\n", + " ('keynote', '(music) the first note of a diatonic scale'),\n", " ('soda pop', 'a sweet drink containing carbonated water and flavoring'),\n", " ('soda', 'a sweet drink containing carbonated water and flavoring'),\n", - " ('pop', 'a sweet drink containing carbonated water and flavoring'),\n", " ('soda water', 'a sweet drink containing carbonated water and flavoring'),\n", " ('restorative', 'a medicine that strengthens and invigorates'),\n", - " ('keynote', '(music) the first note of a diatonic scale')]},\n", + " ('pop', 'a sweet drink containing carbonated water and flavoring'),\n", + " ('quinine water',\n", + " 'lime- or lemon-flavored carbonated water containing quinine')]},\n", " {'answer': 'top',\n", " 'hint': 'synonyms for top',\n", - " 'clues': [('peak',\n", + " 'clues': [('crown',\n", " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('top of the inning',\n", - " 'the first half of an inning; while the visiting team is at bat'),\n", " ('round top',\n", " 'a canvas tent to house the audience at a circus performance'),\n", - " ('spinning top',\n", - " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", + " ('summit',\n", + " 'the top or extreme point of something (usually a mountain or hill)'),\n", " ('teetotum',\n", " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", " ('circus tent',\n", " 'a canvas tent to house the audience at a circus performance'),\n", - " ('summit',\n", + " ('tip',\n", " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('crest',\n", + " ('peak',\n", " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('tip',\n", + " ('top of the inning',\n", + " 'the first half of an inning; while the visiting team is at bat'),\n", + " ('crest',\n", " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('big top',\n", - " 'a canvas tent to house the audience at a circus performance'),\n", " ('upper side', 'the highest or uppermost side of anything'),\n", " ('top side', 'the highest or uppermost side of anything'),\n", - " ('crown',\n", - " 'the top or extreme point of something (usually a mountain or hill)'),\n", " ('whirligig',\n", " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", + " ('big top',\n", + " 'a canvas tent to house the audience at a circus performance'),\n", + " ('spinning top',\n", + " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", " ('cover',\n", " 'covering for a hole (especially a hole in the top of a container)'),\n", " ('upside', 'the highest or uppermost side of anything')]},\n", " {'answer': 'tops',\n", " 'hint': 'synonyms for tops',\n", - " 'clues': [('peak',\n", + " 'clues': [('crown',\n", " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('top',\n", - " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", - " ('top of the inning',\n", - " 'the first half of an inning; while the visiting team is at bat'),\n", - " ('round top',\n", + " ('circus tent',\n", + " 'a canvas tent to house the audience at a circus performance'),\n", + " ('top', 'a canvas tent to house the audience at a circus performance'),\n", + " ('big top',\n", " 'a canvas tent to house the audience at a circus performance'),\n", - " ('summit',\n", - " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('crest',\n", - " 'the top or extreme point of something (usually a mountain or hill)'),\n", - " ('tip',\n", - " 'the top or extreme point of something (usually a mountain or hill)'),\n", " ('spinning top',\n", " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", + " ('upside', 'the highest or uppermost side of anything'),\n", " ('teetotum',\n", " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", - " ('circus tent',\n", - " 'a canvas tent to house the audience at a circus performance'),\n", - " ('big top',\n", + " ('round top',\n", " 'a canvas tent to house the audience at a circus performance'),\n", + " ('tip',\n", + " 'the top or extreme point of something (usually a mountain or hill)'),\n", + " ('peak',\n", + " 'the top or extreme point of something (usually a mountain or hill)'),\n", + " ('top of the inning',\n", + " 'the first half of an inning; while the visiting team is at bat'),\n", + " ('crest',\n", + " 'the top or extreme point of something (usually a mountain or hill)'),\n", " ('upper side', 'the highest or uppermost side of anything'),\n", " ('top side', 'the highest or uppermost side of anything'),\n", - " ('crown',\n", - " 'the top or extreme point of something (usually a mountain or hill)'),\n", " ('whirligig',\n", " \"a conical child's plaything tapering to a steel point on which it can be made to spin\"),\n", " ('cover',\n", " 'covering for a hole (especially a hole in the top of a container)'),\n", - " ('upside', 'the highest or uppermost side of anything')]},\n", + " ('summit',\n", + " 'the top or extreme point of something (usually a mountain or hill)')]},\n", " {'answer': 'total',\n", " 'hint': 'synonyms for total',\n", " 'clues': [('totality', 'the whole amount'),\n", @@ -28253,44 +28291,45 @@ " ('amount', 'a quantity obtained by the addition of a group of numbers')]},\n", " {'answer': 'trillion',\n", " 'hint': 'synonyms for trillion',\n", - " 'clues': [('zillion',\n", + " 'clues': [('gazillion',\n", " 'a very large indefinite number (usually hyperbole)'),\n", " ('1000000000000',\n", " 'the number that is represented as a one followed by 12 zeros'),\n", - " ('one million million',\n", - " 'the number that is represented as a one followed by 12 zeros'),\n", " ('one million million million',\n", - " 'the number that is represented as a one followed by 18 zeros')]},\n", + " 'the number that is represented as a one followed by 18 zeros'),\n", + " ('million', 'a very large indefinite number (usually hyperbole)'),\n", + " ('one million million',\n", + " 'the number that is represented as a one followed by 12 zeros')]},\n", " {'answer': 'triple',\n", " 'hint': 'synonyms for triple',\n", " 'clues': [('trio', 'a set of three similar things considered as a unit'),\n", " ('three-bagger',\n", " 'a base hit at which the batter stops safely at third base'),\n", + " ('triplet', 'a set of three similar things considered as a unit'),\n", " ('triad', 'a set of three similar things considered as a unit'),\n", " ('three-base hit',\n", - " 'a base hit at which the batter stops safely at third base'),\n", - " ('triplet', 'a set of three similar things considered as a unit')]},\n", + " 'a base hit at which the batter stops safely at third base')]},\n", " {'answer': 'twilight',\n", " 'hint': 'synonyms for twilight',\n", " 'clues': [('evenfall', 'the time of day immediately following sunset'),\n", - " ('nightfall', 'the time of day immediately following sunset'),\n", " ('gloam', 'the time of day immediately following sunset'),\n", " ('crepuscle', 'the time of day immediately following sunset'),\n", " ('fall', 'the time of day immediately following sunset'),\n", - " ('dusk', 'the time of day immediately following sunset')]},\n", + " ('dusk', 'the time of day immediately following sunset'),\n", + " ('nightfall', 'the time of day immediately following sunset')]},\n", " {'answer': 'twinkling',\n", " 'hint': 'synonyms for twinkling',\n", - " 'clues': [('split second',\n", + " 'clues': [('flash',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('flash',\n", + " ('instant',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('blink of an eye',\n", + " ('jiffy',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('trice',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('instant',\n", + " ('split second',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('jiffy',\n", + " ('blink of an eye',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('wink',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", @@ -28298,911 +28337,912 @@ " 'a very short time (as the time it takes the eye to blink or the heart to beat)')]},\n", " {'answer': 'twisting',\n", " 'hint': 'synonyms for twisting',\n", - " 'clues': [('torture',\n", - " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", + " 'clues': [('whirl', 'the act of rotating rapidly'),\n", + " ('twist', 'the act of rotating rapidly'),\n", + " ('spin', 'the act of rotating rapidly'),\n", " ('twirl', 'the act of rotating rapidly'),\n", - " ('straining',\n", + " ('distortion',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", - " ('spin', 'the act of rotating rapidly'),\n", - " ('overrefinement',\n", + " ('torture',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", - " ('whirl', 'the act of rotating rapidly'),\n", - " ('distortion',\n", + " ('overrefinement',\n", " 'the act of distorting something so it seems to mean something it was not intended to mean'),\n", - " ('twist', 'the act of rotating rapidly')]},\n", + " ('straining',\n", + " 'the act of distorting something so it seems to mean something it was not intended to mean')]},\n", " {'answer': 'umber',\n", " 'hint': 'synonyms for umber',\n", - " 'clues': [('chocolate', 'a medium brown to dark-brown color'),\n", - " ('burnt umber', 'a medium brown to dark-brown color'),\n", - " ('deep brown', 'a medium brown to dark-brown color'),\n", - " ('coffee', 'a medium brown to dark-brown color')]},\n", + " 'clues': [('burnt umber', 'a medium brown to dark-brown color'),\n", + " ('coffee', 'a medium brown to dark-brown color'),\n", + " ('chocolate', 'a medium brown to dark-brown color'),\n", + " ('deep brown', 'a medium brown to dark-brown color')]},\n", " {'answer': 'underground',\n", " 'hint': 'synonyms for underground',\n", - " 'clues': [('subway',\n", - " 'an electric railway operating below the surface of the ground (usually in a city)'),\n", - " ('metro',\n", + " 'clues': [('metro',\n", " 'an electric railway operating below the surface of the ground (usually in a city)'),\n", " ('resistance',\n", " 'a secret group organized to overthrow a government or occupation force'),\n", + " ('tube',\n", + " 'an electric railway operating below the surface of the ground (usually in a city)'),\n", " ('subway system',\n", " 'an electric railway operating below the surface of the ground (usually in a city)'),\n", - " ('tube',\n", + " ('subway',\n", " 'an electric railway operating below the surface of the ground (usually in a city)')]},\n", " {'answer': 'understanding',\n", " 'hint': 'synonyms for understanding',\n", - " 'clues': [('apprehension',\n", - " 'the cognitive condition of someone who understands'),\n", + " 'clues': [('savvy', 'the cognitive condition of someone who understands'),\n", " ('intellect',\n", " 'the capacity for rational thought or inference or discrimination'),\n", " ('reason',\n", " 'the capacity for rational thought or inference or discrimination'),\n", " ('discernment', 'the cognitive condition of someone who understands'),\n", - " ('savvy', 'the cognitive condition of someone who understands'),\n", " ('sympathy',\n", " 'an inclination to support or be loyal to or to agree with an opinion'),\n", " ('agreement',\n", - " 'the statement (oral or written) of an exchange of promises')]},\n", + " 'the statement (oral or written) of an exchange of promises'),\n", + " ('apprehension', 'the cognitive condition of someone who understands')]},\n", " {'answer': 'union',\n", " 'hint': 'synonyms for union',\n", - " 'clues': [('trade union',\n", - " 'an organization of employees formed to bargain with the employer'),\n", - " ('mating',\n", + " 'clues': [('mating',\n", " 'the act of pairing a male and female for reproductive purposes'),\n", - " ('labor union',\n", + " ('trades union',\n", " 'an organization of employees formed to bargain with the employer'),\n", - " ('pairing',\n", - " 'the act of pairing a male and female for reproductive purposes'),\n", " ('join',\n", " 'a set containing all and only the members of two or more given sets'),\n", - " ('uniting', 'the act of making or becoming a single unit'),\n", + " ('labor union',\n", + " 'an organization of employees formed to bargain with the employer'),\n", " ('conjugation',\n", " 'the act of pairing a male and female for reproductive purposes'),\n", + " ('uniting', 'the act of making or becoming a single unit'),\n", " ('sexual union',\n", " 'the act of pairing a male and female for reproductive purposes'),\n", - " ('unification', 'the act of making or becoming a single unit'),\n", - " ('conglutination',\n", - " 'healing process involving the growing together of the edges of a wound or the growing together of broken bones'),\n", + " ('jointure', 'the act of making or becoming a single unit'),\n", + " ('coupling',\n", + " 'the act of pairing a male and female for reproductive purposes'),\n", " ('brotherhood',\n", " 'an organization of employees formed to bargain with the employer'),\n", - " ('coupling',\n", + " ('unification', 'the act of making or becoming a single unit'),\n", + " ('pairing',\n", " 'the act of pairing a male and female for reproductive purposes'),\n", - " ('jointure', 'the act of making or becoming a single unit'),\n", + " ('conglutination',\n", + " 'healing process involving the growing together of the edges of a wound or the growing together of broken bones'),\n", " ('sum',\n", " 'a set containing all and only the members of two or more given sets')]},\n", " {'answer': 'upper',\n", " 'hint': 'synonyms for upper',\n", - " 'clues': [('amphetamine',\n", + " 'clues': [('speed',\n", " 'a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression'),\n", " ('pep pill',\n", " 'a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression'),\n", - " ('speed',\n", + " ('amphetamine',\n", " 'a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression'),\n", " ('upper berth', 'the higher of two berths')]},\n", " {'answer': 'uppercase',\n", " 'hint': 'synonyms for uppercase',\n", - " 'clues': [('majuscule',\n", - " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", - " ('capital',\n", + " 'clues': [('capital',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", - " ('capital letter',\n", + " ('majuscule',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", " ('upper-case letter',\n", + " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis'),\n", + " ('capital letter',\n", " 'one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis')]},\n", " {'answer': 'upset',\n", " 'hint': 'synonyms for upset',\n", - " 'clues': [('overthrow', 'the act of disturbing the mind or body'),\n", - " ('turnover', 'the act of upsetting something'),\n", - " ('overturn', 'the act of upsetting something'),\n", + " 'clues': [('overturn', 'the act of upsetting something'),\n", " ('swage',\n", " 'a tool used to thicken or spread metal (the end of a bar or a rivet etc.) by forging or hammering or swaging'),\n", - " ('derangement', 'the act of disturbing the mind or body')]},\n", + " ('derangement', 'the act of disturbing the mind or body'),\n", + " ('overthrow', 'the act of disturbing the mind or body'),\n", + " ('turnover', 'the act of upsetting something')]},\n", " {'answer': 'utility',\n", " 'hint': 'synonyms for utility',\n", " 'clues': [('service program',\n", " '(computer science) a program designed for general support of the processes of a computer'),\n", - " ('utility program',\n", - " '(computer science) a program designed for general support of the processes of a computer'),\n", + " ('public utility',\n", + " 'a company that performs a public service; subject to government regulation'),\n", " ('usefulness', 'the quality of being of practical use'),\n", " ('public-service corporation',\n", " 'a company that performs a public service; subject to government regulation'),\n", - " ('public utility',\n", - " 'a company that performs a public service; subject to government regulation'),\n", + " ('utility program',\n", + " '(computer science) a program designed for general support of the processes of a computer'),\n", " ('public utility company',\n", " 'a company that performs a public service; subject to government regulation')]},\n", " {'answer': 'v',\n", " 'hint': 'synonyms for v',\n", - " 'clues': [('5', 'the cardinal number that is the sum of four and one'),\n", - " ('quintet', 'the cardinal number that is the sum of four and one'),\n", - " ('pentad', 'the cardinal number that is the sum of four and one'),\n", - " ('quint', 'the cardinal number that is the sum of four and one'),\n", - " ('five', 'the cardinal number that is the sum of four and one'),\n", - " ('fin', 'the cardinal number that is the sum of four and one'),\n", - " ('cinque', 'the cardinal number that is the sum of four and one'),\n", + " 'clues': [('pentad',\n", + " 'the cardinal number that is the sum of four and one'),\n", " ('quintuplet', 'the cardinal number that is the sum of four and one'),\n", + " ('atomic number 23',\n", + " 'a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite'),\n", + " ('cinque', 'the cardinal number that is the sum of four and one'),\n", + " ('5', 'the cardinal number that is the sum of four and one'),\n", " ('fivesome', 'the cardinal number that is the sum of four and one'),\n", " ('vanadium',\n", " 'a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite'),\n", + " ('fin', 'the cardinal number that is the sum of four and one'),\n", " ('volt',\n", " 'a unit of potential equal to the potential difference between two points on a conductor carrying a current of 1 ampere when the power dissipated between the two points is 1 watt; equivalent to the potential difference across a resistance of 1 ohm when 1 ampere of current flows through it'),\n", - " ('atomic number 23',\n", - " 'a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite')]},\n", + " ('quint', 'the cardinal number that is the sum of four and one'),\n", + " ('five', 'the cardinal number that is the sum of four and one'),\n", + " ('quintet', 'the cardinal number that is the sum of four and one')]},\n", " {'answer': 'variant',\n", " 'hint': 'synonyms for variant',\n", " 'clues': [('form',\n", " '(biology) a group of organisms within a species that differ in trivial ways from similar groups'),\n", - " ('version', 'something a little different from others of the same type'),\n", - " ('var.',\n", - " '(biology) a group of organisms within a species that differ in trivial ways from similar groups'),\n", - " ('chance variable', 'a variable quantity that is random'),\n", " ('stochastic variable', 'a variable quantity that is random'),\n", + " ('version', 'something a little different from others of the same type'),\n", " ('variation',\n", " 'something a little different from others of the same type'),\n", + " ('variate', 'a variable quantity that is random'),\n", " ('discrepancy', 'an event that departs from expectations'),\n", + " ('random variable', 'a variable quantity that is random'),\n", + " ('chance variable', 'a variable quantity that is random'),\n", " ('variance', 'an event that departs from expectations'),\n", " ('edition', 'something a little different from others of the same type'),\n", - " ('variate', 'a variable quantity that is random'),\n", - " ('strain',\n", + " ('var.',\n", " '(biology) a group of organisms within a species that differ in trivial ways from similar groups'),\n", - " ('random variable', 'a variable quantity that is random')]},\n", + " ('strain',\n", + " '(biology) a group of organisms within a species that differ in trivial ways from similar groups')]},\n", " {'answer': 'vernacular',\n", " 'hint': 'synonyms for vernacular',\n", - " 'clues': [('lingo',\n", + " 'clues': [('cant',\n", + " 'a characteristic language of a particular group (as among thieves)'),\n", + " ('argot',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", " ('patois',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", " ('slang',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", - " ('argot',\n", - " 'a characteristic language of a particular group (as among thieves)'),\n", - " ('cant',\n", + " ('lingo',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", " ('jargon',\n", " 'a characteristic language of a particular group (as among thieves)')]},\n", " {'answer': 'vi',\n", " 'hint': 'synonyms for vi',\n", - " 'clues': [('hexad', 'the cardinal number that is the sum of five and one'),\n", + " 'clues': [('sise', 'the cardinal number that is the sum of five and one'),\n", + " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n", " ('sextuplet', 'the cardinal number that is the sum of five and one'),\n", + " ('sestet', 'the cardinal number that is the sum of five and one'),\n", + " ('hexad', 'the cardinal number that is the sum of five and one'),\n", " ('6', 'the cardinal number that is the sum of five and one'),\n", - " ('half a dozen', 'the cardinal number that is the sum of five and one'),\n", - " ('sise', 'the cardinal number that is the sum of five and one'),\n", - " ('sextet', 'the cardinal number that is the sum of five and one'),\n", " ('sixer', 'the cardinal number that is the sum of five and one'),\n", - " ('six', 'the cardinal number that is the sum of five and one'),\n", - " ('sestet', 'the cardinal number that is the sum of five and one')]},\n", + " ('sextet', 'the cardinal number that is the sum of five and one'),\n", + " ('six', 'the cardinal number that is the sum of five and one')]},\n", " {'answer': 'vii',\n", " 'hint': 'synonyms for vii',\n", - " 'clues': [('7', 'the cardinal number that is the sum of six and one'),\n", - " ('septet', 'the cardinal number that is the sum of six and one'),\n", + " 'clues': [('seven', 'the cardinal number that is the sum of six and one'),\n", + " ('sevener', 'the cardinal number that is the sum of six and one'),\n", " ('septenary', 'the cardinal number that is the sum of six and one'),\n", - " ('heptad', 'the cardinal number that is the sum of six and one'),\n", - " ('seven', 'the cardinal number that is the sum of six and one'),\n", - " ('sevener', 'the cardinal number that is the sum of six and one')]},\n", + " ('7', 'the cardinal number that is the sum of six and one'),\n", + " ('septet', 'the cardinal number that is the sum of six and one'),\n", + " ('heptad', 'the cardinal number that is the sum of six and one')]},\n", " {'answer': 'viii',\n", " 'hint': 'synonyms for viii',\n", - " 'clues': [('8', 'the cardinal number that is the sum of seven and one'),\n", - " ('ogdoad', 'the cardinal number that is the sum of seven and one'),\n", + " 'clues': [('octad',\n", + " 'the cardinal number that is the sum of seven and one'),\n", + " ('8', 'the cardinal number that is the sum of seven and one'),\n", + " ('eighter', 'the cardinal number that is the sum of seven and one'),\n", + " ('octonary', 'the cardinal number that is the sum of seven and one'),\n", + " ('eight', 'the cardinal number that is the sum of seven and one'),\n", " ('octet', 'the cardinal number that is the sum of seven and one'),\n", " ('eighter from Decatur',\n", " 'the cardinal number that is the sum of seven and one'),\n", - " ('eight', 'the cardinal number that is the sum of seven and one'),\n", - " ('octad', 'the cardinal number that is the sum of seven and one'),\n", - " ('eighter', 'the cardinal number that is the sum of seven and one'),\n", - " ('octonary', 'the cardinal number that is the sum of seven and one')]},\n", + " ('ogdoad', 'the cardinal number that is the sum of seven and one')]},\n", " {'answer': 'volute',\n", " 'hint': 'synonyms for volute',\n", " 'clues': [('spiral',\n", + " 'ornament consisting of a curve on a plane that winds around a center with an increasing distance from the center'),\n", + " ('helix',\n", " 'a structure consisting of something wound in a continuous series of loops'),\n", " ('whorl',\n", " 'a structure consisting of something wound in a continuous series of loops'),\n", - " ('helix',\n", - " 'a structure consisting of something wound in a continuous series of loops'),\n", " ('coil',\n", " 'a structure consisting of something wound in a continuous series of loops')]},\n", " {'answer': 'walloping',\n", " 'hint': 'synonyms for walloping',\n", " 'clues': [('slaughter', 'a sound defeat'),\n", - " ('trouncing', 'a sound defeat'),\n", - " ('thrashing', 'a sound defeat'),\n", + " ('drubbing', 'a sound defeat'),\n", " ('whipping', 'a sound defeat'),\n", + " ('trouncing', 'a sound defeat'),\n", " ('debacle', 'a sound defeat'),\n", - " ('drubbing', 'a sound defeat')]},\n", + " ('thrashing', 'a sound defeat')]},\n", " {'answer': 'waste',\n", " 'hint': 'synonyms for waste',\n", - " 'clues': [('thriftlessness', 'the trait of wasting resources'),\n", - " ('barren', 'an uninhabited wilderness that is worthless for cultivation'),\n", + " 'clues': [('barren',\n", + " 'an uninhabited wilderness that is worthless for cultivation'),\n", + " ('thriftlessness', 'the trait of wasting resources'),\n", + " ('wasteland',\n", + " 'an uninhabited wilderness that is worthless for cultivation'),\n", + " ('wastefulness', 'the trait of wasting resources'),\n", " ('dissipation',\n", " 'useless or profitless activity; using or expending or consuming thoughtlessly or carelessly'),\n", - " ('permissive waste',\n", - " '(law) reduction in the value of an estate caused by act or neglect'),\n", - " ('wastefulness', 'the trait of wasting resources'),\n", - " ('waste product',\n", - " 'any materials unused and rejected as worthless or unwanted'),\n", " ('waste matter',\n", " 'any materials unused and rejected as worthless or unwanted'),\n", + " ('permissive waste',\n", + " '(law) reduction in the value of an estate caused by act or neglect'),\n", " ('waste material',\n", " 'any materials unused and rejected as worthless or unwanted'),\n", - " ('wasteland',\n", - " 'an uninhabited wilderness that is worthless for cultivation')]},\n", + " ('waste product',\n", + " 'any materials unused and rejected as worthless or unwanted')]},\n", " {'answer': 'wearable',\n", " 'hint': 'synonyms for wearable',\n", - " 'clues': [('vesture', \"a covering designed to be worn on a person's body\"),\n", - " ('article of clothing',\n", + " 'clues': [('article of clothing',\n", " \"a covering designed to be worn on a person's body\"),\n", - " ('clothing', \"a covering designed to be worn on a person's body\"),\n", + " ('vesture', \"a covering designed to be worn on a person's body\"),\n", " ('habiliment', \"a covering designed to be worn on a person's body\"),\n", + " ('clothing', \"a covering designed to be worn on a person's body\"),\n", " ('wear', \"a covering designed to be worn on a person's body\")]},\n", " {'answer': 'wearing',\n", " 'hint': 'synonyms for wearing',\n", - " 'clues': [('eroding',\n", + " 'clues': [('wear',\n", + " 'the act of having on your person as a covering or adornment'),\n", + " ('erosion',\n", " '(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)'),\n", " ('eating away',\n", " '(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)'),\n", - " ('wear', 'the act of having on your person as a covering or adornment'),\n", - " ('erosion',\n", + " ('eroding',\n", " '(geology) the mechanical process of wearing or grinding something down (as by particles washing over it)')]},\n", " {'answer': 'whacking',\n", " 'hint': 'synonyms for whacking',\n", - " 'clues': [('beating',\n", - " 'the act of inflicting corporal punishment with repeated blows'),\n", - " ('licking',\n", + " 'clues': [('drubbing',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", - " ('drubbing',\n", + " ('trouncing',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", " ('lacing',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", - " ('trouncing',\n", + " ('beating',\n", + " 'the act of inflicting corporal punishment with repeated blows'),\n", + " ('licking',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", " ('thrashing',\n", " 'the act of inflicting corporal punishment with repeated blows')]},\n", " {'answer': 'whipping',\n", " 'hint': 'synonyms for whipping',\n", - " 'clues': [('debacle', 'a sound defeat'),\n", - " ('walloping', 'a sound defeat'),\n", - " ('whipstitch', 'a sewing stitch passing over an edge diagonally'),\n", + " 'clues': [('flagellation',\n", + " 'beating with a whip or strap or rope as a form of punishment'),\n", " ('slaughter', 'a sound defeat'),\n", - " ('trouncing', 'a sound defeat'),\n", - " ('thrashing', 'a sound defeat'),\n", " ('beating', 'the act of overcoming or outdoing'),\n", - " ('flogging',\n", - " 'beating with a whip or strap or rope as a form of punishment'),\n", + " ('whipstitch', 'a sewing stitch passing over an edge diagonally'),\n", + " ('trouncing', 'a sound defeat'),\n", + " ('walloping', 'a sound defeat'),\n", " ('lashing',\n", " 'beating with a whip or strap or rope as a form of punishment'),\n", - " ('tanning',\n", + " ('flogging',\n", " 'beating with a whip or strap or rope as a form of punishment'),\n", - " ('flagellation',\n", + " ('drubbing', 'a sound defeat'),\n", + " ('debacle', 'a sound defeat'),\n", + " ('tanning',\n", " 'beating with a whip or strap or rope as a form of punishment'),\n", - " ('drubbing', 'a sound defeat')]},\n", + " ('thrashing', 'a sound defeat')]},\n", " {'answer': 'whispering',\n", " 'hint': 'synonyms for whispering',\n", " 'clues': [('whisper',\n", + " 'speaking softly without vibration of the vocal cords'),\n", + " ('susurration', 'speaking softly without vibration of the vocal cords'),\n", + " ('rustle',\n", " 'a light noise, like the noise of silk clothing or leaves blowing in the wind'),\n", " ('rustling',\n", " 'a light noise, like the noise of silk clothing or leaves blowing in the wind'),\n", - " ('rustle',\n", - " 'a light noise, like the noise of silk clothing or leaves blowing in the wind'),\n", - " ('voicelessness', 'speaking softly without vibration of the vocal cords'),\n", - " ('susurration', 'speaking softly without vibration of the vocal cords')]},\n", + " ('voicelessness',\n", + " 'speaking softly without vibration of the vocal cords')]},\n", " {'answer': 'white',\n", " 'hint': 'synonyms for white',\n", - " 'clues': [('albumen',\n", - " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water'),\n", - " ('egg white',\n", + " 'clues': [('ovalbumin',\n", " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water'),\n", - " ('flannel',\n", - " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n", " ('gabardine',\n", " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n", + " ('flannel',\n", + " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n", " ('tweed',\n", " '(usually in the plural) trousers made of flannel or gabardine or tweed or white cloth'),\n", + " ('albumen',\n", + " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water'),\n", + " ('egg white',\n", + " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water'),\n", " ('whiteness',\n", - " 'the quality or state of the achromatic color of greatest lightness (bearing the least resemblance to black)'),\n", - " ('ovalbumin',\n", - " 'the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water')]},\n", + " 'the quality or state of the achromatic color of greatest lightness (bearing the least resemblance to black)')]},\n", " {'answer': 'windup',\n", " 'hint': 'synonyms for windup',\n", - " 'clues': [('culmination', 'a concluding action'),\n", - " ('mop up', 'a concluding action'),\n", + " 'clues': [('closing', 'a concluding action'),\n", " ('completion', 'a concluding action'),\n", - " ('closing', 'a concluding action')]},\n", + " ('culmination', 'a concluding action'),\n", + " ('mop up', 'a concluding action')]},\n", " {'answer': 'winking',\n", " 'hint': 'synonyms for winking',\n", - " 'clues': [('wink', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('blink', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('eye blink', 'a reflex that closes and opens the eyes rapidly')]},\n", + " 'clues': [('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('eye blink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('wink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('blinking', 'a reflex that closes and opens the eyes rapidly')]},\n", " {'answer': 'wireless',\n", " 'hint': 'synonyms for wireless',\n", - " 'clues': [('radio', 'medium for communication'),\n", - " ('receiving set',\n", - " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", - " ('radiocommunication', 'medium for communication'),\n", + " 'clues': [('radiocommunication', 'medium for communication'),\n", " ('radio receiver',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", + " ('receiving set',\n", + " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", + " ('radio',\n", + " 'a communication system based on broadcasting electromagnetic waves'),\n", " ('tuner',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals'),\n", " ('radio set',\n", " 'an electronic receiver that detects and demodulates and amplifies transmitted signals')]},\n", " {'answer': 'world',\n", " 'hint': 'synonyms for world',\n", - " 'clues': [('reality',\n", - " 'all of your experiences that determine how things appear to you'),\n", - " ('earthly concern',\n", - " 'the concerns of this life as distinguished from heaven and the afterlife'),\n", + " 'clues': [('cosmos', 'everything that exists anywhere'),\n", + " ('macrocosm', 'everything that exists anywhere'),\n", " ('populace', 'people in general considered as a whole'),\n", + " ('domain',\n", + " 'people in general; especially a distinctive group of people with some shared interest'),\n", + " ('reality',\n", + " 'all of your experiences that determine how things appear to you'),\n", " ('existence', 'everything that exists anywhere'),\n", - " ('worldly concern',\n", - " 'the concerns of this life as distinguished from heaven and the afterlife'),\n", - " ('macrocosm', 'everything that exists anywhere'),\n", + " ('universe', 'everything that exists anywhere'),\n", " ('earth', 'the 3rd planet from the sun; the planet we live on'),\n", " ('public', 'people in general considered as a whole'),\n", - " ('domain',\n", - " 'people in general; especially a distinctive group of people with some shared interest'),\n", - " ('cosmos', 'everything that exists anywhere'),\n", " ('globe', 'the 3rd planet from the sun; the planet we live on'),\n", - " ('universe', 'everything that exists anywhere'),\n", + " ('earthly concern',\n", + " 'the concerns of this life as distinguished from heaven and the afterlife'),\n", + " ('worldly concern',\n", + " 'the concerns of this life as distinguished from heaven and the afterlife'),\n", " ('creation', 'everything that exists anywhere')]},\n", " {'answer': 'x',\n", " 'hint': 'synonyms for x',\n", - " 'clues': [('disco biscuit',\n", - " 'street names for methylenedioxymethamphetamine'),\n", - " ('tenner',\n", - " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", - " ('decade',\n", - " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", + " 'clues': [('go', 'street names for methylenedioxymethamphetamine'),\n", + " ('ex', 'the 24th letter of the Roman alphabet'),\n", " ('ten',\n", " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", - " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", - " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n", " ('10',\n", " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", - " ('ex', 'the 24th letter of the Roman alphabet'),\n", + " ('disco biscuit', 'street names for methylenedioxymethamphetamine'),\n", " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n", - " ('go', 'street names for methylenedioxymethamphetamine')]},\n", + " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", + " ('decade',\n", + " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", + " ('tenner',\n", + " 'the cardinal number that is the sum of nine and one; the base of the decimal system'),\n", + " ('hug drug', 'street names for methylenedioxymethamphetamine')]},\n", " {'answer': 'xiii',\n", " 'hint': 'synonyms for xiii',\n", " 'clues': [('thirteen',\n", " 'the cardinal number that is the sum of twelve and one'),\n", - " (\"baker's dozen\",\n", - " 'the cardinal number that is the sum of twelve and one'),\n", " ('long dozen', 'the cardinal number that is the sum of twelve and one'),\n", - " ('13', 'the cardinal number that is the sum of twelve and one')]},\n", + " ('13', 'the cardinal number that is the sum of twelve and one'),\n", + " (\"baker's dozen\",\n", + " 'the cardinal number that is the sum of twelve and one')]},\n", " {'answer': 'yielding',\n", " 'hint': 'synonyms for yielding',\n", - " 'clues': [('surrender', 'a verbal act of admitting defeat'),\n", - " ('conceding', 'the act of conceding or yielding'),\n", + " 'clues': [('concession', 'the act of conceding or yielding'),\n", " ('giving up', 'a verbal act of admitting defeat'),\n", - " ('concession', 'the act of conceding or yielding')]},\n", + " ('surrender', 'a verbal act of admitting defeat'),\n", + " ('conceding', 'the act of conceding or yielding')]},\n", " {'answer': 'zero',\n", " 'hint': 'synonyms for zero',\n", - " 'clues': [('null', 'a quantity of no importance'),\n", - " ('cipher',\n", + " 'clues': [('zip', 'a quantity of no importance'),\n", + " ('cypher',\n", " 'a mathematical element that when added to another number yields the same number'),\n", - " ('nada', 'a quantity of no importance'),\n", - " ('zippo', 'a quantity of no importance'),\n", - " ('zilch', 'a quantity of no importance'),\n", " ('nought',\n", " 'a mathematical element that when added to another number yields the same number'),\n", - " ('cypher', 'a quantity of no importance'),\n", - " ('aught', 'a quantity of no importance'),\n", - " ('nix', 'a quantity of no importance'),\n", - " ('goose egg', 'a quantity of no importance'),\n", - " ('zip', 'a quantity of no importance'),\n", - " ('0',\n", - " 'a mathematical element that when added to another number yields the same number'),\n", " ('zero point',\n", " 'the point on a scale from which positive or negative numerical quantities can be measured'),\n", + " ('naught', 'a quantity of no importance'),\n", + " ('nix', 'a quantity of no importance'),\n", + " ('cipher',\n", + " 'a mathematical element that when added to another number yields the same number'),\n", + " ('zilch', 'a quantity of no importance'),\n", " ('nil', 'a quantity of no importance'),\n", - " ('nothing', 'a quantity of no importance')]},\n", + " ('null', 'a quantity of no importance'),\n", + " ('nothing', 'a quantity of no importance'),\n", + " ('nada', 'a quantity of no importance'),\n", + " ('zippo', 'a quantity of no importance'),\n", + " ('0',\n", + " 'a mathematical element that when added to another number yields the same number'),\n", + " ('goose egg', 'a quantity of no importance')]},\n", " {'answer': 'as',\n", " 'hint': 'synonyms for as',\n", - " 'clues': [('axerophthol',\n", + " 'clues': [('arsenic',\n", + " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", + " ('atomic number 33',\n", + " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", + " ('vitamin A',\n", + " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n", + " ('antiophthalmic factor',\n", " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n", - " ('angstrom',\n", - " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n", " ('adenine',\n", " '(biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA'),\n", - " ('arsenic',\n", - " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", + " ('a', 'the 1st letter of the Roman alphabet'),\n", + " ('amp',\n", + " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n", " ('deoxyadenosine monophosphate',\n", " 'one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)'),\n", - " ('amp',\n", + " ('ampere',\n", " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n", - " ('atomic number 33',\n", - " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", " ('angstrom unit',\n", " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n", - " ('vitamin A',\n", + " ('axerophthol',\n", " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n", - " ('a', 'the 1st letter of the Roman alphabet'),\n", - " ('ampere',\n", - " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n", - " ('antiophthalmic factor',\n", - " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes')]},\n", + " ('angstrom',\n", + " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation')]},\n", " {'answer': 'aside',\n", " 'hint': 'synonyms for aside',\n", - " 'clues': [('divagation', 'a message that departs from the main subject'),\n", + " 'clues': [('excursus', 'a message that departs from the main subject'),\n", + " ('digression', 'a message that departs from the main subject'),\n", " ('parenthesis', 'a message that departs from the main subject'),\n", - " ('excursus', 'a message that departs from the main subject'),\n", - " ('digression', 'a message that departs from the main subject')]},\n", + " ('divagation', 'a message that departs from the main subject')]},\n", " {'answer': 'bang',\n", " 'hint': 'synonyms for bang',\n", - " 'clues': [('boot', 'the swift release of a store of affective force'),\n", - " ('smash', 'a conspicuous success'),\n", - " ('blast', 'a sudden very loud noise'),\n", + " 'clues': [('knock', 'a vigorous blow'),\n", + " ('smash', 'a vigorous blow'),\n", " ('bash', 'a vigorous blow'),\n", - " ('eruption', 'a sudden very loud noise'),\n", - " ('clap', 'a sudden very loud noise'),\n", + " ('boot', 'the swift release of a store of affective force'),\n", " ('rush', 'the swift release of a store of affective force'),\n", + " ('strike', 'a conspicuous success'),\n", + " ('flush', 'the swift release of a store of affective force'),\n", + " ('kick', 'the swift release of a store of affective force'),\n", + " ('charge', 'the swift release of a store of affective force'),\n", + " ('bam', 'a sudden very loud noise'),\n", " ('smasher', 'a conspicuous success'),\n", " ('hit', 'a conspicuous success'),\n", - " ('bam', 'a sudden very loud noise'),\n", - " ('kick', 'the swift release of a store of affective force'),\n", " ('belt', 'a vigorous blow'),\n", - " ('charge', 'the swift release of a store of affective force'),\n", - " ('strike', 'a conspicuous success'),\n", - " ('flush', 'the swift release of a store of affective force'),\n", - " ('thrill', 'the swift release of a store of affective force'),\n", - " ('knock', 'a vigorous blow')]},\n", + " ('eruption', 'a sudden very loud noise'),\n", + " ('clap', 'a sudden very loud noise'),\n", + " ('blast', 'a sudden very loud noise'),\n", + " ('thrill', 'the swift release of a store of affective force')]},\n", " {'answer': 'bolt',\n", " 'hint': 'synonyms for bolt',\n", - " 'clues': [('dash', 'the act of moving with great haste'),\n", - " ('bolt of lightning', 'a discharge of lightning accompanied by thunder'),\n", + " 'clues': [('bolt of lightning',\n", + " 'a discharge of lightning accompanied by thunder'),\n", + " ('thunderbolt', 'a discharge of lightning accompanied by thunder'),\n", + " ('dash', 'the act of moving with great haste'),\n", " ('deadbolt',\n", - " 'the part of a lock that is engaged or withdrawn with a key'),\n", - " ('thunderbolt', 'a discharge of lightning accompanied by thunder')]},\n", + " 'the part of a lock that is engaged or withdrawn with a key')]},\n", " {'answer': 'con',\n", " 'hint': 'synonyms for con',\n", - " 'clues': [('bunko',\n", - " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('confidence trick',\n", + " 'clues': [('con game',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('hustle',\n", + " ('confidence game',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", " ('gyp',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('bunco',\n", + " ('confidence trick',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('con game',\n", + " ('bunko',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('confidence game',\n", + " ('hustle',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('bunco game',\n", + " ('bunko game',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", - " ('sting',\n", + " ('bunco',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", " ('flimflam',\n", + " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property'),\n", + " ('sting',\n", " 'a swindle in which you cheat at gambling or persuade a person to buy worthless property')]},\n", " {'answer': 'course',\n", " 'hint': 'synonyms for course',\n", - " 'clues': [('class', 'a body of students who are taught together'),\n", + " 'clues': [('course of action', 'a mode of action'),\n", " ('course of study',\n", " 'education imparted in a series of lessons or meetings'),\n", - " ('track', 'a line or route along which something travels or moves'),\n", - " ('course of action', 'a mode of action'),\n", - " ('row', '(construction) a layer of masonry'),\n", - " ('line', 'a connected series of events or actions or developments'),\n", " ('form', 'a body of students who are taught together'),\n", - " ('grade', 'a body of students who are taught together'),\n", + " ('course of instruction',\n", + " 'education imparted in a series of lessons or meetings'),\n", + " ('class', 'a body of students who are taught together'),\n", + " ('row', '(construction) a layer of masonry'),\n", " ('trend', 'general line of orientation'),\n", + " ('line', 'a connected series of events or actions or developments'),\n", " ('path', 'a line or route along which something travels or moves'),\n", - " ('course of instruction',\n", - " 'education imparted in a series of lessons or meetings')]},\n", + " ('track', 'a line or route along which something travels or moves'),\n", + " ('grade', 'a body of students who are taught together')]},\n", " {'answer': 'crossways',\n", " 'hint': 'synonyms for crossways',\n", - " 'clues': [('carrefour',\n", + " 'clues': [('crossroad',\n", " 'a junction where one street or road crosses another'),\n", + " ('crossway', 'a junction where one street or road crosses another'),\n", + " ('carrefour', 'a junction where one street or road crosses another'),\n", " ('intersection', 'a junction where one street or road crosses another'),\n", - " ('crossing', 'a junction where one street or road crosses another'),\n", - " ('crossroad', 'a junction where one street or road crosses another'),\n", - " ('crossway', 'a junction where one street or road crosses another')]},\n", + " ('crossing', 'a junction where one street or road crosses another')]},\n", " {'answer': 'flop',\n", " 'hint': 'synonyms for flop',\n", - " 'clues': [('collapse', 'the act of throwing yourself down'),\n", - " ('floating-point operation',\n", + " 'clues': [('floating-point operation',\n", " 'an arithmetic operation performed on floating-point numbers'),\n", - " ('fizzle', 'a complete failure'),\n", - " ('bust', 'a complete failure')]},\n", + " ('bust', 'a complete failure'),\n", + " ('collapse', 'the act of throwing yourself down'),\n", + " ('fizzle', 'a complete failure')]},\n", " {'answer': 'heaps',\n", " 'hint': 'synonyms for heaps',\n", - " 'clues': [('flock',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", + " 'clues': [('oodles', 'a large number or amount'),\n", + " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('peck', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('rafts', 'a large number or amount'),\n", - " ('piles', 'a large number or amount'),\n", - " ('good deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('jalopy', 'a car that is old and unreliable'),\n", + " ('slews', 'a large number or amount'),\n", + " ('scores', 'a large number or amount'),\n", + " ('agglomerate', 'a collection of objects laid on top of each other'),\n", + " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('stacks', 'a large number or amount'),\n", + " ('pile', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('dozens', 'a large number or amount'),\n", + " ('tons', 'a large number or amount'),\n", + " ('wads', 'a large number or amount'),\n", " ('great deal',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('scores', 'a large number or amount'),\n", - " ('cumulation', 'a collection of objects laid on top of each other'),\n", - " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('oodles', 'a large number or amount'),\n", + " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('loads', 'a large number or amount'),\n", + " ('rafts', 'a large number or amount'),\n", " ('tidy sum',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('bus', 'a car that is old and unreliable'),\n", - " ('scads', 'a large number or amount'),\n", - " ('tons', 'a large number or amount'),\n", - " ('stacks', 'a large number or amount'),\n", - " ('loads', 'a large number or amount'),\n", " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mountain',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('jalopy', 'a car that is old and unreliable'),\n", - " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('heap', 'a collection of objects laid on top of each other'),\n", - " ('dozens', 'a large number or amount'),\n", - " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('bus', 'a car that is old and unreliable'),\n", + " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", " ('quite a little',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('lots', 'a large number or amount'),\n", - " ('lashings', 'a large number or amount'),\n", + " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('cumulation', 'a collection of objects laid on top of each other'),\n", + " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", " ('gobs', 'a large number or amount'),\n", + " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('agglomerate', 'a collection of objects laid on top of each other'),\n", - " ('cumulus', 'a collection of objects laid on top of each other'),\n", + " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('lashings', 'a large number or amount'),\n", " ('mound', 'a collection of objects laid on top of each other'),\n", - " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n", + " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('cumulus', 'a collection of objects laid on top of each other'),\n", + " ('good deal',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('scads', 'a large number or amount'),\n", + " ('muckle',\n", + " \"(often followed by `of') a large number or amount or extent\")]},\n", " {'answer': 'heart_and_soul',\n", " 'hint': 'synonyms for heart and soul',\n", - " 'clues': [('kernel',\n", - " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('substance',\n", + " 'clues': [('pith',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('nub',\n", + " ('marrow',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('center',\n", + " ('nitty-gritty',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('sum',\n", + " ('centre',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('pith',\n", + " ('nub',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('meat',\n", + " ('inwardness',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('gist',\n", + " ('substance',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('heart',\n", + " ('sum',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('nitty-gritty',\n", + " ('gist',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", " ('essence',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('inwardness',\n", + " ('kernel',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('marrow',\n", + " ('meat',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", " ('core',\n", " 'the choicest or most essential or most vital part of some idea or experience'),\n", - " ('centre',\n", + " ('heart',\n", + " 'the choicest or most essential or most vital part of some idea or experience'),\n", + " ('center',\n", " 'the choicest or most essential or most vital part of some idea or experience')]},\n", " {'answer': 'hereafter',\n", " 'hint': 'synonyms for hereafter',\n", - " 'clues': [('afterlife', 'life after death'),\n", + " 'clues': [('time to come', 'the time yet to come'),\n", " ('futurity', 'the time yet to come'),\n", " ('future', 'the time yet to come'),\n", - " ('time to come', 'the time yet to come')]},\n", + " ('afterlife', 'life after death')]},\n", " {'answer': 'item',\n", " 'hint': 'synonyms for item',\n", - " 'clues': [('detail',\n", - " 'a small part that can be considered separately from the whole'),\n", - " ('token', 'an individual instance of a type of symbol'),\n", + " 'clues': [('token', 'an individual instance of a type of symbol'),\n", + " ('detail',\n", + " 'an isolated fact that is considered separately from the whole'),\n", " ('point',\n", - " 'a distinct part that can be specified separately in a group of things that could be enumerated on a list'),\n", + " 'an isolated fact that is considered separately from the whole'),\n", " ('particular',\n", " 'a small part that can be considered separately from the whole')]},\n", " {'answer': 'lots',\n", " 'hint': 'synonyms for lots',\n", - " 'clues': [('lot', 'a parcel of land having fixed boundaries'),\n", - " ('heaps', 'a large number or amount'),\n", - " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", + " 'clues': [('oodles', 'a large number or amount'),\n", + " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('peck', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('caboodle', 'any collection in its entirety'),\n", + " ('set', 'an unofficial association of people or groups'),\n", " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('rafts', 'a large number or amount'),\n", - " ('piles', 'a large number or amount'),\n", - " ('good deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('great deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('lot', 'a parcel of land having fixed boundaries'),\n", + " ('slews', 'a large number or amount'),\n", " ('scores', 'a large number or amount'),\n", + " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('stacks', 'a large number or amount'),\n", + " ('pile', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('dozens', 'a large number or amount'),\n", + " ('tons', 'a large number or amount'),\n", " ('band', 'an unofficial association of people or groups'),\n", - " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('oodles', 'a large number or amount'),\n", - " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('tidy sum',\n", + " ('wads', 'a large number or amount'),\n", + " ('great deal',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('bunch', 'any collection in its entirety'),\n", - " ('scads', 'a large number or amount'),\n", - " ('tons', 'a large number or amount'),\n", - " ('stacks', 'a large number or amount'),\n", " ('draw', 'anything (straws or pebbles etc.) taken or chosen at random'),\n", + " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", " ('loads', 'a large number or amount'),\n", + " ('rafts', 'a large number or amount'),\n", + " ('tidy sum',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mountain',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('caboodle', 'any collection in its entirety'),\n", - " ('dozens', 'a large number or amount'),\n", - " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('circle', 'an unofficial association of people or groups'),\n", - " ('set', 'an unofficial association of people or groups'),\n", + " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", " ('quite a little',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", " ('gobs', 'a large number or amount'),\n", - " ('lashings', 'a large number or amount'),\n", + " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n", + " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('bunch', 'any collection in its entirety'),\n", + " ('lashings', 'a large number or amount'),\n", + " ('circle', 'an unofficial association of people or groups'),\n", + " ('good deal',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('scads', 'a large number or amount'),\n", + " ('muckle',\n", + " \"(often followed by `of') a large number or amount or extent\")]},\n", " {'answer': 'needs',\n", " 'hint': 'synonyms for needs',\n", " 'clues': [('motive',\n", " 'the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior'),\n", - " ('need', 'anything that is necessary but lacking'),\n", " ('want', 'anything that is necessary but lacking'),\n", " ('motivation',\n", + " 'the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior'),\n", + " ('need',\n", " 'the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior')]},\n", " {'answer': 'nothing',\n", " 'hint': 'synonyms for nothing',\n", - " 'clues': [('null', 'a quantity of no importance'),\n", - " ('nada', 'a quantity of no importance'),\n", - " ('zippo', 'a quantity of no importance'),\n", + " 'clues': [('zip', 'a quantity of no importance'),\n", + " ('naught', 'a quantity of no importance'),\n", + " ('nix', 'a quantity of no importance'),\n", " ('zilch', 'a quantity of no importance'),\n", " ('cypher', 'a quantity of no importance'),\n", - " ('aught', 'a quantity of no importance'),\n", - " ('nix', 'a quantity of no importance'),\n", - " ('goose egg', 'a quantity of no importance'),\n", - " ('cipher', 'a quantity of no importance'),\n", - " ('zero', 'a quantity of no importance'),\n", " ('nil', 'a quantity of no importance'),\n", - " ('zip', 'a quantity of no importance')]},\n", + " ('null', 'a quantity of no importance'),\n", + " ('zero', 'a quantity of no importance'),\n", + " ('nada', 'a quantity of no importance'),\n", + " ('cipher', 'a quantity of no importance'),\n", + " ('zippo', 'a quantity of no importance'),\n", + " ('goose egg', 'a quantity of no importance')]},\n", " {'answer': 'part',\n", " 'hint': 'synonyms for part',\n", - " 'clues': [('share',\n", - " 'the part played by a person in bringing about a result'),\n", - " ('component part',\n", - " 'something determined in relation to something that includes it'),\n", - " ('percentage',\n", + " 'clues': [('persona', \"an actor's portrayal of someone in a play\"),\n", + " ('character', \"an actor's portrayal of someone in a play\"),\n", + " ('share',\n", " 'assets belonging to or due to or contributed by an individual person or group'),\n", + " ('section',\n", + " 'one of the portions into which something is regarded as divided and which together constitute a whole'),\n", " ('constituent',\n", " 'something determined in relation to something that includes it'),\n", - " ('character', \"an actor's portrayal of someone in a play\"),\n", " ('portion',\n", + " 'something determined in relation to something that includes it'),\n", + " ('percentage',\n", " 'assets belonging to or due to or contributed by an individual person or group'),\n", - " ('role',\n", - " 'the actions and activities assigned to or required or expected of a person or group'),\n", - " ('office',\n", - " 'the actions and activities assigned to or required or expected of a person or group'),\n", - " ('contribution',\n", - " 'the part played by a person in bringing about a result'),\n", - " ('function',\n", - " 'the actions and activities assigned to or required or expected of a person or group'),\n", - " ('theatrical role', \"an actor's portrayal of someone in a play\"),\n", " ('division',\n", " 'one of the portions into which something is regarded as divided and which together constitute a whole'),\n", - " ('voice',\n", - " 'the melody carried by a particular voice or instrument in polyphonic music'),\n", + " ('office',\n", + " 'the actions and activities assigned to or required or expected of a person or group'),\n", + " ('role', \"an actor's portrayal of someone in a play\"),\n", + " ('component part',\n", + " 'something determined in relation to something that includes it'),\n", " ('component',\n", " 'something determined in relation to something that includes it'),\n", + " ('voice',\n", + " 'the melody carried by a particular voice or instrument in polyphonic music'),\n", + " ('theatrical role', \"an actor's portrayal of someone in a play\"),\n", + " ('function',\n", + " 'the actions and activities assigned to or required or expected of a person or group'),\n", " ('region', 'the extended spatial location of something'),\n", - " ('section',\n", - " 'one of the portions into which something is regarded as divided and which together constitute a whole'),\n", - " ('piece', 'a portion of a natural object'),\n", - " ('persona', \"an actor's portrayal of someone in a play\")]},\n", + " ('contribution',\n", + " 'the part played by a person in bringing about a result'),\n", + " ('piece', 'a portion of a natural object')]},\n", " {'answer': 'plenty',\n", " 'hint': 'synonyms for plenty',\n", - " 'clues': [('pile',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", + " 'clues': [('plenteousness', 'a full supply'),\n", + " ('plentitude', 'a full supply'),\n", + " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('peck', \"(often followed by `of') a large number or amount or extent\"),\n", " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('good deal',\n", + " ('quite a little',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('plentifulness', 'a full supply'),\n", + " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", " ('batch', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mountain',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('great deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('plenteousness', 'a full supply'),\n", - " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('plentifulness', 'a full supply'),\n", + " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('quite a little',\n", + " ('pile', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('great deal',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('plenitude', 'a full supply'),\n", + " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", " ('tidy sum',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n", + " ('good deal',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mountain',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('raft', \"(often followed by `of') a large number or amount or extent\")]},\n", " {'answer': 'smack',\n", " 'hint': 'synonyms for smack',\n", - " 'clues': [('flavour',\n", - " 'the taste experience when a savoury condiment is taken into the mouth'),\n", - " ('thunder', 'street names for heroin'),\n", - " ('slap', 'a blow from a flat object (as an open hand)'),\n", - " ('smacking',\n", - " 'the act of smacking something; a blow delivered with an open hand'),\n", - " ('scag', 'street names for heroin'),\n", - " ('savour',\n", + " 'clues': [('savor',\n", " 'the taste experience when a savoury condiment is taken into the mouth'),\n", + " ('hell dust', 'street names for heroin'),\n", " ('skag', 'street names for heroin'),\n", - " ('big H', 'street names for heroin'),\n", - " ('tang',\n", + " ('slap', 'a blow from a flat object (as an open hand)'),\n", + " ('nip',\n", " 'the taste experience when a savoury condiment is taken into the mouth'),\n", " ('relish',\n", " 'the taste experience when a savoury condiment is taken into the mouth'),\n", - " ('nip',\n", + " ('tang',\n", " 'the taste experience when a savoury condiment is taken into the mouth'),\n", - " ('hell dust', 'street names for heroin'),\n", - " ('nose drops', 'street names for heroin'),\n", + " ('scag', 'street names for heroin'),\n", " ('sapidity',\n", " 'the taste experience when a savoury condiment is taken into the mouth'),\n", - " ('smooch', 'an enthusiastic kiss')]},\n", + " ('flavor',\n", + " 'the taste experience when a savoury condiment is taken into the mouth'),\n", + " ('nose drops', 'street names for heroin'),\n", + " ('smacking',\n", + " 'the act of smacking something; a blow delivered with an open hand'),\n", + " ('smooch', 'an enthusiastic kiss'),\n", + " ('thunder', 'street names for heroin'),\n", + " ('big H', 'street names for heroin')]},\n", " {'answer': 'smash',\n", " 'hint': 'synonyms for smash',\n", - " 'clues': [('bang', 'a conspicuous success'),\n", + " 'clues': [('bang', 'a vigorous blow'),\n", + " ('knock', 'a vigorous blow'),\n", + " ('bash', 'a vigorous blow'),\n", + " ('strike', 'a conspicuous success'),\n", + " ('overhead', 'a hard return hitting the tennis ball above your head'),\n", " ('smash-up', 'a serious collision (especially of motor vehicles)'),\n", " ('smasher', 'a conspicuous success'),\n", - " ('bash', 'a vigorous blow'),\n", " ('hit', 'a conspicuous success'),\n", - " ('crash', 'the act of colliding with something'),\n", - " ('strike', 'a conspicuous success'),\n", " ('belt', 'a vigorous blow'),\n", - " ('overhead', 'a hard return hitting the tennis ball above your head'),\n", - " ('knock', 'a vigorous blow')]},\n", + " ('crash', 'the act of colliding with something')]},\n", " {'answer': 'soaking',\n", " 'hint': 'synonyms for soaking',\n", - " 'clues': [('soakage',\n", - " 'the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid)'),\n", - " ('sousing', 'the act of making something completely wet'),\n", - " ('soak',\n", + " 'clues': [('souse', 'the act of making something completely wet'),\n", + " ('soakage',\n", " 'the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid)'),\n", - " ('souse', 'the act of making something completely wet'),\n", - " ('drenching', 'the act of making something completely wet')]},\n", + " ('soak', 'washing something by allowing it to soak'),\n", + " ('drenching', 'the act of making something completely wet'),\n", + " ('sousing', 'the act of making something completely wet')]},\n", " {'answer': 'vis-a-vis',\n", " 'hint': 'synonyms for vis-a-vis',\n", - " 'clues': [('loveseat', 'small sofa that seats two people'),\n", - " ('tete-a-tete', 'small sofa that seats two people'),\n", - " ('counterpart',\n", + " 'clues': [('counterpart',\n", " 'a person or thing having the same function or characteristics as another'),\n", + " ('loveseat', 'small sofa that seats two people'),\n", " ('opposite number',\n", - " 'a person or thing having the same function or characteristics as another')]},\n", + " 'a person or thing having the same function or characteristics as another'),\n", + " ('tete-a-tete', 'small sofa that seats two people')]},\n", " {'answer': 'viva_voce',\n", " 'hint': 'synonyms for viva voce',\n", " 'clues': [('oral', 'an examination conducted by spoken communication'),\n", - " ('oral exam', 'an examination conducted by spoken communication'),\n", + " ('oral examination', 'an examination conducted by spoken communication'),\n", " ('viva', 'an examination conducted by spoken communication'),\n", - " ('oral examination',\n", - " 'an examination conducted by spoken communication')]},\n", + " ('oral exam', 'an examination conducted by spoken communication')]},\n", " {'answer': 'way',\n", " 'hint': 'synonyms for way',\n", - " 'clues': [('manner', 'how something is done or how it happens'),\n", - " ('elbow room', 'space for movement'),\n", - " ('means', 'how a result is obtained or an end is achieved'),\n", + " 'clues': [('path', 'a course of conduct'),\n", " ('way of life', 'a course of conduct'),\n", - " ('mode', 'how something is done or how it happens'),\n", + " ('room', 'space for movement'),\n", " ('direction', 'a line leading to a place or point'),\n", - " ('path', 'a course of conduct'),\n", + " ('elbow room', 'space for movement'),\n", " ('fashion', 'how something is done or how it happens'),\n", - " ('style', 'how something is done or how it happens'),\n", + " ('manner', 'how something is done or how it happens'),\n", + " ('means', 'how a result is obtained or an end is achieved'),\n", " ('agency', 'how a result is obtained or an end is achieved'),\n", - " ('room', 'space for movement')]},\n", + " ('mode', 'how something is done or how it happens'),\n", + " ('style', 'how something is done or how it happens')]},\n", " {'answer': '24-hour_interval',\n", " 'hint': 'synonyms for 24-hour interval',\n", " 'clues': [('twenty-four hour period',\n", " 'time for Earth to make a complete rotation on its axis'),\n", " ('twenty-four hours',\n", " 'time for Earth to make a complete rotation on its axis'),\n", - " ('solar day', 'time for Earth to make a complete rotation on its axis'),\n", " ('mean solar day',\n", " 'time for Earth to make a complete rotation on its axis'),\n", + " ('solar day', 'time for Earth to make a complete rotation on its axis'),\n", " ('day', 'time for Earth to make a complete rotation on its axis')]},\n", " {'answer': 'a',\n", " 'hint': 'synonyms for a',\n", - " 'clues': [('axerophthol',\n", + " 'clues': [('vitamin A',\n", " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n", - " ('angstrom',\n", - " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n", " ('adenine',\n", " '(biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA'),\n", + " ('antiophthalmic factor',\n", + " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n", + " ('amp',\n", + " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n", " ('deoxyadenosine monophosphate',\n", " 'one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose)'),\n", - " ('amp',\n", + " ('ampere',\n", " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n", " ('angstrom unit',\n", " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation'),\n", - " ('vitamin A',\n", + " ('axerophthol',\n", " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes'),\n", - " ('ampere',\n", - " \"the basic unit of electric current adopted under the Systeme International d'Unites\"),\n", - " ('antiophthalmic factor',\n", - " 'any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes')]},\n", + " ('angstrom',\n", + " 'a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation')]},\n", " {'answer': 'abatement',\n", " 'hint': 'synonyms for abatement',\n", - " 'clues': [('hiatus',\n", + " 'clues': [('respite',\n", " 'an interruption in the intensity or amount of something'),\n", " ('suspension', 'an interruption in the intensity or amount of something'),\n", - " ('respite', 'an interruption in the intensity or amount of something'),\n", - " ('reprieve', 'an interruption in the intensity or amount of something')]},\n", + " ('reprieve', 'an interruption in the intensity or amount of something'),\n", + " ('hiatus', 'an interruption in the intensity or amount of something')]},\n", " {'answer': 'abc',\n", " 'hint': 'synonyms for abc',\n", - " 'clues': [('alphabet',\n", + " 'clues': [('first principle',\n", " 'the elementary stages of any subject (usually plural)'),\n", + " ('rudiment', 'the elementary stages of any subject (usually plural)'),\n", + " ('alphabet', 'the elementary stages of any subject (usually plural)'),\n", " ('first rudiment',\n", - " 'the elementary stages of any subject (usually plural)'),\n", - " ('first principle',\n", - " 'the elementary stages of any subject (usually plural)'),\n", - " ('rudiment', 'the elementary stages of any subject (usually plural)')]},\n", + " 'the elementary stages of any subject (usually plural)')]},\n", " {'answer': \"abc's\",\n", " 'hint': \"synonyms for abc's\",\n", - " 'clues': [('alphabet',\n", + " 'clues': [('first principle',\n", " 'the elementary stages of any subject (usually plural)'),\n", + " ('rudiment', 'the elementary stages of any subject (usually plural)'),\n", + " ('alphabet', 'the elementary stages of any subject (usually plural)'),\n", " ('first rudiment',\n", - " 'the elementary stages of any subject (usually plural)'),\n", - " ('first principle',\n", - " 'the elementary stages of any subject (usually plural)'),\n", - " ('rudiment', 'the elementary stages of any subject (usually plural)')]},\n", + " 'the elementary stages of any subject (usually plural)')]},\n", " {'answer': 'abcs',\n", " 'hint': 'synonyms for abcs',\n", - " 'clues': [('alphabet',\n", - " 'the elementary stages of any subject (usually plural)'),\n", - " ('rudiment', 'the elementary stages of any subject (usually plural)'),\n", - " ('first principle',\n", + " 'clues': [('first principle',\n", " 'the elementary stages of any subject (usually plural)'),\n", " ('first rudiment',\n", - " 'the elementary stages of any subject (usually plural)')]},\n", + " 'the elementary stages of any subject (usually plural)'),\n", + " ('alphabet', 'the elementary stages of any subject (usually plural)'),\n", + " ('rudiment', 'the elementary stages of any subject (usually plural)')]},\n", " {'answer': 'abdominal_delivery',\n", " 'hint': 'synonyms for abdominal delivery',\n", - " 'clues': [('caesarian delivery',\n", - " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('caesarean',\n", + " 'clues': [('cesarean section',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", - " ('cesarian section',\n", + " ('caesarian delivery',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", " ('cesarian',\n", + " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)'),\n", + " ('caesarean',\n", " 'the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way)')]},\n", " {'answer': 'abhorrence',\n", " 'hint': 'synonyms for abhorrence',\n", - " 'clues': [('loathing', 'hate coupled with disgust'),\n", - " ('execration', 'hate coupled with disgust'),\n", - " ('detestation', 'hate coupled with disgust'),\n", + " 'clues': [('execration', 'hate coupled with disgust'),\n", + " ('abomination', 'hate coupled with disgust'),\n", + " ('loathing', 'hate coupled with disgust'),\n", " ('odium', 'hate coupled with disgust'),\n", - " ('abomination', 'hate coupled with disgust')]},\n", + " ('detestation', 'hate coupled with disgust')]},\n", " {'answer': 'abidance',\n", " 'hint': 'synonyms for abidance',\n", - " 'clues': [('conformity', 'acting according to certain accepted standards'),\n", - " ('residency', 'the act of dwelling in a place'),\n", + " 'clues': [('residence', 'the act of dwelling in a place'),\n", + " ('conformity', 'acting according to certain accepted standards'),\n", " ('compliance', 'acting according to certain accepted standards'),\n", " ('conformation', 'acting according to certain accepted standards')]},\n", " {'answer': 'abnegation',\n", " 'hint': 'synonyms for abnegation',\n", - " 'clues': [('self-abnegation',\n", + " 'clues': [('self-denial',\n", " 'renunciation of your own interests in favor of the interests of others'),\n", - " ('self-denial',\n", + " ('self-abnegation',\n", " 'renunciation of your own interests in favor of the interests of others'),\n", " ('self-renunciation',\n", " 'renunciation of your own interests in favor of the interests of others'),\n", @@ -29210,130 +29250,131 @@ " 'renunciation of your own interests in favor of the interests of others')]},\n", " {'answer': 'abode',\n", " 'hint': 'synonyms for abode',\n", - " 'clues': [('domicile', 'housing that someone is living in'),\n", - " ('home', 'housing that someone is living in'),\n", - " ('habitation', 'housing that someone is living in'),\n", + " 'clues': [('residence',\n", + " 'any address at which you dwell more than temporarily'),\n", + " ('domicile', 'housing that someone is living in'),\n", " ('dwelling', 'housing that someone is living in'),\n", - " ('dwelling house', 'housing that someone is living in'),\n", - " ('residence', 'any address at which you dwell more than temporarily')]},\n", + " ('habitation', 'housing that someone is living in'),\n", + " ('home', 'housing that someone is living in'),\n", + " ('dwelling house', 'housing that someone is living in')]},\n", " {'answer': 'abomination',\n", " 'hint': 'synonyms for abomination',\n", - " 'clues': [('loathing', 'hate coupled with disgust'),\n", - " ('execration', 'hate coupled with disgust'),\n", - " ('detestation', 'hate coupled with disgust'),\n", + " 'clues': [('execration', 'hate coupled with disgust'),\n", + " ('loathing', 'hate coupled with disgust'),\n", " ('odium', 'hate coupled with disgust'),\n", + " ('detestation', 'hate coupled with disgust'),\n", " ('abhorrence', 'hate coupled with disgust')]},\n", " {'answer': 'about-face',\n", " 'hint': 'synonyms for about-face',\n", - " 'clues': [('about turn',\n", - " 'act of pivoting 180 degrees, especially in a military formation'),\n", - " ('policy change',\n", + " 'clues': [('policy change',\n", " 'a major change in attitude or principle or point of view'),\n", + " ('about turn',\n", + " 'act of pivoting 180 degrees, especially in a military formation'),\n", " ('volte-face',\n", " 'a major change in attitude or principle or point of view'),\n", " ('reversal',\n", " 'a major change in attitude or principle or point of view')]},\n", " {'answer': 'abrasion',\n", " 'hint': 'synonyms for abrasion',\n", - " 'clues': [('attrition', 'erosion by friction'),\n", + " 'clues': [('corrasion', 'erosion by friction'),\n", + " ('attrition',\n", + " 'the wearing down of rock particles by friction due to water or wind or ice'),\n", " ('detrition',\n", " 'the wearing down of rock particles by friction due to water or wind or ice'),\n", - " ('corrasion', 'erosion by friction'),\n", " ('grinding',\n", " 'the wearing down of rock particles by friction due to water or wind or ice')]},\n", " {'answer': 'abruptness',\n", " 'hint': 'synonyms for abruptness',\n", - " 'clues': [('shortness', 'an abrupt discourteous manner'),\n", - " ('precipitance',\n", + " 'clues': [('precipitancy',\n", " 'the quality of happening with headlong haste or without warning'),\n", - " ('brusqueness', 'an abrupt discourteous manner'),\n", " ('suddenness',\n", " 'the quality of happening with headlong haste or without warning'),\n", - " ('precipitousness',\n", - " 'the quality of happening with headlong haste or without warning'),\n", " ('precipitateness',\n", " 'the quality of happening with headlong haste or without warning'),\n", - " ('gruffness', 'an abrupt discourteous manner'),\n", " ('curtness', 'an abrupt discourteous manner'),\n", - " ('steepness', 'the property possessed by a slope that is very steep')]},\n", + " ('brusqueness', 'an abrupt discourteous manner'),\n", + " ('shortness', 'an abrupt discourteous manner'),\n", + " ('steepness', 'the property possessed by a slope that is very steep'),\n", + " ('gruffness', 'an abrupt discourteous manner'),\n", + " ('precipitousness',\n", + " 'the quality of happening with headlong haste or without warning')]},\n", " {'answer': 'absolutism',\n", " 'hint': 'synonyms for absolutism',\n", - " 'clues': [('totalism',\n", - " 'the principle of complete and unrestricted power in government'),\n", + " 'clues': [('dictatorship',\n", + " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", " ('one-man rule',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", " ('despotism',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('authoritarianism',\n", - " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", + " ('totalism',\n", + " 'the principle of complete and unrestricted power in government'),\n", " ('totalitarianism',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('tyranny',\n", + " ('monocracy',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('shogunate',\n", + " ('authoritarianism',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('dictatorship',\n", + " ('shogunate',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('monocracy',\n", + " ('tyranny',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)')]},\n", " {'answer': 'absorption',\n", " 'hint': 'synonyms for absorption',\n", - " 'clues': [('preoccupation',\n", - " 'the mental state of being preoccupied by something'),\n", + " 'clues': [('soaking up',\n", + " '(chemistry) a process in which one substance permeates another; a fluid permeates or is dissolved by a liquid or solid'),\n", + " ('immersion', 'complete attention; intense mental effort'),\n", + " ('preoccupancy', 'the mental state of being preoccupied by something'),\n", + " ('engrossment', 'the mental state of being preoccupied by something'),\n", " ('assimilation',\n", " 'the process of absorbing nutrients into the body after digestion'),\n", - " ('engrossment', 'the mental state of being preoccupied by something'),\n", - " ('preoccupancy', 'the mental state of being preoccupied by something'),\n", - " ('immersion', 'complete attention; intense mental effort'),\n", - " ('concentration', 'complete attention; intense mental effort'),\n", - " ('soaking up',\n", - " '(chemistry) a process in which one substance permeates another; a fluid permeates or is dissolved by a liquid or solid')]},\n", + " ('preoccupation', 'the mental state of being preoccupied by something'),\n", + " ('concentration', 'complete attention; intense mental effort')]},\n", " {'answer': 'abstraction',\n", " 'hint': 'synonyms for abstraction',\n", - " 'clues': [('abstract',\n", - " 'a concept or idea not associated with any specific instance'),\n", + " 'clues': [('generalization',\n", + " 'the process of formulating general concepts by abstracting common properties of instances'),\n", " ('abstract entity',\n", " 'a general concept formed by extracting common features from specific examples'),\n", - " ('generalisation',\n", - " 'the process of formulating general concepts by abstracting common properties of instances'),\n", " ('abstractedness',\n", - " 'preoccupation with something to the exclusion of all else')]},\n", + " 'preoccupation with something to the exclusion of all else'),\n", + " ('abstract',\n", + " 'a concept or idea not associated with any specific instance')]},\n", " {'answer': 'abstruseness',\n", " 'hint': 'synonyms for abstruseness',\n", - " 'clues': [('reconditeness',\n", + " 'clues': [('profoundness',\n", " 'wisdom that is recondite and abstruse and profound'),\n", - " ('obscureness',\n", - " 'the quality of being unclear or abstruse and hard to understand'),\n", - " ('profoundness', 'wisdom that is recondite and abstruse and profound'),\n", " ('profundity', 'wisdom that is recondite and abstruse and profound'),\n", + " ('abstrusity', 'wisdom that is recondite and abstruse and profound'),\n", + " ('reconditeness', 'wisdom that is recondite and abstruse and profound'),\n", " ('obscurity',\n", " 'the quality of being unclear or abstruse and hard to understand'),\n", - " ('abstrusity', 'wisdom that is recondite and abstruse and profound')]},\n", + " ('obscureness',\n", + " 'the quality of being unclear or abstruse and hard to understand')]},\n", " {'answer': 'abstrusity',\n", " 'hint': 'synonyms for abstrusity',\n", - " 'clues': [('abstruseness',\n", + " 'clues': [('profoundness',\n", " 'wisdom that is recondite and abstruse and profound'),\n", - " ('profundity', 'wisdom that is recondite and abstruse and profound'),\n", " ('reconditeness', 'wisdom that is recondite and abstruse and profound'),\n", - " ('profoundness', 'wisdom that is recondite and abstruse and profound')]},\n", + " ('profundity', 'wisdom that is recondite and abstruse and profound'),\n", + " ('abstruseness', 'wisdom that is recondite and abstruse and profound')]},\n", " {'answer': 'absurdity',\n", " 'hint': 'synonyms for absurdity',\n", - " 'clues': [('absurdness',\n", + " 'clues': [('ridiculousness',\n", " 'a message whose content is at variance with reason'),\n", - " ('ridiculousness', 'a message whose content is at variance with reason'),\n", - " ('fatuousness', 'a ludicrous folly'),\n", " ('silliness', 'a ludicrous folly'),\n", - " ('fatuity', 'a ludicrous folly')]},\n", + " ('fatuousness', 'a ludicrous folly'),\n", + " ('fatuity', 'a ludicrous folly'),\n", + " ('absurdness', 'a message whose content is at variance with reason')]},\n", " {'answer': 'abuse',\n", " 'hint': 'synonyms for abuse',\n", - " 'clues': [('ill-treatment', 'cruel or inhumane treatment'),\n", - " ('contumely', 'a rude expression intended to offend or hurt'),\n", - " ('misuse', 'improper or excessive use'),\n", - " ('maltreatment', 'cruel or inhumane treatment'),\n", + " 'clues': [('contumely', 'a rude expression intended to offend or hurt'),\n", + " ('ill-usage', 'cruel or inhumane treatment'),\n", " ('revilement', 'a rude expression intended to offend or hurt'),\n", + " ('misuse', 'improper or excessive use'),\n", + " ('ill-treatment', 'cruel or inhumane treatment'),\n", " ('insult', 'a rude expression intended to offend or hurt'),\n", - " ('vilification', 'a rude expression intended to offend or hurt'),\n", - " ('ill-usage', 'cruel or inhumane treatment')]},\n", + " ('maltreatment', 'cruel or inhumane treatment'),\n", + " ('vilification', 'a rude expression intended to offend or hurt')]},\n", " {'answer': 'ac',\n", " 'hint': 'synonyms for ac',\n", " 'clues': [('actinium',\n", @@ -29346,269 +29387,264 @@ " 'an electric current that reverses direction sinusoidally')]},\n", " {'answer': 'acaroid_resin',\n", " 'hint': 'synonyms for acaroid resin',\n", - " 'clues': [('accaroid resin',\n", - " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", - " ('accroides',\n", + " 'clues': [('accroides gum',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", " ('gum accroides',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", - " ('accroides gum',\n", + " ('accroides resin',\n", + " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", + " ('accroides',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper')]},\n", " {'answer': 'accaroid_resin',\n", " 'hint': 'synonyms for accaroid resin',\n", - " 'clues': [('accroides resin',\n", + " 'clues': [('accroides gum',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", - " ('accroides',\n", + " ('acaroid resin',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", " ('gum accroides',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", - " ('accroides gum',\n", + " ('accroides',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper')]},\n", " {'answer': 'accelerator',\n", " 'hint': 'synonyms for accelerator',\n", - " 'clues': [('accelerator pedal',\n", - " 'a pedal that controls the throttle valve'),\n", - " ('throttle', 'a pedal that controls the throttle valve'),\n", + " 'clues': [('throttle', 'a pedal that controls the throttle valve'),\n", + " ('atom smasher',\n", + " 'a scientific instrument that increases the kinetic energy of charged particles'),\n", " ('gun', 'a pedal that controls the throttle valve'),\n", + " ('gas', 'a pedal that controls the throttle valve'),\n", + " ('accelerator pedal', 'a pedal that controls the throttle valve'),\n", + " ('gas pedal', 'a pedal that controls the throttle valve'),\n", " ('throttle valve',\n", " 'a valve that regulates the supply of fuel to the engine'),\n", - " ('gas', 'a pedal that controls the throttle valve'),\n", " ('catalyst',\n", " '(chemistry) a substance that initiates or accelerates a chemical reaction without itself being affected'),\n", - " ('gas pedal', 'a pedal that controls the throttle valve'),\n", - " ('atom smasher',\n", - " 'a scientific instrument that increases the kinetic energy of charged particles'),\n", " ('particle accelerator',\n", " 'a scientific instrument that increases the kinetic energy of charged particles')]},\n", " {'answer': 'accelerator_pedal',\n", " 'hint': 'synonyms for accelerator pedal',\n", - " 'clues': [('gas pedal', 'a pedal that controls the throttle valve'),\n", - " ('accelerator', 'a pedal that controls the throttle valve'),\n", - " ('throttle', 'a pedal that controls the throttle valve'),\n", + " 'clues': [('throttle', 'a pedal that controls the throttle valve'),\n", + " ('gun', 'a pedal that controls the throttle valve'),\n", " ('gas', 'a pedal that controls the throttle valve'),\n", - " ('gun', 'a pedal that controls the throttle valve')]},\n", + " ('accelerator', 'a pedal that controls the throttle valve'),\n", + " ('gas pedal', 'a pedal that controls the throttle valve')]},\n", " {'answer': 'accent',\n", " 'hint': 'synonyms for accent',\n", - " 'clues': [('idiom',\n", + " 'clues': [('stress',\n", + " 'the relative prominence of a syllable or musical note (especially with regard to stress or pitch)'),\n", + " ('accent mark',\n", + " 'a diacritical mark used to indicate stress or placed above a vowel to indicate a special pronunciation'),\n", + " ('speech pattern', 'distinctive manner of oral expression'),\n", + " ('idiom',\n", " 'the usage or vocabulary that is characteristic of a specific group of people'),\n", " ('dialect',\n", " 'the usage or vocabulary that is characteristic of a specific group of people'),\n", - " ('stress',\n", - " 'the relative prominence of a syllable or musical note (especially with regard to stress or pitch)'),\n", " ('emphasis',\n", - " 'the relative prominence of a syllable or musical note (especially with regard to stress or pitch)'),\n", - " ('speech pattern', 'distinctive manner of oral expression'),\n", - " ('accent mark',\n", - " 'a diacritical mark used to indicate stress or placed above a vowel to indicate a special pronunciation')]},\n", + " 'the relative prominence of a syllable or musical note (especially with regard to stress or pitch)')]},\n", " {'answer': 'acceptance',\n", " 'hint': 'synonyms for acceptance',\n", - " 'clues': [('acceptation',\n", - " 'the act of accepting with approval; favorable reception'),\n", - " ('espousal', 'the act of accepting with approval; favorable reception'),\n", - " (\"banker's acceptance\",\n", + " 'clues': [(\"banker's acceptance\",\n", " 'banking: a time draft drawn on and accepted by a bank'),\n", - " ('sufferance',\n", - " 'a disposition to tolerate or accept people or situations'),\n", " ('toleration',\n", " 'a disposition to tolerate or accept people or situations'),\n", - " ('adoption', 'the act of accepting with approval; favorable reception'),\n", " ('credence',\n", - " 'the mental attitude that something is believable and should be accepted as true')]},\n", + " 'the mental attitude that something is believable and should be accepted as true'),\n", + " ('espousal', 'the act of accepting with approval; favorable reception'),\n", + " ('sufferance',\n", + " 'a disposition to tolerate or accept people or situations'),\n", + " ('acceptation',\n", + " 'the act of accepting with approval; favorable reception'),\n", + " ('adoption', 'the act of accepting with approval; favorable reception')]},\n", " {'answer': 'acceptation',\n", " 'hint': 'synonyms for acceptation',\n", - " 'clues': [('espousal',\n", - " 'the act of accepting with approval; favorable reception'),\n", + " 'clues': [('word sense', 'the accepted meaning of a word'),\n", " ('word meaning', 'the accepted meaning of a word'),\n", - " ('adoption', 'the act of accepting with approval; favorable reception'),\n", - " ('word sense', 'the accepted meaning of a word'),\n", - " ('acceptance',\n", - " 'the act of accepting with approval; favorable reception')]},\n", + " ('espousal', 'the act of accepting with approval; favorable reception'),\n", + " ('acceptance', 'the act of accepting with approval; favorable reception'),\n", + " ('adoption', 'the act of accepting with approval; favorable reception')]},\n", " {'answer': 'acceptor_rna',\n", " 'hint': 'synonyms for acceptor rna',\n", " 'clues': [('soluble RNA',\n", " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n", - " ('acceptor RNA',\n", - " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n", " ('tRNA',\n", " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n", + " ('acceptor RNA',\n", + " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)'),\n", " ('transfer RNA',\n", " 'RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA)')]},\n", " {'answer': 'access',\n", " 'hint': 'synonyms for access',\n", - " 'clues': [('memory access',\n", + " 'clues': [('approach', 'a way of entering or leaving'),\n", + " ('admission', 'the right to enter'),\n", + " ('memory access',\n", " '(computer science) the operation of reading or writing stored information'),\n", " ('entree', 'the right to enter'),\n", - " ('admittance', 'the right to enter'),\n", - " ('approach', 'a way of entering or leaving'),\n", - " ('admission', 'the right to enter'),\n", " ('access code',\n", " 'a code (a series of characters or digits) that must be entered in some way (typed or dialed or spoken) to get the use of something (a telephone line or a computer or a local area network etc.)'),\n", + " ('admittance', 'the right to enter'),\n", " ('accession', 'the right to enter')]},\n", " {'answer': 'accessibility',\n", " 'hint': 'synonyms for accessibility',\n", - " 'clues': [('handiness', 'the quality of being at hand when needed'),\n", - " ('approachability', 'the attribute of being easy to meet or deal with'),\n", + " 'clues': [('availability', 'the quality of being at hand when needed'),\n", " ('availableness', 'the quality of being at hand when needed'),\n", - " ('availability', 'the quality of being at hand when needed')]},\n", + " ('approachability', 'the attribute of being easy to meet or deal with'),\n", + " ('handiness', 'the quality of being at hand when needed')]},\n", " {'answer': 'accession',\n", " 'hint': 'synonyms for accession',\n", - " 'clues': [('rise to power',\n", - " 'the act of attaining or gaining access to a new office or right or position (especially the throne)'),\n", + " 'clues': [('addition', 'something added to what you already have'),\n", + " ('access', 'the right to enter'),\n", " ('assenting', 'agreeing with or consenting to (often unwillingly)'),\n", + " ('admission', 'the right to enter'),\n", " ('entree', 'the right to enter'),\n", - " ('admittance', 'the right to enter'),\n", - " ('addition', 'something added to what you already have'),\n", - " ('access', 'the right to enter'),\n", - " ('admission', 'the right to enter')]},\n", + " ('rise to power',\n", + " 'the act of attaining or gaining access to a new office or right or position (especially the throne)'),\n", + " ('admittance', 'the right to enter')]},\n", " {'answer': 'acclivity',\n", " 'hint': 'synonyms for acclivity',\n", - " 'clues': [('raise', 'an upward slope or grade (as in a road)'),\n", + " 'clues': [('rise', 'an upward slope or grade (as in a road)'),\n", + " ('upgrade', 'an upward slope or grade (as in a road)'),\n", " ('ascent', 'an upward slope or grade (as in a road)'),\n", - " ('climb', 'an upward slope or grade (as in a road)'),\n", - " ('upgrade', 'an upward slope or grade (as in a road)')]},\n", + " ('climb', 'an upward slope or grade (as in a road)')]},\n", " {'answer': 'accompaniment',\n", " 'hint': 'synonyms for accompaniment',\n", - " 'clues': [('support',\n", - " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", - " ('backup',\n", + " 'clues': [('backup',\n", " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", - " ('co-occurrence',\n", + " ('complement',\n", + " 'something added to complete or embellish or make perfect'),\n", + " ('attendant',\n", + " 'an event or situation that happens at the same time as or in connection with another'),\n", + " ('concomitant',\n", " 'an event or situation that happens at the same time as or in connection with another'),\n", " ('escort',\n", " 'the act of accompanying someone or something in order to protect them'),\n", - " ('attendant',\n", - " 'an event or situation that happens at the same time as or in connection with another'),\n", - " ('complement',\n", - " 'something added to complete or embellish or make perfect'),\n", + " ('support',\n", + " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", " ('musical accompaniment',\n", " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", - " ('concomitant',\n", + " ('co-occurrence',\n", " 'an event or situation that happens at the same time as or in connection with another')]},\n", " {'answer': 'accomplishment',\n", " 'hint': 'synonyms for accomplishment',\n", - " 'clues': [('skill', 'an ability that has been acquired by training'),\n", - " ('achievement', 'the action of accomplishing something'),\n", - " ('attainment', 'an ability that has been acquired by training'),\n", + " 'clues': [('attainment', 'an ability that has been acquired by training'),\n", + " ('acquisition', 'an ability that has been acquired by training'),\n", " ('acquirement', 'an ability that has been acquired by training'),\n", - " ('acquisition', 'an ability that has been acquired by training')]},\n", + " ('skill', 'an ability that has been acquired by training'),\n", + " ('achievement', 'the action of accomplishing something')]},\n", " {'answer': 'accord',\n", " 'hint': 'synonyms for accord',\n", - " 'clues': [('treaty',\n", - " 'a written agreement between two states or sovereigns'),\n", + " 'clues': [('conformity', 'concurrence of opinion'),\n", + " ('treaty', 'a written agreement between two states or sovereigns'),\n", " ('pact', 'a written agreement between two states or sovereigns'),\n", - " ('conformity', 'concurrence of opinion'),\n", " ('accordance', 'concurrence of opinion')]},\n", " {'answer': 'account',\n", " 'hint': 'synonyms for account',\n", - " 'clues': [('news report', 'a short account of the news'),\n", - " ('story', 'a record or narrative description of past events'),\n", - " ('write up', 'a short account of the news'),\n", - " ('invoice',\n", - " 'an itemized statement of money owed for goods shipped or services rendered'),\n", - " ('bill',\n", - " 'an itemized statement of money owed for goods shipped or services rendered'),\n", - " ('chronicle', 'a record or narrative description of past events'),\n", - " ('score', 'grounds'),\n", - " ('account statement',\n", - " 'a statement of recent transactions and the resulting balance'),\n", + " 'clues': [('report', 'the act of informing by verbal report'),\n", " ('accounting',\n", " 'a statement of recent transactions and the resulting balance'),\n", - " ('report', 'a short account of the news'),\n", + " ('account statement',\n", + " 'a statement of recent transactions and the resulting balance'),\n", + " ('news report', 'a short account of the news'),\n", + " ('score', 'grounds'),\n", + " ('story', 'a short account of the news'),\n", + " ('bill',\n", + " 'an itemized statement of money owed for goods shipped or services rendered'),\n", + " ('history', 'a record or narrative description of past events'),\n", " ('explanation',\n", " 'a statement that makes something comprehensible by describing the relevant structure or operation or circumstances etc.'),\n", - " ('history', 'a record or narrative description of past events')]},\n", + " ('write up', 'a short account of the news'),\n", + " ('chronicle', 'a record or narrative description of past events'),\n", + " ('invoice',\n", + " 'an itemized statement of money owed for goods shipped or services rendered')]},\n", " {'answer': 'accounting',\n", " 'hint': 'synonyms for accounting',\n", - " 'clues': [('accounting system',\n", + " 'clues': [('method of accounting',\n", " \"a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts\"),\n", - " ('account',\n", - " 'a statement of recent transactions and the resulting balance'),\n", " ('accountancy',\n", " 'the occupation of maintaining and auditing records and preparing financial reports for a business'),\n", - " ('method of accounting',\n", + " ('accounting system',\n", " \"a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts\"),\n", " ('account statement',\n", + " 'a statement of recent transactions and the resulting balance'),\n", + " ('account',\n", " 'a statement of recent transactions and the resulting balance')]},\n", " {'answer': 'accroides_resin',\n", " 'hint': 'synonyms for accroides resin',\n", - " 'clues': [('accaroid resin',\n", + " 'clues': [('accroides gum',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", - " ('accroides',\n", + " ('acaroid resin',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", " ('gum accroides',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper'),\n", - " ('accroides gum',\n", + " ('accroides',\n", " 'an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper')]},\n", " {'answer': 'acculturation',\n", " 'hint': 'synonyms for acculturation',\n", " 'clues': [('enculturation',\n", " 'the adoption of the behavior patterns of the surrounding culture'),\n", + " ('culture', 'all the knowledge and values shared by a society'),\n", " ('assimilation',\n", " 'the process of assimilating new ideas into an existing cognitive structure'),\n", " ('socialisation',\n", - " 'the adoption of the behavior patterns of the surrounding culture'),\n", - " ('culture', 'all the knowledge and values shared by a society')]},\n", + " 'the adoption of the behavior patterns of the surrounding culture')]},\n", " {'answer': 'accumulation',\n", " 'hint': 'synonyms for accumulation',\n", - " 'clues': [('collection',\n", - " 'several things grouped together or considered as a whole'),\n", - " ('accretion', 'an increase by natural growth or addition'),\n", - " ('aggregation',\n", + " 'clues': [('accruement', 'the act of accumulating'),\n", + " ('collection',\n", " 'several things grouped together or considered as a whole'),\n", - " ('accrual', 'the act of accumulating'),\n", " ('assemblage',\n", " 'several things grouped together or considered as a whole'),\n", - " ('accruement', 'the act of accumulating')]},\n", + " ('accrual', 'the act of accumulating'),\n", + " ('accretion', 'an increase by natural growth or addition'),\n", + " ('aggregation',\n", + " 'several things grouped together or considered as a whole')]},\n", " {'answer': 'acerbity',\n", " 'hint': 'synonyms for acerbity',\n", - " 'clues': [('tartness', 'a rough and bitter manner'),\n", + " 'clues': [('thorniness', 'a rough and bitter manner'),\n", + " ('tartness', 'a rough and bitter manner'),\n", " ('jaundice', 'a rough and bitter manner'),\n", - " ('thorniness', 'a rough and bitter manner'),\n", - " ('acrimony', 'a rough and bitter manner'),\n", - " ('bitterness', 'a rough and bitter manner')]},\n", + " ('bitterness', 'a rough and bitter manner'),\n", + " ('acrimony', 'a rough and bitter manner')]},\n", " {'answer': 'acetyl',\n", " 'hint': 'synonyms for acetyl',\n", - " 'clues': [('ethanoyl radical',\n", - " 'the organic group of acetic acid (CH3CO-)'),\n", - " ('acetyl radical', 'the organic group of acetic acid (CH3CO-)'),\n", - " ('acetyl group', 'the organic group of acetic acid (CH3CO-)'),\n", - " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)')]},\n", + " 'clues': [('acetyl radical', 'the organic group of acetic acid (CH3CO-)'),\n", + " ('ethanoyl radical', 'the organic group of acetic acid (CH3CO-)'),\n", + " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)'),\n", + " ('acetyl group', 'the organic group of acetic acid (CH3CO-)')]},\n", " {'answer': 'acetyl_group',\n", " 'hint': 'synonyms for acetyl group',\n", - " 'clues': [('ethanoyl radical',\n", - " 'the organic group of acetic acid (CH3CO-)'),\n", - " ('acetyl radical', 'the organic group of acetic acid (CH3CO-)'),\n", - " ('acetyl', 'the organic group of acetic acid (CH3CO-)'),\n", - " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)')]},\n", + " 'clues': [('acetyl radical', 'the organic group of acetic acid (CH3CO-)'),\n", + " ('ethanoyl radical', 'the organic group of acetic acid (CH3CO-)'),\n", + " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)'),\n", + " ('acetyl', 'the organic group of acetic acid (CH3CO-)')]},\n", " {'answer': 'acetyl_radical',\n", " 'hint': 'synonyms for acetyl radical',\n", " 'clues': [('ethanoyl radical',\n", " 'the organic group of acetic acid (CH3CO-)'),\n", + " ('acetyl group', 'the organic group of acetic acid (CH3CO-)'),\n", " ('ethanoyl group', 'the organic group of acetic acid (CH3CO-)'),\n", - " ('acetyl', 'the organic group of acetic acid (CH3CO-)'),\n", - " ('acetyl group', 'the organic group of acetic acid (CH3CO-)')]},\n", + " ('acetyl', 'the organic group of acetic acid (CH3CO-)')]},\n", " {'answer': 'achromasia',\n", " 'hint': 'synonyms for achromasia',\n", - " 'clues': [('lividness',\n", - " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", - " ('luridness',\n", - " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", - " ('pallor',\n", + " 'clues': [('pallor',\n", " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", - " ('wanness',\n", + " ('lividness',\n", " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", " ('lividity',\n", " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", + " ('luridness',\n", + " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", " ('paleness',\n", " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", + " ('wanness',\n", + " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)'),\n", " ('pallidness',\n", " 'unnatural lack of color in the skin (as from bruising or sickness or emotional distress)')]},\n", " {'answer': 'ack-ack',\n", " 'hint': 'synonyms for ack-ack',\n", - " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", - " ('antiaircraft gun', 'artillery designed to shoot upward at airplanes'),\n", + " 'clues': [('ack-ack gun',\n", + " 'artillery designed to shoot upward at airplanes'),\n", + " ('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", " ('flak', 'artillery designed to shoot upward at airplanes'),\n", - " ('ack-ack gun', 'artillery designed to shoot upward at airplanes')]},\n", + " ('antiaircraft gun', 'artillery designed to shoot upward at airplanes')]},\n", " {'answer': 'ack-ack_gun',\n", " 'hint': 'synonyms for ack-ack gun',\n", " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", @@ -29617,786 +29653,782 @@ " ('ack-ack', 'artillery designed to shoot upward at airplanes')]},\n", " {'answer': 'acknowledgment',\n", " 'hint': 'synonyms for acknowledgment',\n", - " 'clues': [('acknowledgement',\n", - " 'a statement acknowledging something or someone'),\n", - " ('citation',\n", - " 'a short note recognizing a source of information or of a quoted passage'),\n", - " ('credit',\n", + " 'clues': [('mention',\n", " 'a short note recognizing a source of information or of a quoted passage'),\n", " ('cite',\n", " 'a short note recognizing a source of information or of a quoted passage'),\n", - " ('mention',\n", - " 'a short note recognizing a source of information or of a quoted passage'),\n", " ('reference',\n", " 'a short note recognizing a source of information or of a quoted passage'),\n", + " ('credit',\n", + " 'a short note recognizing a source of information or of a quoted passage'),\n", + " ('acknowledgement', 'a statement acknowledging something or someone'),\n", " ('quotation',\n", + " 'a short note recognizing a source of information or of a quoted passage'),\n", + " ('citation',\n", " 'a short note recognizing a source of information or of a quoted passage')]},\n", " {'answer': 'acquirement',\n", " 'hint': 'synonyms for acquirement',\n", - " 'clues': [('skill', 'an ability that has been acquired by training'),\n", - " ('acquisition', 'an ability that has been acquired by training'),\n", + " 'clues': [('attainment', 'an ability that has been acquired by training'),\n", + " ('skill', 'an ability that has been acquired by training'),\n", " ('accomplishment', 'an ability that has been acquired by training'),\n", - " ('attainment', 'an ability that has been acquired by training')]},\n", + " ('acquisition', 'an ability that has been acquired by training')]},\n", " {'answer': 'acquisition',\n", " 'hint': 'synonyms for acquisition',\n", - " 'clues': [('skill', 'an ability that has been acquired by training'),\n", - " ('accomplishment', 'an ability that has been acquired by training'),\n", - " ('attainment', 'an ability that has been acquired by training'),\n", + " 'clues': [('attainment', 'an ability that has been acquired by training'),\n", " ('acquirement', 'an ability that has been acquired by training'),\n", - " ('learning', 'the cognitive process of acquiring skill or knowledge')]},\n", + " ('learning', 'the cognitive process of acquiring skill or knowledge'),\n", + " ('skill', 'an ability that has been acquired by training'),\n", + " ('accomplishment', 'an ability that has been acquired by training')]},\n", " {'answer': 'acres',\n", " 'hint': 'synonyms for acres',\n", - " 'clues': [('estate',\n", + " 'clues': [('land',\n", " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n", - " ('landed estate',\n", + " ('estate',\n", " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n", - " ('acre',\n", - " 'a unit of area (4840 square yards) used in English-speaking countries'),\n", " ('demesne',\n", " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n", - " ('land',\n", - " 'extensive landed property (especially in the country) retained by the owner for his own use')]},\n", + " ('landed estate',\n", + " 'extensive landed property (especially in the country) retained by the owner for his own use'),\n", + " ('acre',\n", + " 'a unit of area (4840 square yards) used in English-speaking countries')]},\n", " {'answer': 'acrimony',\n", " 'hint': 'synonyms for acrimony',\n", - " 'clues': [('acerbity', 'a rough and bitter manner'),\n", - " ('tartness', 'a rough and bitter manner'),\n", + " 'clues': [('thorniness', 'a rough and bitter manner'),\n", " ('jaundice', 'a rough and bitter manner'),\n", - " ('thorniness', 'a rough and bitter manner'),\n", + " ('tartness', 'a rough and bitter manner'),\n", + " ('acerbity', 'a rough and bitter manner'),\n", " ('bitterness', 'a rough and bitter manner')]},\n", " {'answer': 'acrobatics',\n", " 'hint': 'synonyms for acrobatics',\n", - " 'clues': [('stunt flying',\n", + " 'clues': [('stunting',\n", " 'the performance of stunts while in flight in an aircraft'),\n", - " ('stunting', 'the performance of stunts while in flight in an aircraft'),\n", - " ('aerobatics',\n", + " ('tumbling', 'the gymnastic moves of an acrobat'),\n", + " ('stunt flying',\n", " 'the performance of stunts while in flight in an aircraft'),\n", - " ('tumbling', 'the gymnastic moves of an acrobat')]},\n", + " ('aerobatics',\n", + " 'the performance of stunts while in flight in an aircraft')]},\n", " {'answer': 'acrylic',\n", " 'hint': 'synonyms for acrylic',\n", - " 'clues': [('acrylic paint', 'used especially by artists'),\n", - " ('acrylic resin',\n", + " 'clues': [('acrylate resin',\n", " 'a glassy thermoplastic; can be cast and molded or used in coatings and adhesives'),\n", - " ('acrylate resin',\n", - " 'a glassy thermoplastic; can be cast and molded or used in coatings and adhesives'),\n", - " ('acrylic fiber', 'polymerized from acrylonitrile')]},\n", + " ('acrylic fiber', 'polymerized from acrylonitrile'),\n", + " ('acrylic paint', 'used especially by artists'),\n", + " ('acrylic resin',\n", + " 'a glassy thermoplastic; can be cast and molded or used in coatings and adhesives')]},\n", " {'answer': 'act',\n", " 'hint': 'synonyms for act',\n", - " 'clues': [('number',\n", - " 'a short theatrical performance that is part of a longer program'),\n", - " ('bit',\n", + " 'clues': [('routine',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('enactment',\n", - " 'a legal document codifying the result of deliberations of a committee or society or legislative body'),\n", " ('deed', 'something that people do or cause to happen'),\n", + " ('number',\n", + " 'a short theatrical performance that is part of a longer program'),\n", " ('turn',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('routine',\n", + " ('human activity', 'something that people do or cause to happen'),\n", + " ('bit',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('human action', 'something that people do or cause to happen'),\n", - " ('human activity', 'something that people do or cause to happen')]},\n", + " ('enactment',\n", + " 'a legal document codifying the result of deliberations of a committee or society or legislative body'),\n", + " ('human action', 'something that people do or cause to happen')]},\n", " {'answer': 'act_of_god',\n", " 'hint': 'synonyms for act of god',\n", - " 'clues': [('inevitable accident',\n", - " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n", - " ('unavoidable casualty',\n", - " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n", - " ('act of God',\n", + " 'clues': [('unavoidable casualty',\n", " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n", " ('vis major',\n", " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n", " ('force majeure',\n", + " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n", + " ('inevitable accident',\n", + " 'a natural and unavoidable catastrophe that interrupts the expected course of events'),\n", + " ('act of God',\n", " 'a natural and unavoidable catastrophe that interrupts the expected course of events')]},\n", " {'answer': 'action',\n", " 'hint': 'synonyms for action',\n", - " 'clues': [('activity',\n", - " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", - " ('legal action',\n", + " 'clues': [('military action', 'a military engagement'),\n", + " ('action at law',\n", " 'a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong'),\n", - " ('military action', 'a military engagement'),\n", - " ('action mechanism',\n", - " 'the operating part that transmits power to a mechanism'),\n", " ('natural process',\n", " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", + " ('activity',\n", + " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", " ('natural action',\n", " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", - " ('action at law',\n", - " 'a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong')]},\n", + " ('legal action',\n", + " 'a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong'),\n", + " ('action mechanism',\n", + " 'the operating part that transmits power to a mechanism')]},\n", " {'answer': 'activity',\n", " 'hint': 'synonyms for activity',\n", - " 'clues': [('action',\n", + " 'clues': [('bodily process',\n", + " 'an organic process that takes place in the body'),\n", + " ('activeness',\n", + " 'the trait of being active; moving or acting rapidly and energetically'),\n", + " ('natural process',\n", " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", " ('natural action',\n", " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", - " ('bodily process', 'an organic process that takes place in the body'),\n", - " ('natural process',\n", + " ('action',\n", " 'a process existing in or produced by nature (rather than by the intent of human beings)'),\n", - " ('activeness',\n", - " 'the trait of being active; moving or acting rapidly and energetically'),\n", " ('bodily function', 'an organic process that takes place in the body')]},\n", " {'answer': 'acts',\n", " 'hint': 'synonyms for acts',\n", " 'clues': [('act', 'something that people do or cause to happen'),\n", + " ('routine',\n", + " 'a short theatrical performance that is part of a longer program'),\n", + " ('deed', 'something that people do or cause to happen'),\n", " ('number',\n", " 'a short theatrical performance that is part of a longer program'),\n", + " ('turn',\n", + " 'a short theatrical performance that is part of a longer program'),\n", + " ('human activity', 'something that people do or cause to happen'),\n", " ('bit',\n", " 'a short theatrical performance that is part of a longer program'),\n", " ('enactment',\n", " 'a legal document codifying the result of deliberations of a committee or society or legislative body'),\n", - " ('deed', 'something that people do or cause to happen'),\n", - " ('turn',\n", - " 'a short theatrical performance that is part of a longer program'),\n", - " ('human action', 'something that people do or cause to happen'),\n", - " ('human activity', 'something that people do or cause to happen'),\n", - " ('routine',\n", - " 'a short theatrical performance that is part of a longer program')]},\n", + " ('human action', 'something that people do or cause to happen')]},\n", " {'answer': 'acuity',\n", " 'hint': 'synonyms for acuity',\n", " 'clues': [('sharp-sightedness',\n", " 'sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)'),\n", - " ('keenness', 'a quick and penetrating intelligence'),\n", - " ('acuteness', 'a quick and penetrating intelligence'),\n", - " ('sharpness', 'a quick and penetrating intelligence'),\n", " ('visual acuity',\n", - " 'sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)')]},\n", + " 'sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart)'),\n", + " ('sharpness', 'a quick and penetrating intelligence'),\n", + " ('keenness', 'a quick and penetrating intelligence'),\n", + " ('acuteness', 'a quick and penetrating intelligence')]},\n", " {'answer': 'adam',\n", " 'hint': 'synonyms for adam',\n", - " 'clues': [('disco biscuit',\n", - " 'street names for methylenedioxymethamphetamine'),\n", - " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", - " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n", + " 'clues': [('go', 'street names for methylenedioxymethamphetamine'),\n", + " ('disco biscuit', 'street names for methylenedioxymethamphetamine'),\n", " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n", - " ('go', 'street names for methylenedioxymethamphetamine')]},\n", + " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", + " ('hug drug', 'street names for methylenedioxymethamphetamine')]},\n", " {'answer': 'adams',\n", " 'hint': 'synonyms for adams',\n", - " 'clues': [('disco biscuit',\n", - " 'street names for methylenedioxymethamphetamine'),\n", - " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", - " ('hug drug', 'street names for methylenedioxymethamphetamine'),\n", + " 'clues': [('go', 'street names for methylenedioxymethamphetamine'),\n", + " ('disco biscuit', 'street names for methylenedioxymethamphetamine'),\n", " ('ecstasy', 'street names for methylenedioxymethamphetamine'),\n", - " ('go', 'street names for methylenedioxymethamphetamine')]},\n", + " ('cristal', 'street names for methylenedioxymethamphetamine'),\n", + " ('hug drug', 'street names for methylenedioxymethamphetamine')]},\n", " {'answer': 'add-in',\n", " 'hint': 'synonyms for add-in',\n", - " 'clues': [('plug-in',\n", - " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", - " ('circuit board',\n", + " 'clues': [('circuit board',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", " ('card',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", " ('board',\n", + " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", + " ('plug-in',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\")]},\n", " {'answer': 'add-on',\n", " 'hint': 'synonyms for add-on',\n", " 'clues': [('addition',\n", " 'a component that is added to something to improve it'),\n", + " ('supplement', 'a supplementary component that improves capability'),\n", " ('accessory', 'a supplementary component that improves capability'),\n", " ('improver', 'a component that is added to something to improve it'),\n", - " ('supplement', 'a supplementary component that improves capability'),\n", " ('appurtenance', 'a supplementary component that improves capability')]},\n", " {'answer': 'addition',\n", " 'hint': 'synonyms for addition',\n", " 'clues': [('summation',\n", " 'the arithmetic operation of summing; calculating the sum of two or more numbers'),\n", - " ('improver', 'a component that is added to something to improve it'),\n", - " ('gain', 'a quantity that is added'),\n", - " ('accession', 'something added to what you already have'),\n", " ('increase', 'a quantity that is added'),\n", + " ('accession', 'something added to what you already have'),\n", + " ('improver', 'a component that is added to something to improve it'),\n", " ('add-on', 'a component that is added to something to improve it'),\n", " ('plus',\n", - " 'the arithmetic operation of summing; calculating the sum of two or more numbers')]},\n", + " 'the arithmetic operation of summing; calculating the sum of two or more numbers'),\n", + " ('gain', 'a quantity that is added')]},\n", " {'answer': 'address',\n", " 'hint': 'synonyms for address',\n", - " 'clues': [('destination',\n", + " 'clues': [('reference',\n", + " '(computer science) the code that identifies where a piece of information is stored'),\n", + " ('destination',\n", " 'written directions for finding some location; written on letters or packages that are to be delivered to that location'),\n", " ('speech',\n", " 'the act of delivering a formal spoken communication to an audience'),\n", - " ('reference',\n", + " ('computer address',\n", " '(computer science) the code that identifies where a piece of information is stored'),\n", " ('name and address',\n", " 'written directions for finding some location; written on letters or packages that are to be delivered to that location'),\n", - " ('savoir-faire', 'social skill'),\n", - " ('computer address',\n", - " '(computer science) the code that identifies where a piece of information is stored')]},\n", + " ('savoir-faire', 'social skill')]},\n", " {'answer': 'adeptness',\n", " 'hint': 'synonyms for adeptness',\n", - " 'clues': [('quickness',\n", + " 'clues': [('adroitness',\n", " 'skillful performance or ability without difficulty'),\n", - " ('facility', 'skillful performance or ability without difficulty'),\n", - " ('adroitness', 'skillful performance or ability without difficulty'),\n", - " ('deftness', 'skillful performance or ability without difficulty')]},\n", + " ('deftness', 'skillful performance or ability without difficulty'),\n", + " ('quickness', 'skillful performance or ability without difficulty'),\n", + " ('facility', 'skillful performance or ability without difficulty')]},\n", " {'answer': 'adherence',\n", " 'hint': 'synonyms for adherence',\n", - " 'clues': [('adhesion',\n", - " 'faithful support for a cause or political party or religion'),\n", - " ('adhesiveness',\n", - " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", - " ('bond',\n", + " 'clues': [('adhesiveness',\n", " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", + " ('adhesion',\n", + " 'faithful support for a cause or political party or religion'),\n", " ('attachment',\n", - " 'faithful support for a cause or political party or religion')]},\n", + " 'faithful support for a cause or political party or religion'),\n", + " ('bond',\n", + " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition')]},\n", " {'answer': 'adhesion',\n", " 'hint': 'synonyms for adhesion',\n", - " 'clues': [('adherence',\n", - " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", - " ('bond',\n", - " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", - " ('adhesiveness',\n", + " 'clues': [('adhesiveness',\n", " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", + " ('adherence',\n", + " 'faithful support for a cause or political party or religion'),\n", " ('attachment',\n", - " 'faithful support for a cause or political party or religion')]},\n", + " 'faithful support for a cause or political party or religion'),\n", + " ('bond',\n", + " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition')]},\n", " {'answer': 'adieu',\n", " 'hint': 'synonyms for adieu',\n", - " 'clues': [('au revoir', 'a farewell remark'),\n", - " ('good-by', 'a farewell remark'),\n", - " ('good day', 'a farewell remark'),\n", - " ('adios', 'a farewell remark'),\n", + " 'clues': [('arrivederci', 'a farewell remark'),\n", + " ('goodbye', 'a farewell remark'),\n", + " ('sayonara', 'a farewell remark'),\n", + " ('au revoir', 'a farewell remark'),\n", " ('bye', 'a farewell remark'),\n", - " ('so long', 'a farewell remark'),\n", " ('auf wiedersehen', 'a farewell remark'),\n", " ('bye-bye', 'a farewell remark'),\n", - " ('arrivederci', 'a farewell remark'),\n", - " ('sayonara', 'a farewell remark'),\n", - " ('cheerio', 'a farewell remark')]},\n", + " ('adios', 'a farewell remark'),\n", + " ('so long', 'a farewell remark'),\n", + " ('cheerio', 'a farewell remark'),\n", + " ('good day', 'a farewell remark')]},\n", " {'answer': 'adios',\n", " 'hint': 'synonyms for adios',\n", - " 'clues': [('au revoir', 'a farewell remark'),\n", - " ('good-by', 'a farewell remark'),\n", - " ('good day', 'a farewell remark'),\n", + " 'clues': [('arrivederci', 'a farewell remark'),\n", + " ('goodbye', 'a farewell remark'),\n", + " ('sayonara', 'a farewell remark'),\n", " ('adieu', 'a farewell remark'),\n", + " ('au revoir', 'a farewell remark'),\n", " ('bye', 'a farewell remark'),\n", - " ('so long', 'a farewell remark'),\n", " ('auf wiedersehen', 'a farewell remark'),\n", " ('bye-bye', 'a farewell remark'),\n", - " ('arrivederci', 'a farewell remark'),\n", - " ('sayonara', 'a farewell remark'),\n", - " ('cheerio', 'a farewell remark')]},\n", + " ('so long', 'a farewell remark'),\n", + " ('cheerio', 'a farewell remark'),\n", + " ('good day', 'a farewell remark')]},\n", " {'answer': 'adjustment',\n", " 'hint': 'synonyms for adjustment',\n", - " 'clues': [('modification',\n", + " 'clues': [('allowance',\n", + " 'an amount added or deducted on the basis of qualifying circumstances'),\n", + " ('alteration',\n", " 'the act of making something different (as e.g. the size of a garment)'),\n", - " ('adaptation',\n", - " 'the process of adapting to something (such as environmental conditions)'),\n", " ('fitting', 'making or becoming suitable; adjusting to circumstances'),\n", + " ('readjustment', 'the act of adjusting something to match a standard'),\n", + " ('adaption',\n", + " 'the process of adapting to something (such as environmental conditions)'),\n", + " ('modification',\n", + " 'the act of making something different (as e.g. the size of a garment)'),\n", " ('registration', 'the act of adjusting something to match a standard'),\n", " ('accommodation',\n", - " 'making or becoming suitable; adjusting to circumstances'),\n", - " ('allowance',\n", - " 'an amount added or deducted on the basis of qualifying circumstances'),\n", - " ('alteration',\n", - " 'the act of making something different (as e.g. the size of a garment)'),\n", - " ('readjustment', 'the act of adjusting something to match a standard')]},\n", + " 'making or becoming suitable; adjusting to circumstances')]},\n", " {'answer': 'administration',\n", " 'hint': 'synonyms for administration',\n", - " 'clues': [('governing', 'the act of governing; exercising authority'),\n", - " ('presidency', 'the tenure of a president'),\n", - " ('organization',\n", + " 'clues': [('establishment',\n", " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n", " ('governing body',\n", " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n", - " ('government', 'the act of governing; exercising authority'),\n", + " ('governance', 'the act of governing; exercising authority'),\n", " ('giving medication', 'the act of administering medication'),\n", - " ('governance',\n", + " ('judicature', 'the act of meting out justice according to the law'),\n", + " ('organisation',\n", " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n", + " ('government', 'the act of governing; exercising authority'),\n", + " ('brass',\n", + " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n", + " ('presidency', 'the tenure of a president'),\n", " ('presidential term', 'the tenure of a president'),\n", " ('government activity', 'the act of governing; exercising authority'),\n", " ('disposal',\n", " \"a method of tending to or managing the affairs of a some group of people (especially the group's business affairs)\"),\n", - " ('judicature', 'the act of meting out justice according to the law'),\n", - " ('establishment',\n", - " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something'),\n", - " ('brass',\n", - " 'the persons (or committees or departments etc.) who make up a body for the purpose of administering something')]},\n", + " ('governing', 'the act of governing; exercising authority')]},\n", " {'answer': 'admiralty_mile',\n", " 'hint': 'synonyms for admiralty mile',\n", - " 'clues': [('nautical mile',\n", + " 'clues': [('mile',\n", + " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n", + " ('nautical mile',\n", " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n", " ('naut mi',\n", " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n", " ('mi',\n", " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n", - " ('mile',\n", - " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile'),\n", " ('geographical mile',\n", " 'a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile')]},\n", " {'answer': 'admiration',\n", " 'hint': 'synonyms for admiration',\n", - " 'clues': [('esteem', 'a feeling of delighted approval and liking'),\n", - " ('wonder', 'the feeling aroused by something strange and surprising'),\n", + " 'clues': [('wonderment',\n", + " 'the feeling aroused by something strange and surprising'),\n", + " ('esteem', 'a feeling of delighted approval and liking'),\n", " ('appreciation', 'a favorable judgment'),\n", - " ('wonderment',\n", - " 'the feeling aroused by something strange and surprising')]},\n", + " ('wonder', 'the feeling aroused by something strange and surprising')]},\n", " {'answer': 'admission',\n", " 'hint': 'synonyms for admission',\n", - " 'clues': [('price of admission', 'the fee charged for admission'),\n", - " ('admission fee', 'the fee charged for admission'),\n", - " ('admission charge', 'the fee charged for admission'),\n", + " 'clues': [('admission fee', 'the fee charged for admission'),\n", + " ('price of admission', 'the fee charged for admission'),\n", " ('admittance', 'the act of admitting someone to enter'),\n", " ('admission price', 'the fee charged for admission'),\n", + " ('admission charge', 'the fee charged for admission'),\n", + " ('entree', 'the right to enter'),\n", " ('entrance money', 'the fee charged for admission'),\n", " ('entrance fee', 'the fee charged for admission'),\n", - " ('entree', 'the right to enter'),\n", - " ('access', 'the right to enter'),\n", - " ('accession', 'the right to enter')]},\n", + " ('accession', 'the right to enter'),\n", + " ('access', 'the right to enter')]},\n", " {'answer': 'admission_charge',\n", " 'hint': 'synonyms for admission charge',\n", - " 'clues': [('entrance fee', 'the fee charged for admission'),\n", - " ('admission', 'the fee charged for admission'),\n", + " 'clues': [('admission fee', 'the fee charged for admission'),\n", " ('price of admission', 'the fee charged for admission'),\n", " ('admission price', 'the fee charged for admission'),\n", " ('entrance money', 'the fee charged for admission'),\n", - " ('admission fee', 'the fee charged for admission')]},\n", + " ('entrance fee', 'the fee charged for admission'),\n", + " ('admission', 'the fee charged for admission')]},\n", " {'answer': 'admission_fee',\n", " 'hint': 'synonyms for admission fee',\n", - " 'clues': [('entrance fee', 'the fee charged for admission'),\n", - " ('admission', 'the fee charged for admission'),\n", - " ('price of admission', 'the fee charged for admission'),\n", + " 'clues': [('price of admission', 'the fee charged for admission'),\n", " ('admission price', 'the fee charged for admission'),\n", + " ('admission charge', 'the fee charged for admission'),\n", " ('entrance money', 'the fee charged for admission'),\n", - " ('admission charge', 'the fee charged for admission')]},\n", + " ('entrance fee', 'the fee charged for admission'),\n", + " ('admission', 'the fee charged for admission')]},\n", " {'answer': 'admission_price',\n", " 'hint': 'synonyms for admission price',\n", - " 'clues': [('admission', 'the fee charged for admission'),\n", + " 'clues': [('admission fee', 'the fee charged for admission'),\n", " ('price of admission', 'the fee charged for admission'),\n", + " ('admission charge', 'the fee charged for admission'),\n", " ('entrance money', 'the fee charged for admission'),\n", " ('entrance fee', 'the fee charged for admission'),\n", - " ('admission fee', 'the fee charged for admission'),\n", - " ('admission charge', 'the fee charged for admission')]},\n", + " ('admission', 'the fee charged for admission')]},\n", " {'answer': 'admittance',\n", " 'hint': 'synonyms for admittance',\n", - " 'clues': [('entree', 'the right to enter'),\n", - " ('admission', 'the act of admitting someone to enter'),\n", - " ('access', 'the right to enter'),\n", + " 'clues': [('access', 'the right to enter'),\n", + " ('admission', 'the right to enter'),\n", + " ('entree', 'the right to enter'),\n", " ('accession', 'the right to enter')]},\n", " {'answer': 'admixture',\n", " 'hint': 'synonyms for admixture',\n", - " 'clues': [('mixture', 'the act of mixing together'),\n", - " ('mixing', 'the act of mixing together'),\n", + " 'clues': [('intermixture', 'the act of mixing together'),\n", " ('commixture', 'the act of mixing together'),\n", - " ('intermixture', 'the act of mixing together')]},\n", + " ('mixing', 'the act of mixing together'),\n", + " ('mixture', 'the act of mixing together')]},\n", " {'answer': 'admonition',\n", " 'hint': 'synonyms for admonition',\n", - " 'clues': [('monition',\n", - " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)'),\n", + " 'clues': [('monition', 'a firm rebuke'),\n", " ('admonishment', 'a firm rebuke'),\n", - " ('word of advice',\n", - " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)'),\n", " ('warning',\n", + " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)'),\n", + " ('word of advice',\n", " 'cautionary advice about something imminent (especially imminent danger or other unpleasantness)')]},\n", " {'answer': 'ado',\n", " 'hint': 'synonyms for ado',\n", - " 'clues': [('bustle', 'a rapid active commotion'),\n", + " 'clues': [('fuss', 'a rapid active commotion'),\n", " ('hustle', 'a rapid active commotion'),\n", - " ('fuss', 'a rapid active commotion'),\n", - " ('flurry', 'a rapid active commotion'),\n", - " ('stir', 'a rapid active commotion')]},\n", + " ('stir', 'a rapid active commotion'),\n", + " ('bustle', 'a rapid active commotion'),\n", + " ('flurry', 'a rapid active commotion')]},\n", " {'answer': 'adoption',\n", " 'hint': 'synonyms for adoption',\n", " 'clues': [('acceptation',\n", " 'the act of accepting with approval; favorable reception'),\n", " ('espousal', 'the act of accepting with approval; favorable reception'),\n", - " ('acceptance', 'the act of accepting with approval; favorable reception'),\n", " ('borrowing',\n", - " 'the appropriation (of ideas or words etc) from another source')]},\n", + " 'the appropriation (of ideas or words etc) from another source'),\n", + " ('acceptance',\n", + " 'the act of accepting with approval; favorable reception')]},\n", " {'answer': 'adps',\n", " 'hint': 'synonyms for adps',\n", - " 'clues': [('computer system',\n", - " 'a system of one or more computers and associated software with common storage'),\n", - " ('adenosine diphosphate',\n", - " 'an ester of adenosine that is converted to ATP for energy storage'),\n", - " ('automatic data processing system',\n", + " 'clues': [('automatic data processing system',\n", " 'a system of one or more computers and associated software with common storage'),\n", " ('computing system',\n", - " 'a system of one or more computers and associated software with common storage')]},\n", + " 'a system of one or more computers and associated software with common storage'),\n", + " ('computer system',\n", + " 'a system of one or more computers and associated software with common storage'),\n", + " ('adenosine diphosphate',\n", + " 'an ester of adenosine that is converted to ATP for energy storage')]},\n", " {'answer': 'adroitness',\n", " 'hint': 'synonyms for adroitness',\n", - " 'clues': [('adeptness',\n", + " 'clues': [('facility',\n", " 'skillful performance or ability without difficulty'),\n", + " ('adeptness', 'skillful performance or ability without difficulty'),\n", " ('quickness', 'skillful performance or ability without difficulty'),\n", - " ('facility', 'skillful performance or ability without difficulty'),\n", " ('deftness', 'skillful performance or ability without difficulty')]},\n", " {'answer': 'advancement',\n", " 'hint': 'synonyms for advancement',\n", - " 'clues': [('furtherance',\n", - " 'encouragement of the progress or growth or acceptance of something'),\n", - " ('progress', 'gradual improvement or growth or development'),\n", - " ('onward motion', 'the act of moving forward (as toward a goal)'),\n", + " 'clues': [('forward motion',\n", + " 'the act of moving forward (as toward a goal)'),\n", " ('promotion',\n", " 'encouragement of the progress or growth or acceptance of something'),\n", + " ('advance', 'the act of moving forward (as toward a goal)'),\n", " ('procession', 'the act of moving forward (as toward a goal)'),\n", - " ('advance', 'the act of moving forward (as toward a goal)')]},\n", + " ('furtherance',\n", + " 'encouragement of the progress or growth or acceptance of something'),\n", + " ('progress', 'gradual improvement or growth or development')]},\n", " {'answer': 'advantageousness',\n", " 'hint': 'synonyms for advantageousness',\n", - " 'clues': [('positiveness',\n", + " 'clues': [('positivity',\n", " 'the quality of being encouraging or promising of a successful outcome'),\n", - " ('profitableness',\n", + " ('positiveness',\n", " 'the quality of being encouraging or promising of a successful outcome'),\n", " ('favorableness',\n", " 'the quality of being encouraging or promising of a successful outcome'),\n", - " ('positivity',\n", + " ('profitableness',\n", " 'the quality of being encouraging or promising of a successful outcome')]},\n", " {'answer': 'advertisement',\n", " 'hint': 'synonyms for advertisement',\n", - " 'clues': [('advertising', 'a public promotion of some product or service'),\n", - " ('advertizement', 'a public promotion of some product or service'),\n", + " 'clues': [('advertizing', 'a public promotion of some product or service'),\n", " ('ad', 'a public promotion of some product or service'),\n", - " ('advert', 'a public promotion of some product or service')]},\n", + " ('advert', 'a public promotion of some product or service'),\n", + " ('advertizement', 'a public promotion of some product or service')]},\n", " {'answer': 'advertising',\n", " 'hint': 'synonyms for advertising',\n", " 'clues': [('advertisement',\n", " 'a public promotion of some product or service'),\n", + " ('advertizing', 'a public promotion of some product or service'),\n", " ('ad', 'a public promotion of some product or service'),\n", " ('advert', 'a public promotion of some product or service'),\n", " ('publicizing',\n", - " 'the business of drawing public attention to goods and services'),\n", - " ('advertizing', 'a public promotion of some product or service')]},\n", + " 'the business of drawing public attention to goods and services')]},\n", " {'answer': 'advertizement',\n", " 'hint': 'synonyms for advertizement',\n", - " 'clues': [('advertising', 'a public promotion of some product or service'),\n", - " ('advertisement', 'a public promotion of some product or service'),\n", + " 'clues': [('advertisement',\n", + " 'a public promotion of some product or service'),\n", + " ('advertizing', 'a public promotion of some product or service'),\n", " ('ad', 'a public promotion of some product or service'),\n", " ('advert', 'a public promotion of some product or service')]},\n", " {'answer': 'advertizing',\n", " 'hint': 'synonyms for advertizing',\n", - " 'clues': [('advertising', 'a public promotion of some product or service'),\n", - " ('advertisement', 'a public promotion of some product or service'),\n", + " 'clues': [('advertisement',\n", + " 'a public promotion of some product or service'),\n", " ('ad', 'a public promotion of some product or service'),\n", + " ('advertising', 'a public promotion of some product or service'),\n", " ('advert', 'a public promotion of some product or service')]},\n", " {'answer': 'aegir',\n", " 'hint': 'synonyms for aegir',\n", - " 'clues': [('tidal bore',\n", + " 'clues': [('eagre',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", " ('bore',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", - " ('eagre',\n", - " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", " ('eager',\n", + " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", + " ('tidal bore',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)')]},\n", " {'answer': 'aegis',\n", " 'hint': 'synonyms for aegis',\n", - " 'clues': [('breastplate',\n", + " 'clues': [('egis',\n", + " 'armor plate that protects the chest; the front part of a cuirass'),\n", + " ('breastplate',\n", " 'armor plate that protects the chest; the front part of a cuirass'),\n", - " ('protection', 'kindly endorsement and guidance'),\n", " ('auspices', 'kindly endorsement and guidance'),\n", - " ('egis',\n", - " 'armor plate that protects the chest; the front part of a cuirass')]},\n", + " ('protection', 'kindly endorsement and guidance')]},\n", " {'answer': 'aerial_tramway',\n", " 'hint': 'synonyms for aerial tramway',\n", - " 'clues': [('tramway',\n", - " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n", - " ('cable tramway',\n", + " 'clues': [('ropeway',\n", " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n", " ('tram',\n", " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n", - " ('ropeway',\n", + " ('cable tramway',\n", + " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers'),\n", + " ('tramway',\n", " 'a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers')]},\n", " {'answer': 'aerosol',\n", " 'hint': 'synonyms for aerosol',\n", - " 'clues': [('aerosol container',\n", - " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('spray can',\n", + " 'clues': [('aerosol can',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('aerosol can',\n", + " ('aerosol container',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", " ('aerosol bomb',\n", + " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", + " ('spray can',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n", " {'answer': 'aerosol_bomb',\n", " 'hint': 'synonyms for aerosol bomb',\n", - " 'clues': [('vacuum bomb', 'a bomb that uses a fuel-air explosive'),\n", - " ('aerosol container',\n", - " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('spray can',\n", + " 'clues': [('aerosol',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", " ('volume-detonation bomb', 'a bomb that uses a fuel-air explosive'),\n", - " ('thermobaric bomb', 'a bomb that uses a fuel-air explosive'),\n", " ('fuel-air bomb', 'a bomb that uses a fuel-air explosive'),\n", - " ('aerosol',\n", + " ('aerosol container',\n", + " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", + " ('vacuum bomb', 'a bomb that uses a fuel-air explosive'),\n", + " ('spray can',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", " ('aerosol can',\n", - " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n", + " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", + " ('thermobaric bomb', 'a bomb that uses a fuel-air explosive')]},\n", " {'answer': 'aerosol_can',\n", " 'hint': 'synonyms for aerosol can',\n", - " 'clues': [('aerosol container',\n", - " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('aerosol',\n", + " 'clues': [('spray can',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('spray can',\n", + " ('aerosol container',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", " ('aerosol bomb',\n", + " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", + " ('aerosol',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n", " {'answer': 'aerosol_container',\n", " 'hint': 'synonyms for aerosol container',\n", - " 'clues': [('spray can',\n", + " 'clues': [('aerosol can',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('aerosol',\n", + " ('aerosol bomb',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('aerosol can',\n", + " ('spray can',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)'),\n", - " ('aerosol bomb',\n", + " ('aerosol',\n", " 'a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas)')]},\n", " {'answer': 'aesthesis',\n", " 'hint': 'synonyms for aesthesis',\n", - " 'clues': [('esthesis',\n", - " 'an unelaborated elementary awareness of stimulation'),\n", - " ('sense impression',\n", + " 'clues': [('sense experience',\n", " 'an unelaborated elementary awareness of stimulation'),\n", " ('sense datum', 'an unelaborated elementary awareness of stimulation'),\n", - " ('sense experience',\n", - " 'an unelaborated elementary awareness of stimulation'),\n", - " ('sensation', 'an unelaborated elementary awareness of stimulation')]},\n", + " ('sensation', 'an unelaborated elementary awareness of stimulation'),\n", + " ('esthesis', 'an unelaborated elementary awareness of stimulation'),\n", + " ('sense impression',\n", + " 'an unelaborated elementary awareness of stimulation')]},\n", " {'answer': 'affability',\n", " 'hint': 'synonyms for affability',\n", - " 'clues': [('bonhomie',\n", + " 'clues': [('geniality',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affableness',\n", + " ('bonhomie',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('amiability',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('geniality',\n", - " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('amiableness',\n", + " 'a disposition to be friendly and approachable (easy to talk to)'),\n", + " ('affableness',\n", " 'a disposition to be friendly and approachable (easy to talk to)')]},\n", " {'answer': 'affableness',\n", " 'hint': 'synonyms for affableness',\n", - " 'clues': [('bonhomie',\n", - " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('amiability',\n", + " 'clues': [('geniality',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affability',\n", + " ('bonhomie',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('geniality',\n", + " ('amiability',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('amiableness',\n", + " 'a disposition to be friendly and approachable (easy to talk to)'),\n", + " ('affability',\n", " 'a disposition to be friendly and approachable (easy to talk to)')]},\n", " {'answer': 'affair',\n", " 'hint': 'synonyms for affair',\n", - " 'clues': [('social function', 'a vaguely specified social event'),\n", - " ('matter', 'a vaguely specified concern'),\n", + " 'clues': [('matter', 'a vaguely specified concern'),\n", + " ('function', 'a vaguely specified social event'),\n", + " ('social occasion', 'a vaguely specified social event'),\n", " ('thing', 'a vaguely specified concern'),\n", " ('occasion', 'a vaguely specified social event'),\n", - " ('function', 'a vaguely specified social event'),\n", - " ('social occasion', 'a vaguely specified social event')]},\n", + " ('social function', 'a vaguely specified social event')]},\n", " {'answer': 'affairs',\n", " 'hint': 'synonyms for affairs',\n", - " 'clues': [('affair', 'a vaguely specified social event'),\n", - " ('personal matters', 'matters of personal concern'),\n", - " ('social occasion', 'a vaguely specified social event'),\n", - " ('matter', 'a vaguely specified concern'),\n", + " 'clues': [('matter', 'a vaguely specified concern'),\n", + " ('affair', 'a vaguely specified social event'),\n", " ('thing', 'a vaguely specified concern'),\n", - " ('personal business', 'matters of personal concern'),\n", + " ('personal matters', 'matters of personal concern'),\n", " ('occasion', 'a vaguely specified social event'),\n", " ('function', 'a vaguely specified social event'),\n", - " ('social function', 'a vaguely specified social event')]},\n", + " ('social occasion', 'a vaguely specified social event'),\n", + " ('social function', 'a vaguely specified social event'),\n", + " ('personal business', 'matters of personal concern')]},\n", " {'answer': 'affection',\n", " 'hint': 'synonyms for affection',\n", - " 'clues': [('tenderness', 'a positive feeling of liking'),\n", - " ('fondness', 'a positive feeling of liking'),\n", - " ('warmheartedness', 'a positive feeling of liking'),\n", - " ('warmness', 'a positive feeling of liking'),\n", + " 'clues': [('warmheartedness', 'a positive feeling of liking'),\n", " ('philia', 'a positive feeling of liking'),\n", + " ('fondness', 'a positive feeling of liking'),\n", + " ('affectionateness', 'a positive feeling of liking'),\n", " ('heart', 'a positive feeling of liking'),\n", - " ('affectionateness', 'a positive feeling of liking')]},\n", + " ('tenderness', 'a positive feeling of liking'),\n", + " ('warmness', 'a positive feeling of liking')]},\n", " {'answer': 'affectionateness',\n", " 'hint': 'synonyms for affectionateness',\n", - " 'clues': [('philia', 'a positive feeling of liking'),\n", - " ('tenderness', 'a positive feeling of liking'),\n", - " ('heart', 'a positive feeling of liking'),\n", - " ('warmth', 'a quality proceeding from feelings of affection or love'),\n", + " 'clues': [('warmheartedness', 'a positive feeling of liking'),\n", " ('lovingness', 'a quality proceeding from feelings of affection or love'),\n", + " ('heart', 'a positive feeling of liking'),\n", + " ('tenderness', 'a positive feeling of liking'),\n", + " ('philia', 'a positive feeling of liking'),\n", + " ('affection', 'a positive feeling of liking'),\n", " ('fondness', 'a quality proceeding from feelings of affection or love'),\n", - " ('warmheartedness', 'a positive feeling of liking'),\n", - " ('warmness', 'a positive feeling of liking'),\n", - " ('affection', 'a positive feeling of liking')]},\n", + " ('warmth', 'a quality proceeding from feelings of affection or love'),\n", + " ('warmness', 'a positive feeling of liking')]},\n", " {'answer': 'affirmation',\n", " 'hint': 'synonyms for affirmation',\n", " 'clues': [('avouchment',\n", " 'a statement asserting the existence or the truth of something'),\n", " ('statement', 'the act of affirming or asserting or stating something'),\n", - " ('assertion', 'the act of affirming or asserting or stating something'),\n", " ('avowal',\n", - " 'a statement asserting the existence or the truth of something')]},\n", + " 'a statement asserting the existence or the truth of something'),\n", + " ('assertion', 'the act of affirming or asserting or stating something')]},\n", " {'answer': 'affray',\n", " 'hint': 'synonyms for affray',\n", - " 'clues': [('fray', 'a noisy fight'),\n", - " ('disturbance', 'a noisy fight'),\n", + " 'clues': [('disturbance', 'a noisy fight'),\n", " ('altercation', 'noisy quarrel'),\n", - " ('fracas', 'noisy quarrel'),\n", - " ('ruffle', 'a noisy fight')]},\n", + " ('fray', 'a noisy fight'),\n", + " ('ruffle', 'a noisy fight'),\n", + " ('fracas', 'noisy quarrel')]},\n", " {'answer': 'after_part',\n", " 'hint': 'synonyms for after part',\n", - " 'clues': [('quarter', 'the rear part of a ship'),\n", - " ('poop', 'the rear part of a ship'),\n", + " 'clues': [('poop', 'the rear part of a ship'),\n", + " ('quarter', 'the rear part of a ship'),\n", " ('tail', 'the rear part of a ship'),\n", " ('stern', 'the rear part of a ship')]},\n", " {'answer': 'age',\n", " 'hint': 'synonyms for age',\n", - " 'clues': [('eld',\n", - " 'a time of life (usually defined in years) at which some particular qualification or power arises'),\n", - " ('years', 'a late time of life'),\n", + " 'clues': [('historic period',\n", + " 'an era of history having some distinctive feature'),\n", " ('old age', 'a late time of life'),\n", - " ('historic period', 'an era of history having some distinctive feature'),\n", - " ('long time', 'a prolonged period of time'),\n", - " ('geezerhood', 'a late time of life')]},\n", + " ('years', 'a prolonged period of time'),\n", + " ('eld', 'a late time of life'),\n", + " ('geezerhood', 'a late time of life'),\n", + " ('long time', 'a prolonged period of time')]},\n", " {'answer': 'agency',\n", " 'hint': 'synonyms for agency',\n", - " 'clues': [('bureau', 'an administrative unit of government'),\n", + " 'clues': [('way', 'how a result is obtained or an end is achieved'),\n", + " ('means', 'how a result is obtained or an end is achieved'),\n", " ('office', 'an administrative unit of government'),\n", " ('federal agency', 'an administrative unit of government'),\n", - " ('way', 'how a result is obtained or an end is achieved'),\n", + " ('bureau', 'an administrative unit of government'),\n", " ('government agency', 'an administrative unit of government'),\n", - " ('authority', 'an administrative unit of government'),\n", - " ('means', 'how a result is obtained or an end is achieved')]},\n", + " ('authority', 'an administrative unit of government')]},\n", " {'answer': 'agenda',\n", " 'hint': 'synonyms for agenda',\n", - " 'clues': [('docket',\n", - " 'a temporally organized plan for matters to be attended to'),\n", - " ('agendum', 'a list of matters to be taken up (as at a meeting)'),\n", + " 'clues': [('agendum',\n", + " 'a list of matters to be taken up (as at a meeting)'),\n", " ('schedule', 'a temporally organized plan for matters to be attended to'),\n", + " ('docket', 'a temporally organized plan for matters to be attended to'),\n", " ('order of business',\n", " 'a list of matters to be taken up (as at a meeting)')]},\n", " {'answer': 'aggravation',\n", " 'hint': 'synonyms for aggravation',\n", " 'clues': [('provocation',\n", " 'unfriendly behavior that causes anger or resentment'),\n", - " ('irritation', 'unfriendly behavior that causes anger or resentment'),\n", " ('exacerbation',\n", " 'action that makes a problem or a disease (or its symptoms) worse'),\n", - " ('exasperation', 'an exasperated feeling of annoyance')]},\n", + " ('exasperation', 'an exasperated feeling of annoyance'),\n", + " ('irritation', 'unfriendly behavior that causes anger or resentment')]},\n", " {'answer': 'aggregation',\n", " 'hint': 'synonyms for aggregation',\n", - " 'clues': [('collecting', 'the act of gathering something together'),\n", - " ('accumulation',\n", + " 'clues': [('accumulation',\n", " 'several things grouped together or considered as a whole'),\n", + " ('collection', 'the act of gathering something together'),\n", + " ('assembling', 'the act of gathering something together'),\n", " ('assemblage',\n", - " 'several things grouped together or considered as a whole'),\n", - " ('assembling', 'the act of gathering something together')]},\n", + " 'several things grouped together or considered as a whole')]},\n", " {'answer': 'agility',\n", " 'hint': 'synonyms for agility',\n", " 'clues': [('legerity',\n", " 'the gracefulness of a person or animal that is quick and nimble'),\n", - " ('lightness',\n", + " ('nimbleness',\n", " 'the gracefulness of a person or animal that is quick and nimble'),\n", " ('lightsomeness',\n", " 'the gracefulness of a person or animal that is quick and nimble'),\n", - " ('nimbleness',\n", + " ('lightness',\n", " 'the gracefulness of a person or animal that is quick and nimble')]},\n", " {'answer': 'agitation',\n", " 'hint': 'synonyms for agitation',\n", " 'clues': [('hullabaloo', 'disturbance usually in protest'),\n", + " ('turmoil', 'disturbance usually in protest'),\n", " ('excitement', 'disturbance usually in protest'),\n", - " ('upheaval', 'disturbance usually in protest'),\n", - " ('turmoil', 'disturbance usually in protest')]},\n", + " ('upheaval', 'disturbance usually in protest')]},\n", " {'answer': 'agreement',\n", " 'hint': 'synonyms for agreement',\n", - " 'clues': [('arrangement', 'the thing arranged or agreed to'),\n", - " ('understanding',\n", - " 'the statement (oral or written) of an exchange of promises'),\n", + " 'clues': [('concord',\n", + " 'the determination of grammatical inflection on the basis of word relations'),\n", " ('correspondence', 'compatibility of observations'),\n", - " ('concord',\n", - " 'the determination of grammatical inflection on the basis of word relations')]},\n", + " ('arrangement', 'the thing arranged or agreed to'),\n", + " ('understanding',\n", + " 'the statement (oral or written) of an exchange of promises')]},\n", " {'answer': 'agriculture',\n", " 'hint': 'synonyms for agriculture',\n", - " 'clues': [('farming',\n", + " 'clues': [('husbandry',\n", " 'the practice of cultivating the land or raising stock'),\n", - " ('husbandry', 'the practice of cultivating the land or raising stock'),\n", + " ('agribusiness', 'a large-scale farming enterprise'),\n", " ('factory farm', 'a large-scale farming enterprise'),\n", - " ('agribusiness', 'a large-scale farming enterprise')]},\n", + " ('farming', 'the practice of cultivating the land or raising stock')]},\n", " {'answer': 'aid',\n", " 'hint': 'synonyms for aid',\n", " 'clues': [('help', 'a resource'),\n", - " ('assistance',\n", - " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n", + " ('economic aid', 'money to support a worthy person or cause'),\n", + " ('assistance', 'a resource'),\n", " ('attention',\n", " 'the work of providing treatment for or attending to someone or something'),\n", - " ('tending',\n", - " 'the work of providing treatment for or attending to someone or something'),\n", " ('assist',\n", " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n", + " ('tending',\n", + " 'the work of providing treatment for or attending to someone or something'),\n", " ('care',\n", " 'the work of providing treatment for or attending to someone or something'),\n", - " ('financial aid', 'money to support a worthy person or cause'),\n", - " ('economic aid', 'money to support a worthy person or cause')]},\n", + " ('financial aid', 'money to support a worthy person or cause')]},\n", " {'answer': 'aids',\n", " 'hint': 'synonyms for aids',\n", - " 'clues': [('aid', 'a resource'),\n", - " ('assistance',\n", - " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n", + " 'clues': [('help', 'a resource'),\n", + " ('economic aid', 'money to support a worthy person or cause'),\n", + " ('aid', 'money to support a worthy person or cause'),\n", + " ('assistance', 'a resource'),\n", " ('attention',\n", " 'the work of providing treatment for or attending to someone or something'),\n", - " ('help',\n", - " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n", + " ('financial aid', 'money to support a worthy person or cause'),\n", " ('tending',\n", " 'the work of providing treatment for or attending to someone or something'),\n", - " ('financial aid', 'money to support a worthy person or cause'),\n", - " ('assist',\n", - " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose'),\n", " ('care',\n", " 'the work of providing treatment for or attending to someone or something'),\n", - " ('economic aid', 'money to support a worthy person or cause')]},\n", + " ('assist',\n", + " 'the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose')]},\n", " {'answer': 'aim',\n", " 'hint': 'synonyms for aim',\n", - " 'clues': [('bearing',\n", - " 'the direction or path along which something moves or along which it lies'),\n", - " ('intention',\n", - " 'an anticipated outcome that is intended or that guides your planned actions'),\n", + " 'clues': [('object',\n", + " 'the goal intended to be attained (and which is believed to be attainable)'),\n", " ('objective',\n", " 'the goal intended to be attained (and which is believed to be attainable)'),\n", + " ('intention',\n", + " 'an anticipated outcome that is intended or that guides your planned actions'),\n", " ('intent',\n", " 'an anticipated outcome that is intended or that guides your planned actions'),\n", + " ('bearing',\n", + " 'the direction or path along which something moves or along which it lies'),\n", + " ('heading',\n", + " 'the direction or path along which something moves or along which it lies'),\n", " ('target',\n", " 'the goal intended to be attained (and which is believed to be attainable)'),\n", - " ('purpose',\n", - " 'an anticipated outcome that is intended or that guides your planned actions'),\n", - " ('object',\n", - " 'the goal intended to be attained (and which is believed to be attainable)'),\n", " ('design',\n", " 'an anticipated outcome that is intended or that guides your planned actions'),\n", - " ('heading',\n", - " 'the direction or path along which something moves or along which it lies')]},\n", + " ('purpose',\n", + " 'an anticipated outcome that is intended or that guides your planned actions')]},\n", " {'answer': 'air',\n", " 'hint': 'synonyms for air',\n", - " 'clues': [('atmosphere', 'the mass of air surrounding the Earth'),\n", + " 'clues': [('air travel', 'travel via aircraft'),\n", + " ('aviation', 'travel via aircraft'),\n", + " ('melody', 'a succession of notes forming a distinctive sequence'),\n", + " ('aura',\n", + " 'a distinctive but intangible quality surrounding a person or thing'),\n", + " ('breeze', 'a slight wind (usually refreshing)'),\n", + " ('gentle wind', 'a slight wind (usually refreshing)'),\n", + " ('line', 'a succession of notes forming a distinctive sequence'),\n", " ('zephyr', 'a slight wind (usually refreshing)'),\n", - " ('tune', 'a succession of notes forming a distinctive sequence'),\n", " ('melodic line', 'a succession of notes forming a distinctive sequence'),\n", - " ('breeze', 'a slight wind (usually refreshing)'),\n", " ('melodic phrase',\n", " 'a succession of notes forming a distinctive sequence'),\n", - " ('line', 'a succession of notes forming a distinctive sequence'),\n", - " ('airwave', 'medium for radio and television broadcasting'),\n", - " ('aviation', 'travel via aircraft'),\n", " ('strain', 'a succession of notes forming a distinctive sequence'),\n", - " ('melody', 'a succession of notes forming a distinctive sequence'),\n", - " ('air travel', 'travel via aircraft'),\n", - " ('gentle wind', 'a slight wind (usually refreshing)'),\n", - " ('aura',\n", - " 'a distinctive but intangible quality surrounding a person or thing')]},\n", + " ('tune', 'a succession of notes forming a distinctive sequence'),\n", + " ('atmosphere',\n", + " 'a distinctive but intangible quality surrounding a person or thing'),\n", + " ('airwave', 'medium for radio and television broadcasting')]},\n", " {'answer': 'air-sleeve',\n", " 'hint': 'synonyms for air-sleeve',\n", - " 'clues': [('windsock',\n", + " 'clues': [('sock',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", " ('wind sleeve',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('air sock',\n", + " ('windsock',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('drogue',\n", + " ('wind cone',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('sock',\n", + " ('air sock',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('wind cone',\n", + " ('drogue',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind')]},\n", " {'answer': 'air_castle',\n", " 'hint': 'synonyms for air castle',\n", - " 'clues': [('castle in Spain', 'absentminded dreaming while awake'),\n", - " ('castle in the air', 'absentminded dreaming while awake'),\n", + " 'clues': [('castle in the air', 'absentminded dreaming while awake'),\n", + " ('revery', 'absentminded dreaming while awake'),\n", " ('daydream', 'absentminded dreaming while awake'),\n", " ('oneirism', 'absentminded dreaming while awake'),\n", - " ('revery', 'absentminded dreaming while awake'),\n", + " ('castle in Spain', 'absentminded dreaming while awake'),\n", " ('reverie', 'absentminded dreaming while awake')]},\n", " {'answer': 'air_mile',\n", " 'hint': 'synonyms for air mile',\n", " 'clues': [('knot',\n", " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n", - " ('mi',\n", - " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n", " ('mile',\n", " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n", " ('nautical mile',\n", @@ -30404,389 +30436,398 @@ " ('international nautical mile',\n", " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n", " ('naut mi',\n", + " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude'),\n", + " ('mi',\n", " 'a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude')]},\n", " {'answer': 'air_sock',\n", " 'hint': 'synonyms for air sock',\n", - " 'clues': [('air-sleeve',\n", - " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('windsock',\n", + " 'clues': [('sock',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", " ('wind sleeve',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('drogue',\n", - " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", - " ('sock',\n", + " ('windsock',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", " ('wind cone',\n", + " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", + " ('air-sleeve',\n", + " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind'),\n", + " ('drogue',\n", " 'a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind')]},\n", " {'answer': 'airing',\n", " 'hint': 'synonyms for airing',\n", - " 'clues': [('dissemination',\n", + " 'clues': [('ventilation',\n", + " 'the act of supplying fresh air and getting rid of foul air'),\n", + " ('public exposure',\n", " 'the opening of a subject to widespread discussion and debate'),\n", " ('spreading',\n", " 'the opening of a subject to widespread discussion and debate'),\n", - " ('public exposure',\n", - " 'the opening of a subject to widespread discussion and debate'),\n", - " ('ventilation',\n", - " 'the act of supplying fresh air and getting rid of foul air')]},\n", + " ('dissemination',\n", + " 'the opening of a subject to widespread discussion and debate')]},\n", " {'answer': 'airs',\n", " 'hint': 'synonyms for airs',\n", - " 'clues': [('air', 'the region above the ground'),\n", - " ('atmosphere', 'the mass of air surrounding the Earth'),\n", - " ('tune', 'a succession of notes forming a distinctive sequence'),\n", - " ('melodic line', 'a succession of notes forming a distinctive sequence'),\n", - " ('airwave', 'medium for radio and television broadcasting'),\n", - " ('line', 'a succession of notes forming a distinctive sequence'),\n", - " ('air travel', 'travel via aircraft'),\n", + " 'clues': [('aviation', 'travel via aircraft'),\n", " ('aura',\n", " 'a distinctive but intangible quality surrounding a person or thing'),\n", - " ('zephyr', 'a slight wind (usually refreshing)'),\n", + " ('air', 'a slight wind (usually refreshing)'),\n", " ('breeze', 'a slight wind (usually refreshing)'),\n", + " ('line', 'a succession of notes forming a distinctive sequence'),\n", + " ('zephyr', 'a slight wind (usually refreshing)'),\n", + " ('pose', 'affected manners intended to impress others'),\n", + " ('tune', 'a succession of notes forming a distinctive sequence'),\n", + " ('atmosphere',\n", + " 'a distinctive but intangible quality surrounding a person or thing'),\n", " ('melodic phrase',\n", " 'a succession of notes forming a distinctive sequence'),\n", - " ('aviation', 'travel via aircraft'),\n", + " ('airwave', 'medium for radio and television broadcasting'),\n", + " ('air travel', 'travel via aircraft'),\n", " ('melody', 'a succession of notes forming a distinctive sequence'),\n", - " ('strain', 'a succession of notes forming a distinctive sequence'),\n", - " ('pose', 'affected manners intended to impress others'),\n", - " ('gentle wind', 'a slight wind (usually refreshing)')]},\n", + " ('gentle wind', 'a slight wind (usually refreshing)'),\n", + " ('melodic line', 'a succession of notes forming a distinctive sequence'),\n", + " ('strain', 'a succession of notes forming a distinctive sequence')]},\n", " {'answer': 'airstream',\n", " 'hint': 'synonyms for airstream',\n", - " 'clues': [('backwash',\n", + " 'clues': [('slipstream',\n", " 'the flow of air that is driven backwards by an aircraft propeller'),\n", " ('wash',\n", " 'the flow of air that is driven backwards by an aircraft propeller'),\n", " ('race',\n", " 'the flow of air that is driven backwards by an aircraft propeller'),\n", - " ('slipstream',\n", + " ('backwash',\n", " 'the flow of air that is driven backwards by an aircraft propeller')]},\n", " {'answer': 'airway',\n", " 'hint': 'synonyms for airway',\n", - " 'clues': [('air passage',\n", - " 'a duct that provides ventilation (as in mines)'),\n", + " 'clues': [('flight path',\n", + " 'a designated route followed by airplanes in flying from one airport to another'),\n", + " ('air lane',\n", + " 'a designated route followed by airplanes in flying from one airport to another'),\n", " ('airline',\n", " 'a commercial enterprise that provides scheduled flights for passengers'),\n", " ('skyway',\n", " 'a designated route followed by airplanes in flying from one airport to another'),\n", " ('airline business',\n", " 'a commercial enterprise that provides scheduled flights for passengers'),\n", - " ('air lane',\n", - " 'a designated route followed by airplanes in flying from one airport to another'),\n", " ('air duct', 'a duct that provides ventilation (as in mines)'),\n", - " ('flight path',\n", - " 'a designated route followed by airplanes in flying from one airport to another')]},\n", + " ('air passage', 'a duct that provides ventilation (as in mines)')]},\n", " {'answer': 'alarm',\n", " 'hint': 'synonyms for alarm',\n", " 'clues': [('warning signal',\n", " 'an automatic signal (usually a sound) warning of danger'),\n", - " ('consternation', 'fear resulting from the awareness of danger'),\n", " ('alarum', 'an automatic signal (usually a sound) warning of danger'),\n", + " ('consternation', 'fear resulting from the awareness of danger'),\n", + " ('alarm clock', 'a clock that wakes a sleeper at some preset time'),\n", " ('alarm system',\n", " 'a device that signals the occurrence of some undesirable event'),\n", - " ('alarm clock', 'a clock that wakes a sleeper at some preset time'),\n", " ('warning device',\n", " 'a device that signals the occurrence of some undesirable event'),\n", " ('dismay', 'fear resulting from the awareness of danger'),\n", " ('alert', 'an automatic signal (usually a sound) warning of danger')]},\n", " {'answer': 'alcohol',\n", " 'hint': 'synonyms for alcohol',\n", - " 'clues': [('alcoholic drink',\n", + " 'clues': [('inebriant',\n", + " 'a liquor or brew containing alcohol as the active agent'),\n", + " ('alcoholic drink',\n", " 'a liquor or brew containing alcohol as the active agent'),\n", " ('alcoholic beverage',\n", " 'a liquor or brew containing alcohol as the active agent'),\n", - " ('intoxicant', 'a liquor or brew containing alcohol as the active agent'),\n", - " ('inebriant',\n", + " ('intoxicant',\n", " 'a liquor or brew containing alcohol as the active agent')]},\n", " {'answer': 'alcoholic_beverage',\n", " 'hint': 'synonyms for alcoholic beverage',\n", - " 'clues': [('alcoholic drink',\n", + " 'clues': [('inebriant',\n", " 'a liquor or brew containing alcohol as the active agent'),\n", - " ('intoxicant', 'a liquor or brew containing alcohol as the active agent'),\n", " ('alcohol', 'a liquor or brew containing alcohol as the active agent'),\n", - " ('inebriant',\n", + " ('alcoholic drink',\n", + " 'a liquor or brew containing alcohol as the active agent'),\n", + " ('intoxicant',\n", " 'a liquor or brew containing alcohol as the active agent')]},\n", " {'answer': 'alcoholic_drink',\n", " 'hint': 'synonyms for alcoholic drink',\n", - " 'clues': [('alcoholic beverage',\n", + " 'clues': [('inebriant',\n", " 'a liquor or brew containing alcohol as the active agent'),\n", - " ('intoxicant', 'a liquor or brew containing alcohol as the active agent'),\n", " ('alcohol', 'a liquor or brew containing alcohol as the active agent'),\n", - " ('inebriant',\n", + " ('alcoholic beverage',\n", + " 'a liquor or brew containing alcohol as the active agent'),\n", + " ('intoxicant',\n", " 'a liquor or brew containing alcohol as the active agent')]},\n", " {'answer': 'alertness',\n", " 'hint': 'synonyms for alertness',\n", - " 'clues': [('on the qui vive', 'lively attentiveness'),\n", - " ('wakefulness', 'the process of paying close and continuous attention'),\n", - " ('watchfulness', 'the process of paying close and continuous attention'),\n", + " 'clues': [('watchfulness',\n", + " 'the process of paying close and continuous attention'),\n", " ('vigilance', 'the process of paying close and continuous attention'),\n", + " ('on the qui vive', 'lively attentiveness'),\n", + " ('wakefulness', 'the process of paying close and continuous attention'),\n", " ('sharp-sightedness', 'lively attentiveness')]},\n", " {'answer': 'alignment',\n", " 'hint': 'synonyms for alignment',\n", - " 'clues': [('alinement',\n", - " 'an organization of people (or countries) involved in a pact or treaty'),\n", + " 'clues': [('conjunction',\n", + " '(astronomy) apparent meeting or passing of two or more celestial bodies in the same degree of the zodiac'),\n", " ('alliance',\n", " 'an organization of people (or countries) involved in a pact or treaty'),\n", " ('coalition',\n", " 'an organization of people (or countries) involved in a pact or treaty'),\n", - " ('conjunction',\n", - " '(astronomy) apparent meeting or passing of two or more celestial bodies in the same degree of the zodiac')]},\n", + " ('alinement',\n", + " 'an organization of people (or countries) involved in a pact or treaty')]},\n", " {'answer': 'aliment',\n", " 'hint': 'synonyms for aliment',\n", - " 'clues': [('alimentation', 'a source of materials to nourish the body'),\n", + " 'clues': [('nutrition', 'a source of materials to nourish the body'),\n", " ('sustenance', 'a source of materials to nourish the body'),\n", - " ('nutriment', 'a source of materials to nourish the body'),\n", - " ('nutrition', 'a source of materials to nourish the body'),\n", " ('victuals', 'a source of materials to nourish the body'),\n", + " ('nutriment', 'a source of materials to nourish the body'),\n", + " ('alimentation', 'a source of materials to nourish the body'),\n", " ('nourishment', 'a source of materials to nourish the body')]},\n", " {'answer': 'alimentation',\n", " 'hint': 'synonyms for alimentation',\n", - " 'clues': [('aliment', 'a source of materials to nourish the body'),\n", + " 'clues': [('nutrition', 'a source of materials to nourish the body'),\n", " ('sustenance', 'a source of materials to nourish the body'),\n", - " ('nutriment', 'a source of materials to nourish the body'),\n", - " ('nutrition', 'a source of materials to nourish the body'),\n", " ('victuals', 'a source of materials to nourish the body'),\n", + " ('nutriment', 'a source of materials to nourish the body'),\n", + " ('feeding', 'the act of supplying food and nourishment'),\n", " ('nourishment', 'a source of materials to nourish the body'),\n", - " ('feeding', 'the act of supplying food and nourishment')]},\n", + " ('aliment', 'a source of materials to nourish the body')]},\n", " {'answer': 'alkane',\n", " 'hint': 'synonyms for alkane',\n", - " 'clues': [('paraffin series',\n", + " 'clues': [('alkane series',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", " ('methane series',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", - " ('alkane series',\n", + " ('paraffin series',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", " ('paraffin',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)')]},\n", " {'answer': 'alkane_series',\n", " 'hint': 'synonyms for alkane series',\n", - " 'clues': [('paraffin series',\n", - " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", - " ('paraffin',\n", + " 'clues': [('alkane',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", " ('methane series',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", - " ('alkane',\n", + " ('paraffin series',\n", + " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)'),\n", + " ('paraffin',\n", " 'a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2)')]},\n", " {'answer': 'allegiance',\n", " 'hint': 'synonyms for allegiance',\n", - " 'clues': [('commitment',\n", + " 'clues': [('loyalty',\n", " 'the act of binding yourself (intellectually or emotionally) to a course of action'),\n", - " ('loyalty',\n", + " ('commitment',\n", " 'the act of binding yourself (intellectually or emotionally) to a course of action'),\n", - " ('fealty',\n", - " 'the loyalty that citizens owe to their country (or subjects to their sovereign)'),\n", " ('dedication',\n", - " 'the act of binding yourself (intellectually or emotionally) to a course of action')]},\n", + " 'the act of binding yourself (intellectually or emotionally) to a course of action'),\n", + " ('fealty',\n", + " 'the loyalty that citizens owe to their country (or subjects to their sovereign)')]},\n", " {'answer': 'allegory',\n", " 'hint': 'synonyms for allegory',\n", - " 'clues': [('emblem', 'a visible symbol representing an abstract idea'),\n", - " ('parable', 'a short moral story (often with animal characters)'),\n", + " 'clues': [('fable', 'a short moral story (often with animal characters)'),\n", " ('apologue', 'a short moral story (often with animal characters)'),\n", - " ('fable', 'a short moral story (often with animal characters)')]},\n", + " ('parable', 'a short moral story (often with animal characters)'),\n", + " ('emblem', 'a visible symbol representing an abstract idea')]},\n", " {'answer': 'alleviation',\n", " 'hint': 'synonyms for alleviation',\n", " 'clues': [('relief',\n", - " 'the act of reducing something unpleasant (as pain or annoyance)'),\n", - " ('easement',\n", - " 'the act of reducing something unpleasant (as pain or annoyance)'),\n", + " 'the feeling that comes when something burdensome is removed or reduced'),\n", " ('assuagement',\n", " 'the feeling that comes when something burdensome is removed or reduced'),\n", + " ('easement',\n", + " 'the act of reducing something unpleasant (as pain or annoyance)'),\n", " ('easing',\n", " 'the act of reducing something unpleasant (as pain or annoyance)')]},\n", " {'answer': 'alley',\n", " 'hint': 'synonyms for alley',\n", - " 'clues': [('alleyway', 'a narrow street with walls on both sides'),\n", - " ('skittle alley',\n", + " 'clues': [('skittle alley',\n", " 'a lane down which a bowling ball is rolled toward pins'),\n", - " ('back street', 'a narrow street with walls on both sides'),\n", " ('bowling alley',\n", - " 'a lane down which a bowling ball is rolled toward pins')]},\n", + " 'a lane down which a bowling ball is rolled toward pins'),\n", + " ('back street', 'a narrow street with walls on both sides'),\n", + " ('alleyway', 'a narrow street with walls on both sides')]},\n", " {'answer': 'alliance',\n", " 'hint': 'synonyms for alliance',\n", - " 'clues': [('coalition',\n", - " 'an organization of people (or countries) involved in a pact or treaty'),\n", - " ('alinement',\n", + " 'clues': [('confederation',\n", + " 'the act of forming an alliance or confederation'),\n", + " ('alignment',\n", " 'an organization of people (or countries) involved in a pact or treaty'),\n", " ('bond', 'a connection based on kinship or marriage or common interest'),\n", - " ('confederation', 'the act of forming an alliance or confederation')]},\n", + " ('coalition',\n", + " 'an organization of people (or countries) involved in a pact or treaty')]},\n", " {'answer': 'allocation',\n", " 'hint': 'synonyms for allocation',\n", - " 'clues': [('allotment', 'a share set aside for a specific purpose'),\n", - " ('storage allocation',\n", - " '(computer science) the assignment of particular areas of a magnetic disk to particular data or instructions'),\n", - " ('parceling',\n", + " 'clues': [('apportionment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('apportionment',\n", + " ('parcelling',\n", + " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", + " ('assignation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", " ('apportioning',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('assignation',\n", - " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n", + " ('storage allocation',\n", + " '(computer science) the assignment of particular areas of a magnetic disk to particular data or instructions'),\n", + " ('allotment', 'a share set aside for a specific purpose')]},\n", " {'answer': 'allotment',\n", " 'hint': 'synonyms for allotment',\n", - " 'clues': [('allocation',\n", + " 'clues': [('apportionment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('parceling',\n", + " ('parcelling',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('apportionment',\n", + " ('allocation', 'a share set aside for a specific purpose'),\n", + " ('assignation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", " ('apportioning',\n", - " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('assignation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n", " {'answer': 'allowance',\n", " 'hint': 'synonyms for allowance',\n", - " 'clues': [('valuation account',\n", - " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\"),\n", - " ('leeway',\n", + " 'clues': [('tolerance',\n", " 'a permissible difference; allowing some freedom to move within limits'),\n", " ('margin',\n", " 'a permissible difference; allowing some freedom to move within limits'),\n", - " ('tolerance',\n", + " ('allowance account',\n", + " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\"),\n", + " ('leeway',\n", " 'a permissible difference; allowing some freedom to move within limits'),\n", - " ('adjustment',\n", - " 'an amount added or deducted on the basis of qualifying circumstances'),\n", " ('valuation reserve',\n", " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\"),\n", - " ('allowance account',\n", - " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\")]},\n", + " ('valuation account',\n", + " \"a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets\"),\n", + " ('adjustment',\n", + " 'an amount added or deducted on the basis of qualifying circumstances')]},\n", " {'answer': 'alluvion',\n", " 'hint': 'synonyms for alluvion',\n", " 'clues': [('alluvium',\n", " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down'),\n", - " ('flood',\n", - " 'the rising of a body of water and its overflowing onto normally dry land'),\n", - " ('alluvial deposit',\n", - " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down'),\n", " ('deluge',\n", " 'the rising of a body of water and its overflowing onto normally dry land'),\n", + " ('alluvial sediment',\n", + " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down'),\n", " ('inundation',\n", " 'the rising of a body of water and its overflowing onto normally dry land'),\n", - " ('alluvial sediment',\n", - " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down')]},\n", + " ('alluvial deposit',\n", + " 'clay or silt or gravel carried by rushing streams and deposited where the stream slows down'),\n", + " ('flood',\n", + " 'the rising of a body of water and its overflowing onto normally dry land')]},\n", " {'answer': 'aloofness',\n", " 'hint': 'synonyms for aloofness',\n", " 'clues': [('standoffishness',\n", " 'a disposition to be distant and unsympathetic in manner'),\n", - " ('remoteness', 'a disposition to be distant and unsympathetic in manner'),\n", + " ('distance', 'indifference by personal withdrawal'),\n", " ('withdrawnness',\n", " 'a disposition to be distant and unsympathetic in manner'),\n", - " ('distance', 'indifference by personal withdrawal')]},\n", + " ('remoteness',\n", + " 'a disposition to be distant and unsympathetic in manner')]},\n", " {'answer': 'alteration',\n", " 'hint': 'synonyms for alteration',\n", - " 'clues': [('modification',\n", - " 'the act of making something different (as e.g. the size of a garment)'),\n", + " 'clues': [('change',\n", + " 'an event that occurs when something passes from one state or phase to another'),\n", " ('revision',\n", " 'the act of revising or altering (involving reconsideration and modification)'),\n", - " ('change',\n", - " 'an event that occurs when something passes from one state or phase to another'),\n", " ('adjustment',\n", + " 'the act of making something different (as e.g. the size of a garment)'),\n", + " ('modification',\n", " 'the act of making something different (as e.g. the size of a garment)')]},\n", " {'answer': 'ambit',\n", " 'hint': 'synonyms for ambit',\n", - " 'clues': [('range',\n", + " 'clues': [('orbit',\n", " 'an area in which something acts or operates or has power or control:'),\n", " ('reach',\n", " 'an area in which something acts or operates or has power or control:'),\n", " ('scope',\n", " 'an area in which something acts or operates or has power or control:'),\n", - " ('compass',\n", + " ('range',\n", " 'an area in which something acts or operates or has power or control:'),\n", - " ('orbit',\n", + " ('compass',\n", " 'an area in which something acts or operates or has power or control:')]},\n", " {'answer': 'amble',\n", " 'hint': 'synonyms for amble',\n", " 'clues': [('stroll', 'a leisurely walk (usually in some public place)'),\n", - " ('saunter', 'a leisurely walk (usually in some public place)'),\n", " ('promenade', 'a leisurely walk (usually in some public place)'),\n", - " ('perambulation', 'a leisurely walk (usually in some public place)')]},\n", + " ('perambulation', 'a leisurely walk (usually in some public place)'),\n", + " ('saunter', 'a leisurely walk (usually in some public place)')]},\n", " {'answer': 'ambo',\n", " 'hint': 'synonyms for ambo',\n", " 'clues': [('stump',\n", " 'a platform raised above the surrounding level to give prominence to the person on it'),\n", - " ('dais',\n", + " ('pulpit',\n", " 'a platform raised above the surrounding level to give prominence to the person on it'),\n", - " ('rostrum',\n", + " ('dais',\n", " 'a platform raised above the surrounding level to give prominence to the person on it'),\n", - " ('pulpit',\n", + " ('podium',\n", " 'a platform raised above the surrounding level to give prominence to the person on it'),\n", " ('soapbox',\n", " 'a platform raised above the surrounding level to give prominence to the person on it'),\n", - " ('podium',\n", + " ('rostrum',\n", " 'a platform raised above the surrounding level to give prominence to the person on it')]},\n", " {'answer': 'amends',\n", " 'hint': 'synonyms for amends',\n", - " 'clues': [('damages',\n", - " 'a sum of money paid in compensation for loss or injury'),\n", - " ('restitution', 'a sum of money paid in compensation for loss or injury'),\n", - " ('indemnification',\n", + " 'clues': [('restitution',\n", " 'a sum of money paid in compensation for loss or injury'),\n", + " ('indemnity', 'a sum of money paid in compensation for loss or injury'),\n", + " ('damages', 'a sum of money paid in compensation for loss or injury'),\n", " ('reparation', 'something done or paid in expiation of a wrong'),\n", " ('redress', 'a sum of money paid in compensation for loss or injury'),\n", - " ('indemnity', 'a sum of money paid in compensation for loss or injury')]},\n", + " ('indemnification',\n", + " 'a sum of money paid in compensation for loss or injury')]},\n", " {'answer': 'amenities',\n", " 'hint': 'synonyms for amenities',\n", - " 'clues': [('amenity', 'pleasantness resulting from agreeable conditions'),\n", + " 'clues': [('creature comforts',\n", + " 'things that make you comfortable and at ease'),\n", + " ('conveniences', 'things that make you comfortable and at ease'),\n", " ('comforts', 'things that make you comfortable and at ease'),\n", - " ('agreeableness', 'pleasantness resulting from agreeable conditions'),\n", - " ('creature comforts', 'things that make you comfortable and at ease'),\n", - " ('conveniences', 'things that make you comfortable and at ease')]},\n", + " ('amenity', 'pleasantness resulting from agreeable conditions'),\n", + " ('agreeableness', 'pleasantness resulting from agreeable conditions')]},\n", " {'answer': 'amiability',\n", " 'hint': 'synonyms for amiability',\n", - " 'clues': [('bonhomie',\n", + " 'clues': [('geniality',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affableness',\n", + " ('bonhomie',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('affability',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('good humor', 'a cheerful and agreeable mood'),\n", - " ('geniality',\n", - " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('good temper', 'a cheerful and agreeable mood'),\n", " ('amiableness',\n", + " 'a disposition to be friendly and approachable (easy to talk to)'),\n", + " ('affableness',\n", " 'a disposition to be friendly and approachable (easy to talk to)')]},\n", " {'answer': 'amiableness',\n", " 'hint': 'synonyms for amiableness',\n", - " 'clues': [('bonhomie',\n", + " 'clues': [('geniality',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affableness',\n", + " ('bonhomie',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", " ('amiability',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affability',\n", + " ('affableness',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('geniality',\n", + " ('affability',\n", " 'a disposition to be friendly and approachable (easy to talk to)')]},\n", " {'answer': 'amorousness',\n", " 'hint': 'synonyms for amorousness',\n", - " 'clues': [('amativeness', 'the arousal of feelings of sexual desire'),\n", - " ('erotism', 'the arousal of feelings of sexual desire'),\n", + " 'clues': [('erotism', 'the arousal of feelings of sexual desire'),\n", + " ('amativeness', 'the arousal of feelings of sexual desire'),\n", " ('sexiness', 'the arousal of feelings of sexual desire'),\n", " ('enamoredness', 'a feeling of love or fondness')]},\n", " {'answer': 'amount',\n", " 'hint': 'synonyms for amount',\n", - " 'clues': [('amount of money', 'a quantity of money'),\n", - " ('measure',\n", - " 'how much there is or how many there are of something that you can quantify'),\n", + " 'clues': [('sum',\n", + " 'a quantity obtained by the addition of a group of numbers'),\n", + " ('total', 'a quantity obtained by the addition of a group of numbers'),\n", + " ('sum of money', 'a quantity of money'),\n", " ('quantity',\n", " 'how much there is or how many there are of something that you can quantify'),\n", - " ('sum of money', 'a quantity of money'),\n", - " ('total', 'a quantity obtained by the addition of a group of numbers'),\n", - " ('sum', 'a quantity of money')]},\n", + " ('amount of money', 'a quantity of money'),\n", + " ('measure',\n", + " 'how much there is or how many there are of something that you can quantify')]},\n", " {'answer': 'ampule',\n", " 'hint': 'synonyms for ampule',\n", - " 'clues': [('vial',\n", + " 'clues': [('phial',\n", " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)'),\n", - " ('ampoule',\n", + " ('ampul',\n", " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)'),\n", - " ('phial',\n", + " ('ampoule',\n", " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)'),\n", - " ('ampul',\n", + " ('vial',\n", " 'a small bottle that contains a drug (especially a sealed sterile container for injection by needle)')]},\n", " {'answer': 'amytal',\n", " 'hint': 'synonyms for amytal',\n", - " 'clues': [('blue',\n", + " 'clues': [('amobarbital sodium',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('amobarbital sodium',\n", + " ('blue',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", " ('blue angel',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", @@ -30795,201 +30836,202 @@ " {'answer': 'anamnesis',\n", " 'hint': 'synonyms for anamnesis',\n", " 'clues': [('recollection', 'the ability to recall past occurrences'),\n", + " ('remembrance', 'the ability to recall past occurrences'),\n", " ('medical record',\n", " 'the case history of a medical patient as recalled by the patient'),\n", - " ('remembrance', 'the ability to recall past occurrences'),\n", " ('medical history',\n", " 'the case history of a medical patient as recalled by the patient')]},\n", " {'answer': 'ancestry',\n", " 'hint': 'synonyms for ancestry',\n", - " 'clues': [('line of descent', 'the descendants of one individual'),\n", + " 'clues': [('derivation',\n", + " 'inherited properties shared with others of your bloodline'),\n", " ('lineage', 'inherited properties shared with others of your bloodline'),\n", - " ('stock', 'the descendants of one individual'),\n", + " ('bloodline', 'the descendants of one individual'),\n", " ('line', 'the descendants of one individual'),\n", - " ('descent', 'the descendants of one individual'),\n", " ('origin', 'the descendants of one individual'),\n", - " ('parentage', 'the descendants of one individual'),\n", - " ('derivation',\n", + " ('filiation',\n", " 'inherited properties shared with others of your bloodline'),\n", " ('blood', 'the descendants of one individual'),\n", - " ('blood line', 'the descendants of one individual'),\n", + " ('pedigree', 'the descendants of one individual'),\n", " ('stemma', 'the descendants of one individual'),\n", - " ('filiation',\n", - " 'inherited properties shared with others of your bloodline'),\n", - " ('pedigree', 'the descendants of one individual')]},\n", + " ('stock', 'the descendants of one individual'),\n", + " ('line of descent', 'the descendants of one individual'),\n", + " ('parentage', 'the descendants of one individual'),\n", + " ('descent', 'the descendants of one individual')]},\n", " {'answer': 'anchor',\n", " 'hint': 'synonyms for anchor',\n", - " 'clues': [('mainstay',\n", + " 'clues': [('lynchpin',\n", " 'a central cohesive source of support and stability'),\n", - " ('linchpin', 'a central cohesive source of support and stability'),\n", " ('backbone', 'a central cohesive source of support and stability'),\n", - " ('keystone', 'a central cohesive source of support and stability'),\n", " ('ground tackle',\n", - " 'a mechanical device that prevents a vessel from moving')]},\n", + " 'a mechanical device that prevents a vessel from moving'),\n", + " ('keystone', 'a central cohesive source of support and stability'),\n", + " ('mainstay', 'a central cohesive source of support and stability')]},\n", " {'answer': 'anchor_ring',\n", " 'hint': 'synonyms for anchor ring',\n", - " 'clues': [('annulus', 'a toroidal shape'),\n", - " ('halo', 'a toroidal shape'),\n", + " 'clues': [('halo', 'a toroidal shape'),\n", " ('doughnut', 'a toroidal shape'),\n", + " ('annulus', 'a toroidal shape'),\n", " ('ring', 'a toroidal shape')]},\n", " {'answer': 'anger',\n", " 'hint': 'synonyms for anger',\n", - " 'clues': [('ire',\n", - " 'a strong emotion; a feeling that is oriented toward some real or supposed grievance'),\n", - " ('choler',\n", + " 'clues': [('choler',\n", " 'a strong emotion; a feeling that is oriented toward some real or supposed grievance'),\n", " ('ira',\n", " 'belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)'),\n", + " ('ire',\n", + " 'a strong emotion; a feeling that is oriented toward some real or supposed grievance'),\n", " ('wrath',\n", " 'belligerence aroused by a real or supposed wrong (personified as one of the deadly sins)')]},\n", " {'answer': 'angle_of_dip',\n", " 'hint': 'synonyms for angle of dip',\n", - " 'clues': [('inclination',\n", - " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n", - " ('dip',\n", + " 'clues': [('magnetic dip',\n", " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n", - " ('magnetic dip',\n", + " ('inclination',\n", " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n", " ('magnetic inclination',\n", + " '(physics) the angle that a magnetic needle makes with the plane of the horizon'),\n", + " ('dip',\n", " '(physics) the angle that a magnetic needle makes with the plane of the horizon')]},\n", " {'answer': 'animate_being',\n", " 'hint': 'synonyms for animate being',\n", - " 'clues': [('beast',\n", + " 'clues': [('creature',\n", " 'a living organism characterized by voluntary movement'),\n", - " ('brute', 'a living organism characterized by voluntary movement'),\n", " ('animal', 'a living organism characterized by voluntary movement'),\n", + " ('brute', 'a living organism characterized by voluntary movement'),\n", " ('fauna', 'a living organism characterized by voluntary movement'),\n", - " ('creature', 'a living organism characterized by voluntary movement')]},\n", + " ('beast', 'a living organism characterized by voluntary movement')]},\n", " {'answer': 'animation',\n", " 'hint': 'synonyms for animation',\n", - " 'clues': [('vivification',\n", - " 'the activity of giving vitality and vigour to something'),\n", - " ('invigoration',\n", + " 'clues': [('spiritedness',\n", " 'quality of being active or spirited or alive and vigorous'),\n", + " ('vitality', 'the property of being able to survive and grow'),\n", + " ('invigoration',\n", + " 'the activity of giving vitality and vigour to something'),\n", " ('brio', 'quality of being active or spirited or alive and vigorous'),\n", " ('liveliness', 'general activity and motion'),\n", - " ('spiritedness',\n", - " 'quality of being active or spirited or alive and vigorous'),\n", - " ('vitality', 'the property of being able to survive and grow')]},\n", + " ('vivification',\n", + " 'the activity of giving vitality and vigour to something')]},\n", " {'answer': 'announcement',\n", " 'hint': 'synonyms for announcement',\n", - " 'clues': [('annunciation', 'a formal public statement'),\n", - " ('proclamation', 'a formal public statement'),\n", + " 'clues': [('proclamation', 'a formal public statement'),\n", " ('promulgation',\n", " 'a public statement containing information about an event that has happened or is going to happen'),\n", + " ('annunciation', 'a formal public statement'),\n", " ('declaration', 'a formal public statement')]},\n", " {'answer': 'annoyance',\n", " 'hint': 'synonyms for annoyance',\n", - " 'clues': [('botheration',\n", - " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('annoying', 'the act of troubling or annoying someone'),\n", - " ('bother',\n", + " 'clues': [('bother',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('irritation', 'the act of troubling or annoying someone'),\n", " ('vexation', 'anger produced by some annoying irritation'),\n", - " ('infliction',\n", + " ('botheration',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", " ('pain',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('chafe', 'anger produced by some annoying irritation'),\n", + " ('pain in the neck',\n", + " 'something or someone that causes trouble; a source of unhappiness'),\n", " ('pain in the ass',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('pain in the neck',\n", - " 'something or someone that causes trouble; a source of unhappiness')]},\n", + " ('infliction',\n", + " 'something or someone that causes trouble; a source of unhappiness'),\n", + " ('annoying', 'the act of troubling or annoying someone'),\n", + " ('irritation', 'the act of troubling or annoying someone'),\n", + " ('chafe', 'anger produced by some annoying irritation')]},\n", " {'answer': 'annulus',\n", " 'hint': 'synonyms for annulus',\n", - " 'clues': [('ring', 'a toroidal shape'),\n", + " 'clues': [('anchor ring', 'a toroidal shape'),\n", " ('halo', 'a toroidal shape'),\n", " ('doughnut', 'a toroidal shape'),\n", - " ('anchor ring', 'a toroidal shape')]},\n", + " ('ring', 'a toroidal shape')]},\n", " {'answer': 'anovulant',\n", " 'hint': 'synonyms for anovulant',\n", - " 'clues': [('contraceptive pill',\n", + " 'clues': [('anovulatory drug',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", " ('pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('oral contraceptive',\n", + " ('birth control pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('anovulatory drug',\n", + " ('oral contraceptive',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('birth control pill',\n", + " ('contraceptive pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception')]},\n", " {'answer': 'anovulatory_drug',\n", " 'hint': 'synonyms for anovulatory drug',\n", - " 'clues': [('contraceptive pill',\n", + " 'clues': [('anovulant',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", " ('pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('oral contraceptive',\n", - " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", " ('birth control pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('anovulant',\n", + " ('oral contraceptive',\n", + " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", + " ('contraceptive pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception')]},\n", " {'answer': 'answer',\n", " 'hint': 'synonyms for answer',\n", - " 'clues': [('resolution',\n", + " 'clues': [('reply',\n", + " 'a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation'),\n", + " ('result',\n", " 'a statement that solves a problem or explains how to solve the problem'),\n", - " ('solvent',\n", + " ('resolution',\n", " 'a statement that solves a problem or explains how to solve the problem'),\n", - " ('result',\n", + " ('solvent',\n", " 'a statement that solves a problem or explains how to solve the problem'),\n", " ('response',\n", - " 'a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation'),\n", - " ('reply',\n", " 'a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation')]},\n", " {'answer': 'antecedence',\n", " 'hint': 'synonyms for antecedence',\n", - " 'clues': [('anteriority', 'preceding in time'),\n", - " ('antecedency', 'preceding in time'),\n", + " 'clues': [('precedency', 'preceding in time'),\n", + " ('anteriority', 'preceding in time'),\n", " ('priority', 'preceding in time'),\n", - " ('precedency', 'preceding in time')]},\n", + " ('antecedency', 'preceding in time')]},\n", " {'answer': 'antecedency',\n", " 'hint': 'synonyms for antecedency',\n", - " 'clues': [('anteriority', 'preceding in time'),\n", + " 'clues': [('precedency', 'preceding in time'),\n", " ('priority', 'preceding in time'),\n", " ('antecedence', 'preceding in time'),\n", - " ('precedency', 'preceding in time')]},\n", + " ('anteriority', 'preceding in time')]},\n", " {'answer': 'antechamber',\n", " 'hint': 'synonyms for antechamber',\n", - " 'clues': [('foyer', 'a large entrance or reception room or area'),\n", - " ('lobby', 'a large entrance or reception room or area'),\n", + " 'clues': [('lobby', 'a large entrance or reception room or area'),\n", " ('vestibule', 'a large entrance or reception room or area'),\n", " ('hall', 'a large entrance or reception room or area'),\n", " ('entrance hall', 'a large entrance or reception room or area'),\n", + " ('foyer', 'a large entrance or reception room or area'),\n", " ('anteroom', 'a large entrance or reception room or area')]},\n", " {'answer': 'anteroom',\n", " 'hint': 'synonyms for anteroom',\n", - " 'clues': [('foyer', 'a large entrance or reception room or area'),\n", + " 'clues': [('antechamber', 'a large entrance or reception room or area'),\n", " ('lobby', 'a large entrance or reception room or area'),\n", - " ('antechamber', 'a large entrance or reception room or area'),\n", " ('vestibule', 'a large entrance or reception room or area'),\n", " ('hall', 'a large entrance or reception room or area'),\n", - " ('entrance hall', 'a large entrance or reception room or area')]},\n", + " ('entrance hall', 'a large entrance or reception room or area'),\n", + " ('foyer', 'a large entrance or reception room or area')]},\n", " {'answer': 'anthesis',\n", " 'hint': 'synonyms for anthesis',\n", - " 'clues': [('blossoming',\n", + " 'clues': [('efflorescence',\n", " 'the time and process of budding and unfolding of blossoms'),\n", - " ('flowering',\n", + " ('inflorescence',\n", " 'the time and process of budding and unfolding of blossoms'),\n", - " ('efflorescence',\n", + " ('flowering',\n", " 'the time and process of budding and unfolding of blossoms'),\n", - " ('inflorescence',\n", + " ('blossoming',\n", " 'the time and process of budding and unfolding of blossoms')]},\n", " {'answer': 'antiaircraft_gun',\n", " 'hint': 'synonyms for antiaircraft gun',\n", - " 'clues': [('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", + " 'clues': [('ack-ack gun',\n", + " 'artillery designed to shoot upward at airplanes'),\n", + " ('pom-pom', 'artillery designed to shoot upward at airplanes'),\n", " ('flak', 'artillery designed to shoot upward at airplanes'),\n", - " ('ack-ack gun', 'artillery designed to shoot upward at airplanes'),\n", - " ('antiaircraft', 'artillery designed to shoot upward at airplanes'),\n", - " ('ack-ack', 'artillery designed to shoot upward at airplanes')]},\n", + " ('ack-ack', 'artillery designed to shoot upward at airplanes'),\n", + " ('antiaircraft', 'artillery designed to shoot upward at airplanes')]},\n", " {'answer': 'antianxiety_agent',\n", " 'hint': 'synonyms for antianxiety agent',\n", - " 'clues': [('tranquilliser',\n", + " 'clues': [('ataractic',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('ataractic drug',\n", + " ('tranquilizer',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('ataractic',\n", + " ('ataractic drug',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", " ('ataractic agent',\n", " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n", @@ -30997,17 +31039,15 @@ " 'hint': 'synonyms for antifungal agent',\n", " 'clues': [('antimycotic agent',\n", " 'any agent that destroys or prevents the growth of fungi'),\n", - " ('antimycotic',\n", - " 'any agent that destroys or prevents the growth of fungi'),\n", + " ('fungicide', 'any agent that destroys or prevents the growth of fungi'),\n", " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n", - " ('fungicide',\n", + " ('antimycotic',\n", " 'any agent that destroys or prevents the growth of fungi')]},\n", " {'answer': 'antimycotic',\n", " 'hint': 'synonyms for antimycotic',\n", - " 'clues': [('fungicide',\n", - " 'any agent that destroys or prevents the growth of fungi'),\n", - " ('antimycotic agent',\n", + " 'clues': [('antimycotic agent',\n", " 'any agent that destroys or prevents the growth of fungi'),\n", + " ('fungicide', 'any agent that destroys or prevents the growth of fungi'),\n", " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n", " ('antifungal agent',\n", " 'any agent that destroys or prevents the growth of fungi')]},\n", @@ -31015,107 +31055,107 @@ " 'hint': 'synonyms for antimycotic agent',\n", " 'clues': [('fungicide',\n", " 'any agent that destroys or prevents the growth of fungi'),\n", + " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n", " ('antimycotic',\n", " 'any agent that destroys or prevents the growth of fungi'),\n", - " ('antifungal', 'any agent that destroys or prevents the growth of fungi'),\n", " ('antifungal agent',\n", " 'any agent that destroys or prevents the growth of fungi')]},\n", " {'answer': 'antipsychotic',\n", " 'hint': 'synonyms for antipsychotic',\n", - " 'clues': [('antipsychotic agent',\n", - " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('major tranquillizer',\n", + " 'clues': [('major tranquilliser',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('antipsychotic drug',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('neuroleptic drug',\n", + " ('antipsychotic agent',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('neuroleptic',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", + " ('neuroleptic drug',\n", + " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('neuroleptic agent',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired')]},\n", " {'answer': 'antipsychotic_agent',\n", " 'hint': 'synonyms for antipsychotic agent',\n", - " 'clues': [('major tranquillizer',\n", + " 'clues': [('major tranquilliser',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('antipsychotic drug',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('neuroleptic drug',\n", - " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('neuroleptic',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('neuroleptic agent',\n", + " ('neuroleptic drug',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('antipsychotic',\n", + " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", + " ('neuroleptic agent',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired')]},\n", " {'answer': 'antipsychotic_drug',\n", " 'hint': 'synonyms for antipsychotic drug',\n", - " 'clues': [('antipsychotic agent',\n", - " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('major tranquillizer',\n", + " 'clues': [('major tranquilliser',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('neuroleptic drug',\n", + " ('antipsychotic agent',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('neuroleptic',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", - " ('neuroleptic agent',\n", + " ('neuroleptic drug',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", " ('antipsychotic',\n", + " 'tranquilizer used to treat psychotic conditions when a calming effect is desired'),\n", + " ('neuroleptic agent',\n", " 'tranquilizer used to treat psychotic conditions when a calming effect is desired')]},\n", " {'answer': 'apex',\n", " 'hint': 'synonyms for apex',\n", - " 'clues': [('acme', 'the highest point (of something)'),\n", - " ('solar apex',\n", + " 'clues': [(\"apex of the sun's way\",\n", " 'the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars'),\n", - " ('peak', 'the highest point (of something)'),\n", - " (\"apex of the sun's way\",\n", + " ('acme', 'the highest point (of something)'),\n", + " ('solar apex',\n", " 'the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars'),\n", - " ('vertex', 'the highest point (of something)')]},\n", + " ('vertex', 'the highest point (of something)'),\n", + " ('peak', 'the highest point (of something)')]},\n", " {'answer': 'aplomb',\n", " 'hint': 'synonyms for aplomb',\n", - " 'clues': [('cool', 'great coolness and composure under strain'),\n", - " ('assuredness', 'great coolness and composure under strain'),\n", - " ('poise', 'great coolness and composure under strain'),\n", - " ('sang-froid', 'great coolness and composure under strain')]},\n", + " 'clues': [('poise', 'great coolness and composure under strain'),\n", + " ('cool', 'great coolness and composure under strain'),\n", + " ('sang-froid', 'great coolness and composure under strain'),\n", + " ('assuredness', 'great coolness and composure under strain')]},\n", " {'answer': \"apothecary's_shop\",\n", " 'hint': \"synonyms for apothecary's shop\",\n", " 'clues': [(\"chemist's\",\n", " 'a retail shop where medicine and other articles are sold'),\n", + " ('drugstore', 'a retail shop where medicine and other articles are sold'),\n", " ('pharmacy', 'a retail shop where medicine and other articles are sold'),\n", " (\"chemist's shop\",\n", - " 'a retail shop where medicine and other articles are sold'),\n", - " ('drugstore',\n", " 'a retail shop where medicine and other articles are sold')]},\n", " {'answer': 'apparel_industry',\n", " 'hint': 'synonyms for apparel industry',\n", - " 'clues': [('rag trade', 'makers and sellers of fashionable clothing'),\n", - " ('fashion business', 'makers and sellers of fashionable clothing'),\n", + " 'clues': [('fashion business',\n", + " 'makers and sellers of fashionable clothing'),\n", " ('fashion industry', 'makers and sellers of fashionable clothing'),\n", - " ('garment industry', 'makers and sellers of fashionable clothing')]},\n", + " ('garment industry', 'makers and sellers of fashionable clothing'),\n", + " ('rag trade', 'makers and sellers of fashionable clothing')]},\n", " {'answer': 'apparent_horizon',\n", " 'hint': 'synonyms for apparent horizon',\n", - " 'clues': [('sensible horizon',\n", + " 'clues': [('skyline',\n", " 'the line at which the sky and Earth appear to meet'),\n", - " ('skyline', 'the line at which the sky and Earth appear to meet'),\n", " ('horizon', 'the line at which the sky and Earth appear to meet'),\n", - " ('visible horizon',\n", + " ('visible horizon', 'the line at which the sky and Earth appear to meet'),\n", + " ('sensible horizon',\n", " 'the line at which the sky and Earth appear to meet')]},\n", " {'answer': 'apparition',\n", " 'hint': 'synonyms for apparition',\n", - " 'clues': [('fantasm', 'something existing in perception only'),\n", - " ('shadow', 'something existing in perception only'),\n", - " ('phantasma', 'something existing in perception only'),\n", + " 'clues': [('shadow', 'something existing in perception only'),\n", + " ('phantasm', 'something existing in perception only'),\n", + " ('fantasm', 'something existing in perception only'),\n", " ('phantom', 'something existing in perception only')]},\n", " {'answer': 'appeal',\n", " 'hint': 'synonyms for appeal',\n", - " 'clues': [('collection', 'request for a sum of money'),\n", - " ('prayer', 'earnest or urgent request'),\n", - " ('appealingness',\n", - " 'attractiveness that interests or pleases or stimulates'),\n", - " ('solicitation', 'request for a sum of money'),\n", + " 'clues': [('prayer', 'earnest or urgent request'),\n", + " ('collection', 'request for a sum of money'),\n", " ('ingathering', 'request for a sum of money'),\n", " ('charm', 'attractiveness that interests or pleases or stimulates'),\n", - " ('entreaty', 'earnest or urgent request')]},\n", + " ('appealingness',\n", + " 'attractiveness that interests or pleases or stimulates'),\n", + " ('entreaty', 'earnest or urgent request'),\n", + " ('solicitation', 'request for a sum of money')]},\n", " {'answer': 'appearance',\n", " 'hint': 'synonyms for appearance',\n", " 'clues': [('show',\n", @@ -31127,445 +31167,444 @@ " 'formal attendance (in court or at a hearing) of a party in an action')]},\n", " {'answer': 'applesauce',\n", " 'hint': 'synonyms for applesauce',\n", - " 'clues': [('wish-wash', 'nonsensical talk or writing'),\n", - " ('trash', 'nonsensical talk or writing'),\n", + " 'clues': [('folderol', 'nonsensical talk or writing'),\n", + " ('trumpery', 'nonsensical talk or writing'),\n", " ('codswallop', 'nonsensical talk or writing'),\n", - " ('folderol', 'nonsensical talk or writing'),\n", - " ('apple sauce', 'puree of stewed apples usually sweetened and spiced'),\n", + " ('trash', 'nonsensical talk or writing'),\n", + " ('wish-wash', 'nonsensical talk or writing'),\n", " ('rubbish', 'nonsensical talk or writing'),\n", " ('tripe', 'nonsensical talk or writing'),\n", - " ('trumpery', 'nonsensical talk or writing')]},\n", + " ('apple sauce', 'puree of stewed apples usually sweetened and spiced')]},\n", " {'answer': 'appliance',\n", " 'hint': 'synonyms for appliance',\n", - " 'clues': [('convenience',\n", + " 'clues': [('gismo',\n", " 'a device or control that is very useful for a particular job'),\n", - " ('widget',\n", + " ('convenience',\n", " 'a device or control that is very useful for a particular job'),\n", - " ('gismo', 'a device or control that is very useful for a particular job'),\n", - " ('gizmo', 'a device or control that is very useful for a particular job'),\n", " ('contraption',\n", " 'a device or control that is very useful for a particular job'),\n", " ('contrivance',\n", " 'a device or control that is very useful for a particular job'),\n", + " ('gizmo', 'a device or control that is very useful for a particular job'),\n", " ('gadget',\n", + " 'a device or control that is very useful for a particular job'),\n", + " ('widget',\n", " 'a device or control that is very useful for a particular job')]},\n", " {'answer': 'application',\n", " 'hint': 'synonyms for application',\n", - " 'clues': [('applications programme',\n", + " 'clues': [('lotion',\n", + " 'liquid preparation having a soothing or antiseptic or medicinal action when applied to the skin'),\n", + " ('coating', 'the work of applying something'),\n", + " ('application program',\n", " 'a program that gives a computer instructions that provide the user with tools to accomplish a task'),\n", - " ('covering', 'the work of applying something'),\n", " ('practical application',\n", " 'the act of bringing something to bear; using it for a particular purpose'),\n", - " ('coating', 'the work of applying something'),\n", - " ('lotion',\n", - " 'liquid preparation having a soothing or antiseptic or medicinal action when applied to the skin'),\n", - " ('diligence', 'a diligent effort')]},\n", + " ('diligence', 'a diligent effort'),\n", + " ('covering', 'the work of applying something')]},\n", " {'answer': 'appointment',\n", " 'hint': 'synonyms for appointment',\n", - " 'clues': [('naming',\n", + " 'clues': [('designation',\n", " 'the act of putting a person into a non-elective position'),\n", - " ('engagement', 'a meeting arranged in advance'),\n", - " ('date', 'a meeting arranged in advance'),\n", + " ('naming', 'the act of putting a person into a non-elective position'),\n", " ('fitting',\n", " '(usually plural) furnishings and equipment (especially for a ship or hotel)'),\n", - " ('designation',\n", - " 'the act of putting a person into a non-elective position'),\n", + " ('engagement', 'a meeting arranged in advance'),\n", " ('assignment',\n", - " 'the act of putting a person into a non-elective position')]},\n", + " 'the act of putting a person into a non-elective position'),\n", + " ('date', 'a meeting arranged in advance')]},\n", " {'answer': 'apportioning',\n", " 'hint': 'synonyms for apportioning',\n", - " 'clues': [('allocation',\n", + " 'clues': [('apportionment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('parceling',\n", + " ('parcelling',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('allotment',\n", + " ('assignation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('apportionment',\n", + " ('allocation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('assignation',\n", + " ('allotment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n", " {'answer': 'apportionment',\n", " 'hint': 'synonyms for apportionment',\n", - " 'clues': [('allocation',\n", + " 'clues': [('parcelling',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('parceling',\n", + " ('assignation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('allotment',\n", + " ('allocation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", " ('apportioning',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('assignation',\n", + " ('allotment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n", " {'answer': 'appreciation',\n", " 'hint': 'synonyms for appreciation',\n", - " 'clues': [('perceptiveness',\n", + " 'clues': [('discernment',\n", " 'delicate discrimination (especially of aesthetic values)'),\n", - " ('taste', 'delicate discrimination (especially of aesthetic values)'),\n", " ('hold',\n", " 'understanding of the nature or meaning or quality or magnitude of something'),\n", " ('grasp',\n", " 'understanding of the nature or meaning or quality or magnitude of something'),\n", - " ('discernment',\n", + " ('perceptiveness',\n", " 'delicate discrimination (especially of aesthetic values)'),\n", + " ('taste', 'delicate discrimination (especially of aesthetic values)'),\n", " ('admiration', 'a favorable judgment')]},\n", " {'answer': 'apprehension',\n", " 'hint': 'synonyms for apprehension',\n", - " 'clues': [('dread', 'fearful expectation or anticipation'),\n", - " ('collar',\n", + " 'clues': [('pinch',\n", " 'the act of apprehending (especially apprehending a criminal)'),\n", - " ('apprehensiveness', 'fearful expectation or anticipation'),\n", - " ('pinch', 'the act of apprehending (especially apprehending a criminal)'),\n", + " ('dread', 'fearful expectation or anticipation'),\n", + " ('understanding', 'the cognitive condition of someone who understands'),\n", + " ('savvy', 'the cognitive condition of someone who understands'),\n", + " ('misgiving', 'painful expectation'),\n", + " ('catch', 'the act of apprehending (especially apprehending a criminal)'),\n", " ('taking into custody',\n", " 'the act of apprehending (especially apprehending a criminal)'),\n", + " ('apprehensiveness', 'fearful expectation or anticipation'),\n", + " ('discernment', 'the cognitive condition of someone who understands'),\n", " ('arrest',\n", " 'the act of apprehending (especially apprehending a criminal)'),\n", - " ('understanding', 'the cognitive condition of someone who understands'),\n", - " ('discernment', 'the cognitive condition of someone who understands'),\n", - " ('savvy', 'the cognitive condition of someone who understands'),\n", - " ('misgiving', 'painful expectation'),\n", - " ('catch',\n", + " ('collar',\n", " 'the act of apprehending (especially apprehending a criminal)')]},\n", " {'answer': 'approach',\n", " 'hint': 'synonyms for approach',\n", - " 'clues': [('approach shot',\n", + " 'clues': [('approaching',\n", + " 'the event of one object coming closer to another'),\n", + " ('approach path',\n", + " 'the final path followed by an aircraft as it is landing'),\n", + " ('advance',\n", + " 'a tentative suggestion designed to elicit the reactions of others'),\n", + " ('approach shot',\n", " 'a relatively short golf shot intended to put the ball onto the putting green'),\n", + " ('coming', 'the temporal property of becoming nearer in time'),\n", " ('feeler',\n", " 'a tentative suggestion designed to elicit the reactions of others'),\n", - " ('attack',\n", + " ('plan of attack',\n", " 'ideas or actions intended to deal with a problem or situation'),\n", + " ('glide path', 'the final path followed by an aircraft as it is landing'),\n", " ('glide slope',\n", " 'the final path followed by an aircraft as it is landing'),\n", - " ('coming', 'the temporal property of becoming nearer in time'),\n", - " ('overture',\n", - " 'a tentative suggestion designed to elicit the reactions of others'),\n", - " ('advance',\n", - " 'a tentative suggestion designed to elicit the reactions of others'),\n", - " ('approaching', 'the event of one object coming closer to another'),\n", - " ('glide path', 'the final path followed by an aircraft as it is landing'),\n", " ('access', 'a way of entering or leaving'),\n", - " ('approach path',\n", - " 'the final path followed by an aircraft as it is landing'),\n", - " ('plan of attack',\n", - " 'ideas or actions intended to deal with a problem or situation')]},\n", + " ('attack',\n", + " 'ideas or actions intended to deal with a problem or situation'),\n", + " ('overture',\n", + " 'a tentative suggestion designed to elicit the reactions of others')]},\n", " {'answer': 'approximation',\n", " 'hint': 'synonyms for approximation',\n", - " 'clues': [('estimate',\n", - " 'an approximate calculation of quantity or degree or worth'),\n", + " 'clues': [('bringing close together',\n", + " 'the act of bringing near or bringing together especially the cut edges of tissue'),\n", " ('idea', 'an approximate calculation of quantity or degree or worth'),\n", + " ('estimate', 'an approximate calculation of quantity or degree or worth'),\n", " ('estimation',\n", - " 'an approximate calculation of quantity or degree or worth'),\n", - " ('bringing close together',\n", - " 'the act of bringing near or bringing together especially the cut edges of tissue')]},\n", + " 'an approximate calculation of quantity or degree or worth')]},\n", " {'answer': 'appurtenance',\n", " 'hint': 'synonyms for appurtenance',\n", - " 'clues': [('accessory',\n", - " 'a supplementary component that improves capability'),\n", - " ('supplement', 'a supplementary component that improves capability'),\n", - " ('gear',\n", + " 'clues': [('gear',\n", " 'equipment consisting of miscellaneous articles needed for a particular operation or sport etc.'),\n", + " ('supplement', 'a supplementary component that improves capability'),\n", + " ('accessory', 'a supplementary component that improves capability'),\n", " ('paraphernalia',\n", " 'equipment consisting of miscellaneous articles needed for a particular operation or sport etc.'),\n", " ('add-on', 'a supplementary component that improves capability')]},\n", " {'answer': 'aqua',\n", " 'hint': 'synonyms for aqua',\n", - " 'clues': [('greenish blue', 'a shade of blue tinged with green'),\n", - " ('cobalt blue', 'a shade of blue tinged with green'),\n", + " 'clues': [('aquamarine', 'a shade of blue tinged with green'),\n", " ('peacock blue', 'a shade of blue tinged with green'),\n", - " ('turquoise', 'a shade of blue tinged with green'),\n", - " ('aquamarine', 'a shade of blue tinged with green')]},\n", + " ('cobalt blue', 'a shade of blue tinged with green'),\n", + " ('greenish blue', 'a shade of blue tinged with green'),\n", + " ('turquoise', 'a shade of blue tinged with green')]},\n", " {'answer': 'aquamarine',\n", " 'hint': 'synonyms for aquamarine',\n", " 'clues': [('aqua', 'a shade of blue tinged with green'),\n", - " ('greenish blue', 'a shade of blue tinged with green'),\n", - " ('cobalt blue', 'a shade of blue tinged with green'),\n", " ('peacock blue', 'a shade of blue tinged with green'),\n", + " ('cobalt blue', 'a shade of blue tinged with green'),\n", + " ('greenish blue', 'a shade of blue tinged with green'),\n", " ('turquoise', 'a shade of blue tinged with green')]},\n", " {'answer': 'arbalest',\n", " 'hint': 'synonyms for arbalest',\n", - " 'clues': [('trebucket',\n", - " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('ballista',\n", + " 'clues': [('mangonel',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('mangonel',\n", + " ('trebucket',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", " ('catapult',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('bricole',\n", + " ('arbalist',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", " ('onager',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('arbalist',\n", + " ('ballista',\n", + " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", + " ('bricole',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles')]},\n", " {'answer': 'arbalist',\n", " 'hint': 'synonyms for arbalist',\n", - " 'clues': [('trebucket',\n", - " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('ballista',\n", + " 'clues': [('mangonel',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('mangonel',\n", + " ('trebucket',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", " ('catapult',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", + " ('onager',\n", + " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", + " ('ballista',\n", + " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", " ('arbalest',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", " ('bricole',\n", - " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('onager',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles')]},\n", " {'answer': 'arbitrariness',\n", " 'hint': 'synonyms for arbitrariness',\n", - " 'clues': [('whimsy',\n", + " 'clues': [('whimsey',\n", " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment'),\n", - " ('flightiness',\n", + " ('whimsicality',\n", " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment'),\n", " ('capriciousness',\n", " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment'),\n", - " ('whimsicality',\n", + " ('flightiness',\n", " 'the trait of acting unpredictably and more from whim or caprice than from reason or judgment')]},\n", " {'answer': 'arbor',\n", " 'hint': 'synonyms for arbor',\n", - " 'clues': [('arbour', 'a framework that supports climbing plants'),\n", - " ('pergola', 'a framework that supports climbing plants'),\n", - " ('spindle',\n", + " 'clues': [('bower', 'a framework that supports climbing plants'),\n", + " ('mandril',\n", " 'any of various rotating shafts that serve as axes for larger rotating parts'),\n", - " ('mandrel',\n", + " ('arbour', 'a framework that supports climbing plants'),\n", + " ('spindle',\n", " 'any of various rotating shafts that serve as axes for larger rotating parts'),\n", - " ('bower', 'a framework that supports climbing plants')]},\n", + " ('pergola', 'a framework that supports climbing plants')]},\n", " {'answer': 'arc',\n", " 'hint': 'synonyms for arc',\n", " 'clues': [('discharge',\n", " 'electrical conduction through a gas in an applied electric field'),\n", " ('electric arc',\n", " 'electrical conduction through a gas in an applied electric field'),\n", + " ('spark',\n", + " 'electrical conduction through a gas in an applied electric field'),\n", " ('electric discharge',\n", " 'electrical conduction through a gas in an applied electric field'),\n", - " ('bow', 'something curved in shape'),\n", - " ('spark',\n", - " 'electrical conduction through a gas in an applied electric field')]},\n", + " ('bow', 'something curved in shape')]},\n", " {'answer': 'archness',\n", " 'hint': 'synonyms for archness',\n", - " 'clues': [('pertness', 'inappropriate playfulness'),\n", + " 'clues': [('impertinence', 'inappropriate playfulness'),\n", " ('perkiness', 'inappropriate playfulness'),\n", - " ('sauciness', 'inappropriate playfulness'),\n", - " ('impertinence', 'inappropriate playfulness')]},\n", + " ('pertness', 'inappropriate playfulness'),\n", + " ('sauciness', 'inappropriate playfulness')]},\n", " {'answer': 'ardor',\n", " 'hint': 'synonyms for ardor',\n", - " 'clues': [('fervency', 'feelings of great warmth and intensity'),\n", + " 'clues': [('fervour', 'feelings of great warmth and intensity'),\n", + " ('ardour', 'feelings of great warmth and intensity'),\n", " ('fire', 'feelings of great warmth and intensity'),\n", + " ('fervidness', 'feelings of great warmth and intensity'),\n", " ('zeal',\n", " 'a feeling of strong eagerness (usually in favor of a person or cause)'),\n", - " ('fervidness', 'feelings of great warmth and intensity'),\n", - " ('ardour', 'intense feeling of love'),\n", - " ('fervour', 'feelings of great warmth and intensity'),\n", + " ('fervency', 'feelings of great warmth and intensity'),\n", " ('elan',\n", " 'a feeling of strong eagerness (usually in favor of a person or cause)')]},\n", " {'answer': 'ardour',\n", " 'hint': 'synonyms for ardour',\n", - " 'clues': [('ardor', 'intense feeling of love'),\n", - " ('fervency', 'feelings of great warmth and intensity'),\n", - " ('zeal',\n", - " 'a feeling of strong eagerness (usually in favor of a person or cause)'),\n", + " 'clues': [('fervour', 'feelings of great warmth and intensity'),\n", + " ('ardor', 'feelings of great warmth and intensity'),\n", " ('fire', 'feelings of great warmth and intensity'),\n", " ('fervidness', 'feelings of great warmth and intensity'),\n", - " ('fervour', 'feelings of great warmth and intensity'),\n", + " ('zeal',\n", + " 'a feeling of strong eagerness (usually in favor of a person or cause)'),\n", + " ('fervency', 'feelings of great warmth and intensity'),\n", " ('elan',\n", " 'a feeling of strong eagerness (usually in favor of a person or cause)')]},\n", " {'answer': 'arena',\n", " 'hint': 'synonyms for arena',\n", " 'clues': [('scene of action',\n", " 'a playing field where sports events take place'),\n", - " ('sports stadium',\n", - " 'a large structure for open-air sports or entertainments'),\n", + " ('bowl', 'a large structure for open-air sports or entertainments'),\n", " ('stadium', 'a large structure for open-air sports or entertainments'),\n", - " ('bowl', 'a large structure for open-air sports or entertainments')]},\n", + " ('sports stadium',\n", + " 'a large structure for open-air sports or entertainments')]},\n", " {'answer': 'argot',\n", " 'hint': 'synonyms for argot',\n", - " 'clues': [('lingo',\n", + " 'clues': [('cant',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", " ('patois',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", " ('slang',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", - " ('vernacular',\n", - " 'a characteristic language of a particular group (as among thieves)'),\n", - " ('cant',\n", + " ('lingo',\n", " 'a characteristic language of a particular group (as among thieves)'),\n", " ('jargon',\n", + " 'a characteristic language of a particular group (as among thieves)'),\n", + " ('vernacular',\n", " 'a characteristic language of a particular group (as among thieves)')]},\n", " {'answer': 'arguing',\n", " 'hint': 'synonyms for arguing',\n", - " 'clues': [('disceptation',\n", + " 'clues': [('argument',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", " ('contention',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", - " ('argument',\n", + " ('disceptation',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", " ('contestation',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", - " ('tilt',\n", - " 'a contentious speech act; a dispute where there is strong disagreement'),\n", " ('controversy',\n", + " 'a contentious speech act; a dispute where there is strong disagreement'),\n", + " ('tilt',\n", " 'a contentious speech act; a dispute where there is strong disagreement')]},\n", " {'answer': 'argument',\n", " 'hint': 'synonyms for argument',\n", - " 'clues': [('literary argument',\n", - " 'a summary of the subject or plot of a literary work or play or movie'),\n", - " ('disputation',\n", + " 'clues': [('line of reasoning',\n", + " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", + " ('statement',\n", + " 'a fact or assertion offered as evidence that something is true'),\n", + " ('argumentation',\n", + " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", + " ('disceptation',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", - " ('contention',\n", + " ('debate',\n", + " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n", + " ('controversy',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", " ('line',\n", " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", - " ('contestation',\n", + " ('parameter',\n", + " '(computer science) a reference or value that is passed to a function, procedure, subroutine, command, or program'),\n", + " ('literary argument',\n", + " 'a summary of the subject or plot of a literary work or play or movie'),\n", + " ('contention',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", - " ('tilt',\n", + " ('logical argument',\n", + " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", + " ('contestation',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", " ('arguing',\n", " 'a contentious speech act; a dispute where there is strong disagreement'),\n", - " ('logical argument',\n", - " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", - " ('argumentation',\n", - " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", - " ('line of reasoning',\n", - " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", - " ('parameter',\n", - " '(computer science) a reference or value that is passed to a function, procedure, subroutine, command, or program'),\n", - " ('debate',\n", - " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n", - " ('statement',\n", - " 'a fact or assertion offered as evidence that something is true'),\n", - " ('controversy',\n", + " ('tilt',\n", " 'a contentious speech act; a dispute where there is strong disagreement')]},\n", " {'answer': 'argumentation',\n", " 'hint': 'synonyms for argumentation',\n", - " 'clues': [('debate',\n", - " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n", - " ('argument',\n", + " 'clues': [('argument',\n", " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n", - " ('logical argument',\n", - " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", " ('line of reasoning',\n", " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", + " ('logical argument',\n", + " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning'),\n", + " ('debate',\n", + " 'a discussion in which reasons are advanced for and against some proposition or proposal'),\n", " ('line',\n", " 'a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning')]},\n", " {'answer': 'arm',\n", " 'hint': 'synonyms for arm',\n", - " 'clues': [('weapon',\n", - " 'any instrument or instrumentality used in fighting or hunting'),\n", + " 'clues': [('subdivision',\n", + " 'a division of some larger or more complex organization'),\n", + " ('limb', 'any projection that is thought to resemble a human arm'),\n", + " ('branch', 'any projection that is thought to resemble a human arm'),\n", " ('weapon system',\n", " 'any instrument or instrumentality used in fighting or hunting'),\n", + " ('weapon',\n", + " 'any instrument or instrumentality used in fighting or hunting'),\n", " ('sleeve',\n", - " 'the part of a garment that is attached at the armhole and that provides a cloth covering for the arm'),\n", - " ('subdivision', 'a division of some larger or more complex organization'),\n", - " ('branch', 'any projection that is thought to resemble a human arm'),\n", - " ('limb', 'any projection that is thought to resemble a human arm')]},\n", + " 'the part of a garment that is attached at the armhole and that provides a cloth covering for the arm')]},\n", " {'answer': 'armed_forces',\n", " 'hint': 'synonyms for armed forces',\n", " 'clues': [('war machine', 'the military forces of a nation'),\n", - " ('military', 'the military forces of a nation'),\n", + " ('armed services', 'the military forces of a nation'),\n", " ('military machine', 'the military forces of a nation'),\n", - " ('armed services', 'the military forces of a nation')]},\n", + " ('military', 'the military forces of a nation')]},\n", " {'answer': 'armed_services',\n", " 'hint': 'synonyms for armed services',\n", " 'clues': [('armed service',\n", " 'a force that is a branch of the armed forces'),\n", - " ('service', 'a force that is a branch of the armed forces'),\n", " ('military service', 'a force that is a branch of the armed forces'),\n", + " ('service', 'a force that is a branch of the armed forces'),\n", " ('war machine', 'the military forces of a nation'),\n", - " ('armed forces', 'the military forces of a nation'),\n", " ('military', 'the military forces of a nation'),\n", + " ('armed forces', 'the military forces of a nation'),\n", " ('military machine', 'the military forces of a nation')]},\n", " {'answer': 'arms',\n", " 'hint': 'synonyms for arms',\n", - " 'clues': [('weapon',\n", - " 'any instrument or instrumentality used in fighting or hunting'),\n", - " ('sleeve',\n", - " 'the part of a garment that is attached at the armhole and that provides a cloth covering for the arm'),\n", - " ('subdivision', 'a division of some larger or more complex organization'),\n", + " 'clues': [('munition', 'weapons considered collectively'),\n", " ('coat of arms', 'the official symbols of a family, state, etc.'),\n", - " ('munition', 'weapons considered collectively'),\n", - " ('blazonry', 'the official symbols of a family, state, etc.'),\n", - " ('arm', 'a division of some larger or more complex organization'),\n", - " ('weapons system', 'weapons considered collectively'),\n", - " ('implements of war', 'weapons considered collectively'),\n", " ('limb', 'any projection that is thought to resemble a human arm'),\n", - " ('branch', 'a division of some larger or more complex organization')]},\n", + " ('arm', 'any instrument or instrumentality used in fighting or hunting'),\n", + " ('branch', 'any projection that is thought to resemble a human arm'),\n", + " ('implements of war', 'weapons considered collectively'),\n", + " ('blazon', 'the official symbols of a family, state, etc.'),\n", + " ('weapons system', 'weapons considered collectively'),\n", + " ('weaponry', 'weapons considered collectively'),\n", + " ('subdivision', 'a division of some larger or more complex organization'),\n", + " ('sleeve',\n", + " 'the part of a garment that is attached at the armhole and that provides a cloth covering for the arm')]},\n", " {'answer': 'aroma',\n", " 'hint': 'synonyms for aroma',\n", - " 'clues': [('perfume', 'a distinctive odor that is pleasant'),\n", - " ('odour', 'any property detected by the olfactory system'),\n", + " 'clues': [('scent', 'a distinctive odor that is pleasant'),\n", + " ('odor', 'any property detected by the olfactory system'),\n", " ('fragrance', 'a distinctive odor that is pleasant'),\n", - " ('scent', 'any property detected by the olfactory system'),\n", - " ('smell', 'any property detected by the olfactory system'),\n", - " ('olfactory property', 'any property detected by the olfactory system')]},\n", + " ('perfume', 'a distinctive odor that is pleasant'),\n", + " ('olfactory property', 'any property detected by the olfactory system'),\n", + " ('smell', 'any property detected by the olfactory system')]},\n", " {'answer': 'arrangement',\n", " 'hint': 'synonyms for arrangement',\n", - " 'clues': [('placement',\n", - " 'the spatial property of the way in which something is placed'),\n", - " ('musical arrangement',\n", + " 'clues': [('musical arrangement',\n", " 'a piece of music that has been adapted for performance by a particular set of voices or instruments'),\n", + " ('organization', 'an organized structure for arranging or classifying'),\n", " ('agreement', 'the thing arranged or agreed to'),\n", " ('system', 'an organized structure for arranging or classifying'),\n", - " ('organisation', 'an organized structure for arranging or classifying'),\n", - " ('transcription', 'the act of arranging and adapting a piece of music'),\n", - " ('arranging', 'the act of arranging and adapting a piece of music')]},\n", + " ('arranging', 'the act of arranging and adapting a piece of music'),\n", + " ('placement',\n", + " 'the spatial property of the way in which something is placed'),\n", + " ('transcription', 'the act of arranging and adapting a piece of music')]},\n", " {'answer': 'arrest',\n", " 'hint': 'synonyms for arrest',\n", - " 'clues': [('collar',\n", - " 'the act of apprehending (especially apprehending a criminal)'),\n", - " ('pinch', 'the act of apprehending (especially apprehending a criminal)'),\n", - " ('apprehension',\n", + " 'clues': [('pinch',\n", " 'the act of apprehending (especially apprehending a criminal)'),\n", + " ('catch', 'the act of apprehending (especially apprehending a criminal)'),\n", " ('taking into custody',\n", " 'the act of apprehending (especially apprehending a criminal)'),\n", - " ('catch',\n", + " ('apprehension',\n", + " 'the act of apprehending (especially apprehending a criminal)'),\n", + " ('collar',\n", " 'the act of apprehending (especially apprehending a criminal)')]},\n", " {'answer': 'arrivederci',\n", " 'hint': 'synonyms for arrivederci',\n", - " 'clues': [('au revoir', 'a farewell remark'),\n", - " ('good-by', 'a farewell remark'),\n", - " ('good day', 'a farewell remark'),\n", - " ('adios', 'a farewell remark'),\n", + " 'clues': [('goodbye', 'a farewell remark'),\n", + " ('sayonara', 'a farewell remark'),\n", " ('adieu', 'a farewell remark'),\n", + " ('au revoir', 'a farewell remark'),\n", " ('bye', 'a farewell remark'),\n", - " ('so long', 'a farewell remark'),\n", - " ('bye-bye', 'a farewell remark'),\n", " ('auf wiedersehen', 'a farewell remark'),\n", - " ('sayonara', 'a farewell remark'),\n", - " ('cheerio', 'a farewell remark')]},\n", + " ('bye-bye', 'a farewell remark'),\n", + " ('adios', 'a farewell remark'),\n", + " ('so long', 'a farewell remark'),\n", + " ('cheerio', 'a farewell remark'),\n", + " ('good day', 'a farewell remark')]},\n", " {'answer': 'arrogance',\n", " 'hint': 'synonyms for arrogance',\n", - " 'clues': [('high-handedness',\n", + " 'clues': [('hauteur',\n", " 'overbearing pride evidenced by a superior manner toward inferiors'),\n", - " ('hauteur',\n", + " ('haughtiness',\n", " 'overbearing pride evidenced by a superior manner toward inferiors'),\n", - " ('lordliness',\n", + " ('high-handedness',\n", " 'overbearing pride evidenced by a superior manner toward inferiors'),\n", - " ('haughtiness',\n", + " ('lordliness',\n", " 'overbearing pride evidenced by a superior manner toward inferiors')]},\n", " {'answer': 'arsenic',\n", " 'hint': 'synonyms for arsenic',\n", - " 'clues': [('arsenous anhydride',\n", + " 'clues': [('ratsbane',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('atomic number 33',\n", " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", - " ('ratsbane',\n", - " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('arsenic trioxide',\n", - " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('arsenous oxide',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", + " ('arsenous anhydride',\n", + " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('white arsenic',\n", + " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", + " ('arsenic trioxide',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n", " {'answer': 'arsenic_trioxide',\n", " 'hint': 'synonyms for arsenic trioxide',\n", - " 'clues': [('arsenous anhydride',\n", + " 'clues': [('ratsbane',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('ratsbane',\n", + " ('arsenous oxide',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('arsenic',\n", + " ('arsenous anhydride',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('arsenous oxide',\n", + " ('arsenic',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('white arsenic',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n", @@ -31573,1449 +31612,1440 @@ " 'hint': 'synonyms for arsenous anhydride',\n", " 'clues': [('ratsbane',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('arsenic',\n", - " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('arsenic trioxide',\n", - " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('arsenous oxide',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", + " ('arsenic',\n", + " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('white arsenic',\n", + " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", + " ('arsenic trioxide',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n", " {'answer': 'arsenous_oxide',\n", " 'hint': 'synonyms for arsenous oxide',\n", - " 'clues': [('arsenous anhydride',\n", + " 'clues': [('ratsbane',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('ratsbane',\n", + " ('arsenous anhydride',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('arsenic',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", - " ('arsenic trioxide',\n", - " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", " ('white arsenic',\n", + " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer'),\n", + " ('arsenic trioxide',\n", " 'a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer')]},\n", " {'answer': 'art',\n", " 'hint': 'synonyms for art',\n", - " 'clues': [('artistic production',\n", - " 'the creation of beautiful or significant things'),\n", + " 'clues': [('prowess',\n", + " 'a superior skill that you can learn by study and practice and observation'),\n", + " ('artistic creation', 'the creation of beautiful or significant things'),\n", " ('artwork',\n", " 'photographs or other visual representations in a printed publication'),\n", + " ('artistic production',\n", + " 'the creation of beautiful or significant things'),\n", + " ('graphics',\n", + " 'photographs or other visual representations in a printed publication'),\n", " ('fine art',\n", " 'the products of human creativity; works of art collectively'),\n", " ('artistry',\n", " 'a superior skill that you can learn by study and practice and observation'),\n", - " ('graphics',\n", - " 'photographs or other visual representations in a printed publication'),\n", " ('nontextual matter',\n", - " 'photographs or other visual representations in a printed publication'),\n", - " ('prowess',\n", - " 'a superior skill that you can learn by study and practice and observation'),\n", - " ('artistic creation',\n", - " 'the creation of beautiful or significant things')]},\n", + " 'photographs or other visual representations in a printed publication')]},\n", " {'answer': 'article_of_clothing',\n", " 'hint': 'synonyms for article of clothing',\n", - " 'clues': [('vesture', \"a covering designed to be worn on a person's body\"),\n", - " ('wearable', \"a covering designed to be worn on a person's body\"),\n", - " ('clothing', \"a covering designed to be worn on a person's body\"),\n", + " 'clues': [('wearable',\n", + " \"a covering designed to be worn on a person's body\"),\n", + " ('vesture', \"a covering designed to be worn on a person's body\"),\n", " ('habiliment', \"a covering designed to be worn on a person's body\"),\n", + " ('clothing', \"a covering designed to be worn on a person's body\"),\n", " ('wear', \"a covering designed to be worn on a person's body\")]},\n", " {'answer': 'articulated_lorry',\n", " 'hint': 'synonyms for articulated lorry',\n", - " 'clues': [('rig', 'a truck consisting of a tractor and trailer together'),\n", - " ('tractor trailer',\n", + " 'clues': [('trucking rig',\n", " 'a truck consisting of a tractor and trailer together'),\n", - " ('trucking rig', 'a truck consisting of a tractor and trailer together'),\n", + " ('rig', 'a truck consisting of a tractor and trailer together'),\n", " ('trailer truck', 'a truck consisting of a tractor and trailer together'),\n", + " ('tractor trailer',\n", + " 'a truck consisting of a tractor and trailer together'),\n", " ('semi', 'a truck consisting of a tractor and trailer together')]},\n", " {'answer': 'articulation',\n", " 'hint': 'synonyms for articulation',\n", - " 'clues': [('junction',\n", - " 'the shape or manner in which things come together and a connection is made'),\n", - " ('join',\n", + " 'clues': [('voice', 'expressing in coherent verbal form'),\n", + " ('junction',\n", " 'the shape or manner in which things come together and a connection is made'),\n", - " ('voice', 'expressing in coherent verbal form'),\n", " ('juncture',\n", + " 'the shape or manner in which things come together and a connection is made'),\n", + " ('join',\n", " 'the shape or manner in which things come together and a connection is made')]},\n", " {'answer': 'artillery',\n", " 'hint': 'synonyms for artillery',\n", - " 'clues': [('weapon', 'a means of persuading or arguing'),\n", - " ('artillery unit', 'an army unit that uses big guns'),\n", + " 'clues': [('artillery unit', 'an army unit that uses big guns'),\n", " ('heavy weapon', 'large but transportable armament'),\n", " ('gun', 'large but transportable armament'),\n", - " ('ordnance', 'large but transportable armament')]},\n", + " ('ordnance', 'large but transportable armament'),\n", + " ('weapon', 'a means of persuading or arguing')]},\n", " {'answer': 'arts',\n", " 'hint': 'synonyms for arts',\n", - " 'clues': [('artwork',\n", - " 'photographs or other visual representations in a printed publication'),\n", - " ('liberal arts',\n", - " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)'),\n", - " ('fine art',\n", - " 'the products of human creativity; works of art collectively'),\n", + " 'clues': [('prowess',\n", + " 'a superior skill that you can learn by study and practice and observation'),\n", + " ('artistic creation', 'the creation of beautiful or significant things'),\n", + " ('artistic production',\n", + " 'the creation of beautiful or significant things'),\n", " ('humanities',\n", " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)'),\n", - " ('graphics',\n", - " 'photographs or other visual representations in a printed publication'),\n", " ('nontextual matter',\n", " 'photographs or other visual representations in a printed publication'),\n", - " ('prowess',\n", - " 'a superior skill that you can learn by study and practice and observation'),\n", - " ('art', 'the creation of beautiful or significant things'),\n", - " ('artistic production',\n", - " 'the creation of beautiful or significant things'),\n", - " ('artistry',\n", + " ('art',\n", " 'a superior skill that you can learn by study and practice and observation'),\n", " ('humanistic discipline',\n", " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)'),\n", - " ('artistic creation',\n", - " 'the creation of beautiful or significant things')]},\n", + " ('artwork',\n", + " 'photographs or other visual representations in a printed publication'),\n", + " ('graphics',\n", + " 'photographs or other visual representations in a printed publication'),\n", + " ('fine art',\n", + " 'the products of human creativity; works of art collectively'),\n", + " ('artistry',\n", + " 'a superior skill that you can learn by study and practice and observation'),\n", + " ('liberal arts',\n", + " 'studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills)')]},\n", " {'answer': 'asa_dulcis',\n", " 'hint': 'synonyms for asa dulcis',\n", - " 'clues': [('gum benzoin',\n", + " 'clues': [('benzoin',\n", " 'gum resin used especially in treating skin irritation'),\n", - " ('benzoin', 'gum resin used especially in treating skin irritation'),\n", - " ('benjamin', 'gum resin used especially in treating skin irritation'),\n", - " ('gum benjamin',\n", - " 'gum resin used especially in treating skin irritation')]},\n", + " ('gum benzoin', 'gum resin used especially in treating skin irritation'),\n", + " ('gum benjamin', 'gum resin used especially in treating skin irritation'),\n", + " ('benjamin', 'gum resin used especially in treating skin irritation')]},\n", " {'answer': 'ascension',\n", " 'hint': 'synonyms for ascension',\n", - " 'clues': [('ascent',\n", - " 'the act of changing location in an upward direction'),\n", - " ('rise', 'a movement upward'),\n", + " 'clues': [('rise', 'the act of changing location in an upward direction'),\n", " ('ascending', 'the act of changing location in an upward direction'),\n", + " ('ascent', 'the act of changing location in an upward direction'),\n", " ('rising', 'a movement upward')]},\n", " {'answer': 'ascent',\n", " 'hint': 'synonyms for ascent',\n", - " 'clues': [('rise', 'a movement upward'),\n", - " ('climb', 'an upward slope or grade (as in a road)'),\n", - " ('upgrade', 'an upward slope or grade (as in a road)'),\n", - " ('rising', 'a movement upward'),\n", + " 'clues': [('rise', 'an upward slope or grade (as in a road)'),\n", " ('acclivity', 'an upward slope or grade (as in a road)'),\n", " ('ascension', 'the act of changing location in an upward direction'),\n", - " ('ascending', 'the act of changing location in an upward direction')]},\n", + " ('rising', 'a movement upward'),\n", + " ('ascending', 'the act of changing location in an upward direction'),\n", + " ('upgrade', 'an upward slope or grade (as in a road)'),\n", + " ('climb', 'an upward slope or grade (as in a road)')]},\n", " {'answer': 'ash-bin',\n", " 'hint': 'synonyms for ash-bin',\n", - " 'clues': [('trash barrel',\n", - " 'a bin that holds rubbish until it is collected'),\n", - " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", + " 'clues': [('ashbin', 'a bin that holds rubbish until it is collected'),\n", " ('ashcan', 'a bin that holds rubbish until it is collected'),\n", - " ('wastebin', 'a bin that holds rubbish until it is collected'),\n", - " ('ashbin', 'a bin that holds rubbish until it is collected'),\n", " ('garbage can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", + " ('trash can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", " ('dustbin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash can', 'a bin that holds rubbish until it is collected')]},\n", + " ('wastebin', 'a bin that holds rubbish until it is collected')]},\n", " {'answer': 'ash_bin',\n", " 'hint': 'synonyms for ash bin',\n", - " 'clues': [('ash-bin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", - " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", + " 'clues': [('ashbin', 'a bin that holds rubbish until it is collected'),\n", " ('ashcan', 'a bin that holds rubbish until it is collected'),\n", - " ('wastebin', 'a bin that holds rubbish until it is collected'),\n", " ('garbage can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", " ('dustbin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash can', 'a bin that holds rubbish until it is collected')]},\n", + " ('wastebin', 'a bin that holds rubbish until it is collected'),\n", + " ('trash bin', 'a bin that holds rubbish until it is collected')]},\n", " {'answer': 'ashbin',\n", " 'hint': 'synonyms for ashbin',\n", - " 'clues': [('ash-bin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", - " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", - " ('ashcan', 'a bin that holds rubbish until it is collected'),\n", - " ('wastebin', 'a bin that holds rubbish until it is collected'),\n", + " 'clues': [('ashcan', 'a bin that holds rubbish until it is collected'),\n", + " ('ash-bin', 'a bin that holds rubbish until it is collected'),\n", " ('garbage can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", + " ('trash can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", " ('dustbin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash can', 'a bin that holds rubbish until it is collected')]},\n", + " ('wastebin', 'a bin that holds rubbish until it is collected')]},\n", " {'answer': 'ashcan',\n", " 'hint': 'synonyms for ashcan',\n", - " 'clues': [('ash-bin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", - " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", - " ('wastebin', 'a bin that holds rubbish until it is collected'),\n", + " 'clues': [('ashbin', 'a bin that holds rubbish until it is collected'),\n", " ('garbage can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash bin', 'a bin that holds rubbish until it is collected'),\n", + " ('trash can', 'a bin that holds rubbish until it is collected'),\n", + " ('trash barrel', 'a bin that holds rubbish until it is collected'),\n", " ('dustbin', 'a bin that holds rubbish until it is collected'),\n", - " ('trash can', 'a bin that holds rubbish until it is collected')]},\n", + " ('wastebin', 'a bin that holds rubbish until it is collected')]},\n", " {'answer': 'aspect',\n", " 'hint': 'synonyms for aspect',\n", - " 'clues': [('facet', 'a distinct feature or element in a problem'),\n", - " ('expression', \"the feelings expressed on a person's face\"),\n", + " 'clues': [('vista', 'the visual percept of a region'),\n", + " ('prospect', 'the visual percept of a region'),\n", + " ('facial expression', \"the feelings expressed on a person's face\"),\n", + " ('look', \"the feelings expressed on a person's face\"),\n", " ('panorama', 'the visual percept of a region'),\n", - " ('scene', 'the visual percept of a region'),\n", - " ('vista', 'the visual percept of a region'),\n", " ('view', 'the visual percept of a region'),\n", - " ('look', \"the feelings expressed on a person's face\"),\n", - " ('prospect', 'the visual percept of a region'),\n", - " ('facial expression', \"the feelings expressed on a person's face\")]},\n", + " ('expression', \"the feelings expressed on a person's face\"),\n", + " ('facet', 'a distinct feature or element in a problem'),\n", + " ('scene', 'the visual percept of a region')]},\n", " {'answer': 'asperity',\n", " 'hint': 'synonyms for asperity',\n", - " 'clues': [('grimness', 'something hard to endure'),\n", - " ('hardship', 'something hard to endure'),\n", - " ('severity', 'something hard to endure'),\n", - " ('rigorousness', 'something hard to endure'),\n", - " ('rigour', 'something hard to endure'),\n", + " 'clues': [('severity', 'something hard to endure'),\n", " ('sharpness', 'harshness of manner'),\n", - " ('severeness', 'something hard to endure')]},\n", + " ('severeness', 'something hard to endure'),\n", + " ('rigour', 'something hard to endure'),\n", + " ('hardship', 'something hard to endure'),\n", + " ('rigourousness', 'something hard to endure'),\n", + " ('grimness', 'something hard to endure')]},\n", " {'answer': 'aspersion',\n", " 'hint': 'synonyms for aspersion',\n", - " 'clues': [('sprinkling', 'the act of sprinkling water in baptism (rare)'),\n", - " ('calumny', \"an abusive attack on a person's character or good name\"),\n", - " ('denigration', \"an abusive attack on a person's character or good name\"),\n", - " ('defamation', \"an abusive attack on a person's character or good name\"),\n", + " 'clues': [('defamation',\n", + " \"an abusive attack on a person's character or good name\"),\n", + " ('slander', \"an abusive attack on a person's character or good name\"),\n", " ('slur', 'a disparaging remark'),\n", - " ('slander', \"an abusive attack on a person's character or good name\")]},\n", + " ('calumny', \"an abusive attack on a person's character or good name\"),\n", + " ('sprinkling', 'the act of sprinkling water in baptism (rare)'),\n", + " ('denigration',\n", + " \"an abusive attack on a person's character or good name\")]},\n", " {'answer': 'aspiration',\n", " 'hint': 'synonyms for aspiration',\n", - " 'clues': [('breathing in',\n", + " 'clues': [('inspiration',\n", " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n", - " ('inspiration',\n", - " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n", - " ('ambition', 'a cherished desire'),\n", " ('dream', 'a cherished desire'),\n", " ('intake',\n", " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n", + " ('ambition', 'a cherished desire'),\n", " ('inhalation',\n", + " 'the act of inhaling; the drawing in of air (or other gases) as in breathing'),\n", + " ('breathing in',\n", " 'the act of inhaling; the drawing in of air (or other gases) as in breathing')]},\n", " {'answer': 'ass',\n", " 'hint': 'synonyms for ass',\n", - " 'clues': [('piece of tail', 'slang for sexual intercourse'),\n", - " ('nookie', 'slang for sexual intercourse'),\n", - " ('nooky', 'slang for sexual intercourse'),\n", + " 'clues': [('arsenic',\n", + " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", " ('piece of ass', 'slang for sexual intercourse'),\n", + " ('roll in the hay', 'slang for sexual intercourse'),\n", + " ('piece of tail', 'slang for sexual intercourse'),\n", + " ('shtup', 'slang for sexual intercourse'),\n", " ('screw', 'slang for sexual intercourse'),\n", - " ('arsenic',\n", - " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", + " ('nookie', 'slang for sexual intercourse'),\n", " ('atomic number 33',\n", " 'a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar'),\n", - " ('roll in the hay', 'slang for sexual intercourse'),\n", - " ('shag', 'slang for sexual intercourse'),\n", + " ('nooky', 'slang for sexual intercourse'),\n", " ('fucking', 'slang for sexual intercourse'),\n", - " ('shtup', 'slang for sexual intercourse')]},\n", + " ('shag', 'slang for sexual intercourse')]},\n", " {'answer': 'assemblage',\n", " 'hint': 'synonyms for assemblage',\n", " 'clues': [('assembly', 'the social act of assembling'),\n", - " ('collection',\n", - " 'several things grouped together or considered as a whole'),\n", - " ('aggregation',\n", - " 'several things grouped together or considered as a whole'),\n", - " ('gathering', 'the social act of assembling'),\n", " ('accumulation',\n", " 'several things grouped together or considered as a whole'),\n", " ('hookup',\n", - " 'a system of components assembled together for a particular purpose')]},\n", + " 'a system of components assembled together for a particular purpose'),\n", + " ('gathering', 'the social act of assembling'),\n", + " ('collection',\n", + " 'several things grouped together or considered as a whole'),\n", + " ('aggregation',\n", + " 'several things grouped together or considered as a whole')]},\n", " {'answer': 'assembly',\n", " 'hint': 'synonyms for assembly',\n", - " 'clues': [('forum', 'a public facility to meet for open discussion'),\n", + " 'clues': [('gathering', 'the social act of assembling'),\n", " ('meeting place', 'a public facility to meet for open discussion'),\n", + " ('assemblage', 'the social act of assembling'),\n", + " ('forum', 'a public facility to meet for open discussion'),\n", " ('fabrication',\n", - " 'the act of constructing something (as a piece of machinery)'),\n", - " ('gathering', 'the social act of assembling'),\n", - " ('assemblage', 'the social act of assembling')]},\n", + " 'the act of constructing something (as a piece of machinery)')]},\n", " {'answer': 'assertion',\n", " 'hint': 'synonyms for assertion',\n", - " 'clues': [('affirmation',\n", - " 'the act of affirming or asserting or stating something'),\n", + " 'clues': [('averment',\n", + " 'a declaration that is made emphatically (as if no supporting evidence were necessary)'),\n", + " ('affirmation', 'the act of affirming or asserting or stating something'),\n", " ('asseveration',\n", " 'a declaration that is made emphatically (as if no supporting evidence were necessary)'),\n", - " ('statement', 'the act of affirming or asserting or stating something'),\n", - " ('averment',\n", - " 'a declaration that is made emphatically (as if no supporting evidence were necessary)')]},\n", + " ('statement', 'the act of affirming or asserting or stating something')]},\n", " {'answer': 'assignation',\n", " 'hint': 'synonyms for assignation',\n", " 'clues': [('tryst', 'a secret rendezvous (especially between lovers)'),\n", - " ('allocation',\n", + " ('apportionment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('parceling',\n", + " ('parcelling',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('allotment',\n", + " ('apportioning',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('apportionment',\n", + " ('allocation',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan'),\n", - " ('apportioning',\n", + " ('allotment',\n", " 'the act of distributing by allotting or apportioning; distribution according to a plan')]},\n", " {'answer': 'assignment',\n", " 'hint': 'synonyms for assignment',\n", - " 'clues': [('designation',\n", + " 'clues': [('duty assignment',\n", + " 'a duty that you are assigned to perform (especially in the armed forces)'),\n", + " ('designation',\n", " 'the act of putting a person into a non-elective position'),\n", - " ('naming', 'the act of putting a person into a non-elective position'),\n", " ('grant', '(law) a transfer of property by deed of conveyance'),\n", - " ('duty assignment',\n", - " 'a duty that you are assigned to perform (especially in the armed forces)'),\n", - " ('assigning',\n", - " 'the act of distributing something to designated places or persons'),\n", " ('appointment',\n", - " 'the act of putting a person into a non-elective position')]},\n", + " 'the act of putting a person into a non-elective position'),\n", + " ('naming', 'the act of putting a person into a non-elective position'),\n", + " ('assigning',\n", + " 'the act of distributing something to designated places or persons')]},\n", " {'answer': 'assortment',\n", " 'hint': 'synonyms for assortment',\n", - " 'clues': [('compartmentalisation',\n", + " 'clues': [('smorgasbord',\n", + " 'a collection containing a variety of sorts of things'),\n", + " ('mixed bag', 'a collection containing a variety of sorts of things'),\n", + " ('potpourri', 'a collection containing a variety of sorts of things'),\n", + " ('categorisation',\n", " 'the act of distributing things into classes or categories of the same type'),\n", " ('miscellanea', 'a collection containing a variety of sorts of things'),\n", - " ('variety', 'a collection containing a variety of sorts of things'),\n", " ('mixture', 'a collection containing a variety of sorts of things'),\n", - " ('motley', 'a collection containing a variety of sorts of things'),\n", - " ('smorgasbord', 'a collection containing a variety of sorts of things'),\n", - " ('potpourri', 'a collection containing a variety of sorts of things'),\n", - " ('salmagundi', 'a collection containing a variety of sorts of things'),\n", " ('classification',\n", " 'the act of distributing things into classes or categories of the same type'),\n", - " ('categorisation',\n", + " ('variety', 'a collection containing a variety of sorts of things'),\n", + " ('motley', 'a collection containing a variety of sorts of things'),\n", + " ('compartmentalisation',\n", " 'the act of distributing things into classes or categories of the same type'),\n", - " ('mixed bag', 'a collection containing a variety of sorts of things')]},\n", + " ('salmagundi', 'a collection containing a variety of sorts of things')]},\n", " {'answer': 'assumption',\n", " 'hint': 'synonyms for assumption',\n", - " 'clues': [('laying claim',\n", - " 'the act of taking possession of or power over something'),\n", - " ('premiss',\n", + " 'clues': [('premiss',\n", " 'a statement that is assumed to be true and from which a conclusion can be drawn'),\n", - " ('supposition', 'a hypothesis that is taken for granted'),\n", - " ('presumptuousness',\n", + " ('supposal', 'a hypothesis that is taken for granted'),\n", + " ('laying claim',\n", + " 'the act of taking possession of or power over something'),\n", + " ('presumption',\n", " 'audacious (even arrogant) behavior that you have no right to'),\n", + " ('supposition', 'a hypothesis that is taken for granted'),\n", " ('effrontery',\n", " 'audacious (even arrogant) behavior that you have no right to'),\n", - " ('supposal', 'a hypothesis that is taken for granted'),\n", - " ('presumption',\n", + " ('presumptuousness',\n", " 'audacious (even arrogant) behavior that you have no right to')]},\n", " {'answer': 'assurance',\n", " 'hint': 'synonyms for assurance',\n", - " 'clues': [('confidence',\n", + " 'clues': [('self-confidence',\n", " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('pledge',\n", " 'a binding commitment to do or give or refrain from something'),\n", - " ('sureness', 'freedom from doubt; belief in yourself and your abilities'),\n", - " ('self-confidence',\n", - " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('authority',\n", " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('self-assurance',\n", + " 'freedom from doubt; belief in yourself and your abilities'),\n", + " ('confidence',\n", + " 'freedom from doubt; belief in yourself and your abilities'),\n", + " ('sureness',\n", " 'freedom from doubt; belief in yourself and your abilities')]},\n", " {'answer': 'assuredness',\n", " 'hint': 'synonyms for assuredness',\n", - " 'clues': [('cool', 'great coolness and composure under strain'),\n", - " ('poise', 'great coolness and composure under strain'),\n", - " ('aplomb', 'great coolness and composure under strain'),\n", - " ('sang-froid', 'great coolness and composure under strain')]},\n", + " 'clues': [('poise', 'great coolness and composure under strain'),\n", + " ('cool', 'great coolness and composure under strain'),\n", + " ('sang-froid', 'great coolness and composure under strain'),\n", + " ('aplomb', 'great coolness and composure under strain')]},\n", " {'answer': 'astuteness',\n", " 'hint': 'synonyms for astuteness',\n", - " 'clues': [('profundity',\n", - " 'the intellectual ability to penetrate deeply into ideas'),\n", - " ('shrewdness',\n", + " 'clues': [('perspicacity',\n", " 'intelligence manifested by being astute (as in business dealings)'),\n", - " ('depth', 'the intellectual ability to penetrate deeply into ideas'),\n", + " ('profundity', 'the intellectual ability to penetrate deeply into ideas'),\n", " ('deepness', 'the intellectual ability to penetrate deeply into ideas'),\n", " ('perspicaciousness',\n", " 'intelligence manifested by being astute (as in business dealings)'),\n", + " ('depth', 'the intellectual ability to penetrate deeply into ideas'),\n", " ('profoundness',\n", " 'the intellectual ability to penetrate deeply into ideas'),\n", - " ('perspicacity',\n", + " ('shrewdness',\n", " 'intelligence manifested by being astute (as in business dealings)')]},\n", " {'answer': 'asylum',\n", " 'hint': 'synonyms for asylum',\n", - " 'clues': [('mental home',\n", + " 'clues': [('mental institution',\n", " 'a hospital for mentally incompetent or unbalanced person'),\n", - " ('insane asylum',\n", + " ('mental home',\n", " 'a hospital for mentally incompetent or unbalanced person'),\n", + " ('refuge', 'a shelter from danger or hardship'),\n", " ('sanctuary', 'a shelter from danger or hardship'),\n", - " ('mental hospital',\n", - " 'a hospital for mentally incompetent or unbalanced person'),\n", - " ('psychiatric hospital',\n", - " 'a hospital for mentally incompetent or unbalanced person'),\n", " ('institution',\n", " 'a hospital for mentally incompetent or unbalanced person'),\n", - " ('mental institution',\n", + " ('insane asylum',\n", + " 'a hospital for mentally incompetent or unbalanced person'),\n", + " ('mental hospital',\n", " 'a hospital for mentally incompetent or unbalanced person'),\n", - " ('refuge', 'a shelter from danger or hardship')]},\n", + " ('psychiatric hospital',\n", + " 'a hospital for mentally incompetent or unbalanced person')]},\n", " {'answer': 'ataractic_agent',\n", " 'hint': 'synonyms for ataractic agent',\n", - " 'clues': [('tranquilliser',\n", + " 'clues': [('antianxiety agent',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('antianxiety agent',\n", + " ('ataractic',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('ataractic drug',\n", + " ('tranquilizer',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('ataractic',\n", + " ('ataractic drug',\n", " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n", " {'answer': 'ataractic_drug',\n", " 'hint': 'synonyms for ataractic drug',\n", - " 'clues': [('tranquilliser',\n", - " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", - " ('antianxiety agent',\n", + " 'clues': [('antianxiety agent',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", " ('ataractic',\n", " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", + " ('tranquilizer',\n", + " 'a drug used to reduce stress or tension without reducing mental clarity'),\n", " ('ataractic agent',\n", " 'a drug used to reduce stress or tension without reducing mental clarity')]},\n", " {'answer': 'ataraxis',\n", " 'hint': 'synonyms for ataraxis',\n", " 'clues': [('heartsease', 'the absence of mental stress or anxiety'),\n", - " ('peace', 'the absence of mental stress or anxiety'),\n", - " ('peace of mind', 'the absence of mental stress or anxiety'),\n", - " ('serenity', 'the absence of mental stress or anxiety'),\n", " ('repose', 'the absence of mental stress or anxiety'),\n", - " ('peacefulness', 'the absence of mental stress or anxiety')]},\n", + " ('serenity', 'the absence of mental stress or anxiety'),\n", + " ('peace of mind', 'the absence of mental stress or anxiety'),\n", + " ('peacefulness', 'the absence of mental stress or anxiety'),\n", + " ('peace', 'the absence of mental stress or anxiety')]},\n", " {'answer': 'atherodyde',\n", " 'hint': 'synonyms for atherodyde',\n", - " 'clues': [('ramjet',\n", - " 'a simple type of jet engine; must be launched at high speed'),\n", - " ('flying drainpipe',\n", - " 'a simple type of jet engine; must be launched at high speed'),\n", - " ('ramjet engine',\n", + " 'clues': [('ramjet engine',\n", " 'a simple type of jet engine; must be launched at high speed'),\n", + " ('ramjet', 'a simple type of jet engine; must be launched at high speed'),\n", " ('athodyd',\n", + " 'a simple type of jet engine; must be launched at high speed'),\n", + " ('flying drainpipe',\n", " 'a simple type of jet engine; must be launched at high speed')]},\n", " {'answer': 'athletic_supporter',\n", " 'hint': 'synonyms for athletic supporter',\n", - " 'clues': [('jock',\n", + " 'clues': [('supporter',\n", " 'a support for the genitals worn by men engaging in strenuous exercise'),\n", " ('jockstrap',\n", " 'a support for the genitals worn by men engaging in strenuous exercise'),\n", - " ('suspensor',\n", + " ('jock',\n", " 'a support for the genitals worn by men engaging in strenuous exercise'),\n", - " ('supporter',\n", + " ('suspensor',\n", " 'a support for the genitals worn by men engaging in strenuous exercise')]},\n", " {'answer': 'athodyd',\n", " 'hint': 'synonyms for athodyd',\n", - " 'clues': [('ramjet',\n", - " 'a simple type of jet engine; must be launched at high speed'),\n", - " ('flying drainpipe',\n", + " 'clues': [('ramjet engine',\n", " 'a simple type of jet engine; must be launched at high speed'),\n", " ('atherodyde',\n", " 'a simple type of jet engine; must be launched at high speed'),\n", - " ('ramjet engine',\n", + " ('ramjet', 'a simple type of jet engine; must be launched at high speed'),\n", + " ('flying drainpipe',\n", " 'a simple type of jet engine; must be launched at high speed')]},\n", " {'answer': 'atm',\n", " 'hint': 'synonyms for atm',\n", - " 'clues': [('standard pressure',\n", - " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n", + " 'clues': [('cash machine',\n", + " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('atmosphere',\n", " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n", - " ('automated teller machine',\n", + " ('cash dispenser',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", + " ('standard atmosphere',\n", + " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n", " ('automated teller',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('cash dispenser',\n", + " ('automated teller machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('asynchronous transfer mode',\n", " 'a means of digital communications that is capable of very high speeds; suitable for transmission of images or voice or video as well as data'),\n", - " ('cash machine',\n", - " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('standard atmosphere',\n", + " ('standard pressure',\n", " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade')]},\n", " {'answer': 'atmosphere',\n", " 'hint': 'synonyms for atmosphere',\n", - " 'clues': [('standard pressure',\n", + " 'clues': [('atm',\n", " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n", " ('air',\n", " 'a distinctive but intangible quality surrounding a person or thing'),\n", - " ('atm',\n", + " ('standard pressure',\n", " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n", - " ('aura',\n", - " 'a distinctive but intangible quality surrounding a person or thing'),\n", " ('standard atmosphere',\n", - " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade')]},\n", + " 'a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade'),\n", + " ('aura',\n", + " 'a distinctive but intangible quality surrounding a person or thing')]},\n", " {'answer': 'atom',\n", " 'hint': 'synonyms for atom',\n", - " 'clues': [('molecule', '(nontechnical usage) a tiny piece of anything'),\n", - " ('mote', '(nontechnical usage) a tiny piece of anything'),\n", - " ('speck', '(nontechnical usage) a tiny piece of anything'),\n", + " 'clues': [('particle', '(nontechnical usage) a tiny piece of anything'),\n", " ('corpuscle', '(nontechnical usage) a tiny piece of anything'),\n", - " ('particle', '(nontechnical usage) a tiny piece of anything')]},\n", + " ('mote', '(nontechnical usage) a tiny piece of anything'),\n", + " ('molecule', '(nontechnical usage) a tiny piece of anything'),\n", + " ('speck', '(nontechnical usage) a tiny piece of anything')]},\n", " {'answer': 'atomiser',\n", " 'hint': 'synonyms for atomiser',\n", - " 'clues': [('sprayer',\n", - " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", - " ('atomizer',\n", + " 'clues': [('nebuliser',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", " ('spray',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", - " ('nebuliser',\n", + " ('atomizer',\n", + " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", + " ('sprayer',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist')]},\n", " {'answer': 'atomizer',\n", " 'hint': 'synonyms for atomizer',\n", " 'clues': [('atomiser',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", - " ('sprayer',\n", + " ('nebuliser',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", " ('spray',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist'),\n", - " ('nebuliser',\n", + " ('sprayer',\n", " 'a dispenser that turns a liquid (such as perfume) into a fine mist')]},\n", " {'answer': 'atrociousness',\n", " 'hint': 'synonyms for atrociousness',\n", - " 'clues': [('barbarousness',\n", + " 'clues': [('barbarity',\n", " 'the quality of being shockingly cruel and inhumane'),\n", - " ('barbarity', 'the quality of being shockingly cruel and inhumane'),\n", - " ('atrocity', 'the quality of being shockingly cruel and inhumane'),\n", - " ('heinousness', 'the quality of being shockingly cruel and inhumane')]},\n", + " ('barbarousness', 'the quality of being shockingly cruel and inhumane'),\n", + " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n", + " ('atrocity', 'the quality of being shockingly cruel and inhumane')]},\n", " {'answer': 'atrocity',\n", " 'hint': 'synonyms for atrocity',\n", - " 'clues': [('atrociousness',\n", + " 'clues': [('barbarousness',\n", " 'the quality of being shockingly cruel and inhumane'),\n", + " ('atrociousness', 'the quality of being shockingly cruel and inhumane'),\n", " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n", - " ('barbarity', 'the quality of being shockingly cruel and inhumane'),\n", - " ('barbarousness', 'the quality of being shockingly cruel and inhumane'),\n", - " ('inhumanity', 'an act of atrocious cruelty')]},\n", + " ('inhumanity', 'an act of atrocious cruelty'),\n", + " ('barbarity', 'the quality of being shockingly cruel and inhumane')]},\n", " {'answer': 'attachment',\n", " 'hint': 'synonyms for attachment',\n", - " 'clues': [('affixation', 'the act of attaching or affixing something'),\n", - " ('adhesion',\n", - " 'faithful support for a cause or political party or religion'),\n", + " 'clues': [('bond', 'a connection that fastens things together'),\n", + " ('fastening', 'the act of fastening things together'),\n", " ('adherence',\n", " 'faithful support for a cause or political party or religion'),\n", - " ('fastening', 'the act of fastening things together'),\n", - " ('bond', 'a connection that fastens things together'),\n", - " ('fond regard',\n", - " 'a feeling of affection for a person or an institution')]},\n", + " ('adhesion',\n", + " 'faithful support for a cause or political party or religion'),\n", + " ('fond regard', 'a feeling of affection for a person or an institution'),\n", + " ('affixation', 'the act of attaching or affixing something')]},\n", " {'answer': 'attack',\n", " 'hint': 'synonyms for attack',\n", - " 'clues': [('onrush',\n", - " '(military) an offensive against an enemy (using weapons)'),\n", - " ('flak', 'intense adverse criticism'),\n", + " 'clues': [('fire', 'intense adverse criticism'),\n", " ('onset', '(military) an offensive against an enemy (using weapons)'),\n", - " ('blast', 'intense adverse criticism'),\n", - " ('fire', 'intense adverse criticism'),\n", " ('attempt', 'the act of attacking'),\n", - " ('onslaught', '(military) an offensive against an enemy (using weapons)'),\n", - " ('approach',\n", - " 'ideas or actions intended to deal with a problem or situation'),\n", " ('tone-beginning',\n", " 'a decisive manner of beginning a musical tone or phrase'),\n", + " ('approach',\n", + " 'ideas or actions intended to deal with a problem or situation'),\n", + " ('flack', 'intense adverse criticism'),\n", + " ('onrush', '(military) an offensive against an enemy (using weapons)'),\n", + " ('onslaught', '(military) an offensive against an enemy (using weapons)'),\n", + " ('blast', 'intense adverse criticism'),\n", " ('plan of attack',\n", " 'ideas or actions intended to deal with a problem or situation')]},\n", " {'answer': 'attainment',\n", " 'hint': 'synonyms for attainment',\n", " 'clues': [('skill', 'an ability that has been acquired by training'),\n", - " ('acquisition', 'an ability that has been acquired by training'),\n", " ('accomplishment', 'an ability that has been acquired by training'),\n", - " ('acquirement', 'an ability that has been acquired by training')]},\n", + " ('acquirement', 'an ability that has been acquired by training'),\n", + " ('acquisition', 'an ability that has been acquired by training')]},\n", " {'answer': 'attempt',\n", " 'hint': 'synonyms for attempt',\n", - " 'clues': [('try',\n", + " 'clues': [('endeavor',\n", " 'earnest and conscientious activity intended to do or accomplish something'),\n", - " ('endeavor',\n", + " ('try',\n", " 'earnest and conscientious activity intended to do or accomplish something'),\n", + " ('attack', 'the act of attacking'),\n", " ('effort',\n", - " 'earnest and conscientious activity intended to do or accomplish something'),\n", - " ('attack', 'the act of attacking')]},\n", + " 'earnest and conscientious activity intended to do or accomplish something')]},\n", " {'answer': 'attracter',\n", " 'hint': 'synonyms for attracter',\n", " 'clues': [('attractor',\n", - " '(physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system'),\n", - " ('magnet', 'a characteristic that provides pleasure and attracts'),\n", + " 'a characteristic that provides pleasure and attracts'),\n", " ('attraction', 'a characteristic that provides pleasure and attracts'),\n", + " ('magnet', 'a characteristic that provides pleasure and attracts'),\n", " ('attractive feature',\n", " 'a characteristic that provides pleasure and attracts')]},\n", " {'answer': 'attraction',\n", " 'hint': 'synonyms for attraction',\n", - " 'clues': [('attractiveness',\n", + " 'clues': [('attractor',\n", + " 'a characteristic that provides pleasure and attracts'),\n", + " ('attractive force', 'the force by which one object attracts another'),\n", + " ('attractiveness',\n", " 'the quality of arousing interest; being attractive or something that attracts'),\n", " ('magnet', 'a characteristic that provides pleasure and attracts'),\n", - " ('attracter', 'a characteristic that provides pleasure and attracts'),\n", " ('attractive feature',\n", - " 'a characteristic that provides pleasure and attracts'),\n", - " ('attractive force', 'the force by which one object attracts another')]},\n", + " 'a characteristic that provides pleasure and attracts')]},\n", " {'answer': 'attractor',\n", " 'hint': 'synonyms for attractor',\n", - " 'clues': [('magnet',\n", + " 'clues': [('attracter',\n", " 'a characteristic that provides pleasure and attracts'),\n", - " ('attracter',\n", - " '(physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system'),\n", " ('attraction', 'a characteristic that provides pleasure and attracts'),\n", + " ('magnet', 'a characteristic that provides pleasure and attracts'),\n", " ('attractive feature',\n", " 'a characteristic that provides pleasure and attracts')]},\n", " {'answer': 'attrition',\n", " 'hint': 'synonyms for attrition',\n", - " 'clues': [('contriteness',\n", - " 'sorrow for sin arising from fear of damnation'),\n", - " ('abrasion',\n", - " 'the wearing down of rock particles by friction due to water or wind or ice'),\n", + " 'clues': [('corrasion', 'erosion by friction'),\n", " ('detrition',\n", " 'the wearing down of rock particles by friction due to water or wind or ice'),\n", - " ('corrasion', 'erosion by friction'),\n", + " ('abrasion', 'erosion by friction'),\n", + " ('contrition', 'sorrow for sin arising from fear of damnation'),\n", + " ('contriteness', 'sorrow for sin arising from fear of damnation'),\n", " ('grinding',\n", - " 'the wearing down of rock particles by friction due to water or wind or ice'),\n", - " ('contrition', 'sorrow for sin arising from fear of damnation')]},\n", + " 'the wearing down of rock particles by friction due to water or wind or ice')]},\n", " {'answer': 'au_revoir',\n", " 'hint': 'synonyms for au revoir',\n", - " 'clues': [('good-by', 'a farewell remark'),\n", - " ('good day', 'a farewell remark'),\n", - " ('adios', 'a farewell remark'),\n", + " 'clues': [('arrivederci', 'a farewell remark'),\n", + " ('goodbye', 'a farewell remark'),\n", + " ('sayonara', 'a farewell remark'),\n", " ('adieu', 'a farewell remark'),\n", " ('bye', 'a farewell remark'),\n", - " ('so long', 'a farewell remark'),\n", " ('auf wiedersehen', 'a farewell remark'),\n", " ('bye-bye', 'a farewell remark'),\n", - " ('arrivederci', 'a farewell remark'),\n", - " ('sayonara', 'a farewell remark'),\n", - " ('cheerio', 'a farewell remark')]},\n", + " ('adios', 'a farewell remark'),\n", + " ('so long', 'a farewell remark'),\n", + " ('cheerio', 'a farewell remark'),\n", + " ('good day', 'a farewell remark')]},\n", " {'answer': 'audio',\n", " 'hint': 'synonyms for audio',\n", - " 'clues': [('sound recording', 'a recording of acoustic signals'),\n", + " 'clues': [('sound', 'the audible part of a transmitted signal'),\n", " ('audio recording', 'a recording of acoustic signals'),\n", - " ('audio frequency', 'an audible acoustic wave frequency'),\n", - " ('sound', 'the audible part of a transmitted signal')]},\n", + " ('sound recording', 'a recording of acoustic signals'),\n", + " ('audio frequency', 'an audible acoustic wave frequency')]},\n", " {'answer': 'audition',\n", " 'hint': 'synonyms for audition',\n", - " 'clues': [('auditory sense', 'the ability to hear; the auditory faculty'),\n", - " ('sense of hearing', 'the ability to hear; the auditory faculty'),\n", + " 'clues': [('tryout', 'a test of the suitability of a performer'),\n", + " ('auditory sense', 'the ability to hear; the auditory faculty'),\n", + " ('hearing', 'the ability to hear; the auditory faculty'),\n", " ('auditory modality', 'the ability to hear; the auditory faculty'),\n", - " ('tryout', 'a test of the suitability of a performer'),\n", - " ('hearing', 'the ability to hear; the auditory faculty')]},\n", + " ('sense of hearing', 'the ability to hear; the auditory faculty')]},\n", " {'answer': 'auditory_modality',\n", " 'hint': 'synonyms for auditory modality',\n", - " 'clues': [('auditory sense', 'the ability to hear; the auditory faculty'),\n", - " ('audition', 'the ability to hear; the auditory faculty'),\n", + " 'clues': [('sense of hearing',\n", + " 'the ability to hear; the auditory faculty'),\n", + " ('auditory sense', 'the ability to hear; the auditory faculty'),\n", " ('hearing', 'the ability to hear; the auditory faculty'),\n", - " ('sense of hearing', 'the ability to hear; the auditory faculty')]},\n", + " ('audition', 'the ability to hear; the auditory faculty')]},\n", " {'answer': 'auditory_sense',\n", " 'hint': 'synonyms for auditory sense',\n", - " 'clues': [('audition', 'the ability to hear; the auditory faculty'),\n", - " ('auditory modality', 'the ability to hear; the auditory faculty'),\n", + " 'clues': [('sense of hearing',\n", + " 'the ability to hear; the auditory faculty'),\n", " ('hearing', 'the ability to hear; the auditory faculty'),\n", - " ('sense of hearing', 'the ability to hear; the auditory faculty')]},\n", + " ('auditory modality', 'the ability to hear; the auditory faculty'),\n", + " ('audition', 'the ability to hear; the auditory faculty')]},\n", " {'answer': 'auf_wiedersehen',\n", " 'hint': 'synonyms for auf wiedersehen',\n", - " 'clues': [('au revoir', 'a farewell remark'),\n", - " ('good-by', 'a farewell remark'),\n", - " ('good day', 'a farewell remark'),\n", - " ('adios', 'a farewell remark'),\n", + " 'clues': [('arrivederci', 'a farewell remark'),\n", + " ('goodbye', 'a farewell remark'),\n", + " ('sayonara', 'a farewell remark'),\n", " ('adieu', 'a farewell remark'),\n", + " ('au revoir', 'a farewell remark'),\n", " ('bye', 'a farewell remark'),\n", - " ('so long', 'a farewell remark'),\n", " ('bye-bye', 'a farewell remark'),\n", - " ('arrivederci', 'a farewell remark'),\n", - " ('sayonara', 'a farewell remark'),\n", - " ('cheerio', 'a farewell remark')]},\n", + " ('adios', 'a farewell remark'),\n", + " ('so long', 'a farewell remark'),\n", + " ('cheerio', 'a farewell remark'),\n", + " ('good day', 'a farewell remark')]},\n", " {'answer': 'auger',\n", " 'hint': 'synonyms for auger',\n", - " 'clues': [('wimble', 'hand tool for boring holes'),\n", - " ('screw auger', 'hand tool for boring holes'),\n", + " 'clues': [(\"plumber's snake\",\n", + " 'a long flexible steel coil for dislodging stoppages in curved pipes'),\n", " ('gimlet', 'hand tool for boring holes'),\n", - " (\"plumber's snake\",\n", - " 'a long flexible steel coil for dislodging stoppages in curved pipes')]},\n", + " ('screw auger', 'hand tool for boring holes'),\n", + " ('wimble', 'hand tool for boring holes')]},\n", " {'answer': 'aught',\n", " 'hint': 'synonyms for aught',\n", - " 'clues': [('null', 'a quantity of no importance'),\n", - " ('nada', 'a quantity of no importance'),\n", - " ('zippo', 'a quantity of no importance'),\n", - " ('zilch', 'a quantity of no importance'),\n", - " ('cypher', 'a quantity of no importance'),\n", + " 'clues': [('zip', 'a quantity of no importance'),\n", " ('naught', 'a quantity of no importance'),\n", " ('nix', 'a quantity of no importance'),\n", - " ('goose egg', 'a quantity of no importance'),\n", - " ('cipher', 'a quantity of no importance'),\n", - " ('zero', 'a quantity of no importance'),\n", - " ('zip', 'a quantity of no importance'),\n", + " ('zilch', 'a quantity of no importance'),\n", + " ('cypher', 'a quantity of no importance'),\n", " ('nil', 'a quantity of no importance'),\n", - " ('nothing', 'a quantity of no importance')]},\n", + " ('null', 'a quantity of no importance'),\n", + " ('nothing', 'a quantity of no importance'),\n", + " ('zero', 'a quantity of no importance'),\n", + " ('nada', 'a quantity of no importance'),\n", + " ('cipher', 'a quantity of no importance'),\n", + " ('zippo', 'a quantity of no importance'),\n", + " ('goose egg', 'a quantity of no importance')]},\n", " {'answer': 'aura',\n", " 'hint': 'synonyms for aura',\n", - " 'clues': [('gloriole',\n", + " 'clues': [('glory',\n", " 'an indication of radiant light drawn around the head of a saint'),\n", - " ('air',\n", - " 'a distinctive but intangible quality surrounding a person or thing'),\n", - " ('glory',\n", - " 'an indication of radiant light drawn around the head of a saint'),\n", - " ('atmosphere',\n", - " 'a distinctive but intangible quality surrounding a person or thing'),\n", " ('nimbus',\n", " 'an indication of radiant light drawn around the head of a saint'),\n", " ('aureole',\n", " 'an indication of radiant light drawn around the head of a saint'),\n", + " ('gloriole',\n", + " 'an indication of radiant light drawn around the head of a saint'),\n", " ('halo',\n", - " 'an indication of radiant light drawn around the head of a saint')]},\n", + " 'an indication of radiant light drawn around the head of a saint'),\n", + " ('air',\n", + " 'a distinctive but intangible quality surrounding a person or thing'),\n", + " ('atmosphere',\n", + " 'a distinctive but intangible quality surrounding a person or thing')]},\n", " {'answer': 'aureole',\n", " 'hint': 'synonyms for aureole',\n", - " 'clues': [('gloriole',\n", + " 'clues': [('glory',\n", " 'an indication of radiant light drawn around the head of a saint'),\n", - " ('corona',\n", - " \"the outermost region of the sun's atmosphere; visible as a white halo during a solar eclipse\"),\n", - " ('glory',\n", - " 'an indication of radiant light drawn around the head of a saint'),\n", - " ('aura',\n", + " ('gloriole',\n", " 'an indication of radiant light drawn around the head of a saint'),\n", " ('nimbus',\n", " 'an indication of radiant light drawn around the head of a saint'),\n", + " ('corona',\n", + " \"the outermost region of the sun's atmosphere; visible as a white halo during a solar eclipse\"),\n", " ('halo',\n", + " 'an indication of radiant light drawn around the head of a saint'),\n", + " ('aura',\n", " 'an indication of radiant light drawn around the head of a saint')]},\n", " {'answer': 'aurora',\n", " 'hint': 'synonyms for aurora',\n", - " 'clues': [('sunup', 'the first light of day'),\n", - " ('daybreak', 'the first light of day'),\n", - " ('dawn', 'the first light of day'),\n", - " ('morning', 'the first light of day'),\n", - " ('cockcrow', 'the first light of day'),\n", - " ('break of the day', 'the first light of day'),\n", + " 'clues': [('break of day', 'the first light of day'),\n", " ('first light', 'the first light of day'),\n", + " ('sunup', 'the first light of day'),\n", + " ('dawn', 'the first light of day'),\n", + " ('daybreak', 'the first light of day'),\n", + " ('dayspring', 'the first light of day'),\n", " ('sunrise', 'the first light of day'),\n", - " ('dayspring', 'the first light of day')]},\n", + " ('morning', 'the first light of day'),\n", + " ('cockcrow', 'the first light of day')]},\n", " {'answer': 'authorisation',\n", " 'hint': 'synonyms for authorisation',\n", - " 'clues': [('dominance',\n", - " 'the power or right to give orders or make decisions'),\n", - " ('empowerment',\n", - " 'the act of conferring legality or sanction or formal warrant'),\n", - " ('authorization', 'official permission or approval'),\n", + " 'clues': [('sanction', 'official permission or approval'),\n", " ('say-so', 'the power or right to give orders or make decisions'),\n", + " ('dominance', 'the power or right to give orders or make decisions'),\n", + " ('authorization', 'official permission or approval'),\n", " ('potency', 'the power or right to give orders or make decisions'),\n", + " ('authority', 'official permission or approval'),\n", " ('mandate', 'a document giving an official instruction or command'),\n", - " ('authority', 'the power or right to give orders or make decisions'),\n", - " ('sanction', 'official permission or approval')]},\n", + " ('empowerment',\n", + " 'the act of conferring legality or sanction or formal warrant')]},\n", " {'answer': 'authoritarianism',\n", " 'hint': 'synonyms for authoritarianism',\n", - " 'clues': [('one-man rule',\n", + " 'clues': [('dictatorship',\n", + " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", + " ('one-man rule',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", " ('despotism',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", " ('totalitarianism',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('tyranny',\n", - " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('shogunate',\n", - " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", " ('absolutism',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", - " ('dictatorship',\n", - " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", " ('monocracy',\n", + " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", + " ('shogunate',\n", + " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)'),\n", + " ('tyranny',\n", " 'a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.)')]},\n", " {'answer': 'authorities',\n", " 'hint': 'synonyms for authorities',\n", - " 'clues': [('office', 'an administrative unit of government'),\n", - " ('regime',\n", + " 'clues': [('sanction', 'official permission or approval'),\n", + " ('government',\n", " 'the organization that is the governing authority of a political unit'),\n", - " ('assurance',\n", - " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('potency', 'the power or right to give orders or make decisions'),\n", - " ('authority', 'the power or right to give orders or make decisions'),\n", + " ('agency', 'an administrative unit of government'),\n", + " ('authority', 'an authoritative written work'),\n", + " ('bureau', 'an administrative unit of government'),\n", + " ('authorisation', 'official permission or approval'),\n", " ('confidence',\n", " 'freedom from doubt; belief in yourself and your abilities'),\n", - " ('federal agency', 'an administrative unit of government'),\n", - " ('bureau', 'an administrative unit of government'),\n", - " ('authorization', 'the power or right to give orders or make decisions'),\n", - " ('sanction', 'official permission or approval'),\n", + " ('regime',\n", + " 'the organization that is the governing authority of a political unit'),\n", + " ('office', 'an administrative unit of government'),\n", + " ('say-so', 'the power or right to give orders or make decisions'),\n", + " ('assurance',\n", + " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('dominance', 'the power or right to give orders or make decisions'),\n", - " ('agency', 'an administrative unit of government'),\n", + " ('federal agency', 'an administrative unit of government'),\n", " ('government agency', 'an administrative unit of government'),\n", - " ('say-so', 'the power or right to give orders or make decisions'),\n", - " ('government',\n", - " 'the organization that is the governing authority of a political unit'),\n", + " ('self-assurance',\n", + " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('sureness', 'freedom from doubt; belief in yourself and your abilities'),\n", " ('self-confidence',\n", - " 'freedom from doubt; belief in yourself and your abilities'),\n", - " ('self-assurance',\n", " 'freedom from doubt; belief in yourself and your abilities')]},\n", " {'answer': 'authority',\n", " 'hint': 'synonyms for authority',\n", - " 'clues': [('dominance',\n", - " 'the power or right to give orders or make decisions'),\n", - " ('sanction', 'official permission or approval'),\n", - " ('agency', 'an administrative unit of government'),\n", + " 'clues': [('sanction', 'official permission or approval'),\n", " ('office', 'an administrative unit of government'),\n", + " ('say-so', 'the power or right to give orders or make decisions'),\n", " ('assurance',\n", " 'freedom from doubt; belief in yourself and your abilities'),\n", + " ('dominance', 'the power or right to give orders or make decisions'),\n", + " ('authorisation', 'the power or right to give orders or make decisions'),\n", + " ('federal agency', 'an administrative unit of government'),\n", " ('government agency', 'an administrative unit of government'),\n", - " ('say-so', 'the power or right to give orders or make decisions'),\n", " ('potency', 'the power or right to give orders or make decisions'),\n", - " ('authorisation', 'official permission or approval'),\n", - " ('confidence',\n", + " ('self-assurance',\n", " 'freedom from doubt; belief in yourself and your abilities'),\n", - " ('federal agency', 'an administrative unit of government'),\n", + " ('agency', 'an administrative unit of government'),\n", " ('sureness', 'freedom from doubt; belief in yourself and your abilities'),\n", " ('self-confidence',\n", " 'freedom from doubt; belief in yourself and your abilities'),\n", " ('bureau', 'an administrative unit of government'),\n", - " ('self-assurance',\n", + " ('confidence',\n", " 'freedom from doubt; belief in yourself and your abilities')]},\n", " {'answer': 'authorization',\n", " 'hint': 'synonyms for authorization',\n", - " 'clues': [('dominance',\n", - " 'the power or right to give orders or make decisions'),\n", - " ('empowerment',\n", - " 'the act of conferring legality or sanction or formal warrant'),\n", - " ('authorisation', 'a document giving an official instruction or command'),\n", + " 'clues': [('authorisation', 'official permission or approval'),\n", + " ('sanction', 'official permission or approval'),\n", " ('say-so', 'the power or right to give orders or make decisions'),\n", + " ('dominance', 'the power or right to give orders or make decisions'),\n", " ('potency', 'the power or right to give orders or make decisions'),\n", + " ('authority', 'official permission or approval'),\n", " ('mandate', 'a document giving an official instruction or command'),\n", - " ('authority', 'the power or right to give orders or make decisions'),\n", - " ('sanction', 'official permission or approval')]},\n", + " ('empowerment',\n", + " 'the act of conferring legality or sanction or formal warrant')]},\n", " {'answer': 'authorship',\n", " 'hint': 'synonyms for authorship',\n", " 'clues': [('penning', 'the act of creating written works'),\n", - " ('composition', 'the act of creating written works'),\n", " ('writing', 'the act of creating written works'),\n", - " ('paternity', 'the act of initiating a new idea or theory or writing')]},\n", + " ('paternity', 'the act of initiating a new idea or theory or writing'),\n", + " ('composition', 'the act of creating written works')]},\n", " {'answer': 'auto',\n", " 'hint': 'synonyms for auto',\n", - " 'clues': [('machine',\n", + " 'clues': [('motorcar',\n", + " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", + " ('machine',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", " ('car',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", " ('automobile',\n", - " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", - " ('motorcar',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine')]},\n", " {'answer': 'auto_maker',\n", " 'hint': 'synonyms for auto maker',\n", - " 'clues': [('car maker',\n", - " 'a business engaged in the manufacture of automobiles'),\n", - " ('car manufacturer',\n", + " 'clues': [('car manufacturer',\n", " 'a business engaged in the manufacture of automobiles'),\n", " ('auto manufacturer',\n", " 'a business engaged in the manufacture of automobiles'),\n", + " ('car maker', 'a business engaged in the manufacture of automobiles'),\n", " ('automaker', 'a business engaged in the manufacture of automobiles')]},\n", " {'answer': 'autobus',\n", " 'hint': 'synonyms for autobus',\n", - " 'clues': [('motorbus',\n", + " 'clues': [('bus',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('coach',\n", + " ('charabanc',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('motorcoach',\n", + " ('passenger vehicle',\n", + " 'a vehicle carrying many passengers; used for public transport'),\n", + " ('double-decker',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", " ('omnibus',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('charabanc',\n", + " ('motorbus',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('bus', 'a vehicle carrying many passengers; used for public transport'),\n", " ('jitney',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('passenger vehicle',\n", + " ('motorcoach',\n", " 'a vehicle carrying many passengers; used for public transport'),\n", - " ('double-decker',\n", + " ('coach',\n", " 'a vehicle carrying many passengers; used for public transport')]},\n", " {'answer': 'automaker',\n", " 'hint': 'synonyms for automaker',\n", - " 'clues': [('car maker',\n", - " 'a business engaged in the manufacture of automobiles'),\n", - " ('car manufacturer',\n", + " 'clues': [('car manufacturer',\n", " 'a business engaged in the manufacture of automobiles'),\n", + " ('auto maker', 'a business engaged in the manufacture of automobiles'),\n", " ('auto manufacturer',\n", " 'a business engaged in the manufacture of automobiles'),\n", - " ('auto maker', 'a business engaged in the manufacture of automobiles')]},\n", + " ('car maker', 'a business engaged in the manufacture of automobiles')]},\n", " {'answer': 'automated_teller',\n", " 'hint': 'synonyms for automated teller',\n", - " 'clues': [('automated teller machine',\n", + " 'clues': [('cash machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('automatic teller',\n", + " ('automated teller machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('cash dispenser',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('cash machine',\n", + " ('automatic teller',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n", " {'answer': 'automated_teller_machine',\n", " 'hint': 'synonyms for automated teller machine',\n", - " 'clues': [('automatic teller',\n", - " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('cash dispenser',\n", + " 'clues': [('cash machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('automatic teller machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('cash machine',\n", + " ('cash dispenser',\n", + " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", + " ('automatic teller',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n", " {'answer': 'automatic_teller',\n", " 'hint': 'synonyms for automatic teller',\n", - " 'clues': [('automated teller machine',\n", + " 'clues': [('cash machine',\n", + " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", + " ('automated teller machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('cash dispenser',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('automated teller',\n", - " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('cash machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n", " {'answer': 'automatic_teller_machine',\n", " 'hint': 'synonyms for automatic teller machine',\n", - " 'clues': [('automated teller machine',\n", + " 'clues': [('cash machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('automatic teller',\n", + " ('automated teller machine',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", " ('cash dispenser',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used'),\n", - " ('cash machine',\n", + " ('automatic teller',\n", " 'an unattended machine (outside some banks) that dispenses money when a personal coded card is used')]},\n", " {'answer': 'automobile',\n", " 'hint': 'synonyms for automobile',\n", - " 'clues': [('machine',\n", + " 'clues': [('motorcar',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", " ('auto',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", " ('car',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine'),\n", - " ('motorcar',\n", + " ('machine',\n", " 'a motor vehicle with four wheels; usually propelled by an internal combustion engine')]},\n", " {'answer': 'automobile_horn',\n", " 'hint': 'synonyms for automobile horn',\n", - " 'clues': [('motor horn',\n", + " 'clues': [('car horn',\n", " 'a device on an automobile for making a warning noise'),\n", " ('horn', 'a device on an automobile for making a warning noise'),\n", - " ('car horn', 'a device on an automobile for making a warning noise'),\n", - " ('hooter', 'a device on an automobile for making a warning noise')]},\n", + " ('hooter', 'a device on an automobile for making a warning noise'),\n", + " ('motor horn', 'a device on an automobile for making a warning noise')]},\n", " {'answer': 'avarice',\n", " 'hint': 'synonyms for avarice',\n", - " 'clues': [('covetousness',\n", + " 'clues': [('greed',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", - " ('cupidity', 'extreme greed for material wealth'),\n", - " ('avaritia',\n", + " ('rapacity',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", - " ('greed',\n", + " ('covetousness',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", - " ('rapacity',\n", + " ('cupidity', 'extreme greed for material wealth'),\n", + " ('avaritia',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", " ('avariciousness', 'extreme greed for material wealth')]},\n", " {'answer': 'avaritia',\n", " 'hint': 'synonyms for avaritia',\n", - " 'clues': [('avarice',\n", + " 'clues': [('greed',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", - " ('covetousness',\n", + " ('rapacity',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", - " ('greed',\n", + " ('avarice',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)'),\n", - " ('rapacity',\n", + " ('covetousness',\n", " 'reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins)')]},\n", " {'answer': 'aviation',\n", " 'hint': 'synonyms for aviation',\n", - " 'clues': [('air power',\n", - " \"the aggregation of a country's military aircraft\"),\n", + " 'clues': [('air travel', 'travel via aircraft'),\n", " ('air', 'travel via aircraft'),\n", - " ('air travel', 'travel via aircraft'),\n", - " ('airmanship', 'the art of operating aircraft')]},\n", + " ('airmanship', 'the art of operating aircraft'),\n", + " ('air power', \"the aggregation of a country's military aircraft\")]},\n", " {'answer': 'avocation',\n", " 'hint': 'synonyms for avocation',\n", - " 'clues': [('hobby', 'an auxiliary activity'),\n", + " 'clues': [('pursuit', 'an auxiliary activity'),\n", + " ('sideline', 'an auxiliary activity'),\n", " ('spare-time activity', 'an auxiliary activity'),\n", " ('by-line', 'an auxiliary activity'),\n", - " ('pursuit', 'an auxiliary activity'),\n", - " ('sideline', 'an auxiliary activity')]},\n", + " ('hobby', 'an auxiliary activity')]},\n", " {'answer': 'avoirdupois',\n", " 'hint': 'synonyms for avoirdupois',\n", - " 'clues': [('avoirdupois weight',\n", + " 'clues': [('fatness', 'excess bodily weight'),\n", + " ('avoirdupois weight',\n", " 'a system of weights based on the 16-ounce pound (or 7,000 grains)'),\n", " ('blubber', 'excess bodily weight'),\n", - " ('fatness', 'excess bodily weight'),\n", " ('fat', 'excess bodily weight')]},\n", " {'answer': 'award',\n", " 'hint': 'synonyms for award',\n", - " 'clues': [('awarding', 'a grant made by a law court'),\n", + " 'clues': [('laurels',\n", + " 'a tangible symbol signifying approval or distinction'),\n", + " ('honor', 'a tangible symbol signifying approval or distinction'),\n", " ('accolade', 'a tangible symbol signifying approval or distinction'),\n", + " ('awarding', 'a grant made by a law court'),\n", " ('prize',\n", - " 'something given for victory or superiority in a contest or competition or for winning a lottery'),\n", - " ('honor', 'a tangible symbol signifying approval or distinction'),\n", - " ('laurels', 'a tangible symbol signifying approval or distinction')]},\n", + " 'something given for victory or superiority in a contest or competition or for winning a lottery')]},\n", " {'answer': 'awareness',\n", " 'hint': 'synonyms for awareness',\n", - " 'clues': [('consciousness', 'having knowledge of'),\n", + " 'clues': [('knowingness', 'having knowledge of'),\n", + " ('consciousness', 'having knowledge of'),\n", " ('sentience', 'state of elementary or undifferentiated consciousness'),\n", - " ('cognizance', 'having knowledge of'),\n", - " ('knowingness', 'having knowledge of')]},\n", + " ('cognisance', 'having knowledge of')]},\n", " {'answer': 'awkwardness',\n", " 'hint': 'synonyms for awkwardness',\n", - " 'clues': [('nuisance value', 'the quality of an embarrassing situation'),\n", - " ('clumsiness', 'unskillfulness resulting from a lack of training'),\n", - " ('maladroitness', 'unskillfulness resulting from a lack of training'),\n", + " 'clues': [('maladroitness',\n", + " 'unskillfulness resulting from a lack of training'),\n", + " ('ineptness', 'unskillfulness resulting from a lack of training'),\n", + " ('ineptitude', 'unskillfulness resulting from a lack of training'),\n", + " ('clumsiness',\n", + " 'the inelegance of someone stiff and unrelaxed (as by embarrassment)'),\n", " ('unwieldiness',\n", " 'trouble in carrying or managing caused by bulk or shape'),\n", " ('cumbersomeness',\n", " 'trouble in carrying or managing caused by bulk or shape'),\n", - " ('ineptness', 'unskillfulness resulting from a lack of training'),\n", - " ('gracelessness',\n", - " 'the inelegance of someone stiff and unrelaxed (as by embarrassment)'),\n", " ('slowness', 'unskillfulness resulting from a lack of training'),\n", - " ('ineptitude', 'unskillfulness resulting from a lack of training'),\n", " ('stiffness',\n", + " 'the inelegance of someone stiff and unrelaxed (as by embarrassment)'),\n", + " ('nuisance value', 'the quality of an embarrassing situation'),\n", + " ('gracelessness',\n", " 'the inelegance of someone stiff and unrelaxed (as by embarrassment)')]},\n", " {'answer': 'b',\n", " 'hint': 'synonyms for b',\n", - " 'clues': [('barn',\n", - " '(physics) a unit of nuclear cross section; the effective circular area that one particle presents to another as a target for an encounter'),\n", - " ('vitamin B',\n", - " 'originally thought to be a single vitamin but now separated into several B vitamins'),\n", - " ('vitamin B complex',\n", + " 'clues': [('vitamin B',\n", " 'originally thought to be a single vitamin but now separated into several B vitamins'),\n", " ('atomic number 5',\n", " 'a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder'),\n", + " ('barn',\n", + " '(physics) a unit of nuclear cross section; the effective circular area that one particle presents to another as a target for an encounter'),\n", + " ('vitamin B complex',\n", + " 'originally thought to be a single vitamin but now separated into several B vitamins'),\n", " ('boron',\n", " 'a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder')]},\n", " {'answer': 'baby_buggy',\n", " 'hint': 'synonyms for baby buggy',\n", - " 'clues': [('go-cart',\n", - " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('pusher',\n", + " 'clues': [('pram',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('stroller',\n", + " ('carriage',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('perambulator',\n", + " ('go-cart',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('pram',\n", + " ('stroller',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", " ('pushchair',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('carriage',\n", + " ('pusher',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", " ('baby carriage',\n", + " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", + " ('perambulator',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around')]},\n", " {'answer': 'baby_carriage',\n", " 'hint': 'synonyms for baby carriage',\n", - " 'clues': [('go-cart',\n", + " 'clues': [('pram',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('pusher',\n", + " ('carriage',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('stroller',\n", + " ('go-cart',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('pram',\n", + " ('stroller',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('perambulator',\n", + " ('pushchair',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", " ('baby buggy',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('pushchair',\n", + " ('pusher',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around'),\n", - " ('carriage',\n", + " ('perambulator',\n", " 'a small vehicle with four wheels in which a baby or child is pushed around')]},\n", " {'answer': 'bacchanalia',\n", " 'hint': 'synonyms for bacchanalia',\n", - " 'clues': [('saturnalia',\n", + " 'clues': [('debauch',\n", + " 'a wild gathering involving excessive drinking and promiscuity'),\n", + " ('saturnalia',\n", " 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('drunken revelry',\n", " 'a wild gathering involving excessive drinking and promiscuity'),\n", + " ('orgy', 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('riot', 'a wild gathering involving excessive drinking and promiscuity'),\n", - " ('debauch',\n", - " 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('bacchanal',\n", " 'a wild gathering involving excessive drinking and promiscuity'),\n", " ('debauchery',\n", - " 'a wild gathering involving excessive drinking and promiscuity'),\n", - " ('orgy',\n", " 'a wild gathering involving excessive drinking and promiscuity')]},\n", " {'answer': 'back_breaker',\n", " 'hint': 'synonyms for back breaker',\n", - " 'clues': [('battery-acid', 'street name for lysergic acid diethylamide'),\n", - " ('dose', 'street name for lysergic acid diethylamide'),\n", + " 'clues': [('loony toons', 'street name for lysergic acid diethylamide'),\n", " ('pane', 'street name for lysergic acid diethylamide'),\n", - " ('acid', 'street name for lysergic acid diethylamide'),\n", - " ('superman', 'street name for lysergic acid diethylamide'),\n", - " ('window pane', 'street name for lysergic acid diethylamide'),\n", + " ('battery-acid', 'street name for lysergic acid diethylamide'),\n", + " ('dose', 'street name for lysergic acid diethylamide'),\n", " ('dot', 'street name for lysergic acid diethylamide'),\n", - " ('loony toons', 'street name for lysergic acid diethylamide')]},\n", + " ('window pane', 'street name for lysergic acid diethylamide'),\n", + " ('acid', 'street name for lysergic acid diethylamide'),\n", + " ('superman', 'street name for lysergic acid diethylamide')]},\n", " {'answer': 'back_pack',\n", " 'hint': 'synonyms for back pack',\n", - " 'clues': [('packsack',\n", + " 'clues': [('backpack',\n", " 'a bag carried by a strap on your back or shoulder'),\n", - " ('backpack', 'a bag carried by a strap on your back or shoulder'),\n", - " ('haversack', 'a bag carried by a strap on your back or shoulder'),\n", + " ('packsack', 'a bag carried by a strap on your back or shoulder'),\n", " ('rucksack', 'a bag carried by a strap on your back or shoulder'),\n", + " ('haversack', 'a bag carried by a strap on your back or shoulder'),\n", " ('knapsack', 'a bag carried by a strap on your back or shoulder')]},\n", " {'answer': 'back_talk',\n", " 'hint': 'synonyms for back talk',\n", - " 'clues': [('sassing', 'an impudent or insolent rejoinder'),\n", - " ('mouth', 'an impudent or insolent rejoinder'),\n", - " ('lip', 'an impudent or insolent rejoinder'),\n", - " ('backtalk', 'an impudent or insolent rejoinder')]},\n", + " 'clues': [('lip', 'an impudent or insolent rejoinder'),\n", + " ('sass', 'an impudent or insolent rejoinder'),\n", + " ('backtalk', 'an impudent or insolent rejoinder'),\n", + " ('mouth', 'an impudent or insolent rejoinder')]},\n", " {'answer': 'backbone',\n", " 'hint': 'synonyms for backbone',\n", " 'clues': [('gumption', 'fortitude and determination'),\n", " ('anchor', 'a central cohesive source of support and stability'),\n", - " ('guts', 'fortitude and determination'),\n", - " ('lynchpin', 'a central cohesive source of support and stability'),\n", " ('keystone', 'a central cohesive source of support and stability'),\n", + " ('mainstay', 'a central cohesive source of support and stability'),\n", + " ('linchpin', 'a central cohesive source of support and stability'),\n", " ('grit', 'fortitude and determination'),\n", " ('sand', 'fortitude and determination'),\n", - " ('moxie', 'fortitude and determination'),\n", - " ('mainstay', 'a central cohesive source of support and stability'),\n", " ('spine',\n", - " \"the part of a book's cover that encloses the inner side of the book's pages and that faces outward when the book is shelved\")]},\n", + " \"the part of a book's cover that encloses the inner side of the book's pages and that faces outward when the book is shelved\"),\n", + " ('moxie', 'fortitude and determination'),\n", + " ('guts', 'fortitude and determination')]},\n", " {'answer': 'background',\n", " 'hint': 'synonyms for background',\n", - " 'clues': [('desktop',\n", + " 'clues': [('background signal',\n", + " 'extraneous signals that can be confused with the phenomenon to be observed or measured'),\n", + " ('desktop',\n", " '(computer science) the area of the screen in graphical user interfaces against which icons and windows appear'),\n", " ('screen background',\n", " '(computer science) the area of the screen in graphical user interfaces against which icons and windows appear'),\n", - " ('backdrop', 'scenery hung at back of stage'),\n", - " ('background knowledge',\n", - " 'information that is essential to understanding a situation or problem'),\n", - " ('background signal',\n", - " 'extraneous signals that can be confused with the phenomenon to be observed or measured'),\n", + " ('backcloth', 'scenery hung at back of stage'),\n", " ('ground',\n", " 'the part of a scene (or picture) that lies behind objects in the foreground'),\n", - " ('backcloth', 'scenery hung at back of stage')]},\n", + " ('backdrop', 'scenery hung at back of stage'),\n", + " ('background knowledge',\n", + " 'information that is essential to understanding a situation or problem')]},\n", " {'answer': 'backing',\n", " 'hint': 'synonyms for backing',\n", - " 'clues': [('financial support',\n", + " 'clues': [('support',\n", " 'financial resources provided to make some project possible'),\n", " ('patronage', 'the act of providing approval and support'),\n", - " ('support', 'financial resources provided to make some project possible'),\n", " ('mount', 'something forming a back that is added for strengthening'),\n", - " ('funding', 'financial resources provided to make some project possible'),\n", " ('financial backing',\n", " 'financial resources provided to make some project possible'),\n", " ('championship', 'the act of providing approval and support'),\n", + " ('financial support',\n", + " 'financial resources provided to make some project possible'),\n", + " ('funding', 'financial resources provided to make some project possible'),\n", " ('backup', 'the act of providing approval and support')]},\n", " {'answer': 'backpack',\n", " 'hint': 'synonyms for backpack',\n", " 'clues': [('packsack',\n", " 'a bag carried by a strap on your back or shoulder'),\n", - " ('haversack', 'a bag carried by a strap on your back or shoulder'),\n", - " ('rucksack', 'a bag carried by a strap on your back or shoulder'),\n", " ('back pack', 'a bag carried by a strap on your back or shoulder'),\n", + " ('rucksack', 'a bag carried by a strap on your back or shoulder'),\n", + " ('haversack', 'a bag carried by a strap on your back or shoulder'),\n", " ('knapsack', 'a bag carried by a strap on your back or shoulder')]},\n", " {'answer': 'backsheesh',\n", " 'hint': 'synonyms for backsheesh',\n", - " 'clues': [('gratuity',\n", + " 'clues': [('tip',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('tip',\n", + " ('baksheesh',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('bakshish',\n", + " ('bakshis',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", " ('pourboire',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('baksheesh',\n", + " ('gratuity',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n", " {'answer': 'backsliding',\n", " 'hint': 'synonyms for backsliding',\n", - " 'clues': [('lapsing', 'a failure to maintain a higher state'),\n", - " ('lapse', 'a failure to maintain a higher state'),\n", - " ('reverting', 'a failure to maintain a higher state'),\n", + " 'clues': [('lapse', 'a failure to maintain a higher state'),\n", + " ('relapse', 'a failure to maintain a higher state'),\n", + " ('lapsing', 'a failure to maintain a higher state'),\n", " ('reversion', 'a failure to maintain a higher state'),\n", - " ('relapse', 'a failure to maintain a higher state')]},\n", + " ('reverting', 'a failure to maintain a higher state')]},\n", " {'answer': 'backtalk',\n", " 'hint': 'synonyms for backtalk',\n", - " 'clues': [('sassing', 'an impudent or insolent rejoinder'),\n", - " ('mouth', 'an impudent or insolent rejoinder'),\n", - " ('lip', 'an impudent or insolent rejoinder'),\n", - " ('back talk', 'an impudent or insolent rejoinder')]},\n", + " 'clues': [('lip', 'an impudent or insolent rejoinder'),\n", + " ('sass', 'an impudent or insolent rejoinder'),\n", + " ('back talk', 'an impudent or insolent rejoinder'),\n", + " ('mouth', 'an impudent or insolent rejoinder')]},\n", " {'answer': 'backup',\n", " 'hint': 'synonyms for backup',\n", - " 'clues': [('support',\n", - " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", + " 'clues': [('championship', 'the act of providing approval and support'),\n", + " ('patronage', 'the act of providing approval and support'),\n", " ('computer backup',\n", " '(computer science) a copy of a file or directory on a separate storage device'),\n", - " ('accompaniment',\n", + " ('support',\n", " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", - " ('patronage', 'the act of providing approval and support'),\n", - " ('championship', 'the act of providing approval and support'),\n", " ('musical accompaniment',\n", " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts'),\n", - " ('backing', 'the act of providing approval and support')]},\n", + " ('backing', 'the act of providing approval and support'),\n", + " ('accompaniment',\n", + " 'a musical part (vocal or instrumental) that supports or provides background for other musical parts')]},\n", " {'answer': 'backwardness',\n", " 'hint': 'synonyms for backwardness',\n", - " 'clues': [('mental retardation',\n", + " 'clues': [('retardation',\n", " 'lack of normal development of intellectual capacities'),\n", - " ('subnormality', 'lack of normal development of intellectual capacities'),\n", " ('slowness', 'lack of normal development of intellectual capacities'),\n", - " ('retardation',\n", + " ('subnormality', 'lack of normal development of intellectual capacities'),\n", + " ('mental retardation',\n", " 'lack of normal development of intellectual capacities')]},\n", " {'answer': 'backwash',\n", " 'hint': 'synonyms for backwash',\n", - " 'clues': [('race',\n", - " 'the flow of air that is driven backwards by an aircraft propeller'),\n", - " ('wash',\n", + " 'clues': [('wake',\n", + " 'the wave that spreads behind a boat as it moves forward'),\n", + " ('aftermath',\n", + " 'the consequences of an event (especially a catastrophic event)'),\n", + " ('airstream',\n", " 'the flow of air that is driven backwards by an aircraft propeller'),\n", " ('slipstream',\n", " 'the flow of air that is driven backwards by an aircraft propeller'),\n", - " ('airstream',\n", + " ('wash',\n", " 'the flow of air that is driven backwards by an aircraft propeller'),\n", - " ('aftermath',\n", - " 'the consequences of an event (especially a catastrophic event)'),\n", - " ('wake',\n", - " 'the consequences of an event (especially a catastrophic event)')]},\n", + " ('race',\n", + " 'the flow of air that is driven backwards by an aircraft propeller')]},\n", " {'answer': 'badness',\n", " 'hint': 'synonyms for badness',\n", - " 'clues': [('bad',\n", - " 'that which is below standard or expectations as of ethics or decency'),\n", + " 'clues': [('severity',\n", + " 'used of the degree of something undesirable e.g. pain or weather'),\n", " ('mischievousness', 'an attribute of mischievous children'),\n", " ('naughtiness', 'an attribute of mischievous children'),\n", " ('severeness',\n", " 'used of the degree of something undesirable e.g. pain or weather'),\n", - " ('severity',\n", - " 'used of the degree of something undesirable e.g. pain or weather')]},\n", + " ('bad',\n", + " 'that which is below standard or expectations as of ethics or decency')]},\n", " {'answer': 'bafflement',\n", " 'hint': 'synonyms for bafflement',\n", - " 'clues': [('befuddlement',\n", + " 'clues': [('obfuscation',\n", " 'confusion resulting from failure to understand'),\n", - " ('bewilderment', 'confusion resulting from failure to understand'),\n", " ('bemusement', 'confusion resulting from failure to understand'),\n", + " ('bewilderment', 'confusion resulting from failure to understand'),\n", " ('mystification', 'confusion resulting from failure to understand'),\n", - " ('obfuscation', 'confusion resulting from failure to understand'),\n", - " ('puzzlement', 'confusion resulting from failure to understand')]},\n", + " ('puzzlement', 'confusion resulting from failure to understand'),\n", + " ('befuddlement', 'confusion resulting from failure to understand')]},\n", " {'answer': 'bag',\n", " 'hint': 'synonyms for bag',\n", - " 'clues': [('grip',\n", + " 'clues': [('traveling bag',\n", " 'a portable rectangular container for carrying clothes'),\n", - " ('cup of tea', 'an activity that you like or at which you are superior'),\n", + " ('pocketbook',\n", + " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n", + " ('dish', 'an activity that you like or at which you are superior'),\n", " ('purse',\n", " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n", " ('base', 'a place that the runner must touch before scoring'),\n", + " ('cup of tea', 'an activity that you like or at which you are superior'),\n", " ('handbag',\n", " 'a container used for carrying money and small personal items or accessories (especially by women)'),\n", - " ('suitcase', 'a portable rectangular container for carrying clothes'),\n", - " ('dish', 'an activity that you like or at which you are superior'),\n", - " ('traveling bag',\n", - " 'a portable rectangular container for carrying clothes'),\n", " ('bagful', 'the quantity that a bag will hold'),\n", - " ('pocketbook',\n", - " 'a container used for carrying money and small personal items or accessories (especially by women)')]},\n", + " ('suitcase', 'a portable rectangular container for carrying clothes'),\n", + " ('grip', 'a portable rectangular container for carrying clothes')]},\n", " {'answer': 'bagatelle',\n", " 'hint': 'synonyms for bagatelle',\n", - " 'clues': [('bar billiards',\n", - " 'a table game in which short cues are used to knock balls into holes that are guarded by wooden pegs; penalties are incurred if the pegs are knocked over'),\n", + " 'clues': [('frippery', 'something of little value or significance'),\n", " ('fluff', 'something of little value or significance'),\n", - " ('frippery', 'something of little value or significance'),\n", - " ('frivolity', 'something of little value or significance')]},\n", + " ('frivolity', 'something of little value or significance'),\n", + " ('bar billiards',\n", + " 'a table game in which short cues are used to knock balls into holes that are guarded by wooden pegs; penalties are incurred if the pegs are knocked over')]},\n", " {'answer': 'bagnio',\n", " 'hint': 'synonyms for bagnio',\n", - " 'clues': [('house of ill repute',\n", - " 'a building where prostitutes are available'),\n", - " ('bawdyhouse', 'a building where prostitutes are available'),\n", - " ('bordello', 'a building where prostitutes are available'),\n", - " ('cathouse', 'a building where prostitutes are available'),\n", - " ('bathhouse', 'a building containing public baths'),\n", + " 'clues': [('bathhouse', 'a building containing public baths'),\n", " ('house of prostitution', 'a building where prostitutes are available'),\n", - " ('brothel', 'a building where prostitutes are available'),\n", + " ('sporting house', 'a building where prostitutes are available'),\n", " ('whorehouse', 'a building where prostitutes are available'),\n", - " ('sporting house', 'a building where prostitutes are available')]},\n", + " ('bawdyhouse', 'a building where prostitutes are available'),\n", + " ('house of ill repute', 'a building where prostitutes are available'),\n", + " ('cathouse', 'a building where prostitutes are available'),\n", + " ('bordello', 'a building where prostitutes are available'),\n", + " ('brothel', 'a building where prostitutes are available')]},\n", " {'answer': 'bailiwick',\n", " 'hint': 'synonyms for bailiwick',\n", " 'clues': [('field of study', 'a branch of knowledge'),\n", - " ('subject field', 'a branch of knowledge'),\n", - " ('discipline', 'a branch of knowledge'),\n", + " ('subject area', 'a branch of knowledge'),\n", " ('field', 'a branch of knowledge'),\n", " ('study', 'a branch of knowledge'),\n", - " ('subject area', 'a branch of knowledge'),\n", - " ('subject', 'a branch of knowledge')]},\n", + " ('subject', 'a branch of knowledge'),\n", + " ('subject field', 'a branch of knowledge'),\n", + " ('discipline', 'a branch of knowledge')]},\n", " {'answer': 'bait',\n", " 'hint': 'synonyms for bait',\n", - " 'clues': [('lure',\n", - " 'something used to lure fish or other animals into danger so they can be trapped or killed'),\n", - " ('hook', 'anything that serves as an enticement'),\n", - " ('come-on', 'anything that serves as an enticement'),\n", + " 'clues': [('hook', 'anything that serves as an enticement'),\n", " ('decoy',\n", " 'something used to lure fish or other animals into danger so they can be trapped or killed'),\n", - " ('sweetener', 'anything that serves as an enticement')]},\n", + " ('sweetener', 'anything that serves as an enticement'),\n", + " ('lure',\n", + " 'something used to lure fish or other animals into danger so they can be trapped or killed'),\n", + " ('come-on', 'anything that serves as an enticement')]},\n", " {'answer': 'baking_soda',\n", " 'hint': 'synonyms for baking soda',\n", - " 'clues': [('saleratus',\n", - " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", - " ('bicarbonate of soda',\n", + " 'clues': [('bicarbonate of soda',\n", " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", " ('sodium bicarbonate',\n", " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", " ('sodium hydrogen carbonate',\n", + " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", + " ('saleratus',\n", " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid')]},\n", " {'answer': 'baksheesh',\n", " 'hint': 'synonyms for baksheesh',\n", - " 'clues': [('gratuity',\n", - " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('tip',\n", + " 'clues': [('tip',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('bakshish',\n", + " ('pourboire',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", " ('backsheesh',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('pourboire',\n", + " ('bakshis',\n", + " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", + " ('gratuity',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n", " {'answer': 'bakshis',\n", " 'hint': 'synonyms for bakshis',\n", - " 'clues': [('gratuity',\n", + " 'clues': [('tip',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('tip',\n", + " ('baksheesh',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('bakshish',\n", + " ('pourboire',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('backsheesh',\n", + " ('gratuity',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('pourboire',\n", + " ('bakshish',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n", " {'answer': 'bakshish',\n", " 'hint': 'synonyms for bakshish',\n", - " 'clues': [('gratuity',\n", + " 'clues': [('tip',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('tip',\n", + " ('baksheesh',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", " ('bakshis',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", - " ('backsheesh',\n", - " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", " ('pourboire',\n", + " 'a relatively small amount of money given for services rendered (as by a waiter)'),\n", + " ('gratuity',\n", " 'a relatively small amount of money given for services rendered (as by a waiter)')]},\n", " {'answer': 'balance',\n", " 'hint': 'synonyms for balance',\n", - " 'clues': [('symmetry',\n", + " 'clues': [('residuum',\n", + " 'something left after other parts have been taken away'),\n", + " ('counterpoise', 'a weight that balances another weight'),\n", + " ('symmetricalness',\n", " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane'),\n", " ('equilibrium', 'equality of distribution'),\n", - " ('remainder', 'something left after other parts have been taken away'),\n", - " ('counterbalance', 'equality of distribution'),\n", - " ('correspondence',\n", - " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane'),\n", - " ('counterweight', 'a weight that balances another weight'),\n", - " ('balance wheel',\n", - " 'a wheel that regulates the rate of movement in a machine; especially a wheel oscillating against the hairspring of a timepiece to regulate its beat'),\n", - " ('residue', 'something left after other parts have been taken away'),\n", - " ('equalizer', 'a weight that balances another weight'),\n", - " ('symmetricalness',\n", + " ('rest', 'something left after other parts have been taken away'),\n", + " ('symmetry',\n", " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane'),\n", - " ('residual', 'something left after other parts have been taken away'),\n", - " ('proportionality',\n", - " 'harmonious arrangement or relation of parts or elements within a whole (as in a design); - John Ruskin'),\n", " ('proportion',\n", " 'harmonious arrangement or relation of parts or elements within a whole (as in a design); - John Ruskin'),\n", - " ('rest', 'something left after other parts have been taken away'),\n", + " ('proportionality',\n", + " 'harmonious arrangement or relation of parts or elements within a whole (as in a design); - John Ruskin'),\n", + " ('equaliser', 'a weight that balances another weight'),\n", + " ('remainder', 'something left after other parts have been taken away'),\n", + " ('counterweight', 'a weight that balances another weight'),\n", + " ('residue', 'something left after other parts have been taken away'),\n", " ('equipoise', 'equality of distribution'),\n", - " ('counterpoise', 'a weight that balances another weight'),\n", - " ('residuum', 'something left after other parts have been taken away')]},\n", + " ('residual', 'something left after other parts have been taken away'),\n", + " ('balance wheel',\n", + " 'a wheel that regulates the rate of movement in a machine; especially a wheel oscillating against the hairspring of a timepiece to regulate its beat'),\n", + " ('counterbalance', 'a weight that balances another weight'),\n", + " ('correspondence',\n", + " '(mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane')]},\n", " {'answer': 'balk',\n", " 'hint': 'synonyms for balk',\n", - " 'clues': [('rafter',\n", - " 'one of several parallel sloping beams that support a roof'),\n", - " ('baulk', 'the area on a billiard table behind the balkline'),\n", - " ('impediment',\n", + " 'clues': [('impediment',\n", " 'something immaterial that interferes with or delays action or progress'),\n", - " ('handicap',\n", + " ('baulk', 'the area on a billiard table behind the balkline'),\n", + " ('check',\n", " 'something immaterial that interferes with or delays action or progress'),\n", " ('hindrance',\n", " 'something immaterial that interferes with or delays action or progress'),\n", - " ('check',\n", + " ('rafter', 'one of several parallel sloping beams that support a roof'),\n", + " ('handicap',\n", " 'something immaterial that interferes with or delays action or progress'),\n", " ('deterrent',\n", " 'something immaterial that interferes with or delays action or progress')]},\n", " {'answer': 'ball',\n", " 'hint': 'synonyms for ball',\n", - " 'clues': [('glob', 'a compact mass'),\n", - " ('lump', 'a compact mass'),\n", - " ('chunk', 'a compact mass'),\n", - " ('orb', 'an object with a spherical shape'),\n", + " 'clues': [('clump', 'a compact mass'),\n", " ('musket ball', 'a solid projectile that is shot by a musket'),\n", + " ('clod', 'a compact mass'),\n", " ('formal', 'a lavish dance requiring formal attire'),\n", - " ('clod', 'a compact mass')]},\n", + " ('chunk', 'a compact mass'),\n", + " ('glob', 'a compact mass'),\n", + " ('orb', 'an object with a spherical shape')]},\n", " {'answer': 'ballista',\n", " 'hint': 'synonyms for ballista',\n", - " 'clues': [('trebucket',\n", + " 'clues': [('mangonel',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('mangonel',\n", + " ('trebucket',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('catapult',\n", + " ('arbalist',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('arbalest',\n", + " ('onager',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", " ('bricole',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles'),\n", - " ('onager',\n", + " ('catapult',\n", " 'an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles')]},\n", " {'answer': 'balm',\n", " 'hint': 'synonyms for balm',\n", " 'clues': [('salve',\n", " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n", - " ('unction',\n", - " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n", " ('unguent',\n", " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n", + " ('unction',\n", + " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation'),\n", " ('ointment',\n", " 'semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation')]},\n", " {'answer': 'baloney',\n", " 'hint': 'synonyms for baloney',\n", - " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n", - " ('tarradiddle', 'pretentious or silly talk or writing'),\n", - " ('tommyrot', 'pretentious or silly talk or writing'),\n", + " 'clues': [('tarradiddle', 'pretentious or silly talk or writing'),\n", + " ('twaddle', 'pretentious or silly talk or writing'),\n", + " ('tosh', 'pretentious or silly talk or writing'),\n", + " ('bilgewater', 'pretentious or silly talk or writing'),\n", " ('bosh', 'pretentious or silly talk or writing'),\n", " ('boloney', 'pretentious or silly talk or writing'),\n", - " ('bilgewater', 'pretentious or silly talk or writing'),\n", + " ('tommyrot', 'pretentious or silly talk or writing'),\n", " ('humbug', 'pretentious or silly talk or writing'),\n", - " ('drool', 'pretentious or silly talk or writing'),\n", - " ('tosh', 'pretentious or silly talk or writing')]},\n", + " ('drool', 'pretentious or silly talk or writing')]},\n", " {'answer': 'balusters',\n", " 'hint': 'synonyms for balusters',\n", " 'clues': [('bannister',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", - " ('handrail',\n", + " ('balustrade',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", " ('baluster', 'one of a number of closely spaced supports for a railing'),\n", - " ('balustrade',\n", + " ('handrail',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling')]},\n", " {'answer': 'bam',\n", " 'hint': 'synonyms for bam',\n", - " 'clues': [('blast', 'a sudden very loud noise'),\n", + " 'clues': [('eruption', 'a sudden very loud noise'),\n", " ('bang', 'a sudden very loud noise'),\n", " ('clap', 'a sudden very loud noise'),\n", - " ('eruption', 'a sudden very loud noise')]},\n", + " ('blast', 'a sudden very loud noise')]},\n", " {'answer': 'ban',\n", " 'hint': 'synonyms for ban',\n", - " 'clues': [('proscription', 'a decree that prohibits something'),\n", + " 'clues': [('forbidding',\n", + " 'an official prohibition or edict against something'),\n", " ('forbiddance', 'an official prohibition or edict against something'),\n", + " ('banning', 'an official prohibition or edict against something'),\n", " ('prohibition', 'a decree that prohibits something'),\n", - " ('forbidding', 'an official prohibition or edict against something'),\n", - " ('banning', 'an official prohibition or edict against something')]},\n", + " ('proscription', 'a decree that prohibits something')]},\n", " {'answer': 'banality',\n", " 'hint': 'synonyms for banality',\n", - " 'clues': [('cliche', 'a trite or obvious remark'),\n", - " ('platitude', 'a trite or obvious remark'),\n", + " 'clues': [('bromide', 'a trite or obvious remark'),\n", " ('commonplace', 'a trite or obvious remark'),\n", - " ('bromide', 'a trite or obvious remark')]},\n", + " ('cliche', 'a trite or obvious remark'),\n", + " ('platitude', 'a trite or obvious remark')]},\n", " {'answer': 'band',\n", " 'hint': 'synonyms for band',\n", - " 'clues': [('striation', 'a stripe or stripes of contrasting color'),\n", - " ('lot', 'an unofficial association of people or groups'),\n", - " ('circle', 'an unofficial association of people or groups'),\n", - " ('set', 'an unofficial association of people or groups'),\n", + " 'clues': [('banding',\n", + " 'an adornment consisting of a strip of a contrasting color or material'),\n", + " ('dance band', 'a group of musicians playing popular music for dancing'),\n", " ('ring',\n", " 'jewelry consisting of a circlet of precious metal (often set with jewels) worn on the finger'),\n", - " ('dance band', 'a group of musicians playing popular music for dancing'),\n", + " ('set', 'an unofficial association of people or groups'),\n", + " ('lot', 'an unofficial association of people or groups'),\n", + " ('dance orchestra',\n", + " 'a group of musicians playing popular music for dancing'),\n", " ('stria', 'a stripe or stripes of contrasting color'),\n", " ('stripe',\n", " 'an adornment consisting of a strip of a contrasting color or material'),\n", - " ('dance orchestra',\n", - " 'a group of musicians playing popular music for dancing'),\n", - " ('banding',\n", - " 'an adornment consisting of a strip of a contrasting color or material')]},\n", + " ('circle', 'an unofficial association of people or groups'),\n", + " ('striation', 'a stripe or stripes of contrasting color')]},\n", " {'answer': 'bandelet',\n", " 'hint': 'synonyms for bandelet',\n", - " 'clues': [('square and rabbet',\n", - " 'molding in the form of a ring; at top of a column'),\n", + " 'clues': [('bandlet', 'molding in the form of a ring; at top of a column'),\n", " ('annulet', 'molding in the form of a ring; at top of a column'),\n", - " ('bandelette', 'molding in the form of a ring; at top of a column'),\n", - " ('bandlet', 'molding in the form of a ring; at top of a column')]},\n", + " ('square and rabbet',\n", + " 'molding in the form of a ring; at top of a column'),\n", + " ('bandelette', 'molding in the form of a ring; at top of a column')]},\n", " {'answer': 'banding',\n", " 'hint': 'synonyms for banding',\n", - " 'clues': [('striation', 'a stripe or stripes of contrasting color'),\n", - " ('stria', 'a stripe or stripes of contrasting color'),\n", + " 'clues': [('stria', 'a stripe or stripes of contrasting color'),\n", + " ('band',\n", + " 'an adornment consisting of a strip of a contrasting color or material'),\n", " ('stripe',\n", " 'an adornment consisting of a strip of a contrasting color or material'),\n", - " ('band',\n", - " 'an adornment consisting of a strip of a contrasting color or material')]},\n", + " ('striation', 'a stripe or stripes of contrasting color')]},\n", " {'answer': 'bangle',\n", " 'hint': 'synonyms for bangle',\n", - " 'clues': [('bauble', 'cheap showy jewelry or ornament on clothing'),\n", - " ('bracelet', 'jewelry worn around the wrist for decoration'),\n", - " ('gaud', 'cheap showy jewelry or ornament on clothing'),\n", + " 'clues': [('novelty', 'cheap showy jewelry or ornament on clothing'),\n", + " ('bauble', 'cheap showy jewelry or ornament on clothing'),\n", " ('gewgaw', 'cheap showy jewelry or ornament on clothing'),\n", - " ('novelty', 'cheap showy jewelry or ornament on clothing'),\n", + " ('gaud', 'cheap showy jewelry or ornament on clothing'),\n", " ('trinket', 'cheap showy jewelry or ornament on clothing'),\n", - " ('fallal', 'cheap showy jewelry or ornament on clothing')]},\n", + " ('fallal', 'cheap showy jewelry or ornament on clothing'),\n", + " ('bracelet', 'jewelry worn around the wrist for decoration')]},\n", " {'answer': 'banister',\n", " 'hint': 'synonyms for banister',\n", - " 'clues': [('bannister',\n", - " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", - " ('balusters',\n", + " 'clues': [('balusters',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", " ('balustrade',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", + " ('bannister',\n", + " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", " ('handrail',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling')]},\n", " {'answer': 'bank',\n", " 'hint': 'synonyms for bank',\n", - " 'clues': [('money box',\n", - " 'a container (usually with a slot in the top) for keeping money at home'),\n", - " ('cant',\n", + " 'clues': [('cant',\n", " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force'),\n", - " ('depository financial institution',\n", + " ('banking concern',\n", " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", + " ('money box',\n", + " 'a container (usually with a slot in the top) for keeping money at home'),\n", " ('coin bank',\n", " 'a container (usually with a slot in the top) for keeping money at home'),\n", - " ('banking concern',\n", - " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", + " ('bank building',\n", + " 'a building in which the business of banking transacted'),\n", " ('banking company',\n", " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", " ('savings bank',\n", " 'a container (usually with a slot in the top) for keeping money at home'),\n", - " ('bank building',\n", - " 'a building in which the business of banking transacted'),\n", " ('camber',\n", - " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force')]},\n", + " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force'),\n", + " ('depository financial institution',\n", + " 'a financial institution that accepts deposits and channels the money into lending activities')]},\n", " {'answer': 'bank_bill',\n", " 'hint': 'synonyms for bank bill',\n", - " 'clues': [('note',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('bill',\n", + " 'clues': [('greenback',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", " ('government note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", @@ -33023,193 +33053,197 @@ " 'a piece of paper money (especially one issued by a central bank)'),\n", " (\"banker's bill\",\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('greenback',\n", + " ('bill',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", + " ('note',\n", " 'a piece of paper money (especially one issued by a central bank)')]},\n", " {'answer': 'bank_line',\n", " 'hint': 'synonyms for bank line',\n", - " 'clues': [('line', 'the maximum credit that a customer is allowed'),\n", - " ('personal credit line', 'the maximum credit that a customer is allowed'),\n", - " ('credit line', 'the maximum credit that a customer is allowed'),\n", + " 'clues': [('line of credit',\n", + " 'the maximum credit that a customer is allowed'),\n", " ('personal line of credit',\n", " 'the maximum credit that a customer is allowed'),\n", - " ('line of credit', 'the maximum credit that a customer is allowed')]},\n", + " ('line', 'the maximum credit that a customer is allowed'),\n", + " ('credit line', 'the maximum credit that a customer is allowed'),\n", + " ('personal credit line',\n", + " 'the maximum credit that a customer is allowed')]},\n", " {'answer': 'bank_note',\n", " 'hint': 'synonyms for bank note',\n", - " 'clues': [('bank bill',\n", + " 'clues': [('greenback',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('note',\n", + " ('bank bill',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('bill',\n", + " ('government note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('greenback',\n", + " (\"banker's bill\",\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('banknote',\n", + " ('bill',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " (\"banker's bill\",\n", + " ('note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('government note',\n", + " ('banknote',\n", " 'a piece of paper money (especially one issued by a central bank)')]},\n", " {'answer': \"banker's_bill\",\n", " 'hint': \"synonyms for banker's bill\",\n", - " 'clues': [('bank bill',\n", + " 'clues': [('greenback',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('note',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('bill',\n", + " ('bank bill',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", " ('government note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", " ('bank note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('greenback',\n", + " ('bill',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", + " ('note',\n", " 'a piece of paper money (especially one issued by a central bank)')]},\n", " {'answer': 'banknote',\n", " 'hint': 'synonyms for banknote',\n", - " 'clues': [('bank bill',\n", + " 'clues': [('greenback',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('note',\n", + " ('bank bill',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('bill',\n", + " ('bank note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", " ('government note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('bank note',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", " (\"banker's bill\",\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('greenback',\n", + " ('bill',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", + " ('note',\n", " 'a piece of paper money (especially one issued by a central bank)')]},\n", " {'answer': 'banks',\n", " 'hint': 'synonyms for banks',\n", - " 'clues': [('bank', 'a long ridge or pile'),\n", - " ('depository financial institution',\n", - " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", - " ('coin bank',\n", + " 'clues': [('bank',\n", " 'a container (usually with a slot in the top) for keeping money at home'),\n", " ('bank building',\n", " 'a building in which the business of banking transacted'),\n", - " ('money box',\n", + " ('savings bank',\n", " 'a container (usually with a slot in the top) for keeping money at home'),\n", + " ('depository financial institution',\n", + " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", " ('cant',\n", " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force'),\n", " ('banking concern',\n", " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", + " ('money box',\n", + " 'a container (usually with a slot in the top) for keeping money at home'),\n", + " ('coin bank',\n", + " 'a container (usually with a slot in the top) for keeping money at home'),\n", " ('banking company',\n", " 'a financial institution that accepts deposits and channels the money into lending activities'),\n", - " ('savings bank',\n", - " 'a container (usually with a slot in the top) for keeping money at home'),\n", " ('camber',\n", " 'a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force')]},\n", " {'answer': 'bannister',\n", " 'hint': 'synonyms for bannister',\n", - " 'clues': [('handrail',\n", + " 'clues': [('banister',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", " ('balusters',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", " ('balustrade',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling'),\n", - " ('banister',\n", + " ('handrail',\n", " 'a railing at the side of a staircase or balcony to prevent people from falling')]},\n", " {'answer': 'bar',\n", " 'hint': 'synonyms for bar',\n", - " 'clues': [('stripe',\n", + " 'clues': [('legal profession',\n", + " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", + " ('stripe',\n", " 'a narrow marking of a different color or texture from the background'),\n", - " ('taproom',\n", + " ('barroom',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", " ('prevention', 'the act of preventing'),\n", - " ('saloon',\n", + " ('taproom',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", " ('cake', 'a block of solid substance (such as soap or wax)'),\n", - " ('ginmill',\n", - " 'a room or establishment where alcoholic drinks are served over a counter'),\n", - " ('measure', 'musical notation for a repeating pattern of musical beats'),\n", - " ('legal profession',\n", - " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", " ('legal community',\n", " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", - " ('barroom',\n", - " 'a room or establishment where alcoholic drinks are served over a counter'),\n", + " ('measure', 'musical notation for a repeating pattern of musical beats'),\n", " ('streak',\n", - " 'a narrow marking of a different color or texture from the background')]},\n", + " 'a narrow marking of a different color or texture from the background'),\n", + " ('saloon',\n", + " 'a room or establishment where alcoholic drinks are served over a counter'),\n", + " ('ginmill',\n", + " 'a room or establishment where alcoholic drinks are served over a counter')]},\n", " {'answer': 'barb',\n", " 'hint': 'synonyms for barb',\n", - " 'clues': [('gibe',\n", - " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('shot',\n", + " 'clues': [('dig',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", " ('shaft',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", - " ('dig',\n", - " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", " ('jibe',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", + " ('gibe',\n", + " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", + " ('shot',\n", + " 'an aggressive remark directed at a person like a missile and intended to have a telling effect'),\n", " ('slam',\n", " 'an aggressive remark directed at a person like a missile and intended to have a telling effect')]},\n", " {'answer': 'barbarity',\n", " 'hint': 'synonyms for barbarity',\n", - " 'clues': [('atrociousness',\n", - " 'the quality of being shockingly cruel and inhumane'),\n", - " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n", - " ('brutality', 'a brutal barbarous savage act'),\n", + " 'clues': [('barbarism', 'a brutal barbarous savage act'),\n", " ('barbarousness', 'the quality of being shockingly cruel and inhumane'),\n", + " ('atrociousness', 'the quality of being shockingly cruel and inhumane'),\n", + " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n", " ('atrocity', 'the quality of being shockingly cruel and inhumane'),\n", - " ('barbarism', 'a brutal barbarous savage act'),\n", - " ('savagery', 'a brutal barbarous savage act')]},\n", + " ('savagery', 'a brutal barbarous savage act'),\n", + " ('brutality', 'a brutal barbarous savage act')]},\n", " {'answer': 'barbarousness',\n", " 'hint': 'synonyms for barbarousness',\n", - " 'clues': [('atrocity',\n", + " 'clues': [('barbarity',\n", " 'the quality of being shockingly cruel and inhumane'),\n", " ('atrociousness', 'the quality of being shockingly cruel and inhumane'),\n", " ('heinousness', 'the quality of being shockingly cruel and inhumane'),\n", - " ('barbarity', 'the quality of being shockingly cruel and inhumane')]},\n", + " ('atrocity', 'the quality of being shockingly cruel and inhumane')]},\n", " {'answer': 'barbital',\n", " 'hint': 'synonyms for barbital',\n", " 'clues': [('diethylbarbituric acid', 'a barbiturate used as a hypnotic'),\n", - " ('veronal', 'a barbiturate used as a hypnotic'),\n", " ('diethylmalonylurea', 'a barbiturate used as a hypnotic'),\n", + " ('veronal', 'a barbiturate used as a hypnotic'),\n", " ('barbitone', 'a barbiturate used as a hypnotic')]},\n", " {'answer': 'barbitone',\n", " 'hint': 'synonyms for barbitone',\n", - " 'clues': [('veronal', 'a barbiturate used as a hypnotic'),\n", - " ('diethylmalonylurea', 'a barbiturate used as a hypnotic'),\n", + " 'clues': [('diethylbarbituric acid', 'a barbiturate used as a hypnotic'),\n", " ('barbital', 'a barbiturate used as a hypnotic'),\n", - " ('diethylbarbituric acid', 'a barbiturate used as a hypnotic')]},\n", + " ('diethylmalonylurea', 'a barbiturate used as a hypnotic'),\n", + " ('veronal', 'a barbiturate used as a hypnotic')]},\n", " {'answer': 'baring',\n", " 'hint': 'synonyms for baring',\n", - " 'clues': [('stripping', 'the removal of covering'),\n", - " ('husking', 'the removal of covering'),\n", + " 'clues': [('husking', 'the removal of covering'),\n", " ('denudation', 'the removal of covering'),\n", - " ('uncovering', 'the removal of covering')]},\n", + " ('uncovering', 'the removal of covering'),\n", + " ('stripping', 'the removal of covering')]},\n", " {'answer': 'barium_sulphate',\n", " 'hint': 'synonyms for barium sulphate',\n", - " 'clues': [('barytes',\n", - " 'a white or colorless mineral (BaSO4); the main source of barium'),\n", - " ('barium sulfate',\n", + " 'clues': [('barium sulfate',\n", " 'a white insoluble radiopaque powder used as a pigment'),\n", + " ('blanc fixe', 'a white insoluble radiopaque powder used as a pigment'),\n", " ('barite',\n", " 'a white or colorless mineral (BaSO4); the main source of barium'),\n", - " ('blanc fixe', 'a white insoluble radiopaque powder used as a pigment'),\n", " ('heavy spar',\n", + " 'a white or colorless mineral (BaSO4); the main source of barium'),\n", + " ('barytes',\n", " 'a white or colorless mineral (BaSO4); the main source of barium')]},\n", " {'answer': 'barrage',\n", " 'hint': 'synonyms for barrage',\n", - " 'clues': [('barrage fire',\n", + " 'clues': [('shelling',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('onslaught',\n", - " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n", " ('battery',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('outpouring',\n", + " ('barrage fire',\n", + " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", + " ('onslaught',\n", " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n", " ('bombardment',\n", - " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n", - " ('shelling',\n", - " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n", + " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", + " ('outpouring',\n", + " 'the rapid and continuous delivery of linguistic communication (spoken or written)')]},\n", " {'answer': 'barrage_fire',\n", " 'hint': 'synonyms for barrage fire',\n", - " 'clues': [('battery',\n", + " 'clues': [('shelling',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('shelling',\n", + " ('battery',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", " ('bombardment',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", @@ -33217,31 +33251,32 @@ " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n", " {'answer': 'barrel',\n", " 'hint': 'synonyms for barrel',\n", - " 'clues': [('bbl', 'any of various units of capacity'),\n", - " ('drum', 'a bulging cylindrical shape; hollow with flat ends'),\n", + " 'clues': [('barrelful',\n", + " 'the quantity that a barrel (of any size) will hold'),\n", " ('cask', 'a cylindrical container that holds liquids'),\n", - " ('barrelful', 'the quantity that a barrel (of any size) will hold'),\n", " ('gun barrel',\n", - " 'a tube through which a bullet travels when a gun is fired')]},\n", + " 'a tube through which a bullet travels when a gun is fired'),\n", + " ('drum', 'a bulging cylindrical shape; hollow with flat ends'),\n", + " ('bbl', 'any of various units of capacity')]},\n", " {'answer': 'barrel_organ',\n", " 'hint': 'synonyms for barrel organ',\n", " 'clues': [('hand organ',\n", " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n", + " ('grind organ',\n", + " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n", " ('street organ',\n", " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n", " ('hurdy-gurdy',\n", - " 'a musical instrument that makes music by rotation of a cylinder studded with pegs'),\n", - " ('grind organ',\n", " 'a musical instrument that makes music by rotation of a cylinder studded with pegs')]},\n", " {'answer': 'barrels',\n", " 'hint': 'synonyms for barrels',\n", " 'clues': [('barrel',\n", " 'a tube through which a bullet travels when a gun is fired'),\n", - " ('barrelful', 'the quantity that a barrel (of any size) will hold'),\n", - " ('bbl', 'any of various units of capacity'),\n", " ('gun barrel',\n", " 'a tube through which a bullet travels when a gun is fired'),\n", " ('drum', 'a bulging cylindrical shape; hollow with flat ends'),\n", + " ('bbl', 'any of various units of capacity'),\n", + " ('barrelful', 'the quantity that a barrel (of any size) will hold'),\n", " ('cask', 'a cylindrical container that holds liquids')]},\n", " {'answer': 'barroom',\n", " 'hint': 'synonyms for barroom',\n", @@ -33249,515 +33284,513 @@ " 'a room or establishment where alcoholic drinks are served over a counter'),\n", " ('taproom',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", - " ('ginmill',\n", - " 'a room or establishment where alcoholic drinks are served over a counter'),\n", " ('saloon',\n", + " 'a room or establishment where alcoholic drinks are served over a counter'),\n", + " ('ginmill',\n", " 'a room or establishment where alcoholic drinks are served over a counter')]},\n", " {'answer': 'barrow',\n", " 'hint': 'synonyms for barrow',\n", - " 'clues': [('grave mound',\n", - " '(archeology) a heap of earth placed over prehistoric tombs'),\n", - " ('burial mound',\n", + " 'clues': [('tumulus',\n", " '(archeology) a heap of earth placed over prehistoric tombs'),\n", " ('garden cart',\n", " 'a cart for carrying small loads; has handles and one or more wheels'),\n", + " ('burial mound',\n", + " '(archeology) a heap of earth placed over prehistoric tombs'),\n", + " ('barrowful', 'the quantity that a barrow will hold'),\n", + " ('grave mound',\n", + " '(archeology) a heap of earth placed over prehistoric tombs'),\n", " ('wheelbarrow',\n", " 'a cart for carrying small loads; has handles and one or more wheels'),\n", " ('lawn cart',\n", - " 'a cart for carrying small loads; has handles and one or more wheels'),\n", - " ('tumulus', '(archeology) a heap of earth placed over prehistoric tombs'),\n", - " ('barrowful', 'the quantity that a barrow will hold')]},\n", + " 'a cart for carrying small loads; has handles and one or more wheels')]},\n", " {'answer': 'bars',\n", " 'hint': 'synonyms for bars',\n", - " 'clues': [('bar', 'a heating element in an electric fire'),\n", - " ('prevention', 'the act of preventing'),\n", - " ('parallel bars',\n", - " 'gymnastic apparatus consisting of two parallel wooden rods supported on uprights'),\n", - " ('measure', 'musical notation for a repeating pattern of musical beats'),\n", - " ('legal profession',\n", - " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", + " 'clues': [('stripe',\n", + " 'a narrow marking of a different color or texture from the background'),\n", " ('barroom',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", - " ('streak',\n", - " 'a narrow marking of a different color or texture from the background'),\n", + " ('bar', 'a counter where you can obtain food or drink'),\n", " ('taproom',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", - " ('stripe',\n", - " 'a narrow marking of a different color or texture from the background'),\n", + " ('legal community',\n", + " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", " ('saloon',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", + " ('legal profession',\n", + " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", " ('ginmill',\n", " 'a room or establishment where alcoholic drinks are served over a counter'),\n", - " ('legal community',\n", - " 'the body of individuals qualified to practice law in a particular jurisdiction'),\n", - " ('cake', 'a block of solid substance (such as soap or wax)')]},\n", + " ('prevention', 'the act of preventing'),\n", + " ('cake', 'a block of solid substance (such as soap or wax)'),\n", + " ('parallel bars',\n", + " 'gymnastic apparatus consisting of two parallel wooden rods supported on uprights'),\n", + " ('measure', 'musical notation for a repeating pattern of musical beats'),\n", + " ('streak',\n", + " 'a narrow marking of a different color or texture from the background')]},\n", " {'answer': 'baseness',\n", " 'hint': 'synonyms for baseness',\n", - " 'clues': [('despicableness',\n", + " 'clues': [('contemptibility',\n", " 'unworthiness by virtue of lacking higher values'),\n", - " ('contemptibility', 'unworthiness by virtue of lacking higher values'),\n", - " ('despicability', 'unworthiness by virtue of lacking higher values'),\n", - " ('sordidness', 'unworthiness by virtue of lacking higher values')]},\n", + " ('sordidness', 'unworthiness by virtue of lacking higher values'),\n", + " ('despicableness', 'unworthiness by virtue of lacking higher values'),\n", + " ('despicability', 'unworthiness by virtue of lacking higher values')]},\n", " {'answer': 'bash',\n", " 'hint': 'synonyms for bash',\n", " 'clues': [('bang', 'a vigorous blow'),\n", - " ('do', 'an uproarious party'),\n", - " ('belt', 'a vigorous blow'),\n", + " ('knock', 'a vigorous blow'),\n", " ('smash', 'a vigorous blow'),\n", " ('brawl', 'an uproarious party'),\n", - " ('knock', 'a vigorous blow')]},\n", + " ('belt', 'a vigorous blow'),\n", + " ('do', 'an uproarious party')]},\n", " {'answer': 'basic_principle',\n", " 'hint': 'synonyms for basic principle',\n", - " 'clues': [('bedrock', 'principles from which other truths can be derived'),\n", - " ('fundamentals', 'principles from which other truths can be derived'),\n", + " 'clues': [('fundamental principle',\n", + " 'principles from which other truths can be derived'),\n", + " ('bedrock', 'principles from which other truths can be derived'),\n", " ('basics', 'principles from which other truths can be derived'),\n", - " ('fundamental principle',\n", - " 'principles from which other truths can be derived')]},\n", + " ('fundamentals', 'principles from which other truths can be derived')]},\n", " {'answer': 'basics',\n", " 'hint': 'synonyms for basics',\n", - " 'clues': [('fundamentals',\n", - " 'principles from which other truths can be derived'),\n", - " ('rudiments', 'a statement of fundamental facts or principles'),\n", - " ('staple',\n", - " '(usually plural) a necessary commodity for which demand is constant'),\n", - " ('bedrock', 'principles from which other truths can be derived'),\n", + " 'clues': [('bedrock', 'principles from which other truths can be derived'),\n", " ('basic',\n", " '(usually plural) a necessary commodity for which demand is constant'),\n", - " ('basic principle', 'principles from which other truths can be derived'),\n", + " ('fundamentals', 'principles from which other truths can be derived'),\n", " ('fundamental principle',\n", + " 'principles from which other truths can be derived'),\n", + " ('staple',\n", + " '(usually plural) a necessary commodity for which demand is constant'),\n", + " ('rudiments', 'a statement of fundamental facts or principles'),\n", + " ('basic principle',\n", " 'principles from which other truths can be derived')]},\n", " {'answer': 'basin',\n", " 'hint': 'synonyms for basin',\n", - " 'clues': [('watershed',\n", + " 'clues': [('drainage basin',\n", " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", + " ('catchment basin',\n", + " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", + " ('basinful', 'the quantity that a basin will hold'),\n", " ('washbowl',\n", " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n", - " ('lavatory',\n", - " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n", - " ('catchment area',\n", + " ('watershed',\n", " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", - " ('washstand',\n", + " ('washbasin',\n", + " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n", + " ('lavatory',\n", " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n", - " ('basinful', 'the quantity that a basin will hold'),\n", - " ('catchment basin',\n", - " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", - " ('drainage basin',\n", - " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", " ('drainage area',\n", " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", " ('river basin',\n", " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet'),\n", - " ('washbasin',\n", - " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face')]},\n", + " ('washstand',\n", + " 'a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face'),\n", + " ('catchment area',\n", + " 'the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet')]},\n", " {'answer': 'basis',\n", " 'hint': 'synonyms for basis',\n", - " 'clues': [('ground',\n", - " 'a relation that provides the foundation for something'),\n", - " ('cornerstone',\n", - " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", - " ('base',\n", + " 'clues': [('fundament',\n", " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", + " ('ground', 'a relation that provides the foundation for something'),\n", + " ('base', 'the most important or necessary part of something'),\n", " ('groundwork',\n", " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", " ('footing', 'a relation that provides the foundation for something'),\n", - " ('fundament',\n", - " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", " ('foundation',\n", + " 'the fundamental assumptions from which something is begun or developed or calculated or explained'),\n", + " ('cornerstone',\n", " 'the fundamental assumptions from which something is begun or developed or calculated or explained')]},\n", " {'answer': 'basket',\n", " 'hint': 'synonyms for basket',\n", " 'clues': [('basketball hoop',\n", " 'horizontal circular metal hoop supporting a net through which players try to throw the basketball'),\n", + " ('field goal',\n", + " 'a score in basketball made by throwing the ball through the hoop'),\n", + " ('basketful', 'the quantity contained in a basket'),\n", " ('hoop',\n", " 'horizontal circular metal hoop supporting a net through which players try to throw the basketball'),\n", - " ('handbasket', 'a container that is usually woven and has handles'),\n", - " ('basketful', 'the quantity contained in a basket'),\n", - " ('field goal',\n", - " 'a score in basketball made by throwing the ball through the hoop')]},\n", + " ('handbasket', 'a container that is usually woven and has handles')]},\n", " {'answer': 'bass_fiddle',\n", " 'hint': 'synonyms for bass fiddle',\n", " 'clues': [('contrabass', 'largest and lowest member of the violin family'),\n", - " ('string bass', 'largest and lowest member of the violin family'),\n", - " ('bull fiddle', 'largest and lowest member of the violin family'),\n", " ('double bass', 'largest and lowest member of the violin family'),\n", - " ('bass viol', 'largest and lowest member of the violin family')]},\n", + " ('bass viol', 'largest and lowest member of the violin family'),\n", + " ('bull fiddle', 'largest and lowest member of the violin family'),\n", + " ('string bass', 'largest and lowest member of the violin family')]},\n", " {'answer': 'bass_viol',\n", " 'hint': 'synonyms for bass viol',\n", - " 'clues': [('bass fiddle',\n", - " 'largest and lowest member of the violin family'),\n", + " 'clues': [('viola da gamba',\n", + " 'viol that is the bass member of the viol family with approximately the range of the cello'),\n", " ('contrabass', 'largest and lowest member of the violin family'),\n", - " ('string bass', 'largest and lowest member of the violin family'),\n", - " ('bull fiddle', 'largest and lowest member of the violin family'),\n", " ('double bass', 'largest and lowest member of the violin family'),\n", " ('gamba',\n", " 'viol that is the bass member of the viol family with approximately the range of the cello'),\n", - " ('viola da gamba',\n", - " 'viol that is the bass member of the viol family with approximately the range of the cello')]},\n", + " ('bull fiddle', 'largest and lowest member of the violin family'),\n", + " ('bass fiddle', 'largest and lowest member of the violin family'),\n", + " ('string bass', 'largest and lowest member of the violin family')]},\n", " {'answer': 'batch',\n", " 'hint': 'synonyms for batch',\n", - " 'clues': [('pile',\n", + " 'clues': [('heap',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('peck', \"(often followed by `of') a large number or amount or extent\"),\n", " ('flock', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('good deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mountain',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('great deal',\n", - " \"(often followed by `of') a large number or amount or extent\"),\n", - " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", " ('clutch', 'a collection of things or persons to be handled together'),\n", - " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('heap', \"(often followed by `of') a large number or amount or extent\"),\n", " ('quite a little',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mess', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('sight', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('wad', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mickle', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('stack', \"(often followed by `of') a large number or amount or extent\"),\n", " ('passel', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('deal', \"(often followed by `of') a large number or amount or extent\"),\n", " ('plenty', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('tidy sum',\n", + " ('pile', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('slew', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('great deal',\n", " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('spate', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('muckle', \"(often followed by `of') a large number or amount or extent\"),\n", " ('mint', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('pot', \"(often followed by `of') a large number or amount or extent\"),\n", " ('lot', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('hatful', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('raft', \"(often followed by `of') a large number or amount or extent\"),\n", - " ('peck', \"(often followed by `of') a large number or amount or extent\")]},\n", + " ('tidy sum',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('good deal',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mass', \"(often followed by `of') a large number or amount or extent\"),\n", + " ('mountain',\n", + " \"(often followed by `of') a large number or amount or extent\"),\n", + " ('raft', \"(often followed by `of') a large number or amount or extent\")]},\n", " {'answer': 'bath',\n", " 'hint': 'synonyms for bath',\n", - " 'clues': [('tub',\n", + " 'clues': [('bathing tub',\n", " 'a relatively large open container that you fill with water and use to wash the body'),\n", - " ('bathtub',\n", + " ('tub',\n", " 'a relatively large open container that you fill with water and use to wash the body'),\n", - " ('bathing tub',\n", + " ('bathtub',\n", " 'a relatively large open container that you fill with water and use to wash the body'),\n", " ('bathroom',\n", " 'a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet')]},\n", " {'answer': 'bathing_costume',\n", " 'hint': 'synonyms for bathing costume',\n", - " 'clues': [('bathing suit', 'tight fitting garment worn for swimming'),\n", - " ('swimwear', 'tight fitting garment worn for swimming'),\n", - " ('swimsuit', 'tight fitting garment worn for swimming'),\n", - " ('swimming costume', 'tight fitting garment worn for swimming')]},\n", + " 'clues': [('swimsuit', 'tight fitting garment worn for swimming'),\n", + " ('swimming costume', 'tight fitting garment worn for swimming'),\n", + " ('bathing suit', 'tight fitting garment worn for swimming'),\n", + " ('swimwear', 'tight fitting garment worn for swimming')]},\n", " {'answer': 'bathing_suit',\n", " 'hint': 'synonyms for bathing suit',\n", - " 'clues': [('swimwear', 'tight fitting garment worn for swimming'),\n", + " 'clues': [('swimming costume', 'tight fitting garment worn for swimming'),\n", " ('bathing costume', 'tight fitting garment worn for swimming'),\n", " ('swimsuit', 'tight fitting garment worn for swimming'),\n", - " ('swimming costume', 'tight fitting garment worn for swimming')]},\n", + " ('swimwear', 'tight fitting garment worn for swimming')]},\n", " {'answer': 'bathroom',\n", " 'hint': 'synonyms for bathroom',\n", " 'clues': [('toilet',\n", " 'a room or building equipped with one or more toilets'),\n", - " ('can', 'a room or building equipped with one or more toilets'),\n", - " ('lavatory', 'a room or building equipped with one or more toilets'),\n", + " ('privy', 'a room or building equipped with one or more toilets'),\n", + " ('lav', 'a room or building equipped with one or more toilets'),\n", " ('john', 'a room or building equipped with one or more toilets'),\n", " ('bath',\n", " 'a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet'),\n", - " ('lav', 'a room or building equipped with one or more toilets'),\n", - " ('privy', 'a room or building equipped with one or more toilets')]},\n", + " ('can', 'a room or building equipped with one or more toilets'),\n", + " ('lavatory', 'a room or building equipped with one or more toilets')]},\n", " {'answer': 'baton',\n", " 'hint': 'synonyms for baton',\n", - " 'clues': [('nightstick', 'a short stout club used primarily by policemen'),\n", - " ('billystick', 'a short stout club used primarily by policemen'),\n", - " ('billy', 'a short stout club used primarily by policemen'),\n", - " ('truncheon', 'a short stout club used primarily by policemen'),\n", + " 'clues': [('billy club', 'a short stout club used primarily by policemen'),\n", " ('wand',\n", " 'a thin tapered rod used by a conductor to lead an orchestra or choir'),\n", - " ('billy club', 'a short stout club used primarily by policemen')]},\n", + " ('billy', 'a short stout club used primarily by policemen'),\n", + " ('nightstick', 'a short stout club used primarily by policemen'),\n", + " ('truncheon', 'a short stout club used primarily by policemen'),\n", + " ('billystick', 'a short stout club used primarily by policemen')]},\n", " {'answer': 'battalion',\n", " 'hint': 'synonyms for battalion',\n", - " 'clues': [('plurality', 'a large indefinite number'),\n", - " ('large number', 'a large indefinite number'),\n", + " 'clues': [('pack', 'a large indefinite number'),\n", " ('multitude', 'a large indefinite number'),\n", - " ('pack', 'a large indefinite number')]},\n", + " ('plurality', 'a large indefinite number'),\n", + " ('large number', 'a large indefinite number')]},\n", " {'answer': 'battercake',\n", " 'hint': 'synonyms for battercake',\n", - " 'clues': [('flannel cake',\n", - " 'a flat cake of thin batter fried on both sides on a griddle'),\n", - " ('flapjack',\n", + " 'clues': [('flapcake',\n", " 'a flat cake of thin batter fried on both sides on a griddle'),\n", - " ('pancake',\n", + " ('hotcake',\n", " 'a flat cake of thin batter fried on both sides on a griddle'),\n", " ('griddlecake',\n", " 'a flat cake of thin batter fried on both sides on a griddle'),\n", - " ('flapcake',\n", + " ('flannel cake',\n", + " 'a flat cake of thin batter fried on both sides on a griddle'),\n", + " ('pancake',\n", " 'a flat cake of thin batter fried on both sides on a griddle'),\n", - " ('hot cake',\n", + " ('flapjack',\n", " 'a flat cake of thin batter fried on both sides on a griddle')]},\n", " {'answer': 'battery',\n", " 'hint': 'synonyms for battery',\n", - " 'clues': [('stamp battery',\n", - " 'a series of stamps operated in one mortar for crushing ores'),\n", + " 'clues': [('electric battery',\n", + " 'a device that produces electricity; may have several primary or secondary cells arranged in parallel or series'),\n", + " ('shelling',\n", + " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", " ('barrage fire',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('barrage',\n", + " ('bombardment',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", + " ('stamp battery',\n", + " 'a series of stamps operated in one mortar for crushing ores'),\n", " ('assault and battery',\n", " 'an assault in which the assailant makes physical contact'),\n", - " ('electric battery',\n", - " 'a device that produces electricity; may have several primary or secondary cells arranged in parallel or series'),\n", - " ('shelling',\n", - " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('bombardment',\n", + " ('barrage',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n", " {'answer': 'battery-acid',\n", " 'hint': 'synonyms for battery-acid',\n", - " 'clues': [('dose', 'street name for lysergic acid diethylamide'),\n", + " 'clues': [('back breaker', 'street name for lysergic acid diethylamide'),\n", + " ('loony toons', 'street name for lysergic acid diethylamide'),\n", " ('pane', 'street name for lysergic acid diethylamide'),\n", - " ('acid', 'street name for lysergic acid diethylamide'),\n", - " ('back breaker', 'street name for lysergic acid diethylamide'),\n", - " ('superman', 'street name for lysergic acid diethylamide'),\n", " ('window pane', 'street name for lysergic acid diethylamide'),\n", + " ('dose', 'street name for lysergic acid diethylamide'),\n", " ('dot', 'street name for lysergic acid diethylamide'),\n", - " ('loony toons', 'street name for lysergic acid diethylamide')]},\n", + " ('acid', 'street name for lysergic acid diethylamide'),\n", + " ('superman', 'street name for lysergic acid diethylamide')]},\n", " {'answer': 'battle',\n", " 'hint': 'synonyms for battle',\n", " 'clues': [('engagement',\n", " 'a hostile meeting of opposing military forces in the course of a war'),\n", - " ('struggle', 'an energetic attempt to achieve something'),\n", + " ('fight',\n", + " 'a hostile meeting of opposing military forces in the course of a war'),\n", " ('conflict',\n", " 'an open clash between two opposing groups (or individuals); --Thomas Paine'),\n", - " ('fight',\n", - " 'a hostile meeting of opposing military forces in the course of a war')]},\n", + " ('struggle',\n", + " 'an open clash between two opposing groups (or individuals); --Thomas Paine')]},\n", " {'answer': 'battle_cry',\n", " 'hint': 'synonyms for battle cry',\n", - " 'clues': [('war whoop',\n", + " 'clues': [('war cry',\n", " 'a yell intended to rally a group of soldiers in battle'),\n", - " ('war cry', 'a yell intended to rally a group of soldiers in battle'),\n", - " ('watchword', 'a slogan used to rally support for a cause'),\n", + " ('rallying cry', 'a slogan used to rally support for a cause'),\n", " ('cry', 'a slogan used to rally support for a cause'),\n", - " ('rallying cry', 'a slogan used to rally support for a cause')]},\n", + " ('watchword', 'a slogan used to rally support for a cause'),\n", + " ('war whoop', 'a yell intended to rally a group of soldiers in battle')]},\n", " {'answer': 'battlefield',\n", " 'hint': 'synonyms for battlefield',\n", - " 'clues': [('field',\n", - " 'a region where a battle is being (or has been) fought'),\n", - " ('field of honor',\n", + " 'clues': [('battleground',\n", " 'a region where a battle is being (or has been) fought'),\n", " ('field of battle',\n", " 'a region where a battle is being (or has been) fought'),\n", - " ('battleground',\n", + " ('field', 'a region where a battle is being (or has been) fought'),\n", + " ('field of honor',\n", " 'a region where a battle is being (or has been) fought')]},\n", " {'answer': 'battleground',\n", " 'hint': 'synonyms for battleground',\n", - " 'clues': [('field',\n", - " 'a region where a battle is being (or has been) fought'),\n", - " ('field of honor',\n", + " 'clues': [('battlefield',\n", " 'a region where a battle is being (or has been) fought'),\n", - " ('battlefield', 'a region where a battle is being (or has been) fought'),\n", " ('field of battle',\n", + " 'a region where a battle is being (or has been) fought'),\n", + " ('field', 'a region where a battle is being (or has been) fought'),\n", + " ('field of honor',\n", " 'a region where a battle is being (or has been) fought')]},\n", " {'answer': 'bauble',\n", " 'hint': 'synonyms for bauble',\n", - " 'clues': [('gaud', 'cheap showy jewelry or ornament on clothing'),\n", - " ('gewgaw', 'cheap showy jewelry or ornament on clothing'),\n", - " ('novelty', 'cheap showy jewelry or ornament on clothing'),\n", + " 'clues': [('novelty', 'cheap showy jewelry or ornament on clothing'),\n", " ('trinket', 'cheap showy jewelry or ornament on clothing'),\n", - " ('fallal', 'cheap showy jewelry or ornament on clothing'),\n", - " ('bangle', 'cheap showy jewelry or ornament on clothing')]},\n", + " ('gewgaw', 'cheap showy jewelry or ornament on clothing'),\n", + " ('gaud', 'cheap showy jewelry or ornament on clothing'),\n", + " ('bangle', 'cheap showy jewelry or ornament on clothing'),\n", + " ('fallal', 'cheap showy jewelry or ornament on clothing')]},\n", " {'answer': 'baulk',\n", " 'hint': 'synonyms for baulk',\n", - " 'clues': [('rafter',\n", - " 'one of several parallel sloping beams that support a roof'),\n", - " ('balk', 'one of several parallel sloping beams that support a roof'),\n", - " ('impediment',\n", + " 'clues': [('impediment',\n", " 'something immaterial that interferes with or delays action or progress'),\n", - " ('handicap',\n", + " ('check',\n", " 'something immaterial that interferes with or delays action or progress'),\n", " ('hindrance',\n", " 'something immaterial that interferes with or delays action or progress'),\n", - " ('check',\n", + " ('rafter', 'one of several parallel sloping beams that support a roof'),\n", + " ('balk', 'one of several parallel sloping beams that support a roof'),\n", + " ('handicap',\n", " 'something immaterial that interferes with or delays action or progress'),\n", " ('deterrent',\n", " 'something immaterial that interferes with or delays action or progress')]},\n", " {'answer': 'bawdiness',\n", " 'hint': 'synonyms for bawdiness',\n", - " 'clues': [('obscenity', 'the trait of behaving in an obscene manner'),\n", + " 'clues': [('lewdness', 'the trait of behaving in an obscene manner'),\n", " ('salacity', 'the trait of behaving in an obscene manner'),\n", - " ('lewdness', 'the trait of behaving in an obscene manner'),\n", + " ('obscenity', 'the trait of behaving in an obscene manner'),\n", " ('salaciousness', 'the trait of behaving in an obscene manner')]},\n", " {'answer': 'bawdyhouse',\n", " 'hint': 'synonyms for bawdyhouse',\n", - " 'clues': [('house of ill repute',\n", + " 'clues': [('house of prostitution',\n", " 'a building where prostitutes are available'),\n", + " ('sporting house', 'a building where prostitutes are available'),\n", + " ('whorehouse', 'a building where prostitutes are available'),\n", " ('bagnio', 'a building where prostitutes are available'),\n", - " ('bordello', 'a building where prostitutes are available'),\n", + " ('house of ill repute', 'a building where prostitutes are available'),\n", " ('cathouse', 'a building where prostitutes are available'),\n", - " ('house of prostitution', 'a building where prostitutes are available'),\n", - " ('brothel', 'a building where prostitutes are available'),\n", - " ('whorehouse', 'a building where prostitutes are available'),\n", - " ('sporting house', 'a building where prostitutes are available')]},\n", + " ('bordello', 'a building where prostitutes are available'),\n", + " ('brothel', 'a building where prostitutes are available')]},\n", " {'answer': 'bawling_out',\n", " 'hint': 'synonyms for bawling out',\n", - " 'clues': [('upbraiding', 'a severe scolding'),\n", - " ('dressing down', 'a severe scolding'),\n", + " 'clues': [('chewing out', 'a severe scolding'),\n", " ('castigation', 'a severe scolding'),\n", - " ('chewing out', 'a severe scolding'),\n", + " ('going-over', 'a severe scolding'),\n", " ('earful', 'a severe scolding'),\n", - " ('going-over', 'a severe scolding')]},\n", + " ('upbraiding', 'a severe scolding'),\n", + " ('dressing down', 'a severe scolding')]},\n", " {'answer': 'beach_waggon',\n", " 'hint': 'synonyms for beach waggon',\n", - " 'clues': [('estate car',\n", - " 'a car that has a long body and rear door with space behind rear seat'),\n", - " ('wagon',\n", + " 'clues': [('waggon',\n", " 'a car that has a long body and rear door with space behind rear seat'),\n", " ('station waggon',\n", " 'a car that has a long body and rear door with space behind rear seat'),\n", + " ('estate car',\n", + " 'a car that has a long body and rear door with space behind rear seat'),\n", " ('beach wagon',\n", " 'a car that has a long body and rear door with space behind rear seat')]},\n", " {'answer': 'beach_wagon',\n", " 'hint': 'synonyms for beach wagon',\n", - " 'clues': [('estate car',\n", + " 'clues': [('beach waggon',\n", " 'a car that has a long body and rear door with space behind rear seat'),\n", - " ('wagon',\n", + " ('waggon',\n", " 'a car that has a long body and rear door with space behind rear seat'),\n", " ('station waggon',\n", " 'a car that has a long body and rear door with space behind rear seat'),\n", - " ('beach waggon',\n", + " ('estate car',\n", " 'a car that has a long body and rear door with space behind rear seat')]},\n", " {'answer': 'beacon',\n", " 'hint': 'synonyms for beacon',\n", - " 'clues': [('lighthouse',\n", + " 'clues': [('radio beacon',\n", + " 'a radio station that broadcasts a directional signal for navigational purposes'),\n", + " ('beacon light',\n", " 'a tower with a light that gives warning of shoals to passing ships'),\n", - " ('pharos',\n", + " ('lighthouse',\n", " 'a tower with a light that gives warning of shoals to passing ships'),\n", " ('beacon fire',\n", " 'a fire (usually on a hill or tower) that can be seen from a distance'),\n", - " ('beacon light',\n", - " 'a tower with a light that gives warning of shoals to passing ships'),\n", - " ('radio beacon',\n", - " 'a radio station that broadcasts a directional signal for navigational purposes')]},\n", + " ('pharos',\n", + " 'a tower with a light that gives warning of shoals to passing ships')]},\n", " {'answer': 'bead',\n", " 'hint': 'synonyms for bead',\n", - " 'clues': [('beading',\n", - " 'a beaded molding for edging or decorating furniture'),\n", + " 'clues': [('drop', 'a shape that is spherical and small'),\n", + " ('beadwork', 'a beaded molding for edging or decorating furniture'),\n", " ('pearl', 'a shape that is spherical and small'),\n", " ('astragal', 'a beaded molding for edging or decorating furniture'),\n", - " ('drop', 'a shape that is spherical and small'),\n", - " ('beadwork', 'a beaded molding for edging or decorating furniture')]},\n", + " ('beading', 'a beaded molding for edging or decorating furniture')]},\n", " {'answer': 'beads',\n", " 'hint': 'synonyms for beads',\n", - " 'clues': [('bead', 'a small ball with a hole through the middle'),\n", + " 'clues': [('drop', 'a shape that is spherical and small'),\n", + " ('beadwork', 'a beaded molding for edging or decorating furniture'),\n", + " ('bead', 'a small ball with a hole through the middle'),\n", " ('astragal', 'a beaded molding for edging or decorating furniture'),\n", - " ('pearl', 'a shape that is spherical and small'),\n", - " ('drop', 'a shape that is spherical and small'),\n", " ('string of beads', 'several beads threaded together on a string'),\n", - " ('beadwork', 'a beaded molding for edging or decorating furniture')]},\n", + " ('pearl', 'a shape that is spherical and small')]},\n", " {'answer': 'beam',\n", " 'hint': 'synonyms for beam',\n", - " 'clues': [('ray', 'a column of light (as from a beacon)'),\n", + " 'clues': [('irradiation', 'a column of light (as from a beacon)'),\n", + " ('ray of light', 'a column of light (as from a beacon)'),\n", + " ('balance beam', 'a gymnastic apparatus used by women gymnasts'),\n", " ('radio beam',\n", " 'a signal transmitted along a narrow path; guides airplane pilots in darkness or bad weather'),\n", - " ('beam of light', 'a column of light (as from a beacon)'),\n", - " ('shaft of light', 'a column of light (as from a beacon)'),\n", + " ('ray', 'a column of light (as from a beacon)'),\n", + " ('light beam', 'a column of light (as from a beacon)'),\n", + " ('shaft', 'a column of light (as from a beacon)'),\n", " ('electron beam',\n", " 'a group of nearly parallel lines of electromagnetic radiation'),\n", - " ('shaft', 'a column of light (as from a beacon)'),\n", - " ('ray of light', 'a column of light (as from a beacon)'),\n", - " ('irradiation', 'a column of light (as from a beacon)'),\n", - " ('light beam', 'a column of light (as from a beacon)'),\n", - " ('balance beam', 'a gymnastic apparatus used by women gymnasts')]},\n", + " ('shaft of light', 'a column of light (as from a beacon)'),\n", + " ('beam of light', 'a column of light (as from a beacon)')]},\n", " {'answer': 'beam_of_light',\n", " 'hint': 'synonyms for beam of light',\n", - " 'clues': [('ray', 'a column of light (as from a beacon)'),\n", - " ('shaft', 'a column of light (as from a beacon)'),\n", - " ('ray of light', 'a column of light (as from a beacon)'),\n", - " ('shaft of light', 'a column of light (as from a beacon)'),\n", - " ('irradiation', 'a column of light (as from a beacon)'),\n", + " 'clues': [('irradiation', 'a column of light (as from a beacon)'),\n", " ('light beam', 'a column of light (as from a beacon)'),\n", - " ('beam', 'a column of light (as from a beacon)')]},\n", + " ('beam', 'a column of light (as from a beacon)'),\n", + " ('shaft of light', 'a column of light (as from a beacon)'),\n", + " ('ray', 'a column of light (as from a beacon)'),\n", + " ('ray of light', 'a column of light (as from a beacon)'),\n", + " ('shaft', 'a column of light (as from a beacon)')]},\n", " {'answer': 'beast',\n", " 'hint': 'synonyms for beast',\n", - " 'clues': [('animate being',\n", + " 'clues': [('creature',\n", + " 'a living organism characterized by voluntary movement'),\n", + " ('animate being',\n", " 'a living organism characterized by voluntary movement'),\n", - " ('brute', 'a living organism characterized by voluntary movement'),\n", " ('animal', 'a living organism characterized by voluntary movement'),\n", - " ('fauna', 'a living organism characterized by voluntary movement'),\n", - " ('creature', 'a living organism characterized by voluntary movement')]},\n", + " ('brute', 'a living organism characterized by voluntary movement'),\n", + " ('fauna', 'a living organism characterized by voluntary movement')]},\n", " {'answer': 'beating',\n", " 'hint': 'synonyms for beating',\n", - " 'clues': [('whacking',\n", - " 'the act of inflicting corporal punishment with repeated blows'),\n", - " ('licking',\n", - " 'the act of inflicting corporal punishment with repeated blows'),\n", + " 'clues': [('whipping', 'the act of overcoming or outdoing'),\n", " ('drubbing',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", + " ('trouncing',\n", + " 'the act of inflicting corporal punishment with repeated blows'),\n", " ('lacing',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", - " ('whipping', 'the act of overcoming or outdoing'),\n", - " ('trouncing',\n", + " ('licking',\n", + " 'the act of inflicting corporal punishment with repeated blows'),\n", + " ('whacking',\n", " 'the act of inflicting corporal punishment with repeated blows'),\n", " ('thrashing',\n", " 'the act of inflicting corporal punishment with repeated blows')]},\n", " {'answer': 'beats',\n", " 'hint': 'synonyms for beats',\n", - " 'clues': [('beat', 'the sound of stroke or blow'),\n", - " ('pulse',\n", + " 'clues': [('beat', 'a regular rate of repetition'),\n", + " ('heartbeat',\n", " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", " ('beatniks',\n", " 'a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop)'),\n", - " ('round', 'a regular route for a sentry or policeman'),\n", + " ('cadence', '(prosody) the accent in a metrical foot of verse'),\n", " ('beat generation',\n", " 'a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop)'),\n", + " ('musical rhythm', 'the basic rhythmic unit in a piece of music'),\n", " ('metre', '(prosody) the accent in a metrical foot of verse'),\n", - " ('measure', '(prosody) the accent in a metrical foot of verse'),\n", - " ('meter', '(prosody) the accent in a metrical foot of verse'),\n", - " ('pulsation',\n", + " ('round', 'a regular route for a sentry or policeman'),\n", + " ('pulse',\n", " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", - " ('heartbeat',\n", + " ('pulsation',\n", " 'the rhythmic contraction and expansion of the arteries with each beat of the heart'),\n", - " ('cadence', '(prosody) the accent in a metrical foot of verse'),\n", - " ('rhythm', 'the basic rhythmic unit in a piece of music'),\n", - " ('musical rhythm', 'the basic rhythmic unit in a piece of music')]},\n", + " ('meter', '(prosody) the accent in a metrical foot of verse'),\n", + " ('measure', '(prosody) the accent in a metrical foot of verse'),\n", + " ('rhythm', 'the basic rhythmic unit in a piece of music')]},\n", " {'answer': 'beau_monde',\n", " 'hint': 'synonyms for beau monde',\n", " 'clues': [('smart set', 'the fashionable elite'),\n", - " ('high society', 'the fashionable elite'),\n", " ('bon ton', 'the fashionable elite'),\n", - " ('society', 'the fashionable elite')]},\n", + " ('society', 'the fashionable elite'),\n", + " ('high society', 'the fashionable elite')]},\n", " {'answer': 'beauty_parlor',\n", " 'hint': 'synonyms for beauty parlor',\n", " 'clues': [('beauty shop',\n", " 'a shop where hairdressers and beauticians work'),\n", " ('beauty parlour', 'a shop where hairdressers and beauticians work'),\n", - " ('salon', 'a shop where hairdressers and beauticians work'),\n", - " ('beauty salon', 'a shop where hairdressers and beauticians work')]},\n", + " ('beauty salon', 'a shop where hairdressers and beauticians work'),\n", + " ('salon', 'a shop where hairdressers and beauticians work')]},\n", " {'answer': 'beauty_parlour',\n", " 'hint': 'synonyms for beauty parlour',\n", - " 'clues': [('salon', 'a shop where hairdressers and beauticians work'),\n", + " 'clues': [('beauty parlor',\n", + " 'a shop where hairdressers and beauticians work'),\n", " ('beauty shop', 'a shop where hairdressers and beauticians work'),\n", - " ('beauty parlor', 'a shop where hairdressers and beauticians work'),\n", - " ('beauty salon', 'a shop where hairdressers and beauticians work')]},\n", + " ('beauty salon', 'a shop where hairdressers and beauticians work'),\n", + " ('salon', 'a shop where hairdressers and beauticians work')]},\n", " {'answer': 'beaver',\n", " 'hint': 'synonyms for beaver',\n", - " 'clues': [('high hat',\n", - " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", - " ('top hat',\n", - " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", - " ('silk hat',\n", + " 'clues': [('topper',\n", " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", " ('beaver fur', 'the soft brown fur of the beaver'),\n", - " ('dress hat',\n", + " ('opera hat',\n", " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", + " ('castor', 'a hat made with the fur of a beaver (or similar material)'),\n", " ('stovepipe',\n", " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", - " ('opera hat',\n", + " ('top hat',\n", + " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", + " ('silk hat',\n", " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", - " ('topper',\n", + " ('high hat',\n", " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\"),\n", - " ('castor', 'a hat made with the fur of a beaver (or similar material)')]},\n", + " ('dress hat',\n", + " \"a man's hat with a tall crown; usually covered with silk or with beaver fur\")]},\n", " {'answer': 'bed_cover',\n", " 'hint': 'synonyms for bed cover',\n", - " 'clues': [('bed covering', 'decorative cover for a bed'),\n", - " ('bedcover', 'decorative cover for a bed'),\n", - " ('counterpane', 'decorative cover for a bed'),\n", + " 'clues': [('bedcover', 'decorative cover for a bed'),\n", + " ('spread', 'decorative cover for a bed'),\n", " ('bedspread', 'decorative cover for a bed'),\n", - " ('spread', 'decorative cover for a bed')]},\n", + " ('counterpane', 'decorative cover for a bed'),\n", + " ('bed covering', 'decorative cover for a bed')]},\n", " {'answer': 'bed_covering',\n", " 'hint': 'synonyms for bed covering',\n", " 'clues': [('bedcover', 'decorative cover for a bed'),\n", @@ -33767,685 +33800,680 @@ " {'answer': 'bedchamber',\n", " 'hint': 'synonyms for bedchamber',\n", " 'clues': [('chamber', 'a room used primarily for sleeping'),\n", + " ('sleeping room', 'a room used primarily for sleeping'),\n", " ('sleeping accommodation', 'a room used primarily for sleeping'),\n", - " ('bedroom', 'a room used primarily for sleeping'),\n", - " ('sleeping room', 'a room used primarily for sleeping')]},\n", + " ('bedroom', 'a room used primarily for sleeping')]},\n", " {'answer': 'bedcover',\n", " 'hint': 'synonyms for bedcover',\n", - " 'clues': [('bed covering', 'decorative cover for a bed'),\n", - " ('counterpane', 'decorative cover for a bed'),\n", + " 'clues': [('bed cover', 'decorative cover for a bed'),\n", + " ('spread', 'decorative cover for a bed'),\n", " ('bedspread', 'decorative cover for a bed'),\n", - " ('spread', 'decorative cover for a bed')]},\n", + " ('counterpane', 'decorative cover for a bed')]},\n", " {'answer': 'bedding',\n", " 'hint': 'synonyms for bedding',\n", - " 'clues': [('litter', 'material used to provide a bed for animals'),\n", - " ('bed clothing', 'coverings that are used on a bed'),\n", + " 'clues': [('bed clothing', 'coverings that are used on a bed'),\n", + " ('litter', 'material used to provide a bed for animals'),\n", " ('bedding material', 'material used to provide a bed for animals'),\n", " ('bedclothes', 'coverings that are used on a bed')]},\n", " {'answer': 'bedlam',\n", " 'hint': 'synonyms for bedlam',\n", " 'clues': [('loony bin', 'pejorative terms for an insane asylum'),\n", - " ('booby hatch', 'pejorative terms for an insane asylum'),\n", - " (\"cuckoo's nest\", 'pejorative terms for an insane asylum'),\n", - " ('snake pit', 'pejorative terms for an insane asylum'),\n", - " ('nut house', 'pejorative terms for an insane asylum'),\n", " ('sanatorium', 'pejorative terms for an insane asylum'),\n", " ('funny farm', 'pejorative terms for an insane asylum'),\n", " ('madhouse', 'pejorative terms for an insane asylum'),\n", + " ('funny house', 'pejorative terms for an insane asylum'),\n", + " ('nuthouse', 'pejorative terms for an insane asylum'),\n", + " (\"cuckoo's nest\", 'pejorative terms for an insane asylum'),\n", + " ('booby hatch', 'pejorative terms for an insane asylum'),\n", " ('crazy house', 'pejorative terms for an insane asylum'),\n", - " ('funny house', 'pejorative terms for an insane asylum')]},\n", + " ('snake pit', 'pejorative terms for an insane asylum')]},\n", " {'answer': 'bedrock',\n", " 'hint': 'synonyms for bedrock',\n", - " 'clues': [('fundamentals',\n", - " 'principles from which other truths can be derived'),\n", - " ('basics', 'principles from which other truths can be derived'),\n", + " 'clues': [('basics', 'principles from which other truths can be derived'),\n", " ('basic principle', 'principles from which other truths can be derived'),\n", " ('fundamental principle',\n", - " 'principles from which other truths can be derived')]},\n", + " 'principles from which other truths can be derived'),\n", + " ('fundamentals', 'principles from which other truths can be derived')]},\n", " {'answer': 'bedroom',\n", " 'hint': 'synonyms for bedroom',\n", - " 'clues': [('bedchamber', 'a room used primarily for sleeping'),\n", - " ('sleeping accommodation', 'a room used primarily for sleeping'),\n", + " 'clues': [('sleeping accommodation', 'a room used primarily for sleeping'),\n", " ('chamber', 'a room used primarily for sleeping'),\n", - " ('sleeping room', 'a room used primarily for sleeping')]},\n", + " ('sleeping room', 'a room used primarily for sleeping'),\n", + " ('bedchamber', 'a room used primarily for sleeping')]},\n", " {'answer': 'bedspread',\n", " 'hint': 'synonyms for bedspread',\n", - " 'clues': [('bed covering', 'decorative cover for a bed'),\n", - " ('bedcover', 'decorative cover for a bed'),\n", + " 'clues': [('bedcover', 'decorative cover for a bed'),\n", + " ('spread', 'decorative cover for a bed'),\n", " ('counterpane', 'decorative cover for a bed'),\n", - " ('spread', 'decorative cover for a bed')]},\n", + " ('bed covering', 'decorative cover for a bed')]},\n", " {'answer': 'beef',\n", " 'hint': 'synonyms for beef',\n", " 'clues': [('boeuf', 'meat from an adult domestic bovine'),\n", - " ('bitch', 'informal terms for objecting'),\n", - " ('squawk', 'informal terms for objecting'),\n", + " ('kick', 'informal terms for objecting'),\n", " ('gripe', 'informal terms for objecting'),\n", - " ('kick', 'informal terms for objecting')]},\n", + " ('bitch', 'informal terms for objecting'),\n", + " ('squawk', 'informal terms for objecting')]},\n", " {'answer': 'befuddlement',\n", " 'hint': 'synonyms for befuddlement',\n", - " 'clues': [('bewilderment',\n", - " 'confusion resulting from failure to understand'),\n", - " ('bemusement', 'confusion resulting from failure to understand'),\n", + " 'clues': [('bemusement', 'confusion resulting from failure to understand'),\n", + " ('bewilderment', 'confusion resulting from failure to understand'),\n", " ('mystification', 'confusion resulting from failure to understand'),\n", - " ('obfuscation', 'confusion resulting from failure to understand'),\n", + " ('puzzlement', 'confusion resulting from failure to understand'),\n", " ('bafflement', 'confusion resulting from failure to understand'),\n", - " ('puzzlement', 'confusion resulting from failure to understand')]},\n", + " ('obfuscation', 'confusion resulting from failure to understand')]},\n", " {'answer': 'behavior',\n", " 'hint': 'synonyms for behavior',\n", - " 'clues': [('doings', 'manner of acting or controlling yourself'),\n", - " ('conduct', 'manner of acting or controlling yourself'),\n", - " ('behaviour',\n", - " '(psychology) the aggregate of the responses or reactions or movements made by an organism in any situation'),\n", - " ('deportment',\n", + " 'clues': [('deportment',\n", + " '(behavioral attributes) the way a person behaves toward other people'),\n", + " ('conduct',\n", " '(behavioral attributes) the way a person behaves toward other people'),\n", " ('demeanor',\n", - " '(behavioral attributes) the way a person behaves toward other people')]},\n", + " '(behavioral attributes) the way a person behaves toward other people'),\n", + " ('behaviour',\n", + " '(behavioral attributes) the way a person behaves toward other people'),\n", + " ('doings', 'manner of acting or controlling yourself')]},\n", " {'answer': 'behaviour',\n", " 'hint': 'synonyms for behaviour',\n", - " 'clues': [('doings', 'manner of acting or controlling yourself'),\n", - " ('conduct', 'manner of acting or controlling yourself'),\n", - " ('behavior',\n", - " '(psychology) the aggregate of the responses or reactions or movements made by an organism in any situation'),\n", - " ('deportment',\n", + " 'clues': [('deportment',\n", + " '(behavioral attributes) the way a person behaves toward other people'),\n", + " ('conduct',\n", " '(behavioral attributes) the way a person behaves toward other people'),\n", " ('demeanor',\n", + " '(behavioral attributes) the way a person behaves toward other people'),\n", + " ('doings', 'manner of acting or controlling yourself'),\n", + " ('behavior',\n", " '(behavioral attributes) the way a person behaves toward other people')]},\n", " {'answer': 'belief',\n", " 'hint': 'synonyms for belief',\n", - " 'clues': [('feeling', 'a vague idea in which some confidence is placed'),\n", - " ('notion', 'a vague idea in which some confidence is placed'),\n", + " 'clues': [('impression',\n", + " 'a vague idea in which some confidence is placed'),\n", " ('opinion', 'a vague idea in which some confidence is placed'),\n", - " ('impression', 'a vague idea in which some confidence is placed')]},\n", + " ('notion', 'a vague idea in which some confidence is placed'),\n", + " ('feeling', 'a vague idea in which some confidence is placed')]},\n", " {'answer': 'bell',\n", " 'hint': 'synonyms for bell',\n", - " 'clues': [('doorbell',\n", - " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n", + " 'clues': [('bell shape', 'the shape of a bell'),\n", " ('campana', 'the shape of a bell'),\n", - " ('bell shape', 'the shape of a bell'),\n", " ('gong',\n", " 'a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument'),\n", - " ('buzzer',\n", - " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n", " ('chime',\n", " 'a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument'),\n", - " ('toll', 'the sound of a bell being struck'),\n", + " ('buzzer',\n", + " 'a push button at an outer door that gives a ringing or buzzing signal when pushed'),\n", " (\"ship's bell\",\n", - " \"(nautical) each of the eight half-hour units of nautical time signaled by strokes of a ship's bell; eight bells signals 4:00, 8:00, or 12:00 o'clock, either a.m. or p.m.\")]},\n", + " \"(nautical) each of the eight half-hour units of nautical time signaled by strokes of a ship's bell; eight bells signals 4:00, 8:00, or 12:00 o'clock, either a.m. or p.m.\"),\n", + " ('toll', 'the sound of a bell being struck'),\n", + " ('doorbell',\n", + " 'a push button at an outer door that gives a ringing or buzzing signal when pushed')]},\n", " {'answer': 'bell_ringing',\n", " 'hint': 'synonyms for bell ringing',\n", - " 'clues': [('electioneering',\n", - " 'persuasion of voters in a political campaign'),\n", + " 'clues': [('canvassing', 'persuasion of voters in a political campaign'),\n", + " ('electioneering', 'persuasion of voters in a political campaign'),\n", " ('carillon playing',\n", " 'playing a set of bells that are (usually) hung in a tower'),\n", - " ('canvassing', 'persuasion of voters in a political campaign'),\n", " ('carillon',\n", " 'playing a set of bells that are (usually) hung in a tower')]},\n", " {'answer': 'bellow',\n", " 'hint': 'synonyms for bellow',\n", - " 'clues': [('holla', 'a very loud utterance (like the sound of an animal)'),\n", - " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n", - " ('roaring', 'a very loud utterance (like the sound of an animal)'),\n", - " ('holler', 'a very loud utterance (like the sound of an animal)'),\n", - " ('yowl', 'a very loud utterance (like the sound of an animal)'),\n", - " ('bellowing', 'a very loud utterance (like the sound of an animal)')]},\n", + " 'clues': [('roar', 'a very loud utterance (like the sound of an animal)'),\n", + " ('hollering', 'a very loud utterance (like the sound of an animal)'),\n", + " ('holloa', 'a very loud utterance (like the sound of an animal)'),\n", + " ('bellowing', 'a very loud utterance (like the sound of an animal)'),\n", + " ('yowl', 'a very loud utterance (like the sound of an animal)')]},\n", " {'answer': 'bellowing',\n", " 'hint': 'synonyms for bellowing',\n", - " 'clues': [('holla', 'a very loud utterance (like the sound of an animal)'),\n", - " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n", - " ('roaring', 'a very loud utterance (like the sound of an animal)'),\n", - " ('holler', 'a very loud utterance (like the sound of an animal)'),\n", + " 'clues': [('roar', 'a very loud utterance (like the sound of an animal)'),\n", + " ('hollering', 'a very loud utterance (like the sound of an animal)'),\n", + " ('holloa', 'a very loud utterance (like the sound of an animal)'),\n", " ('bellow', 'a very loud utterance (like the sound of an animal)'),\n", " ('yowl', 'a very loud utterance (like the sound of an animal)')]},\n", " {'answer': 'bellows',\n", " 'hint': 'synonyms for bellows',\n", - " 'clues': [('holla', 'a very loud utterance (like the sound of an animal)'),\n", - " ('hollo', 'a very loud utterance (like the sound of an animal)'),\n", - " ('roaring', 'a very loud utterance (like the sound of an animal)'),\n", - " ('holler', 'a very loud utterance (like the sound of an animal)'),\n", + " 'clues': [('roar', 'a very loud utterance (like the sound of an animal)'),\n", + " ('hollering', 'a very loud utterance (like the sound of an animal)'),\n", + " ('holloa', 'a very loud utterance (like the sound of an animal)'),\n", " ('bellow', 'a very loud utterance (like the sound of an animal)'),\n", " ('yowl', 'a very loud utterance (like the sound of an animal)')]},\n", " {'answer': 'belly_laugh',\n", " 'hint': 'synonyms for belly laugh',\n", - " 'clues': [('howler', 'a joke that seems extremely funny'),\n", + " 'clues': [('scream', 'a joke that seems extremely funny'),\n", " ('thigh-slapper', 'a joke that seems extremely funny'),\n", - " ('wow', 'a joke that seems extremely funny'),\n", - " ('scream', 'a joke that seems extremely funny'),\n", + " ('howler', 'a joke that seems extremely funny'),\n", " ('guffaw', 'a burst of deep loud hearty laughter'),\n", + " ('sidesplitter', 'a joke that seems extremely funny'),\n", " ('riot', 'a joke that seems extremely funny'),\n", - " ('sidesplitter', 'a joke that seems extremely funny')]},\n", + " ('wow', 'a joke that seems extremely funny')]},\n", " {'answer': 'belt',\n", " 'hint': 'synonyms for belt',\n", - " 'clues': [('whack', 'the act of hitting vigorously'),\n", + " 'clues': [('bang', 'a vigorous blow'),\n", + " ('knock', 'a vigorous blow'),\n", + " ('bash', 'a vigorous blow'),\n", + " ('smash', 'a vigorous blow'),\n", " ('belt ammunition',\n", " 'ammunition (usually of small caliber) loaded in flexible linked strips for use in a machine gun'),\n", - " ('bash', 'a vigorous blow'),\n", - " ('swath', 'a path or strip (as cut by one course of mowing)'),\n", " ('rap', 'the act of hitting vigorously'),\n", - " ('knock', 'the act of hitting vigorously'),\n", " ('whang', 'the act of hitting vigorously'),\n", - " ('bang', 'a vigorous blow'),\n", - " ('smash', 'a vigorous blow')]},\n", + " ('whack', 'the act of hitting vigorously'),\n", + " ('swath', 'a path or strip (as cut by one course of mowing)')]},\n", " {'answer': 'bemusement',\n", " 'hint': 'synonyms for bemusement',\n", - " 'clues': [('befuddlement',\n", + " 'clues': [('obfuscation',\n", " 'confusion resulting from failure to understand'),\n", " ('bewilderment', 'confusion resulting from failure to understand'),\n", " ('mystification', 'confusion resulting from failure to understand'),\n", - " ('obfuscation', 'confusion resulting from failure to understand'),\n", + " ('puzzlement', 'confusion resulting from failure to understand'),\n", " ('bafflement', 'confusion resulting from failure to understand'),\n", - " ('puzzlement', 'confusion resulting from failure to understand')]},\n", + " ('befuddlement', 'confusion resulting from failure to understand')]},\n", " {'answer': 'bend',\n", " 'hint': 'synonyms for bend',\n", - " 'clues': [('turn', 'a circular segment of a curve'),\n", - " ('bending', 'movement that causes the formation of a curve'),\n", - " ('crook', 'a circular segment of a curve'),\n", - " ('crease', 'an angular or rounded shape made by folding'),\n", + " 'clues': [('flexure', 'an angular or rounded shape made by folding'),\n", + " ('crimp', 'an angular or rounded shape made by folding'),\n", + " ('plication', 'an angular or rounded shape made by folding'),\n", + " ('turn', 'a circular segment of a curve'),\n", " ('fold', 'an angular or rounded shape made by folding'),\n", - " ('curve', 'curved segment (of a road or river or railroad track etc.)'),\n", " ('twist', 'a circular segment of a curve'),\n", - " ('plication', 'an angular or rounded shape made by folding'),\n", + " ('crease', 'an angular or rounded shape made by folding'),\n", + " ('crook', 'a circular segment of a curve'),\n", " ('bend dexter',\n", " 'diagonal line traversing a shield from the upper right corner to the lower left'),\n", - " ('flexure', 'an angular or rounded shape made by folding'),\n", - " ('crimp', 'an angular or rounded shape made by folding')]},\n", + " ('curve', 'curved segment (of a road or river or railroad track etc.)'),\n", + " ('bending', 'movement that causes the formation of a curve')]},\n", " {'answer': 'bender',\n", " 'hint': 'synonyms for bender',\n", - " 'clues': [('carouse', 'revelry in drinking; a merry drinking party'),\n", + " 'clues': [('booze-up', 'revelry in drinking; a merry drinking party'),\n", " ('breaking ball',\n", " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter'),\n", " ('curve ball',\n", " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter'),\n", - " ('booze-up', 'revelry in drinking; a merry drinking party'),\n", " ('carousal', 'revelry in drinking; a merry drinking party'),\n", - " ('toot', 'revelry in drinking; a merry drinking party'),\n", " ('curve',\n", - " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter')]},\n", + " 'a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter'),\n", + " ('carouse', 'revelry in drinking; a merry drinking party'),\n", + " ('toot', 'revelry in drinking; a merry drinking party')]},\n", " {'answer': 'bends',\n", " 'hint': 'synonyms for bends',\n", - " 'clues': [('turn', 'a circular segment of a curve'),\n", - " ('bending', 'movement that causes the formation of a curve'),\n", - " ('crook', 'a circular segment of a curve'),\n", - " ('crease', 'an angular or rounded shape made by folding'),\n", - " ('fold', 'an angular or rounded shape made by folding'),\n", - " ('curve', 'curved segment (of a road or river or railroad track etc.)'),\n", - " ('twist', 'a circular segment of a curve'),\n", + " 'clues': [('flexure', 'an angular or rounded shape made by folding'),\n", + " ('bend', 'a circular segment of a curve'),\n", + " ('crimp', 'an angular or rounded shape made by folding'),\n", + " ('turn', 'a circular segment of a curve'),\n", " ('plication', 'an angular or rounded shape made by folding'),\n", + " ('twist', 'a circular segment of a curve'),\n", + " ('fold', 'an angular or rounded shape made by folding'),\n", + " ('crease', 'an angular or rounded shape made by folding'),\n", " ('bend dexter',\n", " 'diagonal line traversing a shield from the upper right corner to the lower left'),\n", - " ('flexure', 'an angular or rounded shape made by folding'),\n", - " ('crimp', 'an angular or rounded shape made by folding')]},\n", + " ('crook', 'a circular segment of a curve'),\n", + " ('curve', 'curved segment (of a road or river or railroad track etc.)')]},\n", " {'answer': 'beneficiation',\n", " 'hint': 'synonyms for beneficiation',\n", " 'clues': [('mineral processing',\n", " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n", - " ('ore dressing',\n", - " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n", " ('mineral extraction',\n", " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n", + " ('ore dressing',\n", + " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques'),\n", " ('ore processing',\n", " 'crushing and separating ore into valuable substances or waste by any of a variety of techniques')]},\n", " {'answer': 'benjamin',\n", " 'hint': 'synonyms for benjamin',\n", " 'clues': [('asa dulcis',\n", " 'gum resin used especially in treating skin irritation'),\n", - " ('benzoin', 'gum resin used especially in treating skin irritation'),\n", " ('gum benzoin', 'gum resin used especially in treating skin irritation'),\n", - " ('gum benjamin',\n", - " 'gum resin used especially in treating skin irritation')]},\n", + " ('gum benjamin', 'gum resin used especially in treating skin irritation'),\n", + " ('benzoin', 'gum resin used especially in treating skin irritation')]},\n", " {'answer': 'benzoin',\n", " 'hint': 'synonyms for benzoin',\n", " 'clues': [('asa dulcis',\n", " 'gum resin used especially in treating skin irritation'),\n", - " ('benjamin', 'gum resin used especially in treating skin irritation'),\n", " ('gum benzoin', 'gum resin used especially in treating skin irritation'),\n", - " ('gum benjamin',\n", - " 'gum resin used especially in treating skin irritation')]},\n", + " ('gum benjamin', 'gum resin used especially in treating skin irritation'),\n", + " ('benjamin', 'gum resin used especially in treating skin irritation')]},\n", " {'answer': 'berth',\n", " 'hint': 'synonyms for berth',\n", - " 'clues': [('mooring', 'a place where a craft can be made fast'),\n", - " ('situation', 'a job in an organization'),\n", - " ('spot', 'a job in an organization'),\n", - " ('bunk', 'a bed on a ship or train; usually in tiers'),\n", - " ('place', 'a job in an organization'),\n", + " 'clues': [('bunk', 'a bed on a ship or train; usually in tiers'),\n", + " ('office', 'a job in an organization'),\n", " ('moorage', 'a place where a craft can be made fast'),\n", - " ('billet', 'a job in an organization'),\n", - " ('position', 'a job in an organization'),\n", + " ('spot', 'a job in an organization'),\n", + " ('situation', 'a job in an organization'),\n", " ('built in bed', 'a bed on a ship or train; usually in tiers'),\n", - " ('slip', 'a place where a craft can be made fast'),\n", + " ('mooring', 'a place where a craft can be made fast'),\n", " ('post', 'a job in an organization'),\n", - " ('office', 'a job in an organization')]},\n", + " ('slip', 'a place where a craft can be made fast'),\n", + " ('place', 'a job in an organization'),\n", + " ('position', 'a job in an organization'),\n", + " ('billet', 'a job in an organization')]},\n", " {'answer': 'betise',\n", " 'hint': 'synonyms for betise',\n", - " 'clues': [('imbecility', 'a stupid mistake'),\n", - " ('foolishness', 'a stupid mistake'),\n", + " 'clues': [('folly', 'a stupid mistake'),\n", " ('stupidity', 'a stupid mistake'),\n", - " ('folly', 'a stupid mistake')]},\n", + " ('imbecility', 'a stupid mistake'),\n", + " ('foolishness', 'a stupid mistake')]},\n", " {'answer': 'bewilderment',\n", " 'hint': 'synonyms for bewilderment',\n", - " 'clues': [('befuddlement',\n", + " 'clues': [('obfuscation',\n", " 'confusion resulting from failure to understand'),\n", " ('bemusement', 'confusion resulting from failure to understand'),\n", " ('mystification', 'confusion resulting from failure to understand'),\n", - " ('obfuscation', 'confusion resulting from failure to understand'),\n", + " ('puzzlement', 'confusion resulting from failure to understand'),\n", " ('bafflement', 'confusion resulting from failure to understand'),\n", - " ('puzzlement', 'confusion resulting from failure to understand')]},\n", + " ('befuddlement', 'confusion resulting from failure to understand')]},\n", " {'answer': 'bicarbonate_of_soda',\n", " 'hint': 'synonyms for bicarbonate of soda',\n", - " 'clues': [('saleratus',\n", + " 'clues': [('baking soda',\n", " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", " ('sodium bicarbonate',\n", " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", - " ('baking soda',\n", - " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", " ('sodium hydrogen carbonate',\n", + " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid'),\n", + " ('saleratus',\n", " 'a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid')]},\n", " {'answer': 'bicker',\n", " 'hint': 'synonyms for bicker',\n", - " 'clues': [('tiff', 'a quarrel about petty points'),\n", - " ('bickering', 'a quarrel about petty points'),\n", - " ('pettifoggery', 'a quarrel about petty points'),\n", - " ('fuss', 'a quarrel about petty points'),\n", + " 'clues': [('pettifoggery', 'a quarrel about petty points'),\n", + " ('tiff', 'a quarrel about petty points'),\n", " ('spat', 'a quarrel about petty points'),\n", - " ('squabble', 'a quarrel about petty points')]},\n", + " ('squabble', 'a quarrel about petty points'),\n", + " ('bickering', 'a quarrel about petty points'),\n", + " ('fuss', 'a quarrel about petty points')]},\n", " {'answer': 'bickering',\n", " 'hint': 'synonyms for bickering',\n", - " 'clues': [('bicker', 'a quarrel about petty points'),\n", + " 'clues': [('pettifoggery', 'a quarrel about petty points'),\n", " ('tiff', 'a quarrel about petty points'),\n", - " ('fuss', 'a quarrel about petty points'),\n", - " ('pettifoggery', 'a quarrel about petty points'),\n", " ('spat', 'a quarrel about petty points'),\n", - " ('squabble', 'a quarrel about petty points')]},\n", + " ('squabble', 'a quarrel about petty points'),\n", + " ('bicker', 'a quarrel about petty points'),\n", + " ('fuss', 'a quarrel about petty points')]},\n", " {'answer': 'bid',\n", " 'hint': 'synonyms for bid',\n", - " 'clues': [('dictation',\n", - " 'an authoritative direction or instruction to do something'),\n", - " ('bidding', 'an authoritative direction or instruction to do something'),\n", - " ('play', 'an attempt to get something'),\n", + " 'clues': [('bidding',\n", + " '(bridge) the number of tricks a bridge player is willing to contract to make'),\n", + " ('command', 'an authoritative direction or instruction to do something'),\n", " ('tender', 'a formal proposal to buy at a specified price'),\n", - " ('command',\n", + " ('play', 'an attempt to get something'),\n", + " ('dictation',\n", " 'an authoritative direction or instruction to do something')]},\n", " {'answer': 'bidding',\n", " 'hint': 'synonyms for bidding',\n", " 'clues': [('bid',\n", " 'an authoritative direction or instruction to do something'),\n", + " ('command', 'an authoritative direction or instruction to do something'),\n", " ('summons', 'a request to be present'),\n", " ('dictation',\n", - " 'an authoritative direction or instruction to do something'),\n", - " ('command',\n", " 'an authoritative direction or instruction to do something')]},\n", " {'answer': 'biff',\n", " 'hint': 'synonyms for biff',\n", - " 'clues': [('punch', '(boxing) a blow with the fist'),\n", - " ('poke', '(boxing) a blow with the fist'),\n", - " ('lick', '(boxing) a blow with the fist'),\n", + " 'clues': [('lick', '(boxing) a blow with the fist'),\n", + " ('clout', '(boxing) a blow with the fist'),\n", " ('slug', '(boxing) a blow with the fist'),\n", - " ('clout', '(boxing) a blow with the fist')]},\n", + " ('punch', '(boxing) a blow with the fist'),\n", + " ('poke', '(boxing) a blow with the fist')]},\n", " {'answer': 'big_bucks',\n", " 'hint': 'synonyms for big bucks',\n", " 'clues': [('megabucks',\n", " 'a large sum of money (especially as pay or profit)'),\n", - " ('bundle', 'a large sum of money (especially as pay or profit)'),\n", " ('big money', 'a large sum of money (especially as pay or profit)'),\n", - " ('pile', 'a large sum of money (especially as pay or profit)')]},\n", + " ('pile', 'a large sum of money (especially as pay or profit)'),\n", + " ('bundle', 'a large sum of money (especially as pay or profit)')]},\n", " {'answer': 'big_h',\n", " 'hint': 'synonyms for big h',\n", - " 'clues': [('thunder', 'street names for heroin'),\n", - " ('scag', 'street names for heroin'),\n", - " ('hell dust', 'street names for heroin'),\n", + " 'clues': [('hell dust', 'street names for heroin'),\n", " ('skag', 'street names for heroin'),\n", - " ('nose drops', 'street names for heroin'),\n", " ('smack', 'street names for heroin'),\n", + " ('nose drops', 'street names for heroin'),\n", + " ('scag', 'street names for heroin'),\n", + " ('thunder', 'street names for heroin'),\n", " ('big H', 'street names for heroin')]},\n", " {'answer': 'big_money',\n", " 'hint': 'synonyms for big money',\n", - " 'clues': [('megabucks',\n", + " 'clues': [('big bucks',\n", " 'a large sum of money (especially as pay or profit)'),\n", + " ('megabucks', 'a large sum of money (especially as pay or profit)'),\n", " ('pile', 'a large sum of money (especially as pay or profit)'),\n", - " ('bundle', 'a large sum of money (especially as pay or profit)'),\n", - " ('big bucks', 'a large sum of money (especially as pay or profit)')]},\n", + " ('bundle', 'a large sum of money (especially as pay or profit)')]},\n", " {'answer': 'bike',\n", " 'hint': 'synonyms for bike',\n", - " 'clues': [('bicycle',\n", + " 'clues': [('motorcycle',\n", + " 'a motor vehicle with two wheels and a strong frame'),\n", + " ('wheel',\n", " 'a wheeled vehicle that has two wheels and is moved by foot pedals'),\n", - " ('cycle',\n", + " ('bicycle',\n", " 'a wheeled vehicle that has two wheels and is moved by foot pedals'),\n", - " ('motorcycle', 'a motor vehicle with two wheels and a strong frame'),\n", - " ('wheel',\n", + " ('cycle',\n", " 'a wheeled vehicle that has two wheels and is moved by foot pedals')]},\n", " {'answer': 'bilgewater',\n", " 'hint': 'synonyms for bilgewater',\n", - " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n", - " ('tarradiddle', 'pretentious or silly talk or writing'),\n", - " ('tommyrot', 'pretentious or silly talk or writing'),\n", + " 'clues': [('tarradiddle', 'pretentious or silly talk or writing'),\n", + " ('twaddle', 'pretentious or silly talk or writing'),\n", + " ('baloney', 'pretentious or silly talk or writing'),\n", + " ('tosh', 'pretentious or silly talk or writing'),\n", " ('bosh', 'pretentious or silly talk or writing'),\n", - " ('boloney', 'pretentious or silly talk or writing'),\n", + " ('tommyrot', 'pretentious or silly talk or writing'),\n", " ('humbug', 'pretentious or silly talk or writing'),\n", - " ('drool', 'pretentious or silly talk or writing'),\n", - " ('tosh', 'pretentious or silly talk or writing')]},\n", + " ('drool', 'pretentious or silly talk or writing')]},\n", " {'answer': 'biliousness',\n", " 'hint': 'synonyms for biliousness',\n", - " 'clues': [('temper', 'a disposition to exhibit uncontrolled anger'),\n", - " ('pettishness', 'a disposition to exhibit uncontrolled anger'),\n", + " 'clues': [('irritability', 'a disposition to exhibit uncontrolled anger'),\n", " ('surliness', 'a disposition to exhibit uncontrolled anger'),\n", + " ('peevishness', 'a disposition to exhibit uncontrolled anger'),\n", " ('snappishness', 'a disposition to exhibit uncontrolled anger'),\n", - " ('irritability', 'a disposition to exhibit uncontrolled anger'),\n", - " ('peevishness', 'a disposition to exhibit uncontrolled anger')]},\n", + " ('temper', 'a disposition to exhibit uncontrolled anger'),\n", + " ('pettishness', 'a disposition to exhibit uncontrolled anger')]},\n", " {'answer': 'bill',\n", " 'hint': 'synonyms for bill',\n", - " 'clues': [('bank bill',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('flier',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('account',\n", - " 'an itemized statement of money owed for goods shipped or services rendered'),\n", - " ('bank note',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('billhook', 'a long-handled saw with a curved blade'),\n", - " ('eyeshade', 'a brim that projects to the front to shade the eyes'),\n", + " 'clues': [('vizor', 'a brim that projects to the front to shade the eyes'),\n", " (\"banker's bill\",\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('placard', 'a sign posted in a public place as an advertisement'),\n", - " ('peak', 'a brim that projects to the front to shade the eyes'),\n", - " ('flyer',\n", + " ('card', 'a sign posted in a public place as an advertisement'),\n", + " ('measure', 'a statute in draft before it becomes law'),\n", + " ('throwaway',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('posting', 'a sign posted in a public place as an advertisement'),\n", + " ('bank bill',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", " ('government note',\n", " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('throwaway',\n", - " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('placard', 'a sign posted in a public place as an advertisement'),\n", + " ('eyeshade', 'a brim that projects to the front to shade the eyes'),\n", " ('invoice',\n", " 'an itemized statement of money owed for goods shipped or services rendered'),\n", - " ('vizor', 'a brim that projects to the front to shade the eyes'),\n", - " ('broadsheet',\n", + " ('notice', 'a sign posted in a public place as an advertisement'),\n", + " ('greenback',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", + " ('circular',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('visor', 'a brim that projects to the front to shade the eyes'),\n", " ('broadside',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('poster', 'a sign posted in a public place as an advertisement'),\n", - " ('note',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", - " ('circular',\n", + " ('flier',\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('broadsheet',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('greenback',\n", - " 'a piece of paper money (especially one issued by a central bank)'),\n", " ('handbill',\n", " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", - " ('card', 'a sign posted in a public place as an advertisement'),\n", - " ('notice', 'a sign posted in a public place as an advertisement'),\n", - " ('measure', 'a statute in draft before it becomes law')]},\n", + " ('bank note',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", + " ('account',\n", + " 'an itemized statement of money owed for goods shipped or services rendered'),\n", + " ('billhook', 'a long-handled saw with a curved blade'),\n", + " ('note',\n", + " 'a piece of paper money (especially one issued by a central bank)'),\n", + " ('peak', 'a brim that projects to the front to shade the eyes'),\n", + " ('flyer',\n", + " 'an advertisement (usually printed on a page or in a leaflet) intended for wide distribution'),\n", + " ('poster', 'a sign posted in a public place as an advertisement'),\n", + " ('visor', 'a brim that projects to the front to shade the eyes'),\n", + " ('posting', 'a sign posted in a public place as an advertisement')]},\n", " {'answer': 'bill_of_fare',\n", " 'hint': 'synonyms for bill of fare',\n", - " 'clues': [('carte du jour', 'a list of dishes available at a restaurant'),\n", - " ('card', 'a list of dishes available at a restaurant'),\n", + " 'clues': [('menu', 'a list of dishes available at a restaurant'),\n", " ('carte', 'a list of dishes available at a restaurant'),\n", - " ('menu', 'a list of dishes available at a restaurant')]},\n", + " ('carte du jour', 'a list of dishes available at a restaurant'),\n", + " ('card', 'a list of dishes available at a restaurant')]},\n", " {'answer': 'billet',\n", " 'hint': 'synonyms for billet',\n", - " 'clues': [('situation', 'a job in an organization'),\n", + " 'clues': [('office', 'a job in an organization'),\n", + " ('line', 'a short personal letter'),\n", " ('spot', 'a job in an organization'),\n", + " ('situation', 'a job in an organization'),\n", + " ('note', 'a short personal letter'),\n", + " ('post', 'a job in an organization'),\n", " ('berth', 'a job in an organization'),\n", - " ('line', 'a short personal letter'),\n", " ('place', 'a job in an organization'),\n", - " ('note', 'a short personal letter'),\n", " ('position', 'a job in an organization'),\n", - " ('office', 'a job in an organization'),\n", - " ('post', 'a job in an organization'),\n", " ('short letter', 'a short personal letter')]},\n", " {'answer': 'billiard_parlor',\n", " 'hint': 'synonyms for billiard parlor',\n", - " 'clues': [('billiard saloon', 'a room in which billiards is played'),\n", - " ('billiard parlour', 'a room in which billiards is played'),\n", + " 'clues': [('billiard parlour', 'a room in which billiards is played'),\n", + " ('billiard room', 'a room in which billiards is played'),\n", " ('billiard hall', 'a room in which billiards is played'),\n", - " ('billiard room', 'a room in which billiards is played')]},\n", + " ('billiard saloon', 'a room in which billiards is played')]},\n", " {'answer': 'billiard_parlour',\n", " 'hint': 'synonyms for billiard parlour',\n", - " 'clues': [('billiard parlor', 'a room in which billiards is played'),\n", - " ('billiard saloon', 'a room in which billiards is played'),\n", + " 'clues': [('billiard saloon', 'a room in which billiards is played'),\n", + " ('billiard room', 'a room in which billiards is played'),\n", " ('billiard hall', 'a room in which billiards is played'),\n", - " ('billiard room', 'a room in which billiards is played')]},\n", + " ('billiard parlor', 'a room in which billiards is played')]},\n", " {'answer': 'billy',\n", " 'hint': 'synonyms for billy',\n", - " 'clues': [('baton', 'a short stout club used primarily by policemen'),\n", + " 'clues': [('billy club', 'a short stout club used primarily by policemen'),\n", " ('nightstick', 'a short stout club used primarily by policemen'),\n", - " ('billystick', 'a short stout club used primarily by policemen'),\n", " ('truncheon', 'a short stout club used primarily by policemen'),\n", - " ('billy club', 'a short stout club used primarily by policemen')]},\n", + " ('baton', 'a short stout club used primarily by policemen'),\n", + " ('billystick', 'a short stout club used primarily by policemen')]},\n", " {'answer': 'billy_club',\n", " 'hint': 'synonyms for billy club',\n", - " 'clues': [('baton', 'a short stout club used primarily by policemen'),\n", + " 'clues': [('billy', 'a short stout club used primarily by policemen'),\n", " ('nightstick', 'a short stout club used primarily by policemen'),\n", - " ('billystick', 'a short stout club used primarily by policemen'),\n", - " ('billy', 'a short stout club used primarily by policemen'),\n", - " ('truncheon', 'a short stout club used primarily by policemen')]},\n", + " ('truncheon', 'a short stout club used primarily by policemen'),\n", + " ('baton', 'a short stout club used primarily by policemen'),\n", + " ('billystick', 'a short stout club used primarily by policemen')]},\n", " {'answer': 'billystick',\n", " 'hint': 'synonyms for billystick',\n", - " 'clues': [('baton', 'a short stout club used primarily by policemen'),\n", - " ('nightstick', 'a short stout club used primarily by policemen'),\n", + " 'clues': [('billy club', 'a short stout club used primarily by policemen'),\n", " ('billy', 'a short stout club used primarily by policemen'),\n", + " ('nightstick', 'a short stout club used primarily by policemen'),\n", " ('truncheon', 'a short stout club used primarily by policemen'),\n", - " ('billy club', 'a short stout club used primarily by policemen')]},\n", + " ('baton', 'a short stout club used primarily by policemen')]},\n", " {'answer': 'binge',\n", " 'hint': 'synonyms for binge',\n", - " 'clues': [('splurge', 'any act of immoderate indulgence'),\n", + " 'clues': [('bout', 'an occasion for excessive eating or drinking'),\n", " ('orgy', 'any act of immoderate indulgence'),\n", " ('bust', 'an occasion for excessive eating or drinking'),\n", - " ('bout', 'an occasion for excessive eating or drinking'),\n", + " ('splurge', 'any act of immoderate indulgence'),\n", " ('tear', 'an occasion for excessive eating or drinking')]},\n", " {'answer': 'bird',\n", " 'hint': 'synonyms for bird',\n", - " 'clues': [('boo',\n", + " 'clues': [('hiss',\n", " 'a cry or noise made to express displeasure or contempt'),\n", + " ('raspberry', 'a cry or noise made to express displeasure or contempt'),\n", " ('fowl', 'the flesh of a bird or fowl (wild or domestic) used as food'),\n", - " ('razzing', 'a cry or noise made to express displeasure or contempt'),\n", + " ('snort', 'a cry or noise made to express displeasure or contempt'),\n", + " ('boo', 'a cry or noise made to express displeasure or contempt'),\n", " ('birdie',\n", " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n", - " ('shuttle',\n", - " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n", - " ('raspberry', 'a cry or noise made to express displeasure or contempt'),\n", - " ('snort', 'a cry or noise made to express displeasure or contempt'),\n", " ('shuttlecock',\n", " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n", - " ('hoot', 'a cry or noise made to express displeasure or contempt'),\n", - " ('hiss', 'a cry or noise made to express displeasure or contempt')]},\n", + " ('razzing', 'a cry or noise made to express displeasure or contempt'),\n", + " ('shuttle',\n", + " 'badminton equipment consisting of a ball of cork or rubber with a crown of feathers'),\n", + " ('hoot', 'a cry or noise made to express displeasure or contempt')]},\n", " {'answer': 'birth',\n", " 'hint': 'synonyms for birth',\n", - " 'clues': [('nativity', 'the event of being born'),\n", + " 'clues': [('nascency', 'the event of being born'),\n", + " ('parentage', 'the kinship relation of an offspring to the parents'),\n", " ('parturition', 'the process of giving birth'),\n", - " ('giving birth', 'the process of giving birth'),\n", - " ('nascence', 'the event of being born'),\n", + " ('nativity', 'the event of being born'),\n", " ('birthing', 'the process of giving birth'),\n", - " ('parentage', 'the kinship relation of an offspring to the parents')]},\n", + " ('giving birth', 'the process of giving birth')]},\n", " {'answer': 'birth_control_device',\n", " 'hint': 'synonyms for birth control device',\n", - " 'clues': [('contraceptive',\n", + " 'clues': [('prophylactic device',\n", " 'an agent or device intended to prevent conception'),\n", + " ('preventive', 'an agent or device intended to prevent conception'),\n", + " ('contraceptive', 'an agent or device intended to prevent conception'),\n", " ('contraceptive device',\n", - " 'an agent or device intended to prevent conception'),\n", - " ('prophylactic device',\n", - " 'an agent or device intended to prevent conception'),\n", - " ('preventative', 'an agent or device intended to prevent conception')]},\n", + " 'an agent or device intended to prevent conception')]},\n", " {'answer': 'birth_control_pill',\n", " 'hint': 'synonyms for birth control pill',\n", - " 'clues': [('contraceptive pill',\n", + " 'clues': [('anovulatory drug',\n", + " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", + " ('anovulant',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", " ('pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", " ('oral contraceptive',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('anovulatory drug',\n", - " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception'),\n", - " ('anovulant',\n", + " ('contraceptive pill',\n", " 'a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception')]},\n", " {'answer': 'birth_rate',\n", " 'hint': 'synonyms for birth rate',\n", - " 'clues': [('fertility rate',\n", + " 'clues': [('birthrate',\n", " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", " ('natality',\n", " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", - " ('birthrate',\n", - " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", " ('fertility',\n", + " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", + " ('fertility rate',\n", " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year')]},\n", " {'answer': 'birthplace',\n", " 'hint': 'synonyms for birthplace',\n", " 'clues': [('cradle',\n", " 'where something originated or was nurtured in its early existence'),\n", - " ('provenience',\n", - " 'where something originated or was nurtured in its early existence'),\n", " ('place of birth', 'the place where someone was born'),\n", + " ('provenance',\n", + " 'where something originated or was nurtured in its early existence'),\n", " ('place of origin',\n", " 'where something originated or was nurtured in its early existence')]},\n", " {'answer': 'birthrate',\n", " 'hint': 'synonyms for birthrate',\n", - " 'clues': [('fertility rate',\n", + " 'clues': [('birth rate',\n", " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", " ('natality',\n", " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", - " ('birth rate',\n", - " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", " ('fertility',\n", + " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year'),\n", + " ('fertility rate',\n", " 'the ratio of live births in an area to the population of that area; expressed per 1000 population per year')]},\n", " {'answer': 'bit',\n", " 'hint': 'synonyms for bit',\n", - " 'clues': [('scrap',\n", - " 'a small fragment of something broken off from the whole'),\n", - " ('piece', 'an instance of some kind'),\n", + " 'clues': [('bite', 'a small amount of solid food; a mouthful'),\n", " ('minute', 'an indefinitely short time'),\n", + " ('second', 'an indefinitely short time'),\n", " ('morsel', 'a small amount of solid food; a mouthful'),\n", - " ('number',\n", + " ('routine',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('bite', 'a small amount of solid food; a mouthful'),\n", - " ('moment', 'an indefinitely short time'),\n", - " ('act',\n", + " ('number',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('second', 'an indefinitely short time'),\n", " ('chip', 'a small fragment of something broken off from the whole'),\n", " ('mo', 'an indefinitely short time'),\n", - " ('fleck', 'a small fragment of something broken off from the whole'),\n", " ('flake', 'a small fragment of something broken off from the whole'),\n", - " ('routine',\n", - " 'a short theatrical performance that is part of a longer program'),\n", " ('turn',\n", " 'a short theatrical performance that is part of a longer program'),\n", - " ('spot', 'a small piece or quantity of something'),\n", - " ('snatch', 'a small fragment')]},\n", + " ('snatch', 'a small fragment'),\n", + " ('fleck', 'a small fragment of something broken off from the whole'),\n", + " ('act',\n", + " 'a short theatrical performance that is part of a longer program'),\n", + " ('scrap', 'a small fragment of something broken off from the whole'),\n", + " ('moment', 'an indefinitely short time'),\n", + " ('piece', 'an instance of some kind'),\n", + " ('spot', 'a small piece or quantity of something')]},\n", " {'answer': 'bitch',\n", " 'hint': 'synonyms for bitch',\n", - " 'clues': [('squawk', 'informal terms for objecting'),\n", + " 'clues': [('beef', 'informal terms for objecting'),\n", " ('gripe', 'informal terms for objecting'),\n", - " ('beef', 'informal terms for objecting'),\n", - " ('kick', 'informal terms for objecting')]},\n", + " ('kick', 'informal terms for objecting'),\n", + " ('squawk', 'informal terms for objecting')]},\n", " {'answer': 'bitchiness',\n", " 'hint': 'synonyms for bitchiness',\n", - " 'clues': [('spite',\n", - " 'malevolence by virtue of being malicious or spiteful or nasty'),\n", - " ('nastiness',\n", + " 'clues': [('spitefulness',\n", " 'malevolence by virtue of being malicious or spiteful or nasty'),\n", - " ('spitefulness',\n", + " ('spite',\n", " 'malevolence by virtue of being malicious or spiteful or nasty'),\n", " ('cattiness',\n", + " 'malevolence by virtue of being malicious or spiteful or nasty'),\n", + " ('nastiness',\n", " 'malevolence by virtue of being malicious or spiteful or nasty')]},\n", " {'answer': 'bite',\n", " 'hint': 'synonyms for bite',\n", - " 'clues': [('morsel', 'a small amount of solid food; a mouthful'),\n", - " ('bit', 'a small amount of solid food; a mouthful'),\n", + " 'clues': [('collation', 'a light informal meal'),\n", + " ('morsel', 'a small amount of solid food; a mouthful'),\n", + " ('pungency', 'a strong odor or taste property'),\n", " ('snack', 'a light informal meal'),\n", + " ('bit', 'a small amount of solid food; a mouthful'),\n", + " ('raciness', 'a strong odor or taste property'),\n", " ('chomp', 'the act of gripping or chewing off with the teeth and jaws'),\n", - " ('collation', 'a light informal meal'),\n", - " ('sharpness', 'a strong odor or taste property'),\n", - " ('pungency', 'a strong odor or taste property'),\n", - " ('raciness', 'a strong odor or taste property')]},\n", + " ('sharpness', 'a strong odor or taste property')]},\n", " {'answer': 'bitterness',\n", " 'hint': 'synonyms for bitterness',\n", - " 'clues': [('rancour', 'a feeling of deep and bitter anger and ill-will'),\n", + " 'clues': [('jaundice', 'a rough and bitter manner'),\n", + " ('resentment', 'a feeling of deep and bitter anger and ill-will'),\n", + " ('acerbity', 'a rough and bitter manner'),\n", " ('bitter',\n", " 'the taste experience when quinine or coffee is taken into the mouth'),\n", - " ('acerbity', 'a rough and bitter manner'),\n", - " ('tartness', 'a rough and bitter manner'),\n", - " ('resentment', 'a feeling of deep and bitter anger and ill-will'),\n", + " ('rancor', 'a feeling of deep and bitter anger and ill-will'),\n", " ('thorniness', 'a rough and bitter manner'),\n", - " ('jaundice', 'a rough and bitter manner'),\n", - " ('gall', 'a feeling of deep and bitter anger and ill-will'),\n", - " ('acrimony', 'a rough and bitter manner')]},\n", + " ('tartness', 'a rough and bitter manner'),\n", + " ('acrimony', 'a rough and bitter manner'),\n", + " ('gall', 'a feeling of deep and bitter anger and ill-will')]},\n", " {'answer': 'bivouac',\n", " 'hint': 'synonyms for bivouac',\n", - " 'clues': [('campsite', 'a site where people on holiday can pitch a tent'),\n", + " 'clues': [('cantonment',\n", + " 'temporary living quarters specially built by the army for soldiers'),\n", " ('encampment',\n", " 'temporary living quarters specially built by the army for soldiers'),\n", - " ('camping ground', 'a site where people on holiday can pitch a tent'),\n", " ('camp',\n", " 'temporary living quarters specially built by the army for soldiers'),\n", - " ('campground', 'a site where people on holiday can pitch a tent'),\n", " ('camping site', 'a site where people on holiday can pitch a tent'),\n", - " ('cantonment',\n", - " 'temporary living quarters specially built by the army for soldiers'),\n", + " ('campsite', 'a site where people on holiday can pitch a tent'),\n", + " ('campground', 'a site where people on holiday can pitch a tent'),\n", + " ('camping ground', 'a site where people on holiday can pitch a tent'),\n", " ('camping area', 'a site where people on holiday can pitch a tent')]},\n", " {'answer': 'black_eye',\n", " 'hint': 'synonyms for black eye',\n", - " 'clues': [('blow',\n", + " 'clues': [('reversal',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('reverse',\n", + " ('setback',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('reversal',\n", + " ('blow',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('setback',\n", + " ('reverse',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating')]},\n", " {'answer': 'black_maria',\n", " 'hint': 'synonyms for black maria',\n", - " 'clues': [('wagon', 'van used by police to transport prisoners'),\n", - " ('hearts',\n", - " 'a form of whist in which players avoid winning tricks containing hearts or the queen of spades'),\n", - " ('police van', 'van used by police to transport prisoners'),\n", + " 'clues': [('police van', 'van used by police to transport prisoners'),\n", + " ('paddy wagon', 'van used by police to transport prisoners'),\n", + " ('wagon', 'van used by police to transport prisoners'),\n", " ('police wagon', 'van used by police to transport prisoners'),\n", + " ('patrol wagon', 'van used by police to transport prisoners'),\n", " ('black Maria', 'van used by police to transport prisoners'),\n", - " ('paddy wagon', 'van used by police to transport prisoners'),\n", - " ('patrol wagon', 'van used by police to transport prisoners')]},\n", + " ('hearts',\n", + " 'a form of whist in which players avoid winning tricks containing hearts or the queen of spades')]},\n", " {'answer': 'blackjack',\n", " 'hint': 'synonyms for blackjack',\n", - " 'clues': [('cosh',\n", - " 'a piece of metal covered by leather with a flexible handle; used for hitting people'),\n", - " ('sap',\n", - " 'a piece of metal covered by leather with a flexible handle; used for hitting people'),\n", - " ('black flag',\n", - " 'a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship'),\n", - " ('pirate flag',\n", + " 'clues': [('black flag',\n", " 'a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship'),\n", + " ('vingt-et-un',\n", + " 'a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21'),\n", + " ('cosh',\n", + " 'a piece of metal covered by leather with a flexible handle; used for hitting people'),\n", " ('twenty-one',\n", " 'a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21'),\n", - " ('vingt-et-un',\n", - " 'a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21')]},\n", + " ('pirate flag',\n", + " 'a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship'),\n", + " ('sap',\n", + " 'a piece of metal covered by leather with a flexible handle; used for hitting people')]},\n", " {'answer': 'blade',\n", " 'hint': 'synonyms for blade',\n", - " 'clues': [('brand',\n", - " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard'),\n", - " ('vane', 'flat surface that rotates and pushes against air or water'),\n", + " 'clues': [('vane',\n", + " 'flat surface that rotates and pushes against air or water'),\n", " ('sword',\n", " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard'),\n", " ('steel',\n", + " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard'),\n", + " ('brand',\n", " 'a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard')]},\n", " {'answer': 'blah',\n", " 'hint': 'synonyms for blah',\n", - " 'clues': [('rant', 'pompous or pretentious talk or writing'),\n", - " ('bombast', 'pompous or pretentious talk or writing'),\n", + " 'clues': [('claptrap', 'pompous or pretentious talk or writing'),\n", " ('fustian', 'pompous or pretentious talk or writing'),\n", - " ('claptrap', 'pompous or pretentious talk or writing')]},\n", + " ('rant', 'pompous or pretentious talk or writing'),\n", + " ('bombast', 'pompous or pretentious talk or writing')]},\n", " {'answer': 'blahs',\n", " 'hint': 'synonyms for blahs',\n", - " 'clues': [('claptrap', 'pompous or pretentious talk or writing'),\n", - " ('blah', 'pompous or pretentious talk or writing'),\n", + " 'clues': [('blah', 'pompous or pretentious talk or writing'),\n", + " ('fustian', 'pompous or pretentious talk or writing'),\n", " ('rant', 'pompous or pretentious talk or writing'),\n", " ('bombast', 'pompous or pretentious talk or writing'),\n", - " ('fustian', 'pompous or pretentious talk or writing')]},\n", + " ('claptrap', 'pompous or pretentious talk or writing')]},\n", " {'answer': 'blandness',\n", " 'hint': 'synonyms for blandness',\n", " 'clues': [('suavity',\n", " 'the quality of being bland and gracious or ingratiating in manner'),\n", " ('smoothness',\n", " 'the quality of being bland and gracious or ingratiating in manner'),\n", - " ('insipidness', 'lacking any distinctive or interesting taste property'),\n", - " ('insipidity', 'lacking any distinctive or interesting taste property'),\n", " ('suaveness',\n", - " 'the quality of being bland and gracious or ingratiating in manner')]},\n", + " 'the quality of being bland and gracious or ingratiating in manner'),\n", + " ('insipidity', 'lacking any distinctive or interesting taste property'),\n", + " ('insipidness',\n", + " 'lacking any distinctive or interesting taste property')]},\n", " {'answer': 'blare',\n", " 'hint': 'synonyms for blare',\n", " 'clues': [('din', 'a loud harsh or strident noise'),\n", @@ -34454,303 +34482,303 @@ " ('clamor', 'a loud harsh or strident noise')]},\n", " {'answer': 'blast',\n", " 'hint': 'synonyms for blast',\n", - " 'clues': [('flak', 'intense adverse criticism'),\n", - " ('good time', 'a highly pleasurable or exciting experience'),\n", + " 'clues': [('fire', 'intense adverse criticism'),\n", + " ('bang', 'a sudden very loud noise'),\n", " ('blow', 'a strong current of air'),\n", - " ('eruption', 'a sudden very loud noise'),\n", - " ('clap', 'a sudden very loud noise'),\n", - " ('fire', 'intense adverse criticism'),\n", + " ('flack', 'intense adverse criticism'),\n", " ('bam', 'a sudden very loud noise'),\n", - " ('bang', 'a sudden very loud noise'),\n", + " ('attack', 'intense adverse criticism'),\n", " ('gust', 'a strong current of air'),\n", - " ('attack', 'intense adverse criticism')]},\n", + " ('eruption', 'a sudden very loud noise'),\n", + " ('good time', 'a highly pleasurable or exciting experience'),\n", + " ('clap', 'a sudden very loud noise')]},\n", " {'answer': 'blaze',\n", " 'hint': 'synonyms for blaze',\n", - " 'clues': [('brilliance',\n", - " 'a light within the field of vision that is brighter than the brightness to which the eyes are adapted'),\n", + " 'clues': [('hell', 'a cause of difficulty and suffering'),\n", " ('glare',\n", " 'a light within the field of vision that is brighter than the brightness to which the eyes are adapted'),\n", - " ('hell', 'a cause of difficulty and suffering'),\n", - " ('blazing', 'a strong flame that burns brightly')]},\n", + " ('blazing', 'a strong flame that burns brightly'),\n", + " ('brilliance',\n", + " 'a light within the field of vision that is brighter than the brightness to which the eyes are adapted')]},\n", " {'answer': 'blessing',\n", " 'hint': 'synonyms for blessing',\n", - " 'clues': [('benediction', 'the act of praying for divine protection'),\n", + " 'clues': [('approval', 'the formal act of approving'),\n", + " ('thanksgiving', 'a short prayer of thanks before a meal'),\n", " ('approving', 'the formal act of approving'),\n", - " ('approval', 'the formal act of approving'),\n", - " ('grace', 'a short prayer of thanks before a meal'),\n", - " ('thanksgiving', 'a short prayer of thanks before a meal')]},\n", + " ('benediction', 'the act of praying for divine protection'),\n", + " ('grace', 'a short prayer of thanks before a meal')]},\n", " {'answer': 'blether',\n", " 'hint': 'synonyms for blether',\n", - " 'clues': [('chin music', 'idle or foolish and irrelevant talk'),\n", + " 'clues': [('idle talk', 'idle or foolish and irrelevant talk'),\n", " ('prate', 'idle or foolish and irrelevant talk'),\n", " ('prattle', 'idle or foolish and irrelevant talk'),\n", - " ('idle talk', 'idle or foolish and irrelevant talk')]},\n", + " ('chin music', 'idle or foolish and irrelevant talk')]},\n", " {'answer': 'blink',\n", " 'hint': 'synonyms for blink',\n", - " 'clues': [('winking', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", + " 'clues': [('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", " ('eye blink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('wink', 'a reflex that closes and opens the eyes rapidly'),\n", " ('blinking', 'a reflex that closes and opens the eyes rapidly')]},\n", " {'answer': 'blink_of_an_eye',\n", " 'hint': 'synonyms for blink of an eye',\n", - " 'clues': [('split second',\n", - " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('flash',\n", - " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('trice',\n", + " 'clues': [('flash',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('instant',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('jiffy',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", - " ('twinkling',\n", + " ('trice',\n", + " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('split second',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('wink',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", + " ('twinkling',\n", + " 'a very short time (as the time it takes the eye to blink or the heart to beat)'),\n", " ('heartbeat',\n", " 'a very short time (as the time it takes the eye to blink or the heart to beat)')]},\n", " {'answer': 'blinker',\n", " 'hint': 'synonyms for blinker',\n", - " 'clues': [('turn signal',\n", + " 'clues': [('turn indicator',\n", " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n", - " ('flasher',\n", - " 'a light that flashes on and off; used as a signal or to send messages'),\n", + " ('turn signal',\n", + " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n", + " ('blinder',\n", + " 'blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side'),\n", " ('winker',\n", " 'blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side'),\n", - " ('turn indicator',\n", - " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n", " ('trafficator',\n", " 'a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn'),\n", - " ('blinder',\n", - " 'blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side')]},\n", + " ('flasher',\n", + " 'a light that flashes on and off; used as a signal or to send messages')]},\n", " {'answer': 'blinks',\n", " 'hint': 'synonyms for blinks',\n", - " 'clues': [('winking', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('blink', 'a reflex that closes and opens the eyes rapidly'),\n", - " ('eye blink', 'a reflex that closes and opens the eyes rapidly')]},\n", + " 'clues': [('nictation', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('eye blink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('wink', 'a reflex that closes and opens the eyes rapidly'),\n", + " ('blinking', 'a reflex that closes and opens the eyes rapidly')]},\n", " {'answer': 'blistering_agent',\n", " 'hint': 'synonyms for blistering agent',\n", - " 'clues': [('mustard gas',\n", - " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n", - " ('dichloroethyl sulfide',\n", + " 'clues': [('dichloroethyl sulfide',\n", " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n", " ('mustard agent',\n", " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n", + " ('mustard gas',\n", + " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote'),\n", " ('sulfur mustard',\n", " 'a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote')]},\n", " {'answer': 'block',\n", " 'hint': 'synonyms for block',\n", - " 'clues': [('stop', 'an obstruction in a pipe or tube'),\n", - " ('auction block', 'a platform from which an auctioneer sells'),\n", - " ('pulley-block',\n", - " 'a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope'),\n", - " ('stoppage', 'an obstruction in a pipe or tube'),\n", - " ('closure', 'an obstruction in a pipe or tube'),\n", - " ('engine block',\n", + " 'clues': [('engine block',\n", " 'a metal casting containing the cylinders and cooling ducts of an engine'),\n", + " ('closure', 'an obstruction in a pipe or tube'),\n", " ('cube',\n", " 'a three-dimensional shape with six square or rectangular sides'),\n", + " ('pulley block',\n", + " 'a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope'),\n", + " ('stoppage', 'an obstruction in a pipe or tube'),\n", + " ('blocking', \"the act of obstructing or deflecting someone's movements\"),\n", " ('occlusion', 'an obstruction in a pipe or tube'),\n", - " ('blockage', 'an obstruction in a pipe or tube'),\n", " ('city block',\n", " 'a rectangular area in a city surrounded by streets and usually containing several buildings'),\n", - " ('cylinder block',\n", - " 'a metal casting containing the cylinders and cooling ducts of an engine'),\n", - " ('blocking', \"the act of obstructing or deflecting someone's movements\"),\n", + " ('mental block',\n", + " 'an inability to remember or think of something you normally can do; often caused by emotional tension'),\n", + " ('auction block', 'a platform from which an auctioneer sells'),\n", + " ('blockage', 'an obstruction in a pipe or tube'),\n", + " ('stop', 'an obstruction in a pipe or tube'),\n", " ('pulley',\n", " 'a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope'),\n", - " ('mental block',\n", - " 'an inability to remember or think of something you normally can do; often caused by emotional tension')]},\n", + " ('cylinder block',\n", + " 'a metal casting containing the cylinders and cooling ducts of an engine')]},\n", " {'answer': 'blockage',\n", " 'hint': 'synonyms for blockage',\n", - " 'clues': [('stop', 'an obstruction in a pipe or tube'),\n", - " ('occlusion', 'an obstruction in a pipe or tube'),\n", - " ('stoppage', 'an obstruction in a pipe or tube'),\n", + " 'clues': [('occlusion', 'the act of blocking'),\n", " ('closure', 'an obstruction in a pipe or tube'),\n", - " ('block', 'an obstruction in a pipe or tube')]},\n", + " ('block', 'an obstruction in a pipe or tube'),\n", + " ('stoppage', 'an obstruction in a pipe or tube'),\n", + " ('stop', 'an obstruction in a pipe or tube')]},\n", " {'answer': 'blood',\n", " 'hint': 'synonyms for blood',\n", - " 'clues': [('line of descent', 'the descendants of one individual'),\n", - " ('ancestry', 'the descendants of one individual'),\n", - " ('stock', 'the descendants of one individual'),\n", + " 'clues': [('bloodline', 'the descendants of one individual'),\n", " ('line', 'the descendants of one individual'),\n", - " ('descent', 'the descendants of one individual'),\n", - " ('origin', 'the descendants of one individual'),\n", " ('lineage', 'the descendants of one individual'),\n", - " ('parentage', 'the descendants of one individual'),\n", - " ('blood line', 'the descendants of one individual'),\n", + " ('origin', 'the descendants of one individual'),\n", + " ('pedigree', 'the descendants of one individual'),\n", " ('stemma', 'the descendants of one individual'),\n", - " ('pedigree', 'the descendants of one individual')]},\n", + " ('stock', 'the descendants of one individual'),\n", + " ('ancestry', 'the descendants of one individual'),\n", + " ('line of descent', 'the descendants of one individual'),\n", + " ('parentage', 'the descendants of one individual'),\n", + " ('descent', 'the descendants of one individual')]},\n", " {'answer': 'blood_line',\n", " 'hint': 'synonyms for blood line',\n", - " 'clues': [('line of descent', 'the descendants of one individual'),\n", - " ('ancestry', 'the descendants of one individual'),\n", - " ('stock', 'the descendants of one individual'),\n", + " 'clues': [('bloodline', 'the descendants of one individual'),\n", " ('line', 'the descendants of one individual'),\n", - " ('descent', 'the descendants of one individual'),\n", - " ('origin', 'the descendants of one individual'),\n", " ('lineage', 'the descendants of one individual'),\n", - " ('parentage', 'the descendants of one individual'),\n", + " ('origin', 'the descendants of one individual'),\n", " ('blood', 'the descendants of one individual'),\n", + " ('pedigree', 'the descendants of one individual'),\n", " ('stemma', 'the descendants of one individual'),\n", - " ('bloodline', 'the descendants of one individual'),\n", - " ('pedigree', 'the descendants of one individual')]},\n", + " ('stock', 'the descendants of one individual'),\n", + " ('ancestry', 'the descendants of one individual'),\n", + " ('line of descent', 'the descendants of one individual'),\n", + " ('parentage', 'the descendants of one individual'),\n", + " ('descent', 'the descendants of one individual')]},\n", " {'answer': 'bloodline',\n", " 'hint': 'synonyms for bloodline',\n", - " 'clues': [('line of descent', 'the descendants of one individual'),\n", - " ('ancestry', 'the descendants of one individual'),\n", - " ('stock', 'the descendants of one individual'),\n", - " ('line', 'the descendants of one individual'),\n", - " ('descent', 'the descendants of one individual'),\n", - " ('origin', 'the descendants of one individual'),\n", + " 'clues': [('line', 'the descendants of one individual'),\n", " ('lineage', 'the descendants of one individual'),\n", - " ('parentage', 'the descendants of one individual'),\n", + " ('origin', 'the descendants of one individual'),\n", + " ('pedigree', 'ancestry of a purebred animal'),\n", " ('blood', 'the descendants of one individual'),\n", - " ('blood line', 'the descendants of one individual'),\n", " ('stemma', 'the descendants of one individual'),\n", - " ('pedigree', 'ancestry of a purebred animal')]},\n", + " ('stock', 'the descendants of one individual'),\n", + " ('ancestry', 'the descendants of one individual'),\n", + " ('line of descent', 'the descendants of one individual'),\n", + " ('blood line', 'the descendants of one individual'),\n", + " ('parentage', 'the descendants of one individual'),\n", + " ('descent', 'the descendants of one individual')]},\n", " {'answer': 'bloodshed',\n", " 'hint': 'synonyms for bloodshed',\n", - " 'clues': [('battue', 'indiscriminate slaughter'),\n", - " ('bloodbath', 'indiscriminate slaughter'),\n", + " 'clues': [('bloodbath', 'indiscriminate slaughter'),\n", " ('gore', 'the shedding of blood resulting in murder'),\n", - " ('bloodletting', 'indiscriminate slaughter')]},\n", + " ('bloodletting', 'indiscriminate slaughter'),\n", + " ('battue', 'indiscriminate slaughter')]},\n", " {'answer': 'bloom',\n", " 'hint': 'synonyms for bloom',\n", - " 'clues': [('blossom', 'the period of greatest prosperity or productivity'),\n", + " 'clues': [('flower', 'the period of greatest prosperity or productivity'),\n", + " ('salad days', 'the best time of youth'),\n", + " ('bloom of youth', 'the best time of youth'),\n", + " ('blossom', 'the period of greatest prosperity or productivity'),\n", " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", " ('flush', 'the period of greatest prosperity or productivity'),\n", - " ('heyday', 'the period of greatest prosperity or productivity'),\n", " ('peak', 'the period of greatest prosperity or productivity'),\n", - " ('bloom of youth', 'the best time of youth'),\n", - " ('blooming', 'the organic process of bearing flowers'),\n", " ('prime', 'the period of greatest prosperity or productivity'),\n", - " ('flower', 'the period of greatest prosperity or productivity'),\n", - " ('salad days', 'the best time of youth')]},\n", + " ('heyday', 'the period of greatest prosperity or productivity'),\n", + " ('blooming', 'the organic process of bearing flowers')]},\n", " {'answer': 'bloomer',\n", " 'hint': 'synonyms for bloomer',\n", " 'clues': [('blooper', 'an embarrassing mistake'),\n", " ('botch', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boo-boo', 'an embarrassing mistake'),\n", - " ('boner', 'an embarrassing mistake'),\n", " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", + " ('boner', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", " ('blunder', 'an embarrassing mistake'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boo-boo', 'an embarrassing mistake')]},\n", " {'answer': 'bloomers',\n", " 'hint': 'synonyms for bloomers',\n", - " 'clues': [('pants', 'underpants worn by women'),\n", - " ('blooper', 'an embarrassing mistake'),\n", + " 'clues': [('blooper', 'an embarrassing mistake'),\n", " ('botch', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('knickers', 'underpants worn by women'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boo-boo', 'an embarrassing mistake'),\n", - " ('boner', 'an embarrassing mistake'),\n", " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", + " ('knickers', 'underpants worn by women'),\n", + " ('boner', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pants', 'underpants worn by women'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", " ('blunder', 'an embarrassing mistake'),\n", - " ('drawers', 'underpants worn by women'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boo-boo', 'an embarrassing mistake'),\n", + " ('drawers', 'underpants worn by women')]},\n", " {'answer': 'blooper',\n", " 'hint': 'synonyms for blooper',\n", " 'clues': [('botch', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('bloomer', 'an embarrassing mistake'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boo-boo', 'an embarrassing mistake'),\n", - " ('boner', 'an embarrassing mistake'),\n", " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", + " ('boner', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", " ('blunder', 'an embarrassing mistake'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boo-boo', 'an embarrassing mistake'),\n", + " ('bloomer', 'an embarrassing mistake')]},\n", " {'answer': 'blossom',\n", " 'hint': 'synonyms for blossom',\n", - " 'clues': [('peak', 'the period of greatest prosperity or productivity'),\n", - " ('bloom', 'the period of greatest prosperity or productivity'),\n", - " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", - " ('prime', 'the period of greatest prosperity or productivity'),\n", + " 'clues': [('bloom', 'the period of greatest prosperity or productivity'),\n", " ('flower', 'the period of greatest prosperity or productivity'),\n", + " ('efflorescence', 'the period of greatest prosperity or productivity'),\n", " ('flush', 'the period of greatest prosperity or productivity'),\n", + " ('peak', 'the period of greatest prosperity or productivity'),\n", + " ('prime', 'the period of greatest prosperity or productivity'),\n", " ('heyday', 'the period of greatest prosperity or productivity')]},\n", " {'answer': 'blossoming',\n", " 'hint': 'synonyms for blossoming',\n", - " 'clues': [('flowering',\n", - " 'the time and process of budding and unfolding of blossoms'),\n", - " ('efflorescence',\n", + " 'clues': [('efflorescence',\n", " 'the time and process of budding and unfolding of blossoms'),\n", - " ('anthesis', 'the time and process of budding and unfolding of blossoms'),\n", " ('inflorescence',\n", + " 'the time and process of budding and unfolding of blossoms'),\n", + " ('flowering',\n", + " 'the time and process of budding and unfolding of blossoms'),\n", + " ('anthesis',\n", " 'the time and process of budding and unfolding of blossoms')]},\n", " {'answer': 'blot',\n", " 'hint': 'synonyms for blot',\n", - " 'clues': [('smear',\n", - " 'an act that brings discredit to the person who does it'),\n", - " ('daub', 'a blemish made by dirt'),\n", - " ('smudge', 'a blemish made by dirt'),\n", - " ('smirch', 'an act that brings discredit to the person who does it'),\n", + " 'clues': [('smirch', 'a blemish made by dirt'),\n", " ('spot', 'a blemish made by dirt'),\n", + " ('smear', 'a blemish made by dirt'),\n", " ('slur', 'a blemish made by dirt'),\n", - " ('stain', 'an act that brings discredit to the person who does it')]},\n", + " ('daub', 'a blemish made by dirt'),\n", + " ('stain', 'an act that brings discredit to the person who does it'),\n", + " ('smudge', 'a blemish made by dirt')]},\n", " {'answer': 'blotter',\n", " 'hint': 'synonyms for blotter',\n", " 'clues': [('blotting paper', 'absorbent paper used to dry ink'),\n", - " ('rap sheet',\n", + " ('day book',\n", " 'the daily written record of events (as arrests) in a police station'),\n", " ('police blotter',\n", " 'the daily written record of events (as arrests) in a police station'),\n", - " ('day book',\n", - " 'the daily written record of events (as arrests) in a police station'),\n", " ('charge sheet',\n", + " 'the daily written record of events (as arrests) in a police station'),\n", + " ('rap sheet',\n", " 'the daily written record of events (as arrests) in a police station')]},\n", " {'answer': 'blow',\n", " 'hint': 'synonyms for blow',\n", - " 'clues': [('snow', 'street names for cocaine'),\n", - " ('reversal',\n", - " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('coke', 'street names for cocaine'),\n", - " ('nose candy', 'street names for cocaine'),\n", - " ('bump', 'an impact (as from a collision)'),\n", - " ('setback',\n", + " 'clues': [('reversal',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", - " ('puff', 'forceful exhalation through the nose or mouth'),\n", " ('blast', 'a strong current of air'),\n", " ('black eye',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", + " ('bump', 'an impact (as from a collision)'),\n", + " ('nose candy', 'street names for cocaine'),\n", + " ('coke', 'street names for cocaine'),\n", + " ('snow', 'street names for cocaine'),\n", + " ('gust', 'a strong current of air'),\n", + " ('puff', 'forceful exhalation through the nose or mouth'),\n", " ('reverse',\n", " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating'),\n", " ('shock', 'an unpleasant or disappointing surprise'),\n", - " ('gust', 'a strong current of air')]},\n", + " ('setback',\n", + " 'an unfortunate happening that hinders or impedes; something that is thwarting or frustrating')]},\n", " {'answer': 'blowout',\n", " 'hint': 'synonyms for blowout',\n", " 'clues': [('gala affair', 'a gay festivity'),\n", - " ('walkaway', 'an easy victory'),\n", " ('laugher', 'an easy victory'),\n", + " ('jamboree', 'a gay festivity'),\n", + " ('romp', 'an easy victory'),\n", + " ('walkaway', 'an easy victory'),\n", " ('runaway', 'an easy victory'),\n", " ('shoo-in', 'an easy victory'),\n", - " ('romp', 'an easy victory'),\n", - " ('gala', 'a gay festivity'),\n", - " ('jamboree', 'a gay festivity')]},\n", + " ('gala', 'a gay festivity')]},\n", " {'answer': 'blowup',\n", " 'hint': 'synonyms for blowup',\n", - " 'clues': [('outburst', 'an unrestrained expression of emotion'),\n", - " ('magnification', 'a photographic print that has been enlarged'),\n", - " ('effusion', 'an unrestrained expression of emotion'),\n", - " ('enlargement', 'a photographic print that has been enlarged'),\n", - " ('gush', 'an unrestrained expression of emotion'),\n", - " ('detonation',\n", + " 'clues': [('detonation',\n", " 'a violent release of energy caused by a chemical or nuclear reaction'),\n", " ('ebullition', 'an unrestrained expression of emotion'),\n", " ('explosion',\n", - " 'a violent release of energy caused by a chemical or nuclear reaction')]},\n", + " 'a violent release of energy caused by a chemical or nuclear reaction'),\n", + " ('effusion', 'an unrestrained expression of emotion'),\n", + " ('gush', 'an unrestrained expression of emotion'),\n", + " ('enlargement', 'a photographic print that has been enlarged'),\n", + " ('outburst', 'an unrestrained expression of emotion'),\n", + " ('magnification', 'a photographic print that has been enlarged')]},\n", " {'answer': 'blue_devils',\n", " 'hint': 'synonyms for blue devils',\n", - " 'clues': [('blue',\n", + " 'clues': [('amobarbital sodium',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('amobarbital sodium',\n", + " ('blue',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", " ('blue angel',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", @@ -34760,222 +34788,224 @@ " 'hint': 'synonyms for blues',\n", " 'clues': [('blue', 'the sky as viewed during daylight'),\n", " ('blue air', 'the sky as viewed during daylight'),\n", + " ('blueness',\n", + " 'blue color or pigment; resembling the color of the clear sky in the daytime'),\n", " ('wild blue yonder', 'the sky as viewed during daylight'),\n", + " ('blue sky', 'the sky as viewed during daylight'),\n", " ('amobarbital sodium',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('blue devil',\n", - " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", " ('bluing', 'used to whiten laundry or hair or give it a bluish tinge'),\n", - " ('blueness',\n", - " 'blue color or pigment; resembling the color of the clear sky in the daytime'),\n", " ('blue angel',\n", " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic'),\n", - " ('blue sky', 'the sky as viewed during daylight')]},\n", + " ('blue devil',\n", + " 'the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic')]},\n", " {'answer': 'blunder',\n", " 'hint': 'synonyms for blunder',\n", - " 'clues': [('botch', 'an embarrassing mistake'),\n", - " ('blooper', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boo-boo', 'an embarrassing mistake'),\n", - " ('boner', 'an embarrassing mistake'),\n", + " 'clues': [('blooper', 'an embarrassing mistake'),\n", + " ('botch', 'an embarrassing mistake'),\n", " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boner', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", + " ('boo-boo', 'an embarrassing mistake')]},\n", " {'answer': 'blurriness',\n", " 'hint': 'synonyms for blurriness',\n", - " 'clues': [('fogginess',\n", - " 'the quality of being indistinct and without sharp outlines'),\n", - " ('softness',\n", + " 'clues': [('indistinctness',\n", " 'the quality of being indistinct and without sharp outlines'),\n", " ('fuzziness',\n", " 'the quality of being indistinct and without sharp outlines'),\n", - " ('indistinctness',\n", + " ('softness',\n", + " 'the quality of being indistinct and without sharp outlines'),\n", + " ('fogginess',\n", " 'the quality of being indistinct and without sharp outlines')]},\n", " {'answer': 'bm',\n", " 'hint': 'synonyms for bm',\n", - " 'clues': [('fecal matter',\n", + " 'clues': [('dejection',\n", " 'solid excretory product evacuated from the bowels'),\n", - " ('faeces', 'solid excretory product evacuated from the bowels'),\n", " ('bowel movement', 'a euphemism for defecation'),\n", - " ('ordure', 'solid excretory product evacuated from the bowels'),\n", - " ('movement', 'a euphemism for defecation'),\n", " ('stool', 'solid excretory product evacuated from the bowels'),\n", - " ('dejection', 'solid excretory product evacuated from the bowels')]},\n", + " ('movement', 'a euphemism for defecation'),\n", + " ('faeces', 'solid excretory product evacuated from the bowels'),\n", + " ('faecal matter', 'solid excretory product evacuated from the bowels'),\n", + " ('ordure', 'solid excretory product evacuated from the bowels')]},\n", " {'answer': 'board',\n", " 'hint': 'synonyms for board',\n", - " 'clues': [('plug-in',\n", + " 'clues': [('circuit board',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", - " ('display board',\n", - " 'a vertical surface on which information can be displayed to public view'),\n", - " ('control panel',\n", + " ('card',\n", + " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", + " ('control board',\n", " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", - " ('dining table', 'a table at which meals are served'),\n", " ('plank',\n", " 'a stout length of sawn timber; made in a wide variety of sizes and used for many purposes'),\n", " ('instrument panel',\n", " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", - " ('card',\n", + " ('gameboard',\n", + " 'a flat portable surface (usually rectangular) designed for board games'),\n", + " ('add-in',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", + " ('dining table', 'a table at which meals are served'),\n", + " ('control panel',\n", + " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", " ('table', 'food or meals in general'),\n", " ('panel',\n", " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", " ('display panel',\n", " 'a vertical surface on which information can be displayed to public view'),\n", - " ('gameboard',\n", - " 'a flat portable surface (usually rectangular) designed for board games'),\n", - " ('control board',\n", - " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", - " ('circuit board',\n", - " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", - " ('add-in',\n", + " ('display board',\n", + " 'a vertical surface on which information can be displayed to public view'),\n", + " ('plug-in',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\")]},\n", " {'answer': 'boards',\n", " 'hint': 'synonyms for boards',\n", " 'clues': [('board',\n", " 'a stout length of sawn timber; made in a wide variety of sizes and used for many purposes'),\n", - " ('display board',\n", - " 'a vertical surface on which information can be displayed to public view'),\n", - " ('control panel',\n", - " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", - " ('table', 'food or meals in general'),\n", - " ('panel',\n", - " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", - " ('plug-in',\n", + " ('circuit board',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", - " ('instrument panel',\n", + " ('card',\n", + " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", + " ('control board',\n", " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", - " ('dining table', 'a table at which meals are served'),\n", " ('plank',\n", " 'a stout length of sawn timber; made in a wide variety of sizes and used for many purposes'),\n", - " ('card',\n", - " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", - " ('circuit card',\n", - " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", - " ('display panel',\n", - " 'a vertical surface on which information can be displayed to public view'),\n", " ('gameboard',\n", " 'a flat portable surface (usually rectangular) designed for board games'),\n", - " ('control board',\n", + " ('dining table', 'a table at which meals are served'),\n", + " ('control panel',\n", + " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", + " ('table', 'food or meals in general'),\n", + " ('instrument panel',\n", " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", + " ('panel',\n", + " 'electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices'),\n", + " ('display panel',\n", + " 'a vertical surface on which information can be displayed to public view'),\n", + " ('display board',\n", + " 'a vertical surface on which information can be displayed to public view'),\n", + " ('plug-in',\n", + " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\"),\n", " ('add-in',\n", " \"a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities\")]},\n", " {'answer': 'boater',\n", " 'hint': 'synonyms for boater',\n", - " 'clues': [('skimmer', 'a stiff hat made of straw with a flat crown'),\n", - " ('straw hat', 'a stiff hat made of straw with a flat crown'),\n", - " ('leghorn', 'a stiff hat made of straw with a flat crown'),\n", - " ('sailor', 'a stiff hat made of straw with a flat crown')]},\n", + " 'clues': [('straw hat', 'a stiff hat made of straw with a flat crown'),\n", + " ('skimmer', 'a stiff hat made of straw with a flat crown'),\n", + " ('sailor', 'a stiff hat made of straw with a flat crown'),\n", + " ('leghorn', 'a stiff hat made of straw with a flat crown')]},\n", " {'answer': 'bob',\n", " 'hint': 'synonyms for bob',\n", - " 'clues': [('bobsled',\n", - " 'a long racing sled (for 2 or more people) with a steering mechanism'),\n", - " ('bobfloat',\n", + " 'clues': [('shilling', 'a former monetary unit in Great Britain'),\n", + " ('cork',\n", " 'a small float usually made of cork; attached to a fishing line'),\n", + " ('bobsled',\n", + " 'a long racing sled (for 2 or more people) with a steering mechanism'),\n", " ('bobsleigh',\n", " 'a long racing sled (for 2 or more people) with a steering mechanism'),\n", - " ('shilling', 'a former monetary unit in Great Britain'),\n", - " ('bobber',\n", + " ('bobfloat',\n", " 'a small float usually made of cork; attached to a fishing line'),\n", - " ('cork',\n", + " ('bobber',\n", " 'a small float usually made of cork; attached to a fishing line')]},\n", " {'answer': 'body_armor',\n", " 'hint': 'synonyms for body armor',\n", - " 'clues': [('suit of armour',\n", - " \"armor that protects the wearer's whole body\"),\n", - " ('body armour', \"armor that protects the wearer's whole body\"),\n", + " 'clues': [('body armour', \"armor that protects the wearer's whole body\"),\n", + " ('cataphract', \"armor that protects the wearer's whole body\"),\n", " ('coat of mail', \"armor that protects the wearer's whole body\"),\n", - " ('cataphract', \"armor that protects the wearer's whole body\")]},\n", + " ('suit of armour', \"armor that protects the wearer's whole body\")]},\n", " {'answer': 'body_armour',\n", " 'hint': 'synonyms for body armour',\n", - " 'clues': [('cataphract', \"armor that protects the wearer's whole body\"),\n", - " ('suit of armour', \"armor that protects the wearer's whole body\"),\n", - " ('body armor', \"armor that protects the wearer's whole body\"),\n", - " ('coat of mail', \"armor that protects the wearer's whole body\")]},\n", + " 'clues': [('body armor', \"armor that protects the wearer's whole body\"),\n", + " ('cataphract', \"armor that protects the wearer's whole body\"),\n", + " ('coat of mail', \"armor that protects the wearer's whole body\"),\n", + " ('suit of armour', \"armor that protects the wearer's whole body\")]},\n", " {'answer': 'body_politic',\n", " 'hint': 'synonyms for body politic',\n", - " 'clues': [('nation',\n", - " 'a politically organized body of people under a single government'),\n", - " ('land',\n", + " 'clues': [('country',\n", " 'a politically organized body of people under a single government'),\n", - " ('country',\n", + " ('state',\n", " 'a politically organized body of people under a single government'),\n", " ('commonwealth',\n", " 'a politically organized body of people under a single government'),\n", + " ('land',\n", + " 'a politically organized body of people under a single government'),\n", " ('res publica',\n", " 'a politically organized body of people under a single government'),\n", - " ('state',\n", + " ('nation',\n", " 'a politically organized body of people under a single government')]},\n", " {'answer': 'body_waste',\n", " 'hint': 'synonyms for body waste',\n", - " 'clues': [('excretion',\n", + " 'clues': [('excretory product',\n", + " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n", + " ('excretion',\n", " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n", " ('excrement',\n", " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n", " ('excreta',\n", - " 'waste matter (as urine or sweat but especially feces) discharged from the body'),\n", - " ('excretory product',\n", " 'waste matter (as urine or sweat but especially feces) discharged from the body')]},\n", " {'answer': 'boldness',\n", " 'hint': 'synonyms for boldness',\n", - " 'clues': [('strikingness',\n", - " 'the quality of standing out strongly and distinctly'),\n", - " ('cheek', 'impudent aggressiveness'),\n", + " 'clues': [('hardihood',\n", + " 'the trait of being willing to undertake things that involve risk or danger'),\n", " ('nerve', 'impudent aggressiveness'),\n", " ('hardiness',\n", " 'the trait of being willing to undertake things that involve risk or danger'),\n", - " ('hardihood',\n", - " 'the trait of being willing to undertake things that involve risk or danger'),\n", + " ('cheek', 'impudent aggressiveness'),\n", " ('brass', 'impudent aggressiveness'),\n", + " ('face', 'impudent aggressiveness'),\n", " ('daring',\n", " 'the trait of being willing to undertake things that involve risk or danger'),\n", - " ('face', 'impudent aggressiveness')]},\n", + " ('strikingness', 'the quality of standing out strongly and distinctly')]},\n", " {'answer': 'boloney',\n", " 'hint': 'synonyms for boloney',\n", - " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n", - " ('tarradiddle', 'pretentious or silly talk or writing'),\n", - " ('tommyrot', 'pretentious or silly talk or writing'),\n", - " ('bosh', 'pretentious or silly talk or writing'),\n", + " 'clues': [('tarradiddle', 'pretentious or silly talk or writing'),\n", + " ('twaddle', 'pretentious or silly talk or writing'),\n", " ('baloney', 'pretentious or silly talk or writing'),\n", + " ('tosh', 'pretentious or silly talk or writing'),\n", " ('bilgewater', 'pretentious or silly talk or writing'),\n", + " ('bosh', 'pretentious or silly talk or writing'),\n", + " ('tommyrot', 'pretentious or silly talk or writing'),\n", " ('humbug', 'pretentious or silly talk or writing'),\n", - " ('drool', 'pretentious or silly talk or writing'),\n", - " ('tosh', 'pretentious or silly talk or writing')]},\n", + " ('drool', 'pretentious or silly talk or writing')]},\n", " {'answer': 'bombardment',\n", " 'hint': 'synonyms for bombardment',\n", - " 'clues': [('barrage fire',\n", + " 'clues': [('shelling',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('onslaught',\n", - " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n", " ('battery',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", - " ('barrage',\n", + " ('barrage fire',\n", " 'the heavy fire of artillery to saturate an area rather than hit a specific target'),\n", + " ('onslaught',\n", + " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n", " ('bombing', 'an attack by dropping bombs'),\n", - " ('outpouring',\n", + " ('barrage',\n", " 'the rapid and continuous delivery of linguistic communication (spoken or written)'),\n", - " ('shelling',\n", - " 'the heavy fire of artillery to saturate an area rather than hit a specific target')]},\n", + " ('outpouring',\n", + " 'the rapid and continuous delivery of linguistic communication (spoken or written)')]},\n", " {'answer': 'bombast',\n", " 'hint': 'synonyms for bombast',\n", - " 'clues': [('rant', 'pompous or pretentious talk or writing'),\n", - " ('claptrap', 'pompous or pretentious talk or writing'),\n", + " 'clues': [('blah', 'pompous or pretentious talk or writing'),\n", " ('fustian', 'pompous or pretentious talk or writing'),\n", - " ('blah', 'pompous or pretentious talk or writing')]},\n", + " ('rant', 'pompous or pretentious talk or writing'),\n", + " ('claptrap', 'pompous or pretentious talk or writing')]},\n", " {'answer': 'bomber',\n", " 'hint': 'synonyms for bomber',\n", - " 'clues': [('submarine sandwich',\n", + " 'clues': [('torpedo',\n", + " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", + " ('submarine sandwich',\n", + " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", + " ('hoagie',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('poor boy',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('submarine',\n", + " ('hero sandwich',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('hero',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('torpedo',\n", - " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('hoagy',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", + " ('submarine',\n", + " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('grinder',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('wedge',\n", @@ -34983,149 +35013,145 @@ " ('zep',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", " ('sub',\n", - " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('hoagie',\n", - " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States'),\n", - " ('hero sandwich',\n", " 'a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States')]},\n", " {'answer': 'bon_ton',\n", " 'hint': 'synonyms for bon ton',\n", " 'clues': [('smart set', 'the fashionable elite'),\n", - " ('high society', 'the fashionable elite'),\n", + " ('beau monde', 'the fashionable elite'),\n", " ('society', 'the fashionable elite'),\n", - " ('beau monde', 'the fashionable elite')]},\n", + " ('high society', 'the fashionable elite')]},\n", " {'answer': 'bonanza',\n", " 'hint': 'synonyms for bonanza',\n", " 'clues': [('manna from heaven',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", " ('bunce',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('godsend',\n", - " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('windfall',\n", + " ('gravy',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", " ('gold rush',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", + " ('windfall',\n", + " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", " ('boom',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('gravy',\n", + " ('godsend',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)')]},\n", " {'answer': 'bond',\n", " 'hint': 'synonyms for bond',\n", - " 'clues': [('shackle',\n", + " 'clues': [('trammel',\n", " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n", - " ('adherence',\n", + " ('adhesiveness',\n", " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", - " ('alliance',\n", - " 'a connection based on kinship or marriage or common interest'),\n", - " ('hamper',\n", - " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n", + " ('bond paper',\n", + " 'a superior quality of strong durable white writing paper; originally made for printing documents'),\n", " ('bond certificate',\n", " 'a certificate of debt (usually interest-bearing or discounted) that is issued by a government or corporation in order to raise money; the issuer is required to pay a fixed sum annually until maturity and then a fixed sum to repay the principal'),\n", - " ('trammel',\n", - " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n", - " ('bail',\n", - " '(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial'),\n", - " ('attachment', 'a connection that fastens things together'),\n", - " ('adhesiveness',\n", - " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", " ('bail bond',\n", " '(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial'),\n", + " ('attachment', 'a connection that fastens things together'),\n", " ('chemical bond', 'an electrical force linking atoms'),\n", - " ('bond paper',\n", - " 'a superior quality of strong durable white writing paper; originally made for printing documents'),\n", + " ('shackle',\n", + " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)'),\n", " ('adhesion',\n", - " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition')]},\n", + " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", + " ('adherence',\n", + " 'the property of sticking together (as of glue and wood) or the joining of surfaces of different composition'),\n", + " ('alliance',\n", + " 'a connection based on kinship or marriage or common interest'),\n", + " ('bail',\n", + " '(criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial'),\n", + " ('hamper',\n", + " 'a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner)')]},\n", " {'answer': 'boner',\n", " 'hint': 'synonyms for boner',\n", - " 'clues': [('botch', 'an embarrassing mistake'),\n", - " ('blooper', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boo-boo', 'an embarrassing mistake'),\n", + " 'clues': [('blooper', 'an embarrassing mistake'),\n", + " ('botch', 'an embarrassing mistake'),\n", " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", " ('blunder', 'an embarrassing mistake'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boo-boo', 'an embarrassing mistake')]},\n", " {'answer': 'bones',\n", " 'hint': 'synonyms for bones',\n", - " 'clues': [('osseous tissue',\n", - " 'the porous calcified substance from which bones are made'),\n", + " 'clues': [('clappers',\n", + " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance'),\n", + " ('castanets',\n", + " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance'),\n", " ('ivory', 'a shade of white the color of bleached bones'),\n", - " ('pearl', 'a shade of white the color of bleached bones'),\n", " ('off-white', 'a shade of white the color of bleached bones'),\n", + " ('pearl', 'a shade of white the color of bleached bones'),\n", + " ('osseous tissue',\n", + " 'the porous calcified substance from which bones are made'),\n", " ('finger cymbals',\n", " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance'),\n", - " ('bone', 'a shade of white the color of bleached bones'),\n", - " ('castanets',\n", - " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance'),\n", - " ('clappers',\n", - " 'a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance')]},\n", + " ('bone', 'a shade of white the color of bleached bones')]},\n", " {'answer': 'bonhomie',\n", " 'hint': 'synonyms for bonhomie',\n", - " 'clues': [('amiability',\n", + " 'clues': [('geniality',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affableness',\n", + " ('amiability',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('affability',\n", + " ('amiableness',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('geniality',\n", + " ('affableness',\n", " 'a disposition to be friendly and approachable (easy to talk to)'),\n", - " ('amiableness',\n", + " ('affability',\n", " 'a disposition to be friendly and approachable (easy to talk to)')]},\n", " {'answer': 'boniness',\n", " 'hint': 'synonyms for boniness',\n", - " 'clues': [('maceration',\n", - " 'extreme leanness (usually caused by starvation or disease)'),\n", - " ('bonyness',\n", + " 'clues': [('gauntness',\n", " 'extreme leanness (usually caused by starvation or disease)'),\n", " ('emaciation',\n", " 'extreme leanness (usually caused by starvation or disease)'),\n", - " ('gauntness',\n", + " ('bonyness',\n", + " 'extreme leanness (usually caused by starvation or disease)'),\n", + " ('maceration',\n", " 'extreme leanness (usually caused by starvation or disease)')]},\n", " {'answer': 'bonyness',\n", " 'hint': 'synonyms for bonyness',\n", - " 'clues': [('maceration',\n", + " 'clues': [('gauntness',\n", " 'extreme leanness (usually caused by starvation or disease)'),\n", - " ('emaciation',\n", + " ('boniness',\n", " 'extreme leanness (usually caused by starvation or disease)'),\n", - " ('gauntness',\n", + " ('emaciation',\n", " 'extreme leanness (usually caused by starvation or disease)'),\n", - " ('boniness',\n", + " ('maceration',\n", " 'extreme leanness (usually caused by starvation or disease)')]},\n", " {'answer': 'boo',\n", " 'hint': 'synonyms for boo',\n", - " 'clues': [('bird',\n", + " 'clues': [('razzing',\n", " 'a cry or noise made to express displeasure or contempt'),\n", - " ('razzing', 'a cry or noise made to express displeasure or contempt'),\n", - " ('hoot', 'a cry or noise made to express displeasure or contempt'),\n", " ('hiss', 'a cry or noise made to express displeasure or contempt'),\n", " ('raspberry', 'a cry or noise made to express displeasure or contempt'),\n", - " ('snort', 'a cry or noise made to express displeasure or contempt')]},\n", + " ('bird', 'a cry or noise made to express displeasure or contempt'),\n", + " ('snort', 'a cry or noise made to express displeasure or contempt'),\n", + " ('hoot', 'a cry or noise made to express displeasure or contempt')]},\n", " {'answer': 'boo-boo',\n", " 'hint': 'synonyms for boo-boo',\n", - " 'clues': [('botch', 'an embarrassing mistake'),\n", - " ('blooper', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boner', 'an embarrassing mistake'),\n", + " 'clues': [('blooper', 'an embarrassing mistake'),\n", + " ('botch', 'an embarrassing mistake'),\n", " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", - " ('blunder', 'an embarrassing mistake'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boner', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", + " ('blunder', 'an embarrassing mistake')]},\n", " {'answer': 'boob_tube',\n", " 'hint': 'synonyms for boob tube',\n", - " 'clues': [('goggle box',\n", + " 'clues': [('television',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", - " ('idiot box',\n", + " ('tv set',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", - " ('television set',\n", + " ('telly',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", - " ('tv set',\n", + " ('television set',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", - " ('television',\n", + " ('goggle box',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", - " ('telly',\n", + " ('idiot box',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", " ('tv',\n", " 'an electronic device that receives television signals and displays them on a screen'),\n", @@ -35134,309 +35160,309 @@ " {'answer': 'booby_hatch',\n", " 'hint': 'synonyms for booby hatch',\n", " 'clues': [('loony bin', 'pejorative terms for an insane asylum'),\n", - " (\"cuckoo's nest\", 'pejorative terms for an insane asylum'),\n", - " ('snake pit', 'pejorative terms for an insane asylum'),\n", - " ('nut house', 'pejorative terms for an insane asylum'),\n", " ('sanatorium', 'pejorative terms for an insane asylum'),\n", " ('funny farm', 'pejorative terms for an insane asylum'),\n", " ('madhouse', 'pejorative terms for an insane asylum'),\n", + " ('funny house', 'pejorative terms for an insane asylum'),\n", + " ('nuthouse', 'pejorative terms for an insane asylum'),\n", + " (\"cuckoo's nest\", 'pejorative terms for an insane asylum'),\n", " ('crazy house', 'pejorative terms for an insane asylum'),\n", - " ('funny house', 'pejorative terms for an insane asylum')]},\n", + " ('snake pit', 'pejorative terms for an insane asylum')]},\n", " {'answer': 'boodle',\n", " 'hint': 'synonyms for boodle',\n", - " 'clues': [('sugar', 'informal terms for money'),\n", - " ('bread', 'informal terms for money'),\n", - " ('simoleons', 'informal terms for money'),\n", + " 'clues': [('kale', 'informal terms for money'),\n", + " ('scratch', 'informal terms for money'),\n", " ('dinero', 'informal terms for money'),\n", - " ('clams', 'informal terms for money'),\n", - " ('pelf', 'informal terms for money'),\n", - " ('dough', 'informal terms for money'),\n", + " ('shekels', 'informal terms for money'),\n", + " ('cabbage', 'informal terms for money'),\n", " ('lettuce', 'informal terms for money'),\n", - " ('scratch', 'informal terms for money'),\n", - " ('stops',\n", - " 'a gambling card game in which chips are placed on the ace and king and queen and jack of separate suits (taken from a separate deck); a player plays the lowest card of a suit in his hand and successively higher cards are played until the sequence stops; the player who plays a card matching one in the layout wins all the chips on that card'),\n", " ('gelt', 'informal terms for money'),\n", " ('lucre', 'informal terms for money'),\n", + " ('dough', 'informal terms for money'),\n", " ('wampum', 'informal terms for money'),\n", + " ('pelf', 'informal terms for money'),\n", + " ('stops',\n", + " 'a gambling card game in which chips are placed on the ace and king and queen and jack of separate suits (taken from a separate deck); a player plays the lowest card of a suit in his hand and successively higher cards are played until the sequence stops; the player who plays a card matching one in the layout wins all the chips on that card'),\n", + " ('clams', 'informal terms for money'),\n", + " ('lolly', 'informal terms for money'),\n", " ('loot', 'informal terms for money'),\n", - " ('cabbage', 'informal terms for money'),\n", - " ('kale', 'informal terms for money'),\n", - " ('moolah', 'informal terms for money'),\n", - " ('shekels', 'informal terms for money'),\n", - " ('lolly', 'informal terms for money')]},\n", + " ('bread', 'informal terms for money'),\n", + " ('sugar', 'informal terms for money'),\n", + " ('simoleons', 'informal terms for money'),\n", + " ('moolah', 'informal terms for money')]},\n", " {'answer': 'book',\n", " 'hint': 'synonyms for book',\n", - " 'clues': [('leger', 'a record in which commercial accounts are recorded'),\n", - " ('account book', 'a record in which commercial accounts are recorded'),\n", - " ('record book',\n", - " 'a compilation of the known facts regarding something or someone'),\n", + " 'clues': [(\"al-Qur'an\",\n", + " 'the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina'),\n", + " ('volume',\n", + " 'physical objects consisting of a number of pages bound together'),\n", + " ('script',\n", + " 'a written version of a play or other dramatic composition; used in preparing for a performance'),\n", + " ('playscript',\n", + " 'a written version of a play or other dramatic composition; used in preparing for a performance'),\n", + " ('ledger', 'a record in which commercial accounts are recorded'),\n", " ('record',\n", " 'a compilation of the known facts regarding something or someone'),\n", - " (\"al-Qur'an\",\n", - " 'the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina'),\n", " ('book of account', 'a record in which commercial accounts are recorded'),\n", + " ('record book',\n", + " 'a compilation of the known facts regarding something or someone'),\n", " ('rule book',\n", " 'a collection of rules or prescribed standards on the basis of which decisions are made'),\n", - " ('playscript',\n", - " 'a written version of a play or other dramatic composition; used in preparing for a performance'),\n", - " ('script',\n", - " 'a written version of a play or other dramatic composition; used in preparing for a performance'),\n", - " ('volume',\n", - " 'physical objects consisting of a number of pages bound together')]},\n", + " ('account book', 'a record in which commercial accounts are recorded')]},\n", " {'answer': 'booklet',\n", " 'hint': 'synonyms for booklet',\n", - " 'clues': [('folder', 'a small book usually having a paper cover'),\n", - " ('pamphlet', 'a small book usually having a paper cover'),\n", + " 'clues': [('brochure', 'a small book usually having a paper cover'),\n", + " ('folder', 'a small book usually having a paper cover'),\n", " ('leaflet', 'a small book usually having a paper cover'),\n", - " ('brochure', 'a small book usually having a paper cover')]},\n", + " ('pamphlet', 'a small book usually having a paper cover')]},\n", " {'answer': 'boom',\n", " 'hint': 'synonyms for boom',\n", - " 'clues': [('thunder', 'a deep prolonged loud noise'),\n", - " ('godsend',\n", - " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('windfall',\n", + " 'clues': [('roar', 'a deep prolonged loud noise'),\n", + " ('bunce',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('roar', 'a deep prolonged loud noise'),\n", " ('microphone boom',\n", " 'a pole carrying an overhead microphone projected over a film or tv set'),\n", - " ('gravy',\n", - " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('manna from heaven',\n", + " ('windfall',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", - " ('bunce',\n", + " ('godsend',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", " ('bonanza',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", + " ('gravy',\n", + " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", + " ('thunder', 'a deep prolonged loud noise'),\n", " ('gold rush',\n", + " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)'),\n", + " ('manna from heaven',\n", " 'a sudden happening that brings good fortune (as a sudden opportunity to make money)')]},\n", " {'answer': 'boost',\n", " 'hint': 'synonyms for boost',\n", - " 'clues': [('cost increase', 'an increase in cost'),\n", - " ('encouragement', 'the act of giving hope or support to someone'),\n", + " 'clues': [('hike', 'an increase in cost'),\n", + " ('cost increase', 'an increase in cost'),\n", " ('rise', 'an increase in cost'),\n", - " ('hike', 'an increase in cost')]},\n", + " ('encouragement', 'the act of giving hope or support to someone')]},\n", " {'answer': 'booster',\n", " 'hint': 'synonyms for booster',\n", - " 'clues': [('booster dose',\n", - " 'an additional dose that makes sure the first dose was effective'),\n", - " ('booster station',\n", + " 'clues': [('booster station',\n", + " 'an amplifier for restoring the strength of a transmitted signal'),\n", + " ('relay link',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", - " ('booster shot',\n", - " 'an additional dose that makes sure the first dose was effective'),\n", - " ('booster unit', 'the first stage of a multistage rocket'),\n", - " ('recall dose',\n", - " 'an additional dose that makes sure the first dose was effective'),\n", " ('booster rocket', 'the first stage of a multistage rocket'),\n", " ('relay transmitter',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", - " ('booster amplifier',\n", - " 'an amplifier for restoring the strength of a transmitted signal'),\n", + " ('booster unit', 'the first stage of a multistage rocket'),\n", " ('relay station',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", - " ('relay link',\n", + " ('booster amplifier',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", + " ('takeoff booster', 'the first stage of a multistage rocket'),\n", + " ('booster dose',\n", + " 'an additional dose that makes sure the first dose was effective'),\n", + " ('recall dose',\n", + " 'an additional dose that makes sure the first dose was effective'),\n", " ('takeoff rocket', 'the first stage of a multistage rocket'),\n", - " ('takeoff booster', 'the first stage of a multistage rocket')]},\n", + " ('booster shot',\n", + " 'an additional dose that makes sure the first dose was effective')]},\n", " {'answer': 'booster_amplifier',\n", " 'hint': 'synonyms for booster amplifier',\n", " 'clues': [('booster station',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", + " ('relay link',\n", + " 'an amplifier for restoring the strength of a transmitted signal'),\n", " ('relay transmitter',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", " ('booster',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", - " ('relay link',\n", - " 'an amplifier for restoring the strength of a transmitted signal'),\n", " ('relay station',\n", " 'an amplifier for restoring the strength of a transmitted signal')]},\n", " {'answer': 'booster_rocket',\n", " 'hint': 'synonyms for booster rocket',\n", - " 'clues': [('booster', 'the first stage of a multistage rocket'),\n", - " ('takeoff booster', 'the first stage of a multistage rocket'),\n", + " 'clues': [('takeoff booster', 'the first stage of a multistage rocket'),\n", + " ('booster', 'the first stage of a multistage rocket'),\n", " ('takeoff rocket', 'the first stage of a multistage rocket'),\n", " ('booster unit', 'the first stage of a multistage rocket')]},\n", " {'answer': 'booster_station',\n", " 'hint': 'synonyms for booster station',\n", - " 'clues': [('relay transmitter',\n", + " 'clues': [('relay link',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", - " ('booster amplifier',\n", + " ('relay transmitter',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", " ('booster',\n", " 'an amplifier for restoring the strength of a transmitted signal'),\n", - " ('relay link',\n", - " 'an amplifier for restoring the strength of a transmitted signal'),\n", " ('relay station',\n", + " 'an amplifier for restoring the strength of a transmitted signal'),\n", + " ('booster amplifier',\n", " 'an amplifier for restoring the strength of a transmitted signal')]},\n", " {'answer': 'booster_unit',\n", " 'hint': 'synonyms for booster unit',\n", - " 'clues': [('booster', 'the first stage of a multistage rocket'),\n", - " ('takeoff booster', 'the first stage of a multistage rocket'),\n", + " 'clues': [('takeoff booster', 'the first stage of a multistage rocket'),\n", + " ('booster', 'the first stage of a multistage rocket'),\n", " ('takeoff rocket', 'the first stage of a multistage rocket'),\n", " ('booster rocket', 'the first stage of a multistage rocket')]},\n", " {'answer': 'boot',\n", " 'hint': 'synonyms for boot',\n", - " 'clues': [('iron heel',\n", + " 'clues': [('rush', 'the swift release of a store of affective force'),\n", + " ('kick', 'the swift release of a store of affective force'),\n", + " ('flush', 'the swift release of a store of affective force'),\n", + " ('iron heel',\n", " 'an instrument of torture that is used to heat or crush the foot and leg'),\n", " ('the boot',\n", " 'an instrument of torture that is used to heat or crush the foot and leg'),\n", - " ('kick', 'the act of delivering a blow with the foot'),\n", + " ('charge', 'the swift release of a store of affective force'),\n", " ('iron boot',\n", " 'an instrument of torture that is used to heat or crush the foot and leg'),\n", - " ('rush', 'the swift release of a store of affective force'),\n", " ('bang', 'the swift release of a store of affective force'),\n", - " ('flush', 'the swift release of a store of affective force'),\n", - " ('thrill', 'the swift release of a store of affective force'),\n", - " ('charge', 'the swift release of a store of affective force')]},\n", + " ('thrill', 'the swift release of a store of affective force')]},\n", " {'answer': 'booty',\n", " 'hint': 'synonyms for booty',\n", - " 'clues': [('dirty money', 'goods or money obtained illegally'),\n", - " ('plunder', 'goods or money obtained illegally'),\n", + " 'clues': [('pillage', 'goods or money obtained illegally'),\n", " ('swag', 'goods or money obtained illegally'),\n", - " ('loot', 'goods or money obtained illegally'),\n", - " ('pillage', 'goods or money obtained illegally'),\n", - " ('prize', 'goods or money obtained illegally')]},\n", + " ('plunder', 'goods or money obtained illegally'),\n", + " ('prize', 'goods or money obtained illegally'),\n", + " ('dirty money', 'goods or money obtained illegally'),\n", + " ('loot', 'goods or money obtained illegally')]},\n", " {'answer': 'booze',\n", " 'hint': 'synonyms for booze',\n", - " 'clues': [('liquor',\n", + " 'clues': [('strong drink',\n", " 'an alcoholic beverage that is distilled rather than fermented'),\n", - " ('hard liquor',\n", + " ('spirits',\n", " 'an alcoholic beverage that is distilled rather than fermented'),\n", - " ('strong drink',\n", + " ('liquor',\n", " 'an alcoholic beverage that is distilled rather than fermented'),\n", - " ('hard drink',\n", + " ('hard liquor',\n", " 'an alcoholic beverage that is distilled rather than fermented'),\n", - " ('spirits',\n", + " ('hard drink',\n", " 'an alcoholic beverage that is distilled rather than fermented')]},\n", " {'answer': 'booze-up',\n", " 'hint': 'synonyms for booze-up',\n", - " 'clues': [('bender', 'revelry in drinking; a merry drinking party'),\n", - " ('carouse', 'revelry in drinking; a merry drinking party'),\n", + " 'clues': [('carouse', 'revelry in drinking; a merry drinking party'),\n", + " ('bender', 'revelry in drinking; a merry drinking party'),\n", " ('carousal', 'revelry in drinking; a merry drinking party'),\n", " ('toot', 'revelry in drinking; a merry drinking party')]},\n", " {'answer': 'bordello',\n", " 'hint': 'synonyms for bordello',\n", - " 'clues': [('house of ill repute',\n", + " 'clues': [('house of prostitution',\n", " 'a building where prostitutes are available'),\n", + " ('sporting house', 'a building where prostitutes are available'),\n", + " ('whorehouse', 'a building where prostitutes are available'),\n", " ('bawdyhouse', 'a building where prostitutes are available'),\n", " ('bagnio', 'a building where prostitutes are available'),\n", + " ('house of ill repute', 'a building where prostitutes are available'),\n", " ('cathouse', 'a building where prostitutes are available'),\n", - " ('house of prostitution', 'a building where prostitutes are available'),\n", - " ('brothel', 'a building where prostitutes are available'),\n", - " ('whorehouse', 'a building where prostitutes are available'),\n", - " ('sporting house', 'a building where prostitutes are available')]},\n", + " ('brothel', 'a building where prostitutes are available')]},\n", " {'answer': 'border',\n", " 'hint': 'synonyms for border',\n", - " 'clues': [('borderline', 'a line that indicates a boundary'),\n", - " ('edge', 'the boundary of a surface'),\n", - " ('boundary line', 'a line that indicates a boundary'),\n", - " ('delimitation', 'a line that indicates a boundary'),\n", - " ('molding', 'a decorative recessed or relieved surface on an edge'),\n", - " ('margin',\n", - " 'the boundary line or the area immediately inside the boundary'),\n", + " 'clues': [('edge', 'the boundary of a surface'),\n", + " ('mete', 'a line that indicates a boundary'),\n", " ('perimeter',\n", " 'the boundary line or the area immediately inside the boundary'),\n", - " ('mete', 'a line that indicates a boundary')]},\n", + " ('margin',\n", + " 'the boundary line or the area immediately inside the boundary'),\n", + " ('delimitation', 'a line that indicates a boundary'),\n", + " ('molding', 'a decorative recessed or relieved surface on an edge'),\n", + " ('boundary line', 'a line that indicates a boundary'),\n", + " ('borderline', 'a line that indicates a boundary')]},\n", " {'answer': 'bore',\n", " 'hint': 'synonyms for bore',\n", - " 'clues': [('aegir',\n", - " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", - " ('tidal bore',\n", + " 'clues': [('calibre', 'diameter of a tube or gun barrel'),\n", + " ('aegir',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", - " ('bore-hole',\n", - " 'a hole or passage made by a drill; usually made for exploratory purposes'),\n", - " ('drill hole',\n", - " 'a hole or passage made by a drill; usually made for exploratory purposes'),\n", " ('eager',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", + " ('tidal bore',\n", + " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", " ('eagre',\n", " 'a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary)'),\n", - " ('calibre', 'diameter of a tube or gun barrel'),\n", - " ('gauge', 'diameter of a tube or gun barrel')]},\n", + " ('gauge', 'diameter of a tube or gun barrel'),\n", + " ('drill hole',\n", + " 'a hole or passage made by a drill; usually made for exploratory purposes'),\n", + " ('bore-hole',\n", + " 'a hole or passage made by a drill; usually made for exploratory purposes')]},\n", " {'answer': 'bosh',\n", " 'hint': 'synonyms for bosh',\n", - " 'clues': [('twaddle', 'pretentious or silly talk or writing'),\n", - " ('tarradiddle', 'pretentious or silly talk or writing'),\n", - " ('tommyrot', 'pretentious or silly talk or writing'),\n", - " ('boloney', 'pretentious or silly talk or writing'),\n", + " 'clues': [('tarradiddle', 'pretentious or silly talk or writing'),\n", + " ('twaddle', 'pretentious or silly talk or writing'),\n", + " ('baloney', 'pretentious or silly talk or writing'),\n", + " ('tosh', 'pretentious or silly talk or writing'),\n", " ('bilgewater', 'pretentious or silly talk or writing'),\n", + " ('tommyrot', 'pretentious or silly talk or writing'),\n", " ('humbug', 'pretentious or silly talk or writing'),\n", - " ('drool', 'pretentious or silly talk or writing'),\n", - " ('tosh', 'pretentious or silly talk or writing')]},\n", + " ('drool', 'pretentious or silly talk or writing')]},\n", " {'answer': 'botch',\n", " 'hint': 'synonyms for botch',\n", " 'clues': [('blooper', 'an embarrassing mistake'),\n", - " ('flub', 'an embarrassing mistake'),\n", - " ('foul-up', 'an embarrassing mistake'),\n", - " ('boo-boo', 'an embarrassing mistake'),\n", - " ('boner', 'an embarrassing mistake'),\n", - " ('bungle', 'an embarrassing mistake'),\n", " ('fuckup', 'an embarrassing mistake'),\n", + " ('bungle', 'an embarrassing mistake'),\n", + " ('boner', 'an embarrassing mistake'),\n", + " ('foul-up', 'an embarrassing mistake'),\n", + " ('pratfall', 'an embarrassing mistake'),\n", + " ('flub', 'an embarrassing mistake'),\n", " ('blunder', 'an embarrassing mistake'),\n", - " ('pratfall', 'an embarrassing mistake')]},\n", + " ('boo-boo', 'an embarrassing mistake')]},\n", " {'answer': 'bother',\n", " 'hint': 'synonyms for bother',\n", " 'clues': [('fuss', 'an angry disturbance'),\n", " ('botheration',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('trouble', 'an angry disturbance'),\n", - " ('infliction',\n", - " 'something or someone that causes trouble; a source of unhappiness'),\n", " ('pain',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('annoyance',\n", + " ('pain in the neck',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", + " ('hassle', 'an angry disturbance'),\n", " ('pain in the ass',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('pain in the neck',\n", + " ('annoyance',\n", + " 'something or someone that causes trouble; a source of unhappiness'),\n", + " ('infliction',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('hassle', 'an angry disturbance')]},\n", + " ('trouble', 'an angry disturbance')]},\n", " {'answer': 'botheration',\n", " 'hint': 'synonyms for botheration',\n", - " 'clues': [('infliction',\n", - " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('pain',\n", + " 'clues': [('pain in the ass',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", " ('annoyance',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", " ('bother',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", - " ('pain in the ass',\n", + " ('infliction',\n", " 'something or someone that causes trouble; a source of unhappiness'),\n", " ('pain in the neck',\n", + " 'something or someone that causes trouble; a source of unhappiness'),\n", + " ('pain',\n", " 'something or someone that causes trouble; a source of unhappiness')]},\n", " {'answer': 'bounce',\n", " 'hint': 'synonyms for bounce',\n", - " 'clues': [('leap', 'a light, self-propelled movement upwards or forwards'),\n", - " ('bounciness', 'the quality of a substance that is able to rebound'),\n", - " ('spring', 'a light, self-propelled movement upwards or forwards'),\n", - " ('bound', 'a light, self-propelled movement upwards or forwards'),\n", + " 'clues': [('bouncing', 'rebounding from an impact (or series of impacts)'),\n", + " ('leaping', 'a light, self-propelled movement upwards or forwards'),\n", " ('saltation', 'a light, self-propelled movement upwards or forwards'),\n", - " ('bouncing', 'rebounding from an impact (or series of impacts)')]},\n", + " ('bound', 'a light, self-propelled movement upwards or forwards'),\n", + " ('bounciness', 'the quality of a substance that is able to rebound'),\n", + " ('spring', 'a light, self-propelled movement upwards or forwards')]},\n", " {'answer': 'boundary_line',\n", " 'hint': 'synonyms for boundary line',\n", - " 'clues': [('borderline', 'a line that indicates a boundary'),\n", + " 'clues': [('mete', 'a line that indicates a boundary'),\n", " ('border', 'a line that indicates a boundary'),\n", - " ('delimitation', 'a line that indicates a boundary'),\n", - " ('mete', 'a line that indicates a boundary')]},\n", + " ('borderline', 'a line that indicates a boundary'),\n", + " ('delimitation', 'a line that indicates a boundary')]},\n", " ...],\n", " 'portion': 0.2},\n", " {'name': 'adjectives',\n", " 'groups': [{'answer': '1000',\n", " 'hint': 'synonyms for 1000',\n", - " 'clues': [('k', 'denoting a quantity consisting of 1,000 items or units'),\n", - " ('thousand', 'denoting a quantity consisting of 1,000 items or units'),\n", + " 'clues': [('one thousand',\n", + " 'denoting a quantity consisting of 1,000 items or units'),\n", " ('m', 'denoting a quantity consisting of 1,000 items or units'),\n", - " ('one thousand',\n", - " 'denoting a quantity consisting of 1,000 items or units')]},\n", + " ('k', 'denoting a quantity consisting of 1,000 items or units'),\n", + " ('thousand', 'denoting a quantity consisting of 1,000 items or units')]},\n", " {'answer': 'a-one',\n", " 'hint': 'synonyms for a-one',\n", - " 'clues': [('topnotch', 'of the highest quality'),\n", - " ('super', 'of the highest quality'),\n", - " ('crack', 'of the highest quality'),\n", - " ('tiptop', 'of the highest quality'),\n", - " ('ace', 'of the highest quality'),\n", + " 'clues': [('super', 'of the highest quality'),\n", " ('first-rate', 'of the highest quality'),\n", - " ('tops', 'of the highest quality')]},\n", + " ('top-notch', 'of the highest quality'),\n", + " ('tops', 'of the highest quality'),\n", + " ('ace', 'of the highest quality'),\n", + " ('crack', 'of the highest quality'),\n", + " ('tiptop', 'of the highest quality')]},\n", " {'answer': 'a_la_mode',\n", " 'hint': 'synonyms for a la mode',\n", " 'clues': [('in style', 'in the current fashion or style'),\n", @@ -35446,1483 +35472,1488 @@ " {'answer': 'abhorrent',\n", " 'hint': 'synonyms for abhorrent',\n", " 'clues': [('repulsive', 'offensive to the mind'),\n", - " ('repugnant', 'offensive to the mind'),\n", " ('detestable', 'offensive to the mind'),\n", - " ('obscene', 'offensive to the mind')]},\n", + " ('obscene', 'offensive to the mind'),\n", + " ('repugnant', 'offensive to the mind')]},\n", " {'answer': 'abject',\n", " 'hint': 'synonyms for abject',\n", - " 'clues': [('low', 'of the most contemptible kind'),\n", - " ('miserable', 'of the most contemptible kind'),\n", - " ('low-down', 'of the most contemptible kind'),\n", + " 'clues': [('low-down', 'of the most contemptible kind'),\n", + " ('low', 'of the most contemptible kind'),\n", " ('unhopeful', 'showing utter resignation or hopelessness'),\n", - " ('scurvy', 'of the most contemptible kind'),\n", - " ('scummy', 'of the most contemptible kind')]},\n", + " ('scummy', 'of the most contemptible kind'),\n", + " ('miserable', 'of the most contemptible kind'),\n", + " ('scurvy', 'of the most contemptible kind')]},\n", " {'answer': 'ablaze',\n", " 'hint': 'synonyms for ablaze',\n", - " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n", + " 'clues': [('aroused',\n", + " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n", " ('aflare', 'lighted up by or as by fire or flame'),\n", - " ('reddened', 'lighted with red light as if with flames'),\n", - " ('aflame', 'lighted up by or as by fire or flame'),\n", + " ('on fire', 'lighted up by or as by fire or flame'),\n", " ('afire', 'lighted up by or as by fire or flame'),\n", + " ('aflame', 'lighted up by or as by fire or flame'),\n", + " ('reddened', 'lighted with red light as if with flames'),\n", " ('inflamed', 'lighted with red light as if with flames'),\n", - " ('on fire', 'lighted up by or as by fire or flame'),\n", - " ('aroused',\n", - " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker')]},\n", + " ('alight', 'lighted up by or as by fire or flame')]},\n", " {'answer': 'abominable',\n", " 'hint': 'synonyms for abominable',\n", " 'clues': [('execrable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", - " ('atrocious', 'exceptionally bad or displeasing'),\n", - " ('painful', 'exceptionally bad or displeasing'),\n", - " ('dreadful', 'exceptionally bad or displeasing'),\n", " ('unspeakable', 'exceptionally bad or displeasing'),\n", " ('awful', 'exceptionally bad or displeasing'),\n", + " ('odious', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", " ('terrible', 'exceptionally bad or displeasing'),\n", + " ('painful', 'exceptionally bad or displeasing'),\n", + " ('atrocious', 'exceptionally bad or displeasing'),\n", " ('detestable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", - " ('odious', 'unequivocally detestable; ; ; ; - Edmund Burke')]},\n", + " ('dreadful', 'exceptionally bad or displeasing')]},\n", " {'answer': 'aboriginal',\n", " 'hint': 'synonyms for aboriginal',\n", - " 'clues': [('primal',\n", + " 'clues': [('primaeval',\n", " 'having existed from the beginning; in an earliest or original stage or state'),\n", - " ('native',\n", - " 'characteristic of or relating to people inhabiting a region from the beginning'),\n", " ('primordial',\n", " 'having existed from the beginning; in an earliest or original stage or state'),\n", - " ('primaeval',\n", + " ('native',\n", + " 'characteristic of or relating to people inhabiting a region from the beginning'),\n", + " ('primal',\n", " 'having existed from the beginning; in an earliest or original stage or state')]},\n", " {'answer': 'absent',\n", " 'hint': 'synonyms for absent',\n", - " 'clues': [('absentminded', 'lost in thought; showing preoccupation'),\n", - " ('wanting', 'nonexistent'),\n", + " 'clues': [('abstracted', 'lost in thought; showing preoccupation'),\n", + " ('lacking', 'nonexistent'),\n", " ('missing', 'nonexistent'),\n", - " ('abstracted', 'lost in thought; showing preoccupation'),\n", + " ('absentminded', 'lost in thought; showing preoccupation'),\n", " ('scatty', 'lost in thought; showing preoccupation'),\n", - " ('lacking', 'nonexistent')]},\n", + " ('wanting', 'nonexistent')]},\n", " {'answer': 'absolute',\n", " 'hint': 'synonyms for absolute',\n", - " 'clues': [('inviolable', 'not capable of being violated or infringed'),\n", - " ('downright',\n", + " 'clues': [('sheer',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", + " ('infrangible', 'not capable of being violated or infringed'),\n", " ('out-and-out',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", - " ('right-down',\n", + " ('inviolable', 'not capable of being violated or infringed'),\n", + " ('rank',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", - " ('sheer',\n", + " ('downright',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", - " ('infrangible', 'not capable of being violated or infringed'),\n", - " ('rank',\n", + " ('right-down',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers')]},\n", " {'answer': 'absolved',\n", " 'hint': 'synonyms for absolved',\n", - " 'clues': [('vindicated', 'freed from any question of guilt'),\n", + " 'clues': [('clear', 'freed from any question of guilt'),\n", " ('cleared', 'freed from any question of guilt'),\n", - " ('clear', 'freed from any question of guilt'),\n", - " ('exonerated', 'freed from any question of guilt'),\n", - " ('exculpated', 'freed from any question of guilt')]},\n", + " ('exculpated', 'freed from any question of guilt'),\n", + " ('vindicated', 'freed from any question of guilt'),\n", + " ('exonerated', 'freed from any question of guilt')]},\n", " {'answer': 'absorbed',\n", " 'hint': 'synonyms for absorbed',\n", - " 'clues': [('captive',\n", - " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", - " ('wrapped',\n", + " 'clues': [('engrossed',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", - " ('engrossed',\n", + " ('captive',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", " ('intent',\n", + " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", + " ('enwrapped',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n", " {'answer': 'absorbing',\n", " 'hint': 'synonyms for absorbing',\n", - " 'clues': [('gripping', 'capable of arousing and holding the attention'),\n", - " ('riveting', 'capable of arousing and holding the attention'),\n", - " ('fascinating', 'capable of arousing and holding the attention'),\n", - " ('engrossing', 'capable of arousing and holding the attention')]},\n", + " 'clues': [('fascinating', 'capable of arousing and holding the attention'),\n", + " ('gripping', 'capable of arousing and holding the attention'),\n", + " ('engrossing', 'capable of arousing and holding the attention'),\n", + " ('riveting', 'capable of arousing and holding the attention')]},\n", " {'answer': 'absurd',\n", " 'hint': 'synonyms for absurd',\n", - " 'clues': [('ludicrous', 'incongruous;inviting ridicule'),\n", + " 'clues': [('preposterous', 'incongruous;inviting ridicule'),\n", + " ('ludicrous', 'incongruous;inviting ridicule'),\n", " ('laughable', 'incongruous;inviting ridicule'),\n", " ('nonsensical', 'incongruous;inviting ridicule'),\n", " ('derisory', 'incongruous;inviting ridicule'),\n", " ('cockeyed', 'incongruous;inviting ridicule'),\n", - " ('preposterous', 'incongruous;inviting ridicule'),\n", - " ('ridiculous', 'incongruous;inviting ridicule'),\n", - " ('idiotic', 'incongruous;inviting ridicule')]},\n", + " ('idiotic', 'incongruous;inviting ridicule'),\n", + " ('ridiculous', 'incongruous;inviting ridicule')]},\n", " {'answer': 'accessory',\n", " 'hint': 'synonyms for accessory',\n", - " 'clues': [('auxiliary', 'furnishing added support'),\n", - " ('accessary', 'aiding and abetting in a crime'),\n", - " ('adjunct', 'furnishing added support'),\n", + " 'clues': [('adjunct', 'furnishing added support'),\n", + " ('appurtenant', 'furnishing added support'),\n", " ('ancillary', 'furnishing added support'),\n", " ('adjuvant', 'furnishing added support'),\n", - " ('appurtenant', 'furnishing added support')]},\n", + " ('auxiliary', 'furnishing added support'),\n", + " ('accessary', 'aiding and abetting in a crime')]},\n", " {'answer': 'accompanying',\n", " 'hint': 'synonyms for accompanying',\n", - " 'clues': [('resultant', 'following or accompanying as a consequence'),\n", - " ('sequent', 'following or accompanying as a consequence'),\n", - " ('consequent', 'following or accompanying as a consequence'),\n", + " 'clues': [('consequent', 'following or accompanying as a consequence'),\n", + " ('attendant', 'following or accompanying as a consequence'),\n", " ('concomitant', 'following or accompanying as a consequence'),\n", - " ('incidental', 'following or accompanying as a consequence'),\n", + " ('resultant', 'following or accompanying as a consequence'),\n", " ('ensuant', 'following or accompanying as a consequence'),\n", - " ('attendant', 'following or accompanying as a consequence')]},\n", + " ('incidental', 'following or accompanying as a consequence'),\n", + " ('sequent', 'following or accompanying as a consequence')]},\n", " {'answer': 'accomplishable',\n", " 'hint': 'synonyms for accomplishable',\n", " 'clues': [('realizable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", - " ('achievable',\n", - " 'capable of existing or taking place or proving true; possible to do'),\n", " ('doable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", + " ('achievable',\n", + " 'capable of existing or taking place or proving true; possible to do'),\n", " ('manageable',\n", " 'capable of existing or taking place or proving true; possible to do')]},\n", " {'answer': 'accomplished',\n", " 'hint': 'synonyms for accomplished',\n", - " 'clues': [('realised', 'successfully completed or brought to an end'),\n", + " 'clues': [('completed', 'successfully completed or brought to an end'),\n", + " ('realised', 'successfully completed or brought to an end'),\n", " ('effected', 'settled securely and unconditionally'),\n", - " ('complete', 'highly skilled'),\n", " ('established', 'settled securely and unconditionally')]},\n", " {'answer': 'accordant',\n", " 'hint': 'synonyms for accordant',\n", " 'clues': [('agreeable', 'in keeping'),\n", + " ('concordant', 'in keeping'),\n", " ('conformable', 'in keeping'),\n", - " ('consonant', 'in keeping'),\n", - " ('concordant', 'in keeping')]},\n", + " ('consonant', 'in keeping')]},\n", " {'answer': 'accusative',\n", " 'hint': 'synonyms for accusative',\n", - " 'clues': [('accusing',\n", - " 'containing or expressing accusation; ; ; - O.Henry'),\n", - " ('accusive', 'containing or expressing accusation; ; ; - O.Henry'),\n", - " ('objective',\n", + " 'clues': [('objective',\n", " 'serving as or indicating the object of a verb or of certain prepositions and used for certain other purposes'),\n", - " ('accusatory', 'containing or expressing accusation; ; ; - O.Henry')]},\n", + " ('accusing', 'containing or expressing accusation; ; ; - O.Henry'),\n", + " ('accusatory', 'containing or expressing accusation; ; ; - O.Henry'),\n", + " ('accusive', 'containing or expressing accusation; ; ; - O.Henry')]},\n", " {'answer': 'ace',\n", " 'hint': 'synonyms for ace',\n", " 'clues': [('topnotch', 'of the highest quality'),\n", - " ('first-rate', 'of the highest quality'),\n", - " ('tops', 'of the highest quality'),\n", " ('super', 'of the highest quality'),\n", + " ('first-rate', 'of the highest quality'),\n", " ('crack', 'of the highest quality'),\n", + " ('tops', 'of the highest quality'),\n", " ('tiptop', 'of the highest quality')]},\n", " {'answer': 'acerb',\n", " 'hint': 'synonyms for acerb',\n", - " 'clues': [('acrid', 'harsh or corrosive in tone'),\n", - " ('acerbic', 'harsh or corrosive in tone'),\n", - " ('caustic', 'harsh or corrosive in tone'),\n", + " 'clues': [('acid', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", " ('virulent', 'harsh or corrosive in tone'),\n", - " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", - " ('bitter', 'harsh or corrosive in tone'),\n", + " ('blistering', 'harsh or corrosive in tone'),\n", " ('astringent', 'sour or bitter in taste'),\n", - " ('blistering', 'harsh or corrosive in tone')]},\n", + " ('bitter', 'harsh or corrosive in tone'),\n", + " ('caustic', 'harsh or corrosive in tone'),\n", + " ('acerbic', 'sour or bitter in taste'),\n", + " ('sulphurous', 'harsh or corrosive in tone')]},\n", " {'answer': 'acerbic',\n", " 'hint': 'synonyms for acerbic',\n", - " 'clues': [('acerb', 'harsh or corrosive in tone'),\n", - " ('acrid', 'harsh or corrosive in tone'),\n", + " 'clues': [('acid', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", - " ('caustic', 'harsh or corrosive in tone'),\n", + " ('acerb', 'sour or bitter in taste'),\n", " ('virulent', 'harsh or corrosive in tone'),\n", - " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", - " ('bitter', 'harsh or corrosive in tone'),\n", + " ('blistering', 'harsh or corrosive in tone'),\n", " ('astringent', 'sour or bitter in taste'),\n", - " ('blistering', 'harsh or corrosive in tone')]},\n", + " ('bitter', 'harsh or corrosive in tone'),\n", + " ('caustic', 'harsh or corrosive in tone'),\n", + " ('sulphurous', 'harsh or corrosive in tone')]},\n", " {'answer': 'achievable',\n", " 'hint': 'synonyms for achievable',\n", - " 'clues': [('realizable',\n", + " 'clues': [('accomplishable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", " ('doable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", - " ('accomplishable',\n", + " ('realizable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", " ('manageable',\n", " 'capable of existing or taking place or proving true; possible to do')]},\n", " {'answer': 'acid',\n", " 'hint': 'synonyms for acid',\n", - " 'clues': [('acerb', 'harsh or corrosive in tone'),\n", - " ('acrid', 'harsh or corrosive in tone'),\n", - " ('acidulous', 'being sour to the taste'),\n", - " ('acerbic', 'harsh or corrosive in tone'),\n", - " ('caustic', 'harsh or corrosive in tone'),\n", + " 'clues': [('acerbic', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", - " ('acidic', 'being sour to the taste'),\n", " ('virulent', 'harsh or corrosive in tone'),\n", - " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", + " ('acerb', 'harsh or corrosive in tone'),\n", + " ('blistering', 'harsh or corrosive in tone'),\n", " ('bitter', 'harsh or corrosive in tone'),\n", + " ('caustic', 'harsh or corrosive in tone'),\n", + " ('acidic', 'being sour to the taste'),\n", " ('acidulent', 'being sour to the taste'),\n", - " ('blistering', 'harsh or corrosive in tone')]},\n", + " ('acidulous', 'being sour to the taste'),\n", + " ('sulphurous', 'harsh or corrosive in tone'),\n", + " ('acrid', 'harsh or corrosive in tone')]},\n", " {'answer': 'acrid',\n", " 'hint': 'synonyms for acrid',\n", - " 'clues': [('acerb', 'harsh or corrosive in tone'),\n", - " ('acid', 'harsh or corrosive in tone'),\n", - " ('pungent', 'strong and sharp'),\n", - " ('acerbic', 'harsh or corrosive in tone'),\n", - " ('caustic', 'harsh or corrosive in tone'),\n", + " 'clues': [('acid', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", + " ('pungent', 'strong and sharp'),\n", " ('virulent', 'harsh or corrosive in tone'),\n", - " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", + " ('acerb', 'harsh or corrosive in tone'),\n", + " ('blistering', 'harsh or corrosive in tone'),\n", " ('bitter', 'harsh or corrosive in tone'),\n", - " ('blistering', 'harsh or corrosive in tone')]},\n", + " ('caustic', 'harsh or corrosive in tone'),\n", + " ('sulphurous', 'harsh or corrosive in tone'),\n", + " ('acerbic', 'harsh or corrosive in tone')]},\n", " {'answer': 'across-the-board',\n", " 'hint': 'synonyms for across-the-board',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", + " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", " {'answer': 'active',\n", " 'hint': 'synonyms for active',\n", - " 'clues': [('dynamic',\n", - " \"(used of verbs (e.g. `to run') and participial adjectives (e.g. `running' in `running water')) expressing action rather than a state of being\"),\n", - " ('combat-ready', 'engaged in or ready for military or naval operations'),\n", + " 'clues': [('combat-ready',\n", + " 'engaged in or ready for military or naval operations'),\n", + " ('fighting', 'engaged in or ready for military or naval operations'),\n", " ('participating', 'taking part in an activity'),\n", " ('alive', 'in operation'),\n", - " ('fighting', 'engaged in or ready for military or naval operations')]},\n", + " ('dynamic',\n", + " \"(used of verbs (e.g. `to run') and participial adjectives (e.g. `running' in `running water')) expressing action rather than a state of being\")]},\n", " {'answer': 'actual',\n", " 'hint': 'synonyms for actual',\n", - " 'clues': [('factual', 'existing in act or fact'),\n", + " 'clues': [('literal',\n", + " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton'),\n", " ('existent',\n", " 'presently existing in fact and not merely potential or possible'),\n", - " ('literal',\n", - " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton'),\n", " ('real',\n", " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton'),\n", " ('genuine',\n", - " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton')]},\n", + " 'being or reflecting the essential or genuine character of something; ; - G.K.Chesterton'),\n", + " ('factual', 'existing in act or fact')]},\n", " {'answer': 'acute',\n", " 'hint': 'synonyms for acute',\n", - " 'clues': [('penetrating',\n", + " 'clues': [('discriminating',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('piercing',\n", + " ('penetrative',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('intense', 'extremely sharp or intense'),\n", - " ('incisive',\n", + " ('knifelike',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", + " ('intense', 'extremely sharp or intense'),\n", " ('sharp',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('penetrative',\n", - " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('knifelike',\n", + " ('penetrating',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", " ('keen',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('acuate', 'ending in a sharp point'),\n", + " ('incisive',\n", + " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", + " ('piercing',\n", + " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", " ('needlelike', 'ending in a sharp point'),\n", - " ('discriminating',\n", - " 'having or demonstrating ability to recognize or draw fine distinctions')]},\n", + " ('acuate', 'ending in a sharp point')]},\n", " {'answer': 'ad-lib',\n", " 'hint': 'synonyms for ad-lib',\n", - " 'clues': [('unrehearsed', 'with little or no preparation or forethought'),\n", + " 'clues': [('unwritten',\n", + " 'said or done without having been planned or written in advance'),\n", " ('extemporaneous', 'with little or no preparation or forethought'),\n", " ('extemporary', 'with little or no preparation or forethought'),\n", - " ('unwritten',\n", - " 'said or done without having been planned or written in advance'),\n", - " ('offhanded', 'with little or no preparation or forethought'),\n", + " ('extempore', 'with little or no preparation or forethought'),\n", + " ('offhand', 'with little or no preparation or forethought'),\n", + " ('off-the-cuff', 'with little or no preparation or forethought'),\n", + " ('unrehearsed', 'with little or no preparation or forethought'),\n", " ('spontaneous',\n", " 'said or done without having been planned or written in advance'),\n", - " ('off-the-cuff', 'with little or no preparation or forethought'),\n", - " ('impromptu', 'with little or no preparation or forethought'),\n", - " ('extempore', 'with little or no preparation or forethought')]},\n", + " ('impromptu', 'with little or no preparation or forethought')]},\n", " {'answer': 'addled',\n", " 'hint': 'synonyms for addled',\n", - " 'clues': [('muzzy', 'confused and vague; used especially of thinking'),\n", - " ('woolly-headed', 'confused and vague; used especially of thinking'),\n", - " ('wooly', 'confused and vague; used especially of thinking'),\n", - " ('muddled', 'confused and vague; used especially of thinking'),\n", + " 'clues': [('wooly', 'confused and vague; used especially of thinking'),\n", + " ('muzzy', 'confused and vague; used especially of thinking'),\n", " ('wooly-minded', 'confused and vague; used especially of thinking'),\n", - " ('befuddled', 'confused and vague; used especially of thinking')]},\n", + " ('befuddled', 'confused and vague; used especially of thinking'),\n", + " ('woolly-headed', 'confused and vague; used especially of thinking'),\n", + " ('muddled', 'confused and vague; used especially of thinking')]},\n", " {'answer': 'adept',\n", " 'hint': 'synonyms for adept',\n", - " 'clues': [('proficient',\n", + " 'clues': [('practiced',\n", " 'having or showing knowledge and skill and aptitude'),\n", - " ('good', 'having or showing knowledge and skill and aptitude'),\n", " ('expert', 'having or showing knowledge and skill and aptitude'),\n", - " ('practiced', 'having or showing knowledge and skill and aptitude'),\n", - " ('skilful', 'having or showing knowledge and skill and aptitude')]},\n", + " ('skilful', 'having or showing knowledge and skill and aptitude'),\n", + " ('good', 'having or showing knowledge and skill and aptitude'),\n", + " ('proficient', 'having or showing knowledge and skill and aptitude')]},\n", " {'answer': 'adequate',\n", " 'hint': 'synonyms for adequate',\n", - " 'clues': [('tolerable', 'about average; acceptable'),\n", + " 'clues': [('equal',\n", + " 'having the requisite qualities or resources to meet a task'),\n", + " ('enough', 'sufficient for the purpose'),\n", " ('passable', 'about average; acceptable'),\n", - " ('fair to middling', 'about average; acceptable'),\n", " ('decent', 'sufficient for the purpose'),\n", - " ('equal', 'having the requisite qualities or resources to meet a task'),\n", - " ('enough', 'sufficient for the purpose')]},\n", + " ('tolerable', 'about average; acceptable'),\n", + " ('fair to middling', 'about average; acceptable')]},\n", " {'answer': 'adjacent',\n", " 'hint': 'synonyms for adjacent',\n", - " 'clues': [('side by side',\n", + " 'clues': [('next',\n", " 'nearest in space or position; immediately adjoining without intervening space'),\n", - " ('contiguous', 'having a common boundary or edge; abutting; touching'),\n", - " ('neighboring', 'having a common boundary or edge; abutting; touching'),\n", - " ('next',\n", + " ('side by side',\n", " 'nearest in space or position; immediately adjoining without intervening space'),\n", - " ('conterminous',\n", - " 'having a common boundary or edge; abutting; touching')]},\n", + " ('neighboring', 'having a common boundary or edge; abutting; touching'),\n", + " ('conterminous', 'having a common boundary or edge; abutting; touching'),\n", + " ('contiguous', 'having a common boundary or edge; abutting; touching')]},\n", " {'answer': 'adjunct',\n", " 'hint': 'synonyms for adjunct',\n", - " 'clues': [('auxiliary', 'furnishing added support'),\n", - " ('assistant', 'of or relating to a person who is subordinate to another'),\n", + " 'clues': [('appurtenant', 'furnishing added support'),\n", " ('ancillary', 'furnishing added support'),\n", - " ('accessory', 'furnishing added support'),\n", " ('adjuvant', 'furnishing added support'),\n", - " ('appurtenant', 'furnishing added support')]},\n", + " ('auxiliary', 'furnishing added support'),\n", + " ('assistant', 'of or relating to a person who is subordinate to another'),\n", + " ('accessory', 'furnishing added support')]},\n", " {'answer': 'adjuvant',\n", " 'hint': 'synonyms for adjuvant',\n", " 'clues': [('adjunct', 'furnishing added support'),\n", + " ('appurtenant', 'furnishing added support'),\n", " ('ancillary', 'furnishing added support'),\n", - " ('accessory', 'furnishing added support'),\n", " ('auxiliary', 'furnishing added support'),\n", - " ('appurtenant', 'furnishing added support')]},\n", + " ('accessory', 'furnishing added support')]},\n", " {'answer': 'admonitory',\n", " 'hint': 'synonyms for admonitory',\n", - " 'clues': [('exemplary', 'serving to warn'),\n", - " ('admonishing',\n", - " 'expressing reproof or reproach especially as a corrective'),\n", - " ('reproving',\n", + " 'clues': [('reproachful',\n", " 'expressing reproof or reproach especially as a corrective'),\n", - " ('warning', 'serving to warn'),\n", " ('cautionary', 'serving to warn'),\n", - " ('reproachful',\n", + " ('admonishing',\n", " 'expressing reproof or reproach especially as a corrective'),\n", - " ('monitory', 'serving to warn')]},\n", + " ('monitory', 'serving to warn'),\n", + " ('exemplary', 'serving to warn'),\n", + " ('warning', 'serving to warn'),\n", + " ('reproving',\n", + " 'expressing reproof or reproach especially as a corrective')]},\n", " {'answer': 'adolescent',\n", " 'hint': 'synonyms for adolescent',\n", - " 'clues': [('teenaged', 'being of the age 13 through 19'),\n", - " ('juvenile', 'displaying or suggesting a lack of maturity'),\n", - " ('jejune', 'displaying or suggesting a lack of maturity'),\n", + " 'clues': [('jejune', 'displaying or suggesting a lack of maturity'),\n", + " ('teenage', 'being of the age 13 through 19'),\n", " ('puerile', 'displaying or suggesting a lack of maturity'),\n", - " ('teen', 'being of the age 13 through 19')]},\n", + " ('teen', 'being of the age 13 through 19'),\n", + " ('juvenile', 'displaying or suggesting a lack of maturity')]},\n", " {'answer': 'adrift',\n", " 'hint': 'synonyms for adrift',\n", " 'clues': [('afloat', 'aimlessly drifting'),\n", - " ('directionless', 'aimlessly drifting'),\n", " ('aimless', 'aimlessly drifting'),\n", - " ('undirected', 'aimlessly drifting'),\n", + " ('directionless', 'aimlessly drifting'),\n", " ('rudderless', 'aimlessly drifting'),\n", - " ('planless', 'aimlessly drifting')]},\n", + " ('planless', 'aimlessly drifting'),\n", + " ('undirected', 'aimlessly drifting')]},\n", " {'answer': 'adult',\n", " 'hint': 'synonyms for adult',\n", " 'clues': [('grownup', '(of animals) fully developed'),\n", - " ('big', '(of animals) fully developed'),\n", " ('pornographic', 'designed to arouse lust'),\n", " ('full-grown', '(of animals) fully developed'),\n", - " ('grown', '(of animals) fully developed')]},\n", + " ('grown', '(of animals) fully developed'),\n", + " ('big', '(of animals) fully developed')]},\n", " {'answer': 'adulterous',\n", " 'hint': 'synonyms for adulterous',\n", - " 'clues': [('cheating', 'not faithful to a spouse or lover'),\n", - " ('extramarital', 'characterized by adultery'),\n", + " 'clues': [('extramarital', 'characterized by adultery'),\n", + " ('extracurricular', 'characterized by adultery'),\n", " ('two-timing', 'not faithful to a spouse or lover'),\n", - " ('extracurricular', 'characterized by adultery')]},\n", + " ('cheating', 'not faithful to a spouse or lover')]},\n", " {'answer': 'adust',\n", " 'hint': 'synonyms for adust',\n", - " 'clues': [('parched',\n", + " 'clues': [('sunbaked',\n", " 'dried out by heat or excessive exposure to sunlight'),\n", - " ('sunbaked', 'dried out by heat or excessive exposure to sunlight'),\n", + " ('parched', 'dried out by heat or excessive exposure to sunlight'),\n", " ('scorched', 'dried out by heat or excessive exposure to sunlight'),\n", " ('baked', 'dried out by heat or excessive exposure to sunlight')]},\n", " {'answer': 'advanced',\n", " 'hint': 'synonyms for advanced',\n", - " 'clues': [('sophisticated', 'ahead in development; complex or intricate'),\n", - " ('ripe', 'far along in time'),\n", + " 'clues': [('in advance', 'situated ahead or going before'),\n", + " ('sophisticated', 'ahead in development; complex or intricate'),\n", " ('advance', 'situated ahead or going before'),\n", - " ('forward-looking', 'ahead of the times'),\n", - " ('in advance', 'situated ahead or going before'),\n", " ('innovative', 'ahead of the times'),\n", - " ('modern', 'ahead of the times')]},\n", + " ('modern', 'ahead of the times'),\n", + " ('ripe', 'far along in time'),\n", + " ('forward-looking', 'ahead of the times')]},\n", " {'answer': 'adynamic',\n", " 'hint': 'synonyms for adynamic',\n", - " 'clues': [('debilitated', 'lacking strength or vigor'),\n", - " ('enervated', 'lacking strength or vigor'),\n", + " 'clues': [('asthenic', 'lacking strength or vigor'),\n", " ('undynamic', 'characterized by an absence of force or forcefulness'),\n", - " ('asthenic', 'lacking strength or vigor')]},\n", + " ('debilitated', 'lacking strength or vigor'),\n", + " ('enervated', 'lacking strength or vigor')]},\n", " {'answer': 'aeonian',\n", " 'hint': 'synonyms for aeonian',\n", - " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n", - " ('everlasting', 'continuing forever or indefinitely'),\n", - " ('eonian', 'of or relating to a geological eon (longer than an era)'),\n", + " 'clues': [('eonian',\n", + " 'of or relating to a geological eon (longer than an era)'),\n", " ('unending', 'continuing forever or indefinitely'),\n", - " ('eternal', 'continuing forever or indefinitely'),\n", " ('unceasing', 'continuing forever or indefinitely'),\n", - " ('ageless', 'continuing forever or indefinitely')]},\n", + " ('perpetual', 'continuing forever or indefinitely'),\n", + " ('everlasting', 'continuing forever or indefinitely'),\n", + " ('ageless', 'continuing forever or indefinitely'),\n", + " ('eternal', 'continuing forever or indefinitely')]},\n", " {'answer': 'aerial',\n", " 'hint': 'synonyms for aerial',\n", - " 'clues': [('aery',\n", + " 'clues': [('aeriform',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('airy',\n", + " ('ethereal',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('aeriform',\n", + " ('airy',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('ethereal',\n", + " ('aery',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n", " {'answer': 'aeriform',\n", " 'hint': 'synonyms for aeriform',\n", - " 'clues': [('airy',\n", - " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('aery',\n", - " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('aerial',\n", + " 'clues': [('aerial',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", + " ('airlike', 'resembling air or having the form of air'),\n", " ('ethereal',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('airlike', 'resembling air or having the form of air')]},\n", + " ('airy',\n", + " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", + " ('aery',\n", + " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n", " {'answer': 'aery',\n", " 'hint': 'synonyms for aery',\n", - " 'clues': [('aerial',\n", - " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('aeriform',\n", + " 'clues': [('aeriform',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", " ('ethereal',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", + " ('aerial',\n", + " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", " ('airy',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n", " {'answer': 'affected',\n", " 'hint': 'synonyms for affected',\n", - " 'clues': [('touched',\n", + " 'clues': [('moved',\n", " 'being excited or provoked to the expression of an emotion'),\n", - " ('unnatural',\n", - " 'speaking or behaving in an artificial way to make an impression'),\n", " ('stirred', 'being excited or provoked to the expression of an emotion'),\n", - " ('moved', 'being excited or provoked to the expression of an emotion')]},\n", + " ('touched', 'being excited or provoked to the expression of an emotion'),\n", + " ('unnatural',\n", + " 'speaking or behaving in an artificial way to make an impression')]},\n", " {'answer': 'affectionate',\n", " 'hint': 'synonyms for affectionate',\n", - " 'clues': [('tender', 'having or displaying warmth or affection'),\n", + " 'clues': [('fond', 'having or displaying warmth or affection'),\n", " ('lovesome', 'having or displaying warmth or affection'),\n", - " ('fond', 'having or displaying warmth or affection'),\n", + " ('tender', 'having or displaying warmth or affection'),\n", " ('warm', 'having or displaying warmth or affection')]},\n", " {'answer': 'affirmative',\n", " 'hint': 'synonyms for affirmative',\n", - " 'clues': [('optimistic', 'expecting the best'),\n", - " ('affirmatory', 'affirming or giving assent'),\n", + " 'clues': [('plausive', 'expressing or manifesting praise or approval'),\n", " ('approbatory', 'expressing or manifesting praise or approval'),\n", - " ('approving', 'expressing or manifesting praise or approval'),\n", " ('approbative', 'expressing or manifesting praise or approval'),\n", - " ('plausive', 'expressing or manifesting praise or approval')]},\n", + " ('optimistic', 'expecting the best'),\n", + " ('approving', 'expressing or manifesting praise or approval'),\n", + " ('affirmatory', 'affirming or giving assent')]},\n", " {'answer': 'affluent',\n", " 'hint': 'synonyms for affluent',\n", - " 'clues': [('wealthy',\n", + " 'clues': [('moneyed',\n", " 'having an abundant supply of money or possessions of value'),\n", + " ('wealthy', 'having an abundant supply of money or possessions of value'),\n", " ('loaded', 'having an abundant supply of money or possessions of value'),\n", - " ('moneyed', 'having an abundant supply of money or possessions of value'),\n", " ('flush', 'having an abundant supply of money or possessions of value')]},\n", " {'answer': 'afire',\n", " 'hint': 'synonyms for afire',\n", - " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n", - " ('aflare', 'lighted up by or as by fire or flame'),\n", - " ('aflame', 'lighted up by or as by fire or flame'),\n", + " 'clues': [('aflare', 'lighted up by or as by fire or flame'),\n", " ('on fire', 'lighted up by or as by fire or flame'),\n", + " ('aflame', 'lighted up by or as by fire or flame'),\n", + " ('alight', 'lighted up by or as by fire or flame'),\n", " ('ablaze', 'lighted up by or as by fire or flame')]},\n", " {'answer': 'aflame',\n", " 'hint': 'synonyms for aflame',\n", - " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n", - " ('aflare', 'lighted up by or as by fire or flame'),\n", - " ('on fire', 'lighted up by or as by fire or flame'),\n", - " ('aroused',\n", + " 'clues': [('aroused',\n", + " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n", + " ('ablaze',\n", " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n", + " ('on fire', 'lighted up by or as by fire or flame'),\n", " ('afire', 'lighted up by or as by fire or flame'),\n", - " ('ablaze', 'lighted up by or as by fire or flame')]},\n", + " ('alight', 'lighted up by or as by fire or flame'),\n", + " ('aflare', 'lighted up by or as by fire or flame')]},\n", " {'answer': 'aflare',\n", " 'hint': 'synonyms for aflare',\n", " 'clues': [('alight', 'lighted up by or as by fire or flame'),\n", " ('aflame', 'lighted up by or as by fire or flame'),\n", - " ('afire', 'lighted up by or as by fire or flame'),\n", " ('on fire', 'lighted up by or as by fire or flame'),\n", - " ('ablaze', 'lighted up by or as by fire or flame'),\n", + " ('afire', 'lighted up by or as by fire or flame'),\n", " ('flaring',\n", - " 'streaming or flapping or spreading wide as if in a current of air')]},\n", + " 'streaming or flapping or spreading wide as if in a current of air'),\n", + " ('ablaze', 'lighted up by or as by fire or flame')]},\n", " {'answer': 'afloat',\n", " 'hint': 'synonyms for afloat',\n", - " 'clues': [('adrift', 'aimlessly drifting'),\n", + " 'clues': [('aimless', 'aimlessly drifting'),\n", " ('directionless', 'aimlessly drifting'),\n", - " ('aimless', 'aimlessly drifting'),\n", - " ('undirected', 'aimlessly drifting'),\n", + " ('flooded', 'covered with water'),\n", + " ('adrift', 'aimlessly drifting'),\n", + " ('planless', 'aimlessly drifting'),\n", " ('rudderless', 'aimlessly drifting'),\n", " ('inundated', 'covered with water'),\n", " ('overflowing', 'covered with water'),\n", " ('awash', 'covered with water'),\n", - " ('planless', 'aimlessly drifting'),\n", - " ('flooded', 'covered with water')]},\n", + " ('undirected', 'aimlessly drifting')]},\n", " {'answer': 'agamic',\n", " 'hint': 'synonyms for agamic',\n", " 'clues': [('agamogenetic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('parthenogenetic',\n", - " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", " ('agamous',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", " ('apomictic',\n", + " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", + " ('parthenogenetic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n", " {'answer': 'agamogenetic',\n", " 'hint': 'synonyms for agamogenetic',\n", - " 'clues': [('agamic',\n", + " 'clues': [('agamous',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('parthenogenetic',\n", + " ('apomictic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('agamous',\n", + " ('agamic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('apomictic',\n", + " ('parthenogenetic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n", " {'answer': 'agamous',\n", " 'hint': 'synonyms for agamous',\n", - " 'clues': [('agamic',\n", + " 'clues': [('agamogenetic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('agamogenetic',\n", + " ('apomictic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('parthenogenetic',\n", + " ('agamic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('apomictic',\n", + " ('parthenogenetic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n", " {'answer': 'aged',\n", " 'hint': 'synonyms for aged',\n", - " 'clues': [('of age',\n", - " \"having attained a specific age; (`aged' is pronounced as one syllable)\"),\n", + " 'clues': [('older',\n", + " \"advanced in years; (`aged' is pronounced as two syllables)\"),\n", " ('ripened',\n", " \"of wines, fruit, cheeses; having reached a desired or final condition; (`aged' pronounced as one syllable)\"),\n", - " ('senior', \"advanced in years; (`aged' is pronounced as two syllables)\"),\n", - " ('older', \"advanced in years; (`aged' is pronounced as two syllables)\"),\n", " ('cured',\n", " \"(used of tobacco) aging as a preservative process (`aged' is pronounced as one syllable)\"),\n", - " ('elderly',\n", + " ('of age',\n", + " \"having attained a specific age; (`aged' is pronounced as one syllable)\"),\n", + " ('elderly', \"advanced in years; (`aged' is pronounced as two syllables)\"),\n", + " ('senior',\n", " \"advanced in years; (`aged' is pronounced as two syllables)\")]},\n", " {'answer': 'ageless',\n", " 'hint': 'synonyms for ageless',\n", - " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n", - " ('everlasting', 'continuing forever or indefinitely'),\n", - " ('eonian', 'continuing forever or indefinitely'),\n", - " ('eternal', 'continuing forever or indefinitely'),\n", + " 'clues': [('unending', 'continuing forever or indefinitely'),\n", " ('unceasing', 'continuing forever or indefinitely'),\n", - " ('unending', 'continuing forever or indefinitely')]},\n", + " ('perpetual', 'continuing forever or indefinitely'),\n", + " ('everlasting', 'continuing forever or indefinitely'),\n", + " ('aeonian', 'continuing forever or indefinitely'),\n", + " ('eternal', 'continuing forever or indefinitely')]},\n", " {'answer': 'aglitter',\n", " 'hint': 'synonyms for aglitter',\n", - " 'clues': [('sparkly', 'having brief brilliant points or flashes of light'),\n", - " ('glittering', 'having brief brilliant points or flashes of light'),\n", - " ('scintillating', 'having brief brilliant points or flashes of light'),\n", + " 'clues': [('glinting',\n", + " 'having brief brilliant points or flashes of light'),\n", + " ('fulgid', 'having brief brilliant points or flashes of light'),\n", " ('glittery', 'having brief brilliant points or flashes of light'),\n", + " ('scintillating', 'having brief brilliant points or flashes of light'),\n", + " ('glittering', 'having brief brilliant points or flashes of light'),\n", + " ('sparkly', 'having brief brilliant points or flashes of light'),\n", " ('scintillant', 'having brief brilliant points or flashes of light'),\n", - " ('glinting', 'having brief brilliant points or flashes of light'),\n", - " ('coruscant', 'having brief brilliant points or flashes of light'),\n", - " ('fulgid', 'having brief brilliant points or flashes of light')]},\n", + " ('coruscant', 'having brief brilliant points or flashes of light')]},\n", " {'answer': 'agonising',\n", " 'hint': 'synonyms for agonising',\n", - " 'clues': [('agonizing', 'extremely painful'),\n", - " ('excruciating', 'extremely painful'),\n", - " ('torturing', 'extremely painful'),\n", - " ('torturous', 'extremely painful'),\n", + " 'clues': [('excruciating', 'extremely painful'),\n", " ('harrowing', 'extremely painful'),\n", - " ('torturesome', 'extremely painful')]},\n", + " ('agonizing', 'extremely painful'),\n", + " ('torturesome', 'extremely painful'),\n", + " ('torturing', 'extremely painful'),\n", + " ('torturous', 'extremely painful')]},\n", " {'answer': 'agonizing',\n", " 'hint': 'synonyms for agonizing',\n", " 'clues': [('excruciating', 'extremely painful'),\n", - " ('torturing', 'extremely painful'),\n", - " ('torturous', 'extremely painful'),\n", - " ('agonising', 'extremely painful'),\n", " ('harrowing', 'extremely painful'),\n", - " ('torturesome', 'extremely painful')]},\n", + " ('torturesome', 'extremely painful'),\n", + " ('agonising', 'extremely painful'),\n", + " ('torturing', 'extremely painful'),\n", + " ('torturous', 'extremely painful')]},\n", " {'answer': 'agreeable',\n", " 'hint': 'synonyms for agreeable',\n", - " 'clues': [('accordant', 'in keeping'),\n", - " ('conformable', 'in keeping'),\n", - " ('consonant', 'in keeping'),\n", - " ('concordant', 'in keeping')]},\n", + " 'clues': [('conformable', 'in keeping'),\n", + " ('concordant', 'in keeping'),\n", + " ('accordant', 'in keeping'),\n", + " ('consonant', 'in keeping')]},\n", " {'answer': 'ailing',\n", " 'hint': 'synonyms for ailing',\n", - " 'clues': [('unwell', 'somewhat ill or prone to illness'),\n", - " ('seedy', 'somewhat ill or prone to illness'),\n", + " 'clues': [('sickly', 'somewhat ill or prone to illness'),\n", + " ('under the weather', 'somewhat ill or prone to illness'),\n", " ('indisposed', 'somewhat ill or prone to illness'),\n", - " ('poorly', 'somewhat ill or prone to illness'),\n", " ('peaked', 'somewhat ill or prone to illness'),\n", - " ('under the weather', 'somewhat ill or prone to illness'),\n", - " ('sickly', 'somewhat ill or prone to illness')]},\n", + " ('poorly', 'somewhat ill or prone to illness'),\n", + " ('unwell', 'somewhat ill or prone to illness'),\n", + " ('seedy', 'somewhat ill or prone to illness')]},\n", " {'answer': 'aimless',\n", " 'hint': 'synonyms for aimless',\n", - " 'clues': [('adrift', 'aimlessly drifting'),\n", - " ('drifting',\n", + " 'clues': [('afloat', 'aimlessly drifting'),\n", + " ('rudderless', 'aimlessly drifting'),\n", + " ('floating',\n", " 'continually changing especially as from one abode or occupation to another'),\n", - " ('directionless', 'aimlessly drifting'),\n", - " ('undirected', 'aimlessly drifting'),\n", + " ('adrift', 'aimlessly drifting'),\n", + " ('planless', 'aimlessly drifting'),\n", " ('vagabond',\n", " 'continually changing especially as from one abode or occupation to another'),\n", - " ('rudderless', 'aimlessly drifting'),\n", " ('vagrant',\n", " 'continually changing especially as from one abode or occupation to another'),\n", - " ('floating',\n", + " ('drifting',\n", " 'continually changing especially as from one abode or occupation to another'),\n", - " ('afloat', 'aimlessly drifting'),\n", - " ('planless', 'aimlessly drifting')]},\n", + " ('directionless', 'aimlessly drifting'),\n", + " ('undirected', 'aimlessly drifting')]},\n", " {'answer': 'airheaded',\n", " 'hint': 'synonyms for airheaded',\n", - " 'clues': [('empty-headed', 'lacking seriousness; given to frivolity'),\n", + " 'clues': [('dizzy', 'lacking seriousness; given to frivolity'),\n", + " ('light-headed', 'lacking seriousness; given to frivolity'),\n", + " ('silly', 'lacking seriousness; given to frivolity'),\n", + " ('empty-headed', 'lacking seriousness; given to frivolity'),\n", " ('giddy', 'lacking seriousness; given to frivolity'),\n", - " ('dizzy', 'lacking seriousness; given to frivolity'),\n", - " ('lightheaded', 'lacking seriousness; given to frivolity'),\n", - " ('featherbrained', 'lacking seriousness; given to frivolity'),\n", - " ('silly', 'lacking seriousness; given to frivolity')]},\n", + " ('featherbrained', 'lacking seriousness; given to frivolity')]},\n", " {'answer': 'airy',\n", " 'hint': 'synonyms for airy',\n", - " 'clues': [('impractical', 'not practical or realizable; speculative'),\n", + " 'clues': [('aerial',\n", + " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", " ('aired', 'open to or abounding in fresh air'),\n", + " ('visionary', 'not practical or realizable; speculative'),\n", + " ('windy', 'not practical or realizable; speculative'),\n", " ('aery',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('ethereal',\n", + " ('aeriform',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('windy', 'not practical or realizable; speculative'),\n", - " ('visionary', 'not practical or realizable; speculative'),\n", - " ('aerial',\n", + " ('ethereal',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('aeriform',\n", - " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n", + " ('impractical', 'not practical or realizable; speculative')]},\n", " {'answer': 'akin',\n", " 'hint': 'synonyms for akin',\n", - " 'clues': [('kin', 'related by blood'),\n", - " ('consanguine', 'related by blood'),\n", - " ('cognate', 'related by blood'),\n", + " 'clues': [('cognate', 'related by blood'),\n", + " ('blood-related', 'related by blood'),\n", + " ('consanguineous', 'related by blood'),\n", + " ('kin', 'related by blood'),\n", " ('kindred', 'similar in quality or character'),\n", - " ('blood-related', 'related by blood')]},\n", + " ('consanguineal', 'related by blood')]},\n", " {'answer': 'alar',\n", " 'hint': 'synonyms for alar',\n", - " 'clues': [('axillary', 'of or relating to the axil'),\n", + " 'clues': [('aliform', 'having or resembling wings'),\n", " ('wing-shaped', 'having or resembling wings'),\n", - " ('aliform', 'having or resembling wings'),\n", - " ('alary', 'having or resembling wings')]},\n", + " ('alary', 'having or resembling wings'),\n", + " ('axillary', 'of or relating to the axil')]},\n", " {'answer': 'alert',\n", " 'hint': 'synonyms for alert',\n", - " 'clues': [('zippy', 'quick and energetic'),\n", - " ('spanking', 'quick and energetic'),\n", - " ('lively', 'quick and energetic'),\n", + " 'clues': [('awake', 'mentally perceptive and responsive'),\n", + " ('merry', 'quick and energetic'),\n", + " ('brisk', 'quick and energetic'),\n", " ('snappy', 'quick and energetic'),\n", - " ('awake', 'mentally perceptive and responsive'),\n", - " ('watchful', 'engaged in or accustomed to close observation'),\n", + " ('lively', 'quick and energetic'),\n", + " ('spanking', 'quick and energetic'),\n", + " ('zippy', 'quick and energetic'),\n", " ('rattling', 'quick and energetic'),\n", " ('alive', 'mentally perceptive and responsive'),\n", - " ('merry', 'quick and energetic'),\n", - " ('brisk', 'quick and energetic')]},\n", + " ('watchful', 'engaged in or accustomed to close observation')]},\n", " {'answer': 'alight',\n", " 'hint': 'synonyms for alight',\n", - " 'clues': [('aflare', 'lighted up by or as by fire or flame'),\n", - " ('aflame', 'lighted up by or as by fire or flame'),\n", - " ('afire', 'lighted up by or as by fire or flame'),\n", + " 'clues': [('aflame', 'lighted up by or as by fire or flame'),\n", + " ('aflare', 'lighted up by or as by fire or flame'),\n", " ('on fire', 'lighted up by or as by fire or flame'),\n", + " ('afire', 'lighted up by or as by fire or flame'),\n", " ('ablaze', 'lighted up by or as by fire or flame')]},\n", " {'answer': 'alimental',\n", " 'hint': 'synonyms for alimental',\n", - " 'clues': [('nutritive', 'of or providing nourishment'),\n", + " 'clues': [('nutrient', 'of or providing nourishment'),\n", " ('alimentary', 'of or providing nourishment'),\n", - " ('nourishing', 'of or providing nourishment'),\n", + " ('nutritive', 'of or providing nourishment'),\n", " ('nutritious', 'of or providing nourishment'),\n", - " ('nutrient', 'of or providing nourishment')]},\n", + " ('nourishing', 'of or providing nourishment')]},\n", " {'answer': 'alimentary',\n", " 'hint': 'synonyms for alimentary',\n", - " 'clues': [('nutritive', 'of or providing nourishment'),\n", - " ('nourishing', 'of or providing nourishment'),\n", - " ('nutritious', 'of or providing nourishment'),\n", + " 'clues': [('nutrient', 'of or providing nourishment'),\n", " ('alimental', 'of or providing nourishment'),\n", - " ('nutrient', 'of or providing nourishment')]},\n", + " ('nutritive', 'of or providing nourishment'),\n", + " ('nutritious', 'of or providing nourishment'),\n", + " ('nourishing', 'of or providing nourishment')]},\n", " {'answer': 'alive',\n", " 'hint': 'synonyms for alive',\n", - " 'clues': [('live', 'possessing life'),\n", - " ('alert', 'mentally perceptive and responsive'),\n", - " ('animated', 'having life or vigor or spirit'),\n", + " 'clues': [('awake', 'mentally perceptive and responsive'),\n", + " ('live', 'capable of erupting'),\n", " ('active', 'in operation'),\n", - " ('awake', 'mentally perceptive and responsive')]},\n", + " ('alert', 'mentally perceptive and responsive'),\n", + " ('animated', 'having life or vigor or spirit')]},\n", " {'answer': 'all-embracing',\n", " 'hint': 'synonyms for all-embracing',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", + " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", " {'answer': 'all-encompassing',\n", " 'hint': 'synonyms for all-encompassing',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", + " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", " {'answer': 'all-important',\n", " 'hint': 'synonyms for all-important',\n", - " 'clues': [('all important', 'of the greatest importance'),\n", + " 'clues': [('of the essence', 'of the greatest importance'),\n", " ('crucial', 'of the greatest importance'),\n", " ('essential', 'of the greatest importance'),\n", - " ('of the essence', 'of the greatest importance')]},\n", + " ('all important', 'of the greatest importance')]},\n", " {'answer': 'all-inclusive',\n", " 'hint': 'synonyms for all-inclusive',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", + " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", " {'answer': 'all_important',\n", " 'hint': 'synonyms for all important',\n", - " 'clues': [('essential', 'of the greatest importance'),\n", - " ('crucial', 'of the greatest importance'),\n", + " 'clues': [('crucial', 'of the greatest importance'),\n", " ('all-important', 'of the greatest importance'),\n", - " ('of the essence', 'of the greatest importance')]},\n", + " ('of the essence', 'of the greatest importance'),\n", + " ('essential', 'of the greatest importance')]},\n", " {'answer': 'all_over',\n", " 'hint': 'synonyms for all over',\n", - " 'clues': [('concluded', 'having come or been brought to a conclusion'),\n", - " ('over', 'having come or been brought to a conclusion'),\n", + " 'clues': [('complete', 'having come or been brought to a conclusion'),\n", " ('ended', 'having come or been brought to a conclusion'),\n", - " ('complete', 'having come or been brought to a conclusion'),\n", - " ('terminated', 'having come or been brought to a conclusion')]},\n", + " ('over', 'having come or been brought to a conclusion'),\n", + " ('terminated', 'having come or been brought to a conclusion'),\n", + " ('concluded', 'having come or been brought to a conclusion')]},\n", " {'answer': 'all_right',\n", " 'hint': 'synonyms for all right',\n", - " 'clues': [('o.k.', 'being satisfactory or in satisfactory condition'),\n", - " ('hunky-dory', 'being satisfactory or in satisfactory condition'),\n", - " ('okay', 'being satisfactory or in satisfactory condition'),\n", + " 'clues': [('hunky-dory',\n", + " 'being satisfactory or in satisfactory condition'),\n", " ('ok', 'being satisfactory or in satisfactory condition'),\n", - " ('fine', 'being satisfactory or in satisfactory condition')]},\n", + " ('o.k.', 'being satisfactory or in satisfactory condition'),\n", + " ('fine', 'being satisfactory or in satisfactory condition'),\n", + " ('okay', 'being satisfactory or in satisfactory condition')]},\n", " {'answer': 'alleviative',\n", " 'hint': 'synonyms for alleviative',\n", - " 'clues': [('lenitive',\n", + " 'clues': [('mitigatory',\n", " 'moderating pain or sorrow by making it easier to bear'),\n", - " ('mitigative', 'moderating pain or sorrow by making it easier to bear'),\n", + " ('lenitive', 'moderating pain or sorrow by making it easier to bear'),\n", " ('alleviatory', 'moderating pain or sorrow by making it easier to bear'),\n", - " ('palliative', 'moderating pain or sorrow by making it easier to bear'),\n", - " ('mitigatory', 'moderating pain or sorrow by making it easier to bear')]},\n", + " ('mitigative', 'moderating pain or sorrow by making it easier to bear'),\n", + " ('palliative', 'moderating pain or sorrow by making it easier to bear')]},\n", " {'answer': 'alleviatory',\n", " 'hint': 'synonyms for alleviatory',\n", - " 'clues': [('lenitive',\n", + " 'clues': [('mitigative',\n", " 'moderating pain or sorrow by making it easier to bear'),\n", - " ('mitigative', 'moderating pain or sorrow by making it easier to bear'),\n", - " ('palliative', 'moderating pain or sorrow by making it easier to bear'),\n", - " ('mitigatory', 'moderating pain or sorrow by making it easier to bear')]},\n", + " ('mitigatory', 'moderating pain or sorrow by making it easier to bear'),\n", + " ('lenitive', 'moderating pain or sorrow by making it easier to bear'),\n", + " ('palliative', 'moderating pain or sorrow by making it easier to bear')]},\n", " {'answer': 'alone',\n", " 'hint': 'synonyms for alone',\n", - " 'clues': [('unequalled', 'radically distinctive and without equal'),\n", + " 'clues': [('unequaled', 'radically distinctive and without equal'),\n", + " ('unparalleled', 'radically distinctive and without equal'),\n", + " ('lone', 'lacking companions or companionship'),\n", " ('only', 'exclusive of anyone or anything else'),\n", " ('solitary', 'lacking companions or companionship'),\n", - " ('unique', 'radically distinctive and without equal'),\n", - " ('lone', 'lacking companions or companionship'),\n", - " ('unparalleled', 'radically distinctive and without equal')]},\n", + " ('unique', 'radically distinctive and without equal')]},\n", " {'answer': 'alterative',\n", " 'hint': 'synonyms for alterative',\n", - " 'clues': [('healing', 'tending to cure or restore to health'),\n", + " 'clues': [('remedial', 'tending to cure or restore to health'),\n", + " ('sanative', 'tending to cure or restore to health'),\n", + " ('healing', 'tending to cure or restore to health'),\n", " ('therapeutic', 'tending to cure or restore to health'),\n", - " ('curative', 'tending to cure or restore to health'),\n", - " ('remedial', 'tending to cure or restore to health'),\n", - " ('sanative', 'tending to cure or restore to health')]},\n", + " ('curative', 'tending to cure or restore to health')]},\n", " {'answer': 'alveolate',\n", " 'hint': 'synonyms for alveolate',\n", - " 'clues': [('pitted', 'pitted with cell-like cavities (as a honeycomb)'),\n", - " ('honeycombed', 'pitted with cell-like cavities (as a honeycomb)'),\n", + " 'clues': [('honeycombed',\n", + " 'pitted with cell-like cavities (as a honeycomb)'),\n", + " ('faveolate', 'pitted with cell-like cavities (as a honeycomb)'),\n", " ('cavitied', 'pitted with cell-like cavities (as a honeycomb)'),\n", - " ('faveolate', 'pitted with cell-like cavities (as a honeycomb)')]},\n", + " ('pitted', 'pitted with cell-like cavities (as a honeycomb)')]},\n", " {'answer': 'amalgamate',\n", " 'hint': 'synonyms for amalgamate',\n", - " 'clues': [('fused', 'joined together into a whole'),\n", + " 'clues': [('coalesced', 'joined together into a whole'),\n", " ('consolidated', 'joined together into a whole'),\n", - " ('amalgamated', 'joined together into a whole'),\n", - " ('coalesced', 'joined together into a whole')]},\n", + " ('fused', 'joined together into a whole'),\n", + " ('amalgamated', 'joined together into a whole')]},\n", " {'answer': 'amalgamated',\n", " 'hint': 'synonyms for amalgamated',\n", - " 'clues': [('fused', 'joined together into a whole'),\n", + " 'clues': [('coalesced', 'joined together into a whole'),\n", " ('amalgamate', 'joined together into a whole'),\n", - " ('consolidated', 'joined together into a whole'),\n", - " ('coalesced', 'joined together into a whole')]},\n", + " ('fused', 'joined together into a whole'),\n", + " ('consolidated', 'joined together into a whole')]},\n", " {'answer': 'amateur',\n", " 'hint': 'synonyms for amateur',\n", - " 'clues': [('unpaid', 'engaged in as a pastime'),\n", + " 'clues': [('unskilled', 'lacking professional skill or expertise'),\n", " ('amateurish', 'lacking professional skill or expertise'),\n", - " ('inexpert', 'lacking professional skill or expertise'),\n", + " ('unpaid', 'engaged in as a pastime'),\n", " ('recreational', 'engaged in as a pastime'),\n", - " ('unskilled', 'lacking professional skill or expertise')]},\n", + " ('inexpert', 'lacking professional skill or expertise')]},\n", " {'answer': 'amazing',\n", " 'hint': 'synonyms for amazing',\n", - " 'clues': [('awe-inspiring',\n", - " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('astonishing', 'surprising greatly'),\n", - " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " 'clues': [('astonishing', 'surprising greatly'),\n", " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", + " ('awe-inspiring',\n", + " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", " {'answer': 'ambidextrous',\n", " 'hint': 'synonyms for ambidextrous',\n", - " 'clues': [('two-faced',\n", - " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('two-handed', 'equally skillful with each hand'),\n", + " 'clues': [('two-handed', 'equally skillful with each hand'),\n", " ('double-tongued',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('deceitful',\n", + " ('double-dealing',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('double-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", + " ('deceitful',\n", + " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('duplicitous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-dealing',\n", + " ('two-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n", " {'answer': 'amiable',\n", " 'hint': 'synonyms for amiable',\n", - " 'clues': [('good-humored', 'disposed to please; - Hal Hinson'),\n", - " ('cordial', 'diffusing warmth and friendliness'),\n", - " ('affable', 'diffusing warmth and friendliness'),\n", - " ('genial', 'diffusing warmth and friendliness')]},\n", + " 'clues': [('cordial', 'diffusing warmth and friendliness'),\n", + " ('genial', 'diffusing warmth and friendliness'),\n", + " ('good-humoured', 'disposed to please; - Hal Hinson'),\n", + " ('affable', 'diffusing warmth and friendliness')]},\n", " {'answer': 'amok',\n", " 'hint': 'synonyms for amok',\n", - " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n", - " ('possessed', 'frenzied as if possessed by a demon'),\n", - " ('demoniacal', 'frenzied as if possessed by a demon'),\n", - " ('amuck', 'frenzied as if possessed by a demon')]},\n", + " 'clues': [('possessed', 'frenzied as if possessed by a demon'),\n", + " ('berserk', 'frenzied as if possessed by a demon'),\n", + " ('amuck', 'frenzied as if possessed by a demon'),\n", + " ('demoniac', 'frenzied as if possessed by a demon')]},\n", " {'answer': 'amorphous',\n", " 'hint': 'synonyms for amorphous',\n", - " 'clues': [('shapeless', 'having no definite form or distinct shape'),\n", + " 'clues': [('uncrystallized', 'without real or apparent crystalline form'),\n", " ('formless', 'having no definite form or distinct shape'),\n", - " ('uncrystallized', 'without real or apparent crystalline form'),\n", + " ('shapeless', 'having no definite form or distinct shape'),\n", " ('unstructured',\n", " 'lacking the system or structure characteristic of living bodies')]},\n", " {'answer': 'ample',\n", " 'hint': 'synonyms for ample',\n", - " 'clues': [('rich', 'affording an abundant supply'),\n", - " ('sizable', 'fairly large'),\n", - " ('copious', 'affording an abundant supply'),\n", + " 'clues': [('copious', 'affording an abundant supply'),\n", " ('plentiful', 'affording an abundant supply'),\n", + " ('rich', 'affording an abundant supply'),\n", + " ('sizeable', 'fairly large'),\n", " ('plenteous', 'affording an abundant supply')]},\n", " {'answer': 'amuck',\n", " 'hint': 'synonyms for amuck',\n", - " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n", + " 'clues': [('possessed', 'frenzied as if possessed by a demon'),\n", + " ('berserk', 'frenzied as if possessed by a demon'),\n", " ('amok', 'frenzied as if possessed by a demon'),\n", - " ('demoniacal', 'frenzied as if possessed by a demon'),\n", - " ('possessed', 'frenzied as if possessed by a demon')]},\n", + " ('demoniac', 'frenzied as if possessed by a demon')]},\n", " {'answer': 'amusing',\n", " 'hint': 'synonyms for amusing',\n", - " 'clues': [('mirthful', 'arousing or provoking laughter'),\n", + " 'clues': [('amusive', 'providing enjoyment; pleasantly entertaining'),\n", + " ('mirthful', 'arousing or provoking laughter'),\n", + " ('laughable', 'arousing or provoking laughter'),\n", " ('risible', 'arousing or provoking laughter'),\n", - " ('funny', 'arousing or provoking laughter'),\n", " ('diverting', 'providing enjoyment; pleasantly entertaining'),\n", " ('comic', 'arousing or provoking laughter'),\n", - " ('amusive', 'providing enjoyment; pleasantly entertaining'),\n", - " ('laughable', 'arousing or provoking laughter'),\n", - " ('comical', 'arousing or provoking laughter')]},\n", + " ('comical', 'arousing or provoking laughter'),\n", + " ('funny', 'arousing or provoking laughter')]},\n", " {'answer': 'amyloid',\n", " 'hint': 'synonyms for amyloid',\n", " 'clues': [('farinaceous', 'resembling starch'),\n", + " ('amyloidal', 'resembling starch'),\n", " ('amylaceous', 'resembling starch'),\n", - " ('starchlike', 'resembling starch'),\n", - " ('amyloidal', 'resembling starch')]},\n", + " ('starchlike', 'resembling starch')]},\n", " {'answer': 'amyloidal',\n", " 'hint': 'synonyms for amyloidal',\n", " 'clues': [('farinaceous', 'resembling starch'),\n", - " ('amyloid', 'resembling starch'),\n", " ('amylaceous', 'resembling starch'),\n", - " ('starchlike', 'resembling starch')]},\n", + " ('starchlike', 'resembling starch'),\n", + " ('amyloid', 'resembling starch')]},\n", " {'answer': 'ancillary',\n", " 'hint': 'synonyms for ancillary',\n", - " 'clues': [('auxiliary', 'furnishing added support'),\n", - " ('adjunct', 'furnishing added support'),\n", - " ('accessory', 'furnishing added support'),\n", + " 'clues': [('adjunct', 'furnishing added support'),\n", + " ('appurtenant', 'furnishing added support'),\n", " ('adjuvant', 'furnishing added support'),\n", - " ('appurtenant', 'furnishing added support')]},\n", + " ('auxiliary', 'furnishing added support'),\n", + " ('accessory', 'furnishing added support')]},\n", " {'answer': 'angelic',\n", " 'hint': 'synonyms for angelic',\n", - " 'clues': [('cherubic',\n", - " 'having a sweet nature befitting an angel or cherub'),\n", + " 'clues': [('beatific',\n", + " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", " ('saintlike',\n", " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('sweet', 'having a sweet nature befitting an angel or cherub'),\n", + " ('sainted',\n", + " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", + " ('angelical', 'having a sweet nature befitting an angel or cherub'),\n", " ('seraphic', 'having a sweet nature befitting an angel or cherub'),\n", - " ('angelical', 'of or relating to angels'),\n", " ('saintly',\n", " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('sainted',\n", - " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('beatific',\n", - " 'marked by utter benignity; resembling or befitting an angel or saint')]},\n", + " ('sweet', 'having a sweet nature befitting an angel or cherub'),\n", + " ('cherubic', 'having a sweet nature befitting an angel or cherub')]},\n", " {'answer': 'angelical',\n", " 'hint': 'synonyms for angelical',\n", - " 'clues': [('cherubic',\n", - " 'having a sweet nature befitting an angel or cherub'),\n", - " ('angelic', 'having a sweet nature befitting an angel or cherub'),\n", + " 'clues': [('beatific',\n", + " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", " ('saintlike',\n", " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('sweet', 'having a sweet nature befitting an angel or cherub'),\n", + " ('sainted',\n", + " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", + " ('angelic', 'of or relating to angels'),\n", " ('seraphic', 'having a sweet nature befitting an angel or cherub'),\n", " ('saintly',\n", " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('sainted',\n", - " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('beatific',\n", - " 'marked by utter benignity; resembling or befitting an angel or saint')]},\n", + " ('sweet', 'having a sweet nature befitting an angel or cherub'),\n", + " ('cherubic', 'having a sweet nature befitting an angel or cherub')]},\n", " {'answer': 'angered',\n", " 'hint': 'synonyms for angered',\n", - " 'clues': [('infuriated', 'marked by extreme anger'),\n", - " ('furious', 'marked by extreme anger'),\n", - " ('enraged', 'marked by extreme anger'),\n", - " ('maddened', 'marked by extreme anger')]},\n", + " 'clues': [('furious', 'marked by extreme anger'),\n", + " ('infuriated', 'marked by extreme anger'),\n", + " ('maddened', 'marked by extreme anger'),\n", + " ('enraged', 'marked by extreme anger')]},\n", " {'answer': 'angry',\n", " 'hint': 'synonyms for angry',\n", " 'clues': [('furious', '(of the elements) as if showing violent anger'),\n", " ('tempestuous', '(of the elements) as if showing violent anger'),\n", - " ('wild', '(of the elements) as if showing violent anger'),\n", - " ('raging', '(of the elements) as if showing violent anger')]},\n", + " ('raging', '(of the elements) as if showing violent anger'),\n", + " ('wild', '(of the elements) as if showing violent anger')]},\n", " {'answer': 'annoyed',\n", " 'hint': 'synonyms for annoyed',\n", - " 'clues': [('peeved', 'aroused to impatience or anger'),\n", - " ('pestered', 'troubled persistently especially with petty annoyances'),\n", + " 'clues': [('nettled', 'aroused to impatience or anger'),\n", + " ('peeved', 'aroused to impatience or anger'),\n", + " ('irritated', 'aroused to impatience or anger'),\n", + " ('pissed', 'aroused to impatience or anger'),\n", " ('riled', 'aroused to impatience or anger'),\n", " ('steamed', 'aroused to impatience or anger'),\n", - " ('pissed off', 'aroused to impatience or anger'),\n", " ('vexed', 'troubled persistently especially with petty annoyances'),\n", - " ('pissed', 'aroused to impatience or anger'),\n", + " ('harried', 'troubled persistently especially with petty annoyances'),\n", + " ('harassed', 'troubled persistently especially with petty annoyances'),\n", " ('miffed', 'aroused to impatience or anger'),\n", - " ('irritated', 'aroused to impatience or anger'),\n", - " ('nettled', 'aroused to impatience or anger'),\n", " ('stung', 'aroused to impatience or anger'),\n", - " ('harried', 'troubled persistently especially with petty annoyances'),\n", - " ('harassed', 'troubled persistently especially with petty annoyances')]},\n", + " ('pissed off', 'aroused to impatience or anger'),\n", + " ('pestered', 'troubled persistently especially with petty annoyances')]},\n", " {'answer': 'annoying',\n", " 'hint': 'synonyms for annoying',\n", - " 'clues': [('plaguy', 'causing irritation or annoyance'),\n", - " ('pestering', 'causing irritation or annoyance'),\n", + " 'clues': [('pestering', 'causing irritation or annoyance'),\n", " ('vexing', 'causing irritation or annoyance'),\n", - " ('bothersome', 'causing irritation or annoyance'),\n", - " ('nettlesome', 'causing irritation or annoyance'),\n", - " ('pestiferous', 'causing irritation or annoyance'),\n", - " ('irritating', 'causing irritation or annoyance'),\n", + " ('pesky', 'causing irritation or annoyance'),\n", + " ('plaguy', 'causing irritation or annoyance'),\n", " ('galling', 'causing irritation or annoyance'),\n", - " ('vexatious', 'causing irritation or annoyance'),\n", " ('teasing', 'causing irritation or annoyance'),\n", - " ('pesky', 'causing irritation or annoyance')]},\n", + " ('vexatious', 'causing irritation or annoyance'),\n", + " ('nettlesome', 'causing irritation or annoyance'),\n", + " ('irritating', 'causing irritation or annoyance'),\n", + " ('pestiferous', 'causing irritation or annoyance'),\n", + " ('bothersome', 'causing irritation or annoyance')]},\n", " {'answer': 'annular',\n", " 'hint': 'synonyms for annular',\n", - " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n", - " ('annulated', 'shaped like a ring'),\n", + " 'clues': [('annulate', 'shaped like a ring'),\n", " ('ring-shaped', 'shaped like a ring'),\n", + " ('ringed', 'shaped like a ring'),\n", " ('circinate', 'shaped like a ring'),\n", - " ('ringed', 'shaped like a ring')]},\n", + " ('doughnut-shaped', 'shaped like a ring')]},\n", " {'answer': 'annulate',\n", " 'hint': 'synonyms for annulate',\n", - " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n", - " ('annulated', 'shaped like a ring'),\n", + " 'clues': [('annulated', 'shaped like a ring'),\n", " ('ring-shaped', 'shaped like a ring'),\n", + " ('ringed', 'shaped like a ring'),\n", " ('annular', 'shaped like a ring'),\n", " ('circinate', 'shaped like a ring'),\n", - " ('ringed', 'shaped like a ring')]},\n", + " ('doughnut-shaped', 'shaped like a ring')]},\n", " {'answer': 'annulated',\n", " 'hint': 'synonyms for annulated',\n", - " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n", + " 'clues': [('annulate', 'shaped like a ring'),\n", " ('ring-shaped', 'shaped like a ring'),\n", + " ('ringed', 'shaped like a ring'),\n", " ('annular', 'shaped like a ring'),\n", - " ('annulate', 'shaped like a ring'),\n", " ('circinate', 'shaped like a ring'),\n", - " ('ringed', 'shaped like a ring')]},\n", + " ('doughnut-shaped', 'shaped like a ring')]},\n", " {'answer': 'anserine',\n", " 'hint': 'synonyms for anserine',\n", " 'clues': [('goosy', 'having or revealing stupidity'),\n", - " ('foolish', 'having or revealing stupidity'),\n", " ('dopy', 'having or revealing stupidity'),\n", - " ('gooselike', 'having or revealing stupidity'),\n", - " ('jerky', 'having or revealing stupidity')]},\n", + " ('jerky', 'having or revealing stupidity'),\n", + " ('foolish', 'having or revealing stupidity'),\n", + " ('gooselike', 'having or revealing stupidity')]},\n", " {'answer': 'antipathetic',\n", " 'hint': 'synonyms for antipathetic',\n", - " 'clues': [('averse', \"(usually followed by `to') strongly opposed\"),\n", - " ('loath', \"(usually followed by `to') strongly opposed\"),\n", - " ('antagonistic', 'characterized by antagonism or antipathy'),\n", + " 'clues': [('indisposed', \"(usually followed by `to') strongly opposed\"),\n", + " ('loth', \"(usually followed by `to') strongly opposed\"),\n", " ('antipathetical', 'characterized by antagonism or antipathy'),\n", - " ('indisposed', \"(usually followed by `to') strongly opposed\")]},\n", + " ('averse', \"(usually followed by `to') strongly opposed\"),\n", + " ('antagonistic', 'characterized by antagonism or antipathy')]},\n", " {'answer': 'antipathetical',\n", " 'hint': 'synonyms for antipathetical',\n", - " 'clues': [('antipathetic', \"(usually followed by `to') strongly opposed\"),\n", + " 'clues': [('indisposed', \"(usually followed by `to') strongly opposed\"),\n", + " ('antipathetic', 'characterized by antagonism or antipathy'),\n", + " ('loth', \"(usually followed by `to') strongly opposed\"),\n", " ('averse', \"(usually followed by `to') strongly opposed\"),\n", - " ('loath', \"(usually followed by `to') strongly opposed\"),\n", - " ('antagonistic', 'characterized by antagonism or antipathy'),\n", - " ('indisposed', \"(usually followed by `to') strongly opposed\")]},\n", + " ('antagonistic', 'characterized by antagonism or antipathy')]},\n", " {'answer': 'antique',\n", " 'hint': 'synonyms for antique',\n", - " 'clues': [('passe', 'out of fashion'),\n", - " ('demode', 'out of fashion'),\n", - " ('old-hat', 'out of fashion'),\n", - " ('old-fashioned', 'out of fashion'),\n", + " 'clues': [('age-old', 'belonging to or lasting from times long ago'),\n", " ('outmoded', 'out of fashion'),\n", " ('ex', 'out of fashion'),\n", - " ('age-old', 'belonging to or lasting from times long ago')]},\n", + " ('passee', 'out of fashion'),\n", + " ('demode', 'out of fashion'),\n", + " ('old-fashioned', 'out of fashion'),\n", + " ('old-hat', 'out of fashion')]},\n", " {'answer': 'anxious',\n", " 'hint': 'synonyms for anxious',\n", - " 'clues': [('dying', 'eagerly desirous'),\n", - " ('queasy', 'causing or fraught with or showing anxiety'),\n", + " 'clues': [('unquiet', 'causing or fraught with or showing anxiety'),\n", " ('uneasy', 'causing or fraught with or showing anxiety'),\n", + " ('dying', 'eagerly desirous'),\n", " ('nervous', 'causing or fraught with or showing anxiety'),\n", - " ('unquiet', 'causing or fraught with or showing anxiety')]},\n", + " ('queasy', 'causing or fraught with or showing anxiety')]},\n", " {'answer': 'apomictic',\n", " 'hint': 'synonyms for apomictic',\n", - " 'clues': [('parthenogenetic',\n", + " 'clues': [('agamogenetic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", " ('agamous',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", + " ('apomictical', 'of or relating to a plant that reproduces by apomixis'),\n", " ('agamic',\n", " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('agamogenetic',\n", - " '(of reproduction) not involving the fusion of male and female gametes in reproduction'),\n", - " ('apomictical',\n", - " 'of or relating to a plant that reproduces by apomixis')]},\n", + " ('parthenogenetic',\n", + " '(of reproduction) not involving the fusion of male and female gametes in reproduction')]},\n", " {'answer': 'appareled',\n", " 'hint': 'synonyms for appareled',\n", - " 'clues': [('robed',\n", - " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('attired',\n", - " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('habilimented',\n", + " 'clues': [('dressed',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", " ('garmented',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", " ('garbed',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('dressed',\n", + " ('robed',\n", + " 'dressed or clothed especially in fine attire; often used in combination'),\n", + " ('attired',\n", + " 'dressed or clothed especially in fine attire; often used in combination'),\n", + " ('habilimented',\n", " 'dressed or clothed especially in fine attire; often used in combination')]},\n", " {'answer': 'apparent',\n", " 'hint': 'synonyms for apparent',\n", " 'clues': [('ostensible', 'appearing as such but not necessarily so'),\n", " ('patent', 'clearly revealed to the mind or the senses or judgment'),\n", + " ('evident', 'clearly revealed to the mind or the senses or judgment'),\n", " ('unmistakable',\n", " 'clearly revealed to the mind or the senses or judgment'),\n", + " ('plain', 'clearly revealed to the mind or the senses or judgment'),\n", " ('manifest', 'clearly revealed to the mind or the senses or judgment'),\n", - " ('evident', 'clearly revealed to the mind or the senses or judgment'),\n", - " ('seeming', 'appearing as such but not necessarily so'),\n", - " ('plain', 'clearly revealed to the mind or the senses or judgment')]},\n", + " ('seeming', 'appearing as such but not necessarily so')]},\n", " {'answer': 'apparitional',\n", " 'hint': 'synonyms for apparitional',\n", - " 'clues': [('spectral', 'resembling or characteristic of a phantom'),\n", - " ('ghostly', 'resembling or characteristic of a phantom'),\n", + " 'clues': [('ghostlike', 'resembling or characteristic of a phantom'),\n", " ('phantasmal', 'resembling or characteristic of a phantom'),\n", + " ('spectral', 'resembling or characteristic of a phantom'),\n", " ('spiritual', 'resembling or characteristic of a phantom'),\n", - " ('ghostlike', 'resembling or characteristic of a phantom')]},\n", + " ('ghostly', 'resembling or characteristic of a phantom')]},\n", " {'answer': 'appointed',\n", " 'hint': 'synonyms for appointed',\n", - " 'clues': [('prescribed',\n", + " 'clues': [('decreed',\n", " 'fixed or established especially by order or command; )'),\n", + " ('prescribed', 'fixed or established especially by order or command; )'),\n", " ('appointive', 'subject to appointment'),\n", - " ('decreed', 'fixed or established especially by order or command; )'),\n", " ('ordained', 'fixed or established especially by order or command; )')]},\n", " {'answer': 'apportioned',\n", " 'hint': 'synonyms for apportioned',\n", - " 'clues': [('parceled out', 'given out in portions'),\n", - " ('doled out', 'given out in portions'),\n", + " 'clues': [('dealt out', 'given out in portions'),\n", " ('meted out', 'given out in portions'),\n", - " ('dealt out', 'given out in portions')]},\n", + " ('parceled out', 'given out in portions'),\n", + " ('doled out', 'given out in portions')]},\n", " {'answer': 'apprehensible',\n", " 'hint': 'synonyms for apprehensible',\n", " 'clues': [('intelligible', 'capable of being apprehended or understood'),\n", - " ('understandable', 'capable of being apprehended or understood'),\n", " ('perceivable', 'capable of being apprehended or understood'),\n", - " ('graspable', 'capable of being apprehended or understood')]},\n", + " ('graspable', 'capable of being apprehended or understood'),\n", + " ('understandable', 'capable of being apprehended or understood')]},\n", " {'answer': 'approbative',\n", " 'hint': 'synonyms for approbative',\n", - " 'clues': [('approbatory', 'expressing or manifesting praise or approval'),\n", - " ('approving', 'expressing or manifesting praise or approval'),\n", + " 'clues': [('approving', 'expressing or manifesting praise or approval'),\n", + " ('plausive', 'expressing or manifesting praise or approval'),\n", " ('affirmative', 'expressing or manifesting praise or approval'),\n", - " ('plausive', 'expressing or manifesting praise or approval')]},\n", + " ('approbatory', 'expressing or manifesting praise or approval')]},\n", " {'answer': 'approbatory',\n", " 'hint': 'synonyms for approbatory',\n", - " 'clues': [('approving', 'expressing or manifesting praise or approval'),\n", + " 'clues': [('plausive', 'expressing or manifesting praise or approval'),\n", " ('approbative', 'expressing or manifesting praise or approval'),\n", " ('affirmative', 'expressing or manifesting praise or approval'),\n", - " ('plausive', 'expressing or manifesting praise or approval')]},\n", + " ('approving', 'expressing or manifesting praise or approval')]},\n", " {'answer': 'approving',\n", " 'hint': 'synonyms for approving',\n", - " 'clues': [('approbatory', 'expressing or manifesting praise or approval'),\n", - " ('plausive', 'expressing or manifesting praise or approval'),\n", + " 'clues': [('plausive', 'expressing or manifesting praise or approval'),\n", " ('approbative', 'expressing or manifesting praise or approval'),\n", - " ('affirmative', 'expressing or manifesting praise or approval')]},\n", + " ('affirmative', 'expressing or manifesting praise or approval'),\n", + " ('approbatory', 'expressing or manifesting praise or approval')]},\n", " {'answer': 'approximate',\n", " 'hint': 'synonyms for approximate',\n", - " 'clues': [('near', 'very close in resemblance'),\n", - " ('approximative', 'not quite exact or correct'),\n", - " ('close together', 'located close together'),\n", - " ('rough', 'not quite exact or correct')]},\n", + " 'clues': [('close together', 'located close together'),\n", + " ('near', 'very close in resemblance'),\n", + " ('rough', 'not quite exact or correct'),\n", + " ('approximative', 'not quite exact or correct')]},\n", " {'answer': 'appurtenant',\n", " 'hint': 'synonyms for appurtenant',\n", - " 'clues': [('auxiliary', 'furnishing added support'),\n", - " ('adjunct', 'furnishing added support'),\n", + " 'clues': [('adjunct', 'furnishing added support'),\n", " ('ancillary', 'furnishing added support'),\n", - " ('accessory', 'furnishing added support'),\n", - " ('adjuvant', 'furnishing added support')]},\n", + " ('adjuvant', 'furnishing added support'),\n", + " ('auxiliary', 'furnishing added support'),\n", + " ('accessory', 'furnishing added support')]},\n", " {'answer': 'apt',\n", " 'hint': 'synonyms for apt',\n", - " 'clues': [('clever', 'mentally quick and resourceful; ; -Bram Stoker'),\n", - " ('disposed', \"(usually followed by `to') naturally disposed toward\"),\n", - " ('given', \"(usually followed by `to') naturally disposed toward\"),\n", - " ('pertinent', 'being of striking appropriateness and pertinence'),\n", - " ('tending', \"(usually followed by `to') naturally disposed toward\"),\n", - " ('apposite', 'being of striking appropriateness and pertinence'),\n", + " 'clues': [('disposed',\n", + " \"(usually followed by `to') naturally disposed toward\"),\n", " ('minded', \"(usually followed by `to') naturally disposed toward\"),\n", + " ('tending', \"(usually followed by `to') naturally disposed toward\"),\n", + " ('clever', 'mentally quick and resourceful; ; -Bram Stoker'),\n", " ('liable',\n", - " 'at risk of or subject to experiencing something usually unpleasant')]},\n", + " 'at risk of or subject to experiencing something usually unpleasant'),\n", + " ('apposite', 'being of striking appropriateness and pertinence'),\n", + " ('pertinent', 'being of striking appropriateness and pertinence'),\n", + " ('given', \"(usually followed by `to') naturally disposed toward\")]},\n", " {'answer': 'arboreal',\n", " 'hint': 'synonyms for arboreal',\n", - " 'clues': [('dendroidal',\n", + " 'clues': [('dendroid',\n", " 'resembling a tree in form and branching structure'),\n", - " ('arboriform', 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreous', 'inhabiting or frequenting trees'),\n", - " ('arborical', 'of or relating to or formed by trees'),\n", + " ('arboresque', 'resembling a tree in form and branching structure'),\n", + " ('arborous', 'of or relating to or formed by trees'),\n", + " ('arborary', 'of or relating to or formed by trees'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", - " ('arborary', 'of or relating to or formed by trees'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", + " ('arborical', 'of or relating to or formed by trees'),\n", " ('tree-living', 'inhabiting or frequenting trees'),\n", - " ('arboresque', 'resembling a tree in form and branching structure')]},\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'arboreous',\n", " 'hint': 'synonyms for arboreous',\n", - " 'clues': [('dendroidal',\n", - " 'resembling a tree in form and branching structure'),\n", - " ('arboriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", + " 'clues': [('arboraceous', 'abounding in trees'),\n", + " ('dendroid', 'resembling a tree in form and branching structure'),\n", + " ('arboresque', 'resembling a tree in form and branching structure'),\n", + " ('arboreal', 'inhabiting or frequenting trees'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", - " ('arboraceous', 'abounding in trees'),\n", + " ('woodsy', 'abounding in trees'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", - " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", " ('tree-living', 'inhabiting or frequenting trees'),\n", - " ('arboresque', 'resembling a tree in form and branching structure'),\n", - " ('woody', 'abounding in trees')]},\n", + " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'arborescent',\n", " 'hint': 'synonyms for arborescent',\n", - " 'clues': [('dendroidal',\n", + " 'clues': [('dendroid',\n", " 'resembling a tree in form and branching structure'),\n", - " ('arboriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", + " ('arboresque', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", " ('arboreous', 'resembling a tree in form and branching structure'),\n", + " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", - " ('arboresque', 'resembling a tree in form and branching structure')]},\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'arboresque',\n", " 'hint': 'synonyms for arboresque',\n", - " 'clues': [('dendroidal',\n", + " 'clues': [('dendroid',\n", " 'resembling a tree in form and branching structure'),\n", - " ('arboriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", " ('arboreous', 'resembling a tree in form and branching structure'),\n", - " ('tree-shaped', 'resembling a tree in form and branching structure')]},\n", + " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", + " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'arboriform',\n", " 'hint': 'synonyms for arboriform',\n", - " 'clues': [('dendroidal',\n", + " 'clues': [('dendroid',\n", " 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('arboresque', 'resembling a tree in form and branching structure'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", " ('arboreous', 'resembling a tree in form and branching structure'),\n", - " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", - " ('arboresque', 'resembling a tree in form and branching structure')]},\n", + " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", + " ('tree-shaped', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'arced',\n", " 'hint': 'synonyms for arced',\n", - " 'clues': [('arcuate', 'forming or resembling an arch'),\n", + " 'clues': [('bowed', 'forming or resembling an arch'),\n", " ('arciform', 'forming or resembling an arch'),\n", - " ('arched', 'forming or resembling an arch'),\n", - " ('bowed', 'forming or resembling an arch'),\n", - " ('arching', 'forming or resembling an arch')]},\n", + " ('arcuate', 'forming or resembling an arch'),\n", + " ('arching', 'forming or resembling an arch'),\n", + " ('arched', 'forming or resembling an arch')]},\n", " {'answer': 'arch',\n", " 'hint': 'synonyms for arch',\n", - " 'clues': [('condescending',\n", + " 'clues': [('wicked', 'naughtily or annoyingly playful'),\n", + " ('condescending',\n", " '(used of behavior or attitude) characteristic of those who treat others with condescension'),\n", - " ('impish', 'naughtily or annoyingly playful'),\n", - " ('patronising',\n", + " ('patronizing',\n", " '(used of behavior or attitude) characteristic of those who treat others with condescension'),\n", + " ('pixilated', 'naughtily or annoyingly playful'),\n", + " ('implike', 'naughtily or annoyingly playful'),\n", " ('prankish', 'naughtily or annoyingly playful'),\n", - " ('wicked', 'naughtily or annoyingly playful'),\n", + " ('impish', 'naughtily or annoyingly playful'),\n", " ('mischievous', 'naughtily or annoyingly playful'),\n", - " ('implike', 'naughtily or annoyingly playful'),\n", - " ('puckish', 'naughtily or annoyingly playful'),\n", - " ('pixilated', 'naughtily or annoyingly playful')]},\n", + " ('puckish', 'naughtily or annoyingly playful')]},\n", " {'answer': 'arched',\n", " 'hint': 'synonyms for arched',\n", - " 'clues': [('arcuate', 'forming or resembling an arch'),\n", - " ('arced', 'forming or resembling an arch'),\n", + " 'clues': [('bowed', 'forming or resembling an arch'),\n", " ('arciform', 'forming or resembling an arch'),\n", - " ('bowed', 'forming or resembling an arch'),\n", - " ('arching', 'forming or resembling an arch')]},\n", + " ('arcuate', 'forming or resembling an arch'),\n", + " ('arching', 'forming or resembling an arch'),\n", + " ('arced', 'forming or resembling an arch')]},\n", " {'answer': 'arching',\n", " 'hint': 'synonyms for arching',\n", - " 'clues': [('arcuate', 'forming or resembling an arch'),\n", - " ('arced', 'forming or resembling an arch'),\n", + " 'clues': [('bowed', 'forming or resembling an arch'),\n", " ('arciform', 'forming or resembling an arch'),\n", - " ('bowed', 'forming or resembling an arch')]},\n", + " ('arcuate', 'forming or resembling an arch'),\n", + " ('arched', 'forming or resembling an arch')]},\n", " {'answer': 'arciform',\n", " 'hint': 'synonyms for arciform',\n", - " 'clues': [('arcuate', 'forming or resembling an arch'),\n", - " ('arced', 'forming or resembling an arch'),\n", - " ('bowed', 'forming or resembling an arch'),\n", - " ('arching', 'forming or resembling an arch')]},\n", + " 'clues': [('bowed', 'forming or resembling an arch'),\n", + " ('arcuate', 'forming or resembling an arch'),\n", + " ('arching', 'forming or resembling an arch'),\n", + " ('arced', 'forming or resembling an arch')]},\n", " {'answer': 'arctic',\n", " 'hint': 'synonyms for arctic',\n", - " 'clues': [('frigid', 'extremely cold'),\n", - " ('polar', 'extremely cold'),\n", - " ('north-polar', 'of or relating to the Arctic'),\n", - " ('icy', 'extremely cold'),\n", + " 'clues': [('polar', 'extremely cold'),\n", " ('glacial', 'extremely cold'),\n", - " ('gelid', 'extremely cold')]},\n", + " ('gelid', 'extremely cold'),\n", + " ('frigid', 'extremely cold'),\n", + " ('north-polar', 'of or relating to the Arctic'),\n", + " ('icy', 'extremely cold')]},\n", " {'answer': 'arcuate',\n", " 'hint': 'synonyms for arcuate',\n", - " 'clues': [('arced', 'forming or resembling an arch'),\n", + " 'clues': [('bowed', 'forming or resembling an arch'),\n", " ('arciform', 'forming or resembling an arch'),\n", - " ('bowed', 'forming or resembling an arch'),\n", - " ('arching', 'forming or resembling an arch')]},\n", + " ('arching', 'forming or resembling an arch'),\n", + " ('arched', 'forming or resembling an arch')]},\n", " {'answer': 'ardent',\n", " 'hint': 'synonyms for ardent',\n", - " 'clues': [('fervid', 'characterized by intense emotion'),\n", - " ('fervent', 'characterized by intense emotion'),\n", + " 'clues': [('warm', 'characterized by strong enthusiasm'),\n", + " ('fiery', 'characterized by intense emotion'),\n", " ('perfervid', 'characterized by intense emotion'),\n", - " ('warm', 'characterized by strong enthusiasm'),\n", + " ('impassioned', 'characterized by intense emotion'),\n", " ('torrid', 'characterized by intense emotion'),\n", - " ('fiery', 'characterized by intense emotion'),\n", - " ('impassioned', 'characterized by intense emotion')]},\n", + " ('fervid', 'characterized by intense emotion'),\n", + " ('fervent', 'characterized by intense emotion')]},\n", " {'answer': 'arduous',\n", " 'hint': 'synonyms for arduous',\n", - " 'clues': [('operose',\n", - " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('heavy',\n", - " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('gruelling',\n", + " 'clues': [('heavy',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('laborious',\n", - " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('strenuous',\n", - " 'taxing to the utmost; testing powers of endurance; ; ; - F.D.Roosevelt'),\n", " ('toilsome',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", " ('straining',\n", " 'taxing to the utmost; testing powers of endurance; ; ; - F.D.Roosevelt'),\n", - " ('punishing',\n", + " ('grueling',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('hard',\n", + " ('laborious',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", " ('backbreaking',\n", + " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", + " ('operose',\n", + " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", + " ('punishing',\n", + " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", + " ('strenuous',\n", + " 'taxing to the utmost; testing powers of endurance; ; ; - F.D.Roosevelt'),\n", + " ('hard',\n", " 'characterized by effort to the point of exhaustion; especially physical effort')]},\n", " {'answer': 'argus-eyed',\n", " 'hint': 'synonyms for argus-eyed',\n", - " 'clues': [('keen-sighted', 'having very keen vision'),\n", - " ('wakeful',\n", + " 'clues': [('open-eyed',\n", " 'carefully observant or attentive; on the lookout for possible danger'),\n", " ('lynx-eyed', 'having very keen vision'),\n", - " ('sharp-sighted', 'having very keen vision'),\n", - " ('hawk-eyed', 'having very keen vision'),\n", - " ('quick-sighted', 'having very keen vision'),\n", - " ('open-eyed',\n", + " ('keen-sighted', 'having very keen vision'),\n", + " ('wakeful',\n", " 'carefully observant or attentive; on the lookout for possible danger'),\n", + " ('sharp-eyed', 'having very keen vision'),\n", + " ('quick-sighted', 'having very keen vision'),\n", " ('vigilant',\n", " 'carefully observant or attentive; on the lookout for possible danger'),\n", - " ('sharp-eyed', 'having very keen vision')]},\n", + " ('sharp-sighted', 'having very keen vision'),\n", + " ('hawk-eyed', 'having very keen vision')]},\n", " {'answer': 'aristocratic',\n", " 'hint': 'synonyms for aristocratic',\n", - " 'clues': [('patrician',\n", - " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('aristocratical',\n", + " 'clues': [('aristocratical',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", " ('blue', 'belonging to or characteristic of the nobility or aristocracy'),\n", + " ('blue-blooded',\n", + " 'belonging to or characteristic of the nobility or aristocracy'),\n", " ('gentle',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('blue-blooded',\n", + " ('patrician',\n", " 'belonging to or characteristic of the nobility or aristocracy')]},\n", " {'answer': 'aristocratical',\n", " 'hint': 'synonyms for aristocratical',\n", - " 'clues': [('patrician',\n", + " 'clues': [('aristocratic',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", " ('blue', 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('gentle',\n", + " ('blue-blooded',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('aristocratic',\n", + " ('gentle',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('blue-blooded',\n", + " ('patrician',\n", " 'belonging to or characteristic of the nobility or aristocracy')]},\n", " {'answer': 'around_the_bend',\n", " 'hint': 'synonyms for around the bend',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'aroused',\n", " 'hint': 'synonyms for aroused',\n", " 'clues': [('stimulated', 'emotionally aroused'),\n", - " ('ruttish', 'feeling great sexual desire'),\n", - " ('randy', 'feeling great sexual desire'),\n", - " ('wound up', 'brought to a state of great tension'),\n", " ('stirred', 'emotionally aroused'),\n", - " ('excited', '(of persons) excessively affected by emotion'),\n", - " ('steamy', 'feeling great sexual desire'),\n", " ('turned on', 'feeling great sexual desire'),\n", + " ('stirred up', 'emotionally aroused'),\n", " ('horny', 'feeling great sexual desire'),\n", - " ('ablaze',\n", - " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n", " ('worked up', '(of persons) excessively affected by emotion'),\n", - " ('stirred up', 'emotionally aroused'),\n", + " ('steamy', 'feeling great sexual desire'),\n", " ('emotional', '(of persons) excessively affected by emotion'),\n", + " ('excited', '(of persons) excessively affected by emotion'),\n", " ('aflame',\n", - " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker')]},\n", + " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n", + " ('wound up', 'brought to a state of great tension'),\n", + " ('ruttish', 'feeling great sexual desire'),\n", + " ('ablaze',\n", + " 'keenly excited (especially sexually) or indicating excitement; - Bram Stoker'),\n", + " ('randy', 'feeling great sexual desire')]},\n", " {'answer': 'arrant',\n", " 'hint': 'synonyms for arrant',\n", - " 'clues': [('sodding',\n", + " 'clues': [('double-dyed',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('pure',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('stark',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('utter',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('consummate',\n", + " ('unadulterated',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('complete',\n", + " ('thoroughgoing',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('perfect',\n", + " ('utter',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('everlasting',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('staring',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('thoroughgoing',\n", + " ('stark',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('gross',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('double-dyed',\n", + " ('consummate',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('unadulterated',\n", + " ('sodding',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('complete',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('perfect',\n", " 'without qualification; used informally as (often pejorative) intensifiers')]},\n", " {'answer': 'arthritic',\n", " 'hint': 'synonyms for arthritic',\n", " 'clues': [('creaky', 'of or pertaining to arthritis'),\n", - " ('rheumy', 'of or pertaining to arthritis'),\n", + " ('rheumatoid', 'of or pertaining to arthritis'),\n", " ('rheumatic', 'of or pertaining to arthritis'),\n", - " ('rheumatoid', 'of or pertaining to arthritis')]},\n", + " ('rheumy', 'of or pertaining to arthritis')]},\n", " {'answer': 'artificial',\n", " 'hint': 'synonyms for artificial',\n", - " 'clues': [('hokey', 'artificially formal'),\n", + " 'clues': [('contrived', 'artificially formal'),\n", " ('stilted', 'artificially formal'),\n", - " ('contrived', 'artificially formal'),\n", - " ('unreal', 'contrived by art rather than nature')]},\n", + " ('unreal', 'contrived by art rather than nature'),\n", + " ('hokey', 'artificially formal')]},\n", " {'answer': 'ashen',\n", " 'hint': 'synonyms for ashen',\n", - " 'clues': [('white',\n", + " 'clues': [('livid',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", " ('bloodless',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", - " ('livid',\n", + " ('white',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", " ('blanched',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley')]},\n", " {'answer': 'asinine',\n", " 'hint': 'synonyms for asinine',\n", - " 'clues': [('fatuous', 'devoid of intelligence'),\n", + " 'clues': [('inane', 'devoid of intelligence'),\n", + " ('fatuous', 'devoid of intelligence'),\n", " ('mindless', 'devoid of intelligence'),\n", - " ('inane', 'devoid of intelligence'),\n", " ('vacuous', 'devoid of intelligence')]},\n", " {'answer': 'askance',\n", " 'hint': 'synonyms for askance',\n", - " 'clues': [('squinty',\n", + " 'clues': [('sidelong',\n", + " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", + " ('squinty',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", " ('askant',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", " ('squint-eyed',\n", - " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", - " ('sidelong',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen')]},\n", " {'answer': 'askant',\n", " 'hint': 'synonyms for askant',\n", - " 'clues': [('squinty',\n", + " 'clues': [('sidelong',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", - " ('squint-eyed',\n", + " ('squinty',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", - " ('sidelong',\n", + " ('squint-eyed',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", " ('askance',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen')]},\n", " {'answer': 'askew',\n", " 'hint': 'synonyms for askew',\n", - " 'clues': [('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('awry', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " 'clues': [('awry', 'turned or twisted toward one side; - G.K.Chesterton'),\n", " ('cockeyed', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton')]},\n", + " ('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton')]},\n", " {'answer': 'aslant',\n", " 'hint': 'synonyms for aslant',\n", - " 'clues': [('aslope', 'having an oblique or slanted direction'),\n", - " ('sloped', 'having an oblique or slanted direction'),\n", + " 'clues': [('diagonal', 'having an oblique or slanted direction'),\n", + " ('aslope', 'having an oblique or slanted direction'),\n", " ('slanted', 'having an oblique or slanted direction'),\n", - " ('diagonal', 'having an oblique or slanted direction'),\n", - " ('slanting', 'having an oblique or slanted direction'),\n", - " ('sloping', 'having an oblique or slanted direction')]},\n", + " ('sloped', 'having an oblique or slanted direction'),\n", + " ('sloping', 'having an oblique or slanted direction'),\n", + " ('slanting', 'having an oblique or slanted direction')]},\n", " {'answer': 'asleep',\n", " 'hint': 'synonyms for asleep',\n", - " 'clues': [('deceased', 'dead'),\n", + " 'clues': [('at rest', 'dead'),\n", " ('gone', 'dead'),\n", - " ('at peace', 'dead'),\n", + " ('deceased', 'dead'),\n", " ('benumbed', 'lacking sensation'),\n", " ('numb', 'lacking sensation'),\n", - " ('at rest', 'dead'),\n", + " ('at peace', 'dead'),\n", " ('departed', 'dead')]},\n", " {'answer': 'aslope',\n", " 'hint': 'synonyms for aslope',\n", - " 'clues': [('sloped', 'having an oblique or slanted direction'),\n", + " 'clues': [('diagonal', 'having an oblique or slanted direction'),\n", " ('slanted', 'having an oblique or slanted direction'),\n", - " ('diagonal', 'having an oblique or slanted direction'),\n", - " ('slanting', 'having an oblique or slanted direction'),\n", " ('aslant', 'having an oblique or slanted direction'),\n", - " ('sloping', 'having an oblique or slanted direction')]},\n", + " ('sloping', 'having an oblique or slanted direction'),\n", + " ('slanting', 'having an oblique or slanted direction'),\n", + " ('sloped', 'having an oblique or slanted direction')]},\n", " {'answer': 'asquint',\n", " 'hint': 'synonyms for asquint',\n", - " 'clues': [('squinty',\n", + " 'clues': [('sidelong',\n", + " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", + " ('squinty',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", " ('askant',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", " ('squint-eyed',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", - " ('sidelong',\n", - " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen'),\n", " ('askance',\n", " '(used especially of glances) directed to one side with or as if with doubt or suspicion or envy; - Elizabeth Bowen')]},\n", " {'answer': 'assorted',\n", " 'hint': 'synonyms for assorted',\n", - " 'clues': [('motley',\n", + " 'clues': [('mixed',\n", " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards'),\n", - " ('various',\n", - " 'of many different kinds purposefully arranged but lacking any uniformity'),\n", - " ('sundry',\n", + " ('motley',\n", " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards'),\n", " ('miscellaneous',\n", " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards'),\n", - " ('mixed',\n", + " ('various',\n", + " 'of many different kinds purposefully arranged but lacking any uniformity'),\n", + " ('sundry',\n", " 'consisting of a haphazard assortment of different kinds; ; ; ; ; ; - I.A.Richards')]},\n", " {'answer': 'assumed',\n", " 'hint': 'synonyms for assumed',\n", - " 'clues': [('fictitious', 'adopted in order to deceive'),\n", + " 'clues': [('pretended', 'adopted in order to deceive'),\n", " ('sham', 'adopted in order to deceive'),\n", " ('false', 'adopted in order to deceive'),\n", - " ('pretended', 'adopted in order to deceive'),\n", - " ('fictive', 'adopted in order to deceive'),\n", - " ('put on', 'adopted in order to deceive')]},\n", + " ('put on', 'adopted in order to deceive'),\n", + " ('fictitious', 'adopted in order to deceive'),\n", + " ('fictive', 'adopted in order to deceive')]},\n", " {'answer': 'astonied',\n", " 'hint': 'synonyms for astonied',\n", " 'clues': [('amazed',\n", " 'filled with the emotional impact of overwhelming surprise or shock'),\n", - " ('astounded',\n", - " 'filled with the emotional impact of overwhelming surprise or shock'),\n", " ('astonished',\n", " 'filled with the emotional impact of overwhelming surprise or shock'),\n", + " ('astounded',\n", + " 'filled with the emotional impact of overwhelming surprise or shock'),\n", " ('stunned',\n", " 'filled with the emotional impact of overwhelming surprise or shock')]},\n", " {'answer': 'astonished',\n", @@ -36931,17 +36962,17 @@ " 'filled with the emotional impact of overwhelming surprise or shock'),\n", " ('astounded',\n", " 'filled with the emotional impact of overwhelming surprise or shock'),\n", - " ('astonied',\n", - " 'filled with the emotional impact of overwhelming surprise or shock'),\n", " ('stunned',\n", + " 'filled with the emotional impact of overwhelming surprise or shock'),\n", + " ('astonied',\n", " 'filled with the emotional impact of overwhelming surprise or shock')]},\n", " {'answer': 'astonishing',\n", " 'hint': 'synonyms for astonishing',\n", - " 'clues': [('staggering',\n", + " 'clues': [('stupefying',\n", " 'so surprisingly impressive as to stun or overwhelm'),\n", - " ('amazing', 'surprising greatly'),\n", - " ('stupefying', 'so surprisingly impressive as to stun or overwhelm'),\n", - " ('astounding', 'so surprisingly impressive as to stun or overwhelm')]},\n", + " ('astounding', 'so surprisingly impressive as to stun or overwhelm'),\n", + " ('staggering', 'so surprisingly impressive as to stun or overwhelm'),\n", + " ('amazing', 'surprising greatly')]},\n", " {'answer': 'astounding',\n", " 'hint': 'synonyms for astounding',\n", " 'clues': [('staggering',\n", @@ -36951,29 +36982,31 @@ " ('stupefying', 'so surprisingly impressive as to stun or overwhelm')]},\n", " {'answer': 'at_hand',\n", " 'hint': 'synonyms for at hand',\n", - " 'clues': [('close at hand', 'close in time; about to occur'),\n", - " ('imminent', 'close in time; about to occur'),\n", + " 'clues': [('impendent', 'close in time; about to occur'),\n", + " ('close at hand', 'close in time; about to occur'),\n", " ('impending', 'close in time; about to occur'),\n", - " ('impendent', 'close in time; about to occur')]},\n", + " ('imminent', 'close in time; about to occur')]},\n", " {'answer': 'at_peace',\n", " 'hint': 'synonyms for at peace',\n", - " 'clues': [('departed', 'dead'),\n", - " ('deceased', 'dead'),\n", + " 'clues': [('at rest', 'dead'),\n", " ('gone', 'dead'),\n", - " ('at rest', 'dead'),\n", - " ('asleep', 'dead')]},\n", + " ('deceased', 'dead'),\n", + " ('asleep', 'dead'),\n", + " ('departed', 'dead')]},\n", " {'answer': 'at_rest',\n", " 'hint': 'synonyms for at rest',\n", - " 'clues': [('departed', 'dead'),\n", - " ('deceased', 'dead'),\n", + " 'clues': [('deceased', 'dead'),\n", " ('gone', 'dead'),\n", " ('at peace', 'dead'),\n", - " ('asleep', 'dead')]},\n", + " ('asleep', 'dead'),\n", + " ('departed', 'dead')]},\n", " {'answer': 'at_sea',\n", " 'hint': 'synonyms for at sea',\n", - " 'clues': [('bewildered',\n", + " 'clues': [('bemused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('mixed-up',\n", + " ('befuddled',\n", + " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('confused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('mazed',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", @@ -36981,107 +37014,105 @@ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('lost',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bemused',\n", + " ('mixed-up',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('confounded',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('confused',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('befuddled',\n", + " ('bewildered',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n", " {'answer': 'atilt',\n", " 'hint': 'synonyms for atilt',\n", - " 'clues': [('leaning',\n", + " 'clues': [('tipped',\n", " 'departing or being caused to depart from the true vertical or horizontal'),\n", " ('canted',\n", " 'departing or being caused to depart from the true vertical or horizontal'),\n", - " ('tipped',\n", - " 'departing or being caused to depart from the true vertical or horizontal'),\n", " ('tilted',\n", + " 'departing or being caused to depart from the true vertical or horizontal'),\n", + " ('leaning',\n", " 'departing or being caused to depart from the true vertical or horizontal')]},\n", " {'answer': 'atrocious',\n", " 'hint': 'synonyms for atrocious',\n", - " 'clues': [('painful', 'exceptionally bad or displeasing'),\n", - " ('frightful', 'provoking horror; ; ; ; - Winston Churchill'),\n", - " ('dreadful', 'exceptionally bad or displeasing'),\n", - " ('ugly', 'provoking horror; ; ; ; - Winston Churchill'),\n", + " 'clues': [('grievous', 'shockingly brutal or cruel'),\n", " ('unspeakable', 'exceptionally bad or displeasing'),\n", - " ('horrifying', 'provoking horror; ; ; ; - Winston Churchill'),\n", " ('awful', 'exceptionally bad or displeasing'),\n", - " ('monstrous', 'shockingly brutal or cruel'),\n", " ('horrible', 'provoking horror; ; ; ; - Winston Churchill'),\n", - " ('terrible', 'exceptionally bad or displeasing'),\n", " ('abominable', 'exceptionally bad or displeasing'),\n", - " ('grievous', 'shockingly brutal or cruel'),\n", - " ('flagitious', 'shockingly brutal or cruel')]},\n", + " ('flagitious', 'shockingly brutal or cruel'),\n", + " ('frightful', 'provoking horror; ; ; ; - Winston Churchill'),\n", + " ('terrible', 'exceptionally bad or displeasing'),\n", + " ('ugly', 'provoking horror; ; ; ; - Winston Churchill'),\n", + " ('painful', 'exceptionally bad or displeasing'),\n", + " ('monstrous', 'shockingly brutal or cruel'),\n", + " ('horrifying', 'provoking horror; ; ; ; - Winston Churchill'),\n", + " ('dreadful', 'exceptionally bad or displeasing')]},\n", " {'answer': 'attendant',\n", " 'hint': 'synonyms for attendant',\n", - " 'clues': [('resultant', 'following or accompanying as a consequence'),\n", - " ('sequent', 'following or accompanying as a consequence'),\n", - " ('consequent', 'following or accompanying as a consequence'),\n", + " 'clues': [('consequent', 'following or accompanying as a consequence'),\n", " ('concomitant', 'following or accompanying as a consequence'),\n", - " ('incidental', 'following or accompanying as a consequence'),\n", + " ('resultant', 'following or accompanying as a consequence'),\n", " ('ensuant', 'following or accompanying as a consequence'),\n", - " ('accompanying', 'following or accompanying as a consequence')]},\n", + " ('accompanying', 'following or accompanying as a consequence'),\n", + " ('incidental', 'following or accompanying as a consequence'),\n", + " ('sequent', 'following or accompanying as a consequence')]},\n", " {'answer': 'attired',\n", " 'hint': 'synonyms for attired',\n", - " 'clues': [('robed',\n", - " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('appareled',\n", - " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('habilimented',\n", + " 'clues': [('dressed',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", " ('garmented',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", " ('garbed',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('dressed',\n", + " ('robed',\n", + " 'dressed or clothed especially in fine attire; often used in combination'),\n", + " ('habilimented',\n", + " 'dressed or clothed especially in fine attire; often used in combination'),\n", + " ('appareled',\n", " 'dressed or clothed especially in fine attire; often used in combination')]},\n", " {'answer': 'audacious',\n", " 'hint': 'synonyms for audacious',\n", - " 'clues': [('brave', 'invulnerable to fear or intimidation'),\n", - " ('brazen',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " 'clues': [('intrepid', 'invulnerable to fear or intimidation'),\n", + " ('daring', 'disposed to venture or take risks'),\n", + " ('dauntless', 'invulnerable to fear or intimidation'),\n", + " ('unfearing', 'invulnerable to fear or intimidation'),\n", " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('hardy', 'invulnerable to fear or intimidation'),\n", - " ('fearless', 'invulnerable to fear or intimidation'),\n", - " ('venturous', 'disposed to venture or take risks'),\n", - " ('daring', 'disposed to venture or take risks'),\n", - " ('brassy',\n", + " ('bald-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('bodacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('barefaced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('venturous', 'disposed to venture or take risks'),\n", " ('brazen-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('venturesome', 'disposed to venture or take risks'),\n", - " ('dauntless', 'invulnerable to fear or intimidation'),\n", - " ('bald-faced',\n", + " ('hardy', 'invulnerable to fear or intimidation'),\n", + " ('fearless', 'invulnerable to fear or intimidation'),\n", + " ('brassy',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('unfearing', 'invulnerable to fear or intimidation'),\n", - " ('intrepid', 'invulnerable to fear or intimidation')]},\n", + " ('brazen',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('brave', 'invulnerable to fear or intimidation')]},\n", " {'answer': 'august',\n", " 'hint': 'synonyms for august',\n", - " 'clues': [('grand', 'of or befitting a lord'),\n", - " ('revered', 'profoundly honored'),\n", + " 'clues': [('revered', 'profoundly honored'),\n", " ('lordly', 'of or befitting a lord'),\n", + " ('grand', 'of or befitting a lord'),\n", " ('venerable', 'profoundly honored')]},\n", " {'answer': 'aureate',\n", " 'hint': 'synonyms for aureate',\n", - " 'clues': [('gilded', 'having the deep slightly brownish color of gold'),\n", + " 'clues': [('gold', 'having the deep slightly brownish color of gold'),\n", " ('flamboyant', 'elaborately or excessively ornamented'),\n", - " ('florid', 'elaborately or excessively ornamented'),\n", - " ('gold', 'having the deep slightly brownish color of gold'),\n", + " ('gilded', 'having the deep slightly brownish color of gold'),\n", + " ('gilt', 'having the deep slightly brownish color of gold'),\n", " ('golden', 'having the deep slightly brownish color of gold'),\n", - " ('gilt', 'having the deep slightly brownish color of gold')]},\n", + " ('florid', 'elaborately or excessively ornamented')]},\n", " {'answer': 'austere',\n", " 'hint': 'synonyms for austere',\n", - " 'clues': [('severe', 'severely simple'),\n", + " 'clues': [('stark', 'severely simple'),\n", " ('stern', 'severely simple'),\n", " ('ascetical', 'practicing great self-denial; - William James'),\n", - " ('stark', 'severely simple'),\n", + " ('severe', 'severely simple'),\n", " ('spartan', 'practicing great self-denial; - William James')]},\n", " {'answer': 'authentic',\n", " 'hint': 'synonyms for authentic',\n", @@ -37091,67 +37122,67 @@ " ('reliable', 'conforming to fact and therefore worthy of belief')]},\n", " {'answer': 'authoritarian',\n", " 'hint': 'synonyms for authoritarian',\n", - " 'clues': [('tyrannical',\n", + " 'clues': [('despotic',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('dictatorial', 'expecting unquestioning obedience'),\n", - " ('despotic',\n", + " ('tyrannic',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", " ('autocratic',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('overbearing', 'expecting unquestioning obedience')]},\n", + " ('overbearing', 'expecting unquestioning obedience'),\n", + " ('dictatorial',\n", + " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty')]},\n", " {'answer': 'authoritative',\n", " 'hint': 'synonyms for authoritative',\n", - " 'clues': [('definitive', 'of recognized authority or excellence'),\n", - " ('classic', 'of recognized authority or excellence'),\n", - " ('important', 'having authority or ascendancy or influence'),\n", - " ('authorized', 'sanctioned by established authority')]},\n", + " 'clues': [('authorized', 'sanctioned by established authority'),\n", + " ('definitive', 'of recognized authority or excellence'),\n", + " ('classical', 'of recognized authority or excellence'),\n", + " ('important', 'having authority or ascendancy or influence')]},\n", " {'answer': 'autochthonal',\n", " 'hint': 'synonyms for autochthonal',\n", - " 'clues': [('indigenous', 'originating where it is found'),\n", - " ('endemic', 'originating where it is found'),\n", + " 'clues': [('endemic', 'originating where it is found'),\n", " ('autochthonous', 'originating where it is found'),\n", - " ('autochthonic', 'originating where it is found')]},\n", + " ('autochthonic', 'originating where it is found'),\n", + " ('indigenous', 'originating where it is found')]},\n", " {'answer': 'autochthonic',\n", " 'hint': 'synonyms for autochthonic',\n", - " 'clues': [('indigenous', 'originating where it is found'),\n", - " ('endemic', 'originating where it is found'),\n", + " 'clues': [('autochthonal', 'originating where it is found'),\n", " ('autochthonous', 'originating where it is found'),\n", - " ('autochthonal', 'originating where it is found')]},\n", + " ('endemic', 'originating where it is found'),\n", + " ('indigenous', 'originating where it is found')]},\n", " {'answer': 'autochthonous',\n", " 'hint': 'synonyms for autochthonous',\n", - " 'clues': [('indigenous', 'originating where it is found'),\n", - " ('endemic', 'originating where it is found'),\n", + " 'clues': [('autochthonal', 'originating where it is found'),\n", + " ('indigenous', 'originating where it is found'),\n", " ('autochthonic', 'originating where it is found'),\n", - " ('autochthonal', 'originating where it is found')]},\n", + " ('endemic', 'originating where it is found')]},\n", " {'answer': 'autocratic',\n", " 'hint': 'synonyms for autocratic',\n", - " 'clues': [('despotic',\n", + " 'clues': [('high-and-mighty',\n", + " 'offensively self-assured or given to exercising usually unwarranted power'),\n", + " ('despotic',\n", + " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", + " ('tyrannic',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", " ('dictatorial',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('dominating',\n", - " 'offensively self-assured or given to exercising usually unwarranted power'),\n", " ('authoritarian',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('bossy',\n", + " ('dominating',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('tyrannical',\n", - " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('high-and-mighty',\n", + " ('peremptory',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('magisterial',\n", + " ('bossy',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('peremptory',\n", + " ('magisterial',\n", " 'offensively self-assured or given to exercising usually unwarranted power')]},\n", " {'answer': 'automatic',\n", " 'hint': 'synonyms for automatic',\n", - " 'clues': [('machinelike',\n", - " 'resembling the unthinking functioning of a machine'),\n", - " ('robotic', 'resembling the unthinking functioning of a machine'),\n", - " ('reflexive', 'without volition or conscious control'),\n", - " ('robotlike', 'resembling the unthinking functioning of a machine'),\n", + " 'clues': [('reflexive', 'without volition or conscious control'),\n", + " ('automatonlike', 'resembling the unthinking functioning of a machine'),\n", " ('reflex', 'without volition or conscious control'),\n", - " ('automatonlike', 'resembling the unthinking functioning of a machine')]},\n", + " ('machinelike', 'resembling the unthinking functioning of a machine'),\n", + " ('robotic', 'resembling the unthinking functioning of a machine'),\n", + " ('robotlike', 'resembling the unthinking functioning of a machine')]},\n", " {'answer': 'automatonlike',\n", " 'hint': 'synonyms for automatonlike',\n", " 'clues': [('machinelike',\n", @@ -37161,189 +37192,189 @@ " ('robotlike', 'resembling the unthinking functioning of a machine')]},\n", " {'answer': 'autonomous',\n", " 'hint': 'synonyms for autonomous',\n", - " 'clues': [('self-governing',\n", + " 'clues': [('sovereign',\n", " '(of political bodies) not controlled by outside forces'),\n", - " ('sovereign', '(of political bodies) not controlled by outside forces'),\n", " ('self-reliant',\n", " '(of persons) free from external control and constraint in e.g. action and judgment'),\n", " ('self-directed',\n", " '(of persons) free from external control and constraint in e.g. action and judgment'),\n", + " ('self-governing',\n", + " '(of political bodies) not controlled by outside forces'),\n", " ('independent',\n", " '(of political bodies) not controlled by outside forces')]},\n", " {'answer': 'autumn-blooming',\n", " 'hint': 'synonyms for autumn-blooming',\n", - " 'clues': [('late-flowering', 'of plants that bloom during the autumn'),\n", - " ('fall-flowering', 'of plants that bloom during the autumn'),\n", + " 'clues': [('autumn-flowering', 'of plants that bloom during the autumn'),\n", " ('late-blooming', 'of plants that bloom during the autumn'),\n", - " ('autumn-flowering', 'of plants that bloom during the autumn'),\n", + " ('late-flowering', 'of plants that bloom during the autumn'),\n", + " ('fall-flowering', 'of plants that bloom during the autumn'),\n", " ('fall-blooming', 'of plants that bloom during the autumn')]},\n", " {'answer': 'autumn-flowering',\n", " 'hint': 'synonyms for autumn-flowering',\n", - " 'clues': [('late-flowering', 'of plants that bloom during the autumn'),\n", - " ('autumn-blooming', 'of plants that bloom during the autumn'),\n", + " 'clues': [('late-blooming', 'of plants that bloom during the autumn'),\n", + " ('late-flowering', 'of plants that bloom during the autumn'),\n", " ('fall-flowering', 'of plants that bloom during the autumn'),\n", - " ('late-blooming', 'of plants that bloom during the autumn'),\n", + " ('autumn-blooming', 'of plants that bloom during the autumn'),\n", " ('fall-blooming', 'of plants that bloom during the autumn')]},\n", " {'answer': 'auxiliary',\n", " 'hint': 'synonyms for auxiliary',\n", - " 'clues': [('supplemental', 'functioning in a supporting capacity'),\n", + " 'clues': [('adjunct', 'furnishing added support'),\n", + " ('subsidiary', 'functioning in a supporting capacity'),\n", + " ('adjuvant', 'furnishing added support'),\n", " ('accessory', 'furnishing added support'),\n", + " ('supplemental', 'functioning in a supporting capacity'),\n", " ('appurtenant', 'furnishing added support'),\n", - " ('adjunct', 'furnishing added support'),\n", - " ('subsidiary', 'functioning in a supporting capacity'),\n", - " ('ancillary', 'furnishing added support'),\n", - " ('adjuvant', 'furnishing added support')]},\n", + " ('ancillary', 'furnishing added support')]},\n", " {'answer': 'avaricious',\n", " 'hint': 'synonyms for avaricious',\n", - " 'clues': [('prehensile', 'immoderately desirous of acquiring e.g. wealth'),\n", + " 'clues': [('covetous', 'immoderately desirous of acquiring e.g. wealth'),\n", + " ('prehensile', 'immoderately desirous of acquiring e.g. wealth'),\n", " ('greedy', 'immoderately desirous of acquiring e.g. wealth'),\n", - " ('covetous', 'immoderately desirous of acquiring e.g. wealth'),\n", - " ('grabby', 'immoderately desirous of acquiring e.g. wealth'),\n", - " ('grasping', 'immoderately desirous of acquiring e.g. wealth')]},\n", + " ('grasping', 'immoderately desirous of acquiring e.g. wealth'),\n", + " ('grabby', 'immoderately desirous of acquiring e.g. wealth')]},\n", " {'answer': 'average',\n", " 'hint': 'synonyms for average',\n", - " 'clues': [('intermediate', 'around the middle of a scale of evaluation'),\n", + " 'clues': [('mean',\n", + " 'approximating the statistical norm or average or expected value'),\n", + " ('ordinary',\n", + " 'lacking special distinction, rank, or status; commonly encountered'),\n", " ('fair', 'lacking exceptional quality or ability'),\n", " ('mediocre', 'lacking exceptional quality or ability'),\n", - " ('mean',\n", - " 'approximating the statistical norm or average or expected value'),\n", + " ('middling', 'lacking exceptional quality or ability'),\n", " ('modal',\n", " 'relating to or constituting the most frequent value in a distribution'),\n", - " ('middling', 'lacking exceptional quality or ability'),\n", - " ('median',\n", - " 'relating to or constituting the middle value of an ordered set of values (or the average of the middle two in a set with an even number of values)'),\n", " ('medium', 'around the middle of a scale of evaluation'),\n", - " ('ordinary',\n", - " 'lacking special distinction, rank, or status; commonly encountered')]},\n", + " ('intermediate', 'around the middle of a scale of evaluation'),\n", + " ('median',\n", + " 'relating to or constituting the middle value of an ordered set of values (or the average of the middle two in a set with an even number of values)')]},\n", " {'answer': 'avid',\n", " 'hint': 'synonyms for avid',\n", " 'clues': [('devouring',\n", " \"(often followed by `for') ardently or excessively desirous\"),\n", - " ('esurient',\n", - " \"(often followed by `for') ardently or excessively desirous\"),\n", " ('zealous', 'marked by active interest and enthusiasm'),\n", - " ('greedy',\n", + " ('greedy', \"(often followed by `for') ardently or excessively desirous\"),\n", + " ('esurient',\n", " \"(often followed by `for') ardently or excessively desirous\")]},\n", " {'answer': 'awash',\n", " 'hint': 'synonyms for awash',\n", - " 'clues': [('inundated', 'covered with water'),\n", - " ('flooded', 'covered with water'),\n", - " ('overflowing', 'covered with water'),\n", - " ('afloat', 'covered with water')]},\n", + " 'clues': [('flooded', 'covered with water'),\n", + " ('afloat', 'covered with water'),\n", + " ('inundated', 'covered with water'),\n", + " ('overflowing', 'covered with water')]},\n", " {'answer': 'awe-inspiring',\n", " 'hint': 'synonyms for awe-inspiring',\n", - " 'clues': [('awing',\n", + " 'clues': [('awful',\n", " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", + " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", " {'answer': 'awesome',\n", " 'hint': 'synonyms for awesome',\n", - " 'clues': [('awing',\n", + " 'clues': [('awful',\n", " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", " ('awe-inspiring',\n", - " 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", + " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", " {'answer': 'awful',\n", " 'hint': 'synonyms for awful',\n", " 'clues': [('fearful', 'causing fear or dread or terror'),\n", - " ('painful', 'exceptionally bad or displeasing'),\n", - " ('awed', 'inspired by a feeling of fearful wonderment or reverence'),\n", - " ('direful', 'causing fear or dread or terror'),\n", - " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('unspeakable', 'exceptionally bad or displeasing'),\n", - " ('dreaded', 'causing fear or dread or terror'),\n", - " ('horrific', 'causing fear or dread or terror'),\n", - " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", " ('dire', 'causing fear or dread or terror'),\n", - " ('frightening', 'causing fear or dread or terror'),\n", - " ('fearsome', 'causing fear or dread or terror'),\n", + " ('nasty',\n", + " 'offensive or even (of persons) malicious; ; ; ; ; ; - Ezra Pound'),\n", + " ('abominable', 'exceptionally bad or displeasing'),\n", + " ('awing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", " ('dread', 'causing fear or dread or terror'),\n", - " ('horrendous', 'causing fear or dread or terror'),\n", - " ('tremendous', 'extreme in degree or extent or amount or impact'),\n", - " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('frightening', 'causing fear or dread or terror'),\n", + " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('horrific', 'causing fear or dread or terror'),\n", " ('atrocious', 'exceptionally bad or displeasing'),\n", + " ('frightful', 'extreme in degree or extent or amount or impact'),\n", " ('terrible', 'extreme in degree or extent or amount or impact'),\n", + " ('horrendous', 'causing fear or dread or terror'),\n", + " ('unspeakable', 'exceptionally bad or displeasing'),\n", + " ('direful', 'causing fear or dread or terror'),\n", " ('awe-inspiring',\n", " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('dreadful', 'exceptionally bad or displeasing'),\n", - " ('frightful', 'extreme in degree or extent or amount or impact'),\n", - " ('abominable', 'exceptionally bad or displeasing'),\n", - " ('nasty',\n", - " 'offensive or even (of persons) malicious; ; ; ; ; ; - Ezra Pound')]},\n", + " ('awed', 'inspired by a feeling of fearful wonderment or reverence'),\n", + " ('fearsome', 'causing fear or dread or terror'),\n", + " ('tremendous', 'extreme in degree or extent or amount or impact'),\n", + " ('dreaded', 'causing fear or dread or terror'),\n", + " ('dreadful', 'causing fear or dread or terror'),\n", + " ('painful', 'exceptionally bad or displeasing'),\n", + " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", " {'answer': 'awing',\n", " 'hint': 'synonyms for awing',\n", - " 'clues': [('awesome',\n", + " 'clues': [('awful',\n", " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", - " ('awful', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", " ('awe-inspiring',\n", - " 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", + " 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('awesome', 'inspiring awe or admiration or wonder; ; ; ; - Melville'),\n", + " ('amazing', 'inspiring awe or admiration or wonder; ; ; ; - Melville')]},\n", " {'answer': 'awkward',\n", " 'hint': 'synonyms for awkward',\n", - " 'clues': [('sticky',\n", - " 'hard to deal with; especially causing pain or embarrassment'),\n", - " ('clumsy', 'difficult to handle or manage especially because of shape'),\n", + " 'clues': [('ungainly',\n", + " 'difficult to handle or manage especially because of shape'),\n", + " ('cumbersome', 'not elegant or graceful in expression'),\n", + " ('inept', 'not elegant or graceful in expression'),\n", " ('ill at ease',\n", " 'socially uncomfortable; unsure and constrained in manner'),\n", + " ('clumsy', 'difficult to handle or manage especially because of shape'),\n", " ('uneasy', 'socially uncomfortable; unsure and constrained in manner'),\n", - " ('inapt', 'not elegant or graceful in expression'),\n", - " ('unenviable',\n", + " ('embarrassing',\n", " 'hard to deal with; especially causing pain or embarrassment'),\n", - " ('cumbersome', 'not elegant or graceful in expression'),\n", - " ('ill-chosen', 'not elegant or graceful in expression'),\n", " ('bunglesome',\n", " 'difficult to handle or manage especially because of shape'),\n", - " ('inept', 'not elegant or graceful in expression'),\n", - " ('embarrassing',\n", + " ('ill-chosen', 'not elegant or graceful in expression'),\n", + " ('unenviable',\n", " 'hard to deal with; especially causing pain or embarrassment'),\n", - " ('ungainly',\n", - " 'difficult to handle or manage especially because of shape')]},\n", + " ('sticky', 'hard to deal with; especially causing pain or embarrassment'),\n", + " ('inapt', 'not elegant or graceful in expression')]},\n", " {'answer': 'awry',\n", " 'hint': 'synonyms for awry',\n", - " 'clues': [('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " 'clues': [('cockeyed',\n", + " 'turned or twisted toward one side; - G.K.Chesterton'),\n", " ('haywire', 'not functioning properly'),\n", - " ('wrong', 'not functioning properly'),\n", - " ('cockeyed', 'turned or twisted toward one side; - G.K.Chesterton'),\n", " ('askew', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('amiss', 'not functioning properly'),\n", - " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton')]},\n", + " ('wrong', 'not functioning properly'),\n", + " ('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('amiss', 'not functioning properly')]},\n", " {'answer': 'axiomatic',\n", " 'hint': 'synonyms for axiomatic',\n", - " 'clues': [('aphoristic', 'containing aphorisms or maxims'),\n", - " ('postulational',\n", - " 'of or relating to or derived from axioms; ; - S.S.Stevens'),\n", - " ('axiomatical',\n", + " 'clues': [('axiomatical',\n", " 'of or relating to or derived from axioms; ; - S.S.Stevens'),\n", + " ('aphoristic', 'containing aphorisms or maxims'),\n", + " ('self-evident', 'evident without proof or argument'),\n", " ('taken for granted', 'evident without proof or argument'),\n", - " ('self-evident', 'evident without proof or argument')]},\n", + " ('postulational',\n", + " 'of or relating to or derived from axioms; ; - S.S.Stevens')]},\n", " {'answer': 'bacchanal',\n", " 'hint': 'synonyms for bacchanal',\n", - " 'clues': [('bacchanalian', 'used of riotously drunken merrymaking'),\n", + " 'clues': [('bacchic', 'used of riotously drunken merrymaking'),\n", + " ('bacchanalian', 'used of riotously drunken merrymaking'),\n", " ('carousing', 'used of riotously drunken merrymaking'),\n", - " ('bacchic', 'used of riotously drunken merrymaking'),\n", " ('orgiastic', 'used of riotously drunken merrymaking')]},\n", " {'answer': 'bacchanalian',\n", " 'hint': 'synonyms for bacchanalian',\n", " 'clues': [('bacchanal', 'used of riotously drunken merrymaking'),\n", - " ('carousing', 'used of riotously drunken merrymaking'),\n", " ('bacchic', 'used of riotously drunken merrymaking'),\n", + " ('carousing', 'used of riotously drunken merrymaking'),\n", " ('orgiastic', 'used of riotously drunken merrymaking')]},\n", " {'answer': 'backbreaking',\n", " 'hint': 'synonyms for backbreaking',\n", - " 'clues': [('arduous',\n", + " 'clues': [('heavy',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('operose',\n", + " ('toilsome',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('heavy',\n", + " ('arduous',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('gruelling',\n", + " ('grueling',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", " ('laborious',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", - " ('toilsome',\n", + " ('operose',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", " ('punishing',\n", " 'characterized by effort to the point of exhaustion; especially physical effort'),\n", @@ -37351,789 +37382,798 @@ " 'characterized by effort to the point of exhaustion; especially physical effort')]},\n", " {'answer': 'bad',\n", " 'hint': 'synonyms for bad',\n", - " 'clues': [('defective', 'not working properly'),\n", - " ('unsound', 'physically unsound or diseased'),\n", - " ('tough',\n", - " \"feeling physical discomfort or pain (`tough' is occasionally used colloquially for `bad')\"),\n", + " 'clues': [('unfit', 'physically unsound or diseased'),\n", " ('uncollectible', 'not capable of being collected'),\n", + " ('unsound', 'physically unsound or diseased'),\n", + " ('spoiled', '(of foodstuffs) not in an edible or usable condition'),\n", + " ('big', 'very intense'),\n", " ('speculative', 'not financially safe or secure'),\n", - " ('high-risk', 'not financially safe or secure'),\n", " ('forged', 'reproduced fraudulently'),\n", - " ('unfit', 'physically unsound or diseased'),\n", + " ('defective', 'not working properly'),\n", + " ('high-risk', 'not financially safe or secure'),\n", + " ('spoilt', '(of foodstuffs) not in an edible or usable condition'),\n", " ('regretful',\n", " 'feeling or expressing regret or sorrow or a sense of loss over something done or undone'),\n", - " ('big', 'very intense'),\n", - " ('sorry',\n", - " 'feeling or expressing regret or sorrow or a sense of loss over something done or undone'),\n", - " ('spoilt', '(of foodstuffs) not in an edible or usable condition'),\n", + " ('tough',\n", + " \"feeling physical discomfort or pain (`tough' is occasionally used colloquially for `bad')\"),\n", " ('risky', 'not financially safe or secure'),\n", - " ('spoiled', '(of foodstuffs) not in an edible or usable condition')]},\n", + " ('sorry',\n", + " 'feeling or expressing regret or sorrow or a sense of loss over something done or undone')]},\n", " {'answer': 'bad-mannered',\n", " 'hint': 'synonyms for bad-mannered',\n", - " 'clues': [('unmannered', 'socially incorrect in behavior'),\n", - " ('rude', 'socially incorrect in behavior'),\n", - " ('unmannerly', 'socially incorrect in behavior'),\n", - " ('ill-mannered', 'socially incorrect in behavior')]},\n", + " 'clues': [('rude', 'socially incorrect in behavior'),\n", + " ('unmannered', 'socially incorrect in behavior'),\n", + " ('ill-mannered', 'socially incorrect in behavior'),\n", + " ('unmannerly', 'socially incorrect in behavior')]},\n", " {'answer': 'bad-tempered',\n", " 'hint': 'synonyms for bad-tempered',\n", - " 'clues': [('ill-tempered', 'annoyed and irritable'),\n", - " ('crabbed', 'annoyed and irritable'),\n", + " 'clues': [('crabbed', 'annoyed and irritable'),\n", + " ('fussy', 'annoyed and irritable'),\n", " ('grouchy', 'annoyed and irritable'),\n", " ('cross', 'annoyed and irritable'),\n", - " ('fussy', 'annoyed and irritable'),\n", " ('grumpy', 'annoyed and irritable'),\n", - " ('crabby', 'annoyed and irritable')]},\n", + " ('crabby', 'annoyed and irritable'),\n", + " ('ill-tempered', 'annoyed and irritable')]},\n", " {'answer': 'baffled',\n", " 'hint': 'synonyms for baffled',\n", - " 'clues': [('at sea',\n", + " 'clues': [('bemused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bewildered',\n", + " ('befuddled',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('mixed-up',\n", + " ('confused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('mazed',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('lost',\n", + " ('mixed-up',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bemused',\n", + " ('lost',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('confounded',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('confused',\n", + " ('at sea',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('befuddled',\n", + " ('bewildered',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n", " {'answer': 'baffling',\n", " 'hint': 'synonyms for baffling',\n", - " 'clues': [('tough',\n", + " 'clues': [('problematical',\n", " 'making great mental demands; hard to comprehend or solve or believe'),\n", - " ('problematic',\n", + " ('elusive',\n", " 'making great mental demands; hard to comprehend or solve or believe'),\n", " ('knotty',\n", " 'making great mental demands; hard to comprehend or solve or believe'),\n", - " ('elusive',\n", + " ('tough',\n", " 'making great mental demands; hard to comprehend or solve or believe')]},\n", " {'answer': 'baked',\n", " 'hint': 'synonyms for baked',\n", - " 'clues': [('adust', 'dried out by heat or excessive exposure to sunlight'),\n", - " ('parched', 'dried out by heat or excessive exposure to sunlight'),\n", + " 'clues': [('sunbaked',\n", + " 'dried out by heat or excessive exposure to sunlight'),\n", + " ('adust', 'dried out by heat or excessive exposure to sunlight'),\n", " ('scorched', 'dried out by heat or excessive exposure to sunlight'),\n", - " ('sunbaked', 'dried out by heat or excessive exposure to sunlight')]},\n", + " ('parched', 'dried out by heat or excessive exposure to sunlight')]},\n", " {'answer': 'bald',\n", " 'hint': 'synonyms for bald',\n", - " 'clues': [('bald-pated', 'lacking hair on all or most of the scalp'),\n", - " ('bald-headed', 'lacking hair on all or most of the scalp'),\n", - " ('barefaced', 'with no effort to conceal'),\n", + " 'clues': [('denuded', 'without the natural or usual covering'),\n", + " ('bald-pated', 'lacking hair on all or most of the scalp'),\n", " ('denudate', 'without the natural or usual covering'),\n", - " ('denuded', 'without the natural or usual covering')]},\n", + " ('bald-headed', 'lacking hair on all or most of the scalp'),\n", + " ('barefaced', 'with no effort to conceal')]},\n", " {'answer': 'bald-faced',\n", " 'hint': 'synonyms for bald-faced',\n", - " 'clues': [('bodacious',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brazen',\n", + " 'clues': [('brazen-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('barefaced',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brazen-faced',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('audacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('brassy',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('bodacious',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('brazen',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('barefaced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n", " {'answer': 'baleful',\n", " 'hint': 'synonyms for baleful',\n", - " 'clues': [('menacing',\n", + " 'clues': [('minacious',\n", + " 'threatening or foreshadowing evil or tragic developments'),\n", + " ('threatening',\n", " 'threatening or foreshadowing evil or tragic developments'),\n", " ('baneful', 'deadly or sinister'),\n", " ('forbidding',\n", " 'threatening or foreshadowing evil or tragic developments'),\n", + " ('menacing', 'threatening or foreshadowing evil or tragic developments'),\n", " ('minatory', 'threatening or foreshadowing evil or tragic developments'),\n", " ('ominous', 'threatening or foreshadowing evil or tragic developments'),\n", - " ('sinister', 'threatening or foreshadowing evil or tragic developments'),\n", - " ('threatening',\n", - " 'threatening or foreshadowing evil or tragic developments'),\n", - " ('minacious',\n", + " ('sinister',\n", " 'threatening or foreshadowing evil or tragic developments')]},\n", " {'answer': 'ball-shaped',\n", " 'hint': 'synonyms for ball-shaped',\n", - " 'clues': [('spheric',\n", + " 'clues': [('global',\n", " 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n", - " ('global', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n", - " ('globose', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n", " ('globular', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n", - " ('orbicular', 'having the shape of a sphere or ball; ; ; - Zane Grey')]},\n", + " ('globose', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n", + " ('orbicular', 'having the shape of a sphere or ball; ; ; - Zane Grey'),\n", + " ('spheric', 'having the shape of a sphere or ball; ; ; - Zane Grey')]},\n", " {'answer': 'bally',\n", " 'hint': 'synonyms for bally',\n", - " 'clues': [('crashing', 'informal intensifiers'),\n", - " ('flaming', 'informal intensifiers'),\n", + " 'clues': [('blinking', 'informal intensifiers'),\n", + " ('blooming', 'informal intensifiers'),\n", " ('bloody', 'informal intensifiers'),\n", - " ('fucking', 'informal intensifiers'),\n", - " ('blinking', 'informal intensifiers'),\n", - " ('blooming', 'informal intensifiers')]},\n", + " ('flaming', 'informal intensifiers'),\n", + " ('crashing', 'informal intensifiers'),\n", + " ('fucking', 'informal intensifiers')]},\n", " {'answer': 'balmy',\n", " 'hint': 'synonyms for balmy',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", + " ('soft', 'mild and pleasant'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", - " ('mild', 'mild and pleasant'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('mild', 'mild and pleasant'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('soft', 'mild and pleasant'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'banal',\n", " 'hint': 'synonyms for banal',\n", - " 'clues': [('hackneyed',\n", - " 'repeated too often; overfamiliar through overuse'),\n", + " 'clues': [('trite', 'repeated too often; overfamiliar through overuse'),\n", + " ('stock', 'repeated too often; overfamiliar through overuse'),\n", + " ('timeworn', 'repeated too often; overfamiliar through overuse'),\n", " ('shopworn', 'repeated too often; overfamiliar through overuse'),\n", " ('old-hat', 'repeated too often; overfamiliar through overuse'),\n", - " ('commonplace', 'repeated too often; overfamiliar through overuse'),\n", - " ('well-worn', 'repeated too often; overfamiliar through overuse'),\n", - " ('timeworn', 'repeated too often; overfamiliar through overuse'),\n", + " ('hackneyed', 'repeated too often; overfamiliar through overuse'),\n", " ('threadbare', 'repeated too often; overfamiliar through overuse'),\n", - " ('trite', 'repeated too often; overfamiliar through overuse'),\n", - " ('stock', 'repeated too often; overfamiliar through overuse'),\n", - " ('tired', 'repeated too often; overfamiliar through overuse')]},\n", + " ('tired', 'repeated too often; overfamiliar through overuse'),\n", + " ('well-worn', 'repeated too often; overfamiliar through overuse'),\n", + " ('commonplace', 'repeated too often; overfamiliar through overuse')]},\n", " {'answer': 'bandy',\n", " 'hint': 'synonyms for bandy',\n", " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n", - " ('bowlegged', 'have legs that curve outward at the knees'),\n", " ('bowed', 'have legs that curve outward at the knees'),\n", + " ('bowlegged', 'have legs that curve outward at the knees'),\n", " ('bandy-legged', 'have legs that curve outward at the knees')]},\n", " {'answer': 'bandy-legged',\n", " 'hint': 'synonyms for bandy-legged',\n", " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n", + " ('bowed', 'have legs that curve outward at the knees'),\n", " ('bandy', 'have legs that curve outward at the knees'),\n", - " ('bowlegged', 'have legs that curve outward at the knees'),\n", - " ('bowed', 'have legs that curve outward at the knees')]},\n", + " ('bowlegged', 'have legs that curve outward at the knees')]},\n", " {'answer': 'baneful',\n", " 'hint': 'synonyms for baneful',\n", " 'clues': [('pernicious', 'exceedingly harmful'),\n", - " ('deadly', 'exceedingly harmful'),\n", + " ('baleful', 'deadly or sinister'),\n", " ('pestilent', 'exceedingly harmful'),\n", - " ('baleful', 'deadly or sinister')]},\n", + " ('deadly', 'exceedingly harmful')]},\n", " {'answer': 'bang-up',\n", " 'hint': 'synonyms for bang-up',\n", - " 'clues': [('smashing', 'very good'),\n", + " 'clues': [('nifty', 'very good'),\n", + " ('great', 'very good'),\n", " ('not bad', 'very good'),\n", + " ('cracking', 'very good'),\n", + " ('smashing', 'very good'),\n", + " ('groovy', 'very good'),\n", " ('swell', 'very good'),\n", + " ('neat', 'very good'),\n", + " ('bully', 'very good'),\n", + " ('peachy', 'very good'),\n", " ('dandy', 'very good'),\n", " ('keen', 'very good'),\n", - " ('nifty', 'very good'),\n", - " ('peachy', 'very good'),\n", - " ('cracking', 'very good'),\n", - " ('slap-up', 'very good'),\n", " ('corking', 'very good'),\n", - " ('bully', 'very good'),\n", - " ('neat', 'very good'),\n", - " ('groovy', 'very good'),\n", - " ('great', 'very good')]},\n", + " ('slap-up', 'very good')]},\n", " {'answer': 'banging',\n", " 'hint': 'synonyms for banging',\n", " 'clues': [('walloping', '(used informally) very large'),\n", - " ('humongous', '(used informally) very large'),\n", + " ('thumping', '(used informally) very large'),\n", " ('whopping', '(used informally) very large'),\n", - " ('thumping', '(used informally) very large')]},\n", + " ('humongous', '(used informally) very large')]},\n", " {'answer': 'bantam',\n", " 'hint': 'synonyms for bantam',\n", - " 'clues': [('diminutive', 'very small'),\n", + " 'clues': [('petite', 'very small'),\n", + " ('midget', 'very small'),\n", + " ('tiny', 'very small'),\n", " ('lilliputian', 'very small'),\n", " ('flyspeck', 'very small'),\n", - " ('petite', 'very small'),\n", - " ('tiny', 'very small'),\n", - " ('midget', 'very small')]},\n", + " ('diminutive', 'very small')]},\n", " {'answer': 'barbarian',\n", " 'hint': 'synonyms for barbarian',\n", " 'clues': [('barbaric',\n", " 'without civilizing influences; ; ; ; -Margaret Meade'),\n", - " ('wild', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", - " ('uncivilized', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", - " ('savage', 'without civilizing influences; ; ; ; -Margaret Meade')]},\n", + " ('uncivilised', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", + " ('savage', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", + " ('wild', 'without civilizing influences; ; ; ; -Margaret Meade')]},\n", " {'answer': 'barbaric',\n", " 'hint': 'synonyms for barbaric',\n", - " 'clues': [('wild', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", - " ('uncivilized', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", + " 'clues': [('uncivilised',\n", + " 'without civilizing influences; ; ; ; -Margaret Meade'),\n", " ('barbarian', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", - " ('savage', 'without civilizing influences; ; ; ; -Margaret Meade')]},\n", + " ('savage', 'without civilizing influences; ; ; ; -Margaret Meade'),\n", + " ('wild', 'without civilizing influences; ; ; ; -Margaret Meade')]},\n", " {'answer': 'barbarous',\n", " 'hint': 'synonyms for barbarous',\n", " 'clues': [('savage',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", " ('cruel',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('fell',\n", - " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('brutal',\n", + " ('vicious',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", " ('roughshod',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('vicious',\n", + " ('brutal',\n", + " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", + " ('fell',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering')]},\n", " {'answer': 'barbed',\n", " 'hint': 'synonyms for barbed',\n", - " 'clues': [('thorny',\n", + " 'clues': [('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('biting', 'capable of wounding'),\n", " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('pungent', 'capable of wounding'),\n", " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('nipping', 'capable of wounding'),\n", " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burred',\n", + " ('bristly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('setose',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('bristled',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('burry',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('biting', 'capable of wounding'),\n", " ('mordacious', 'capable of wounding'),\n", - " ('pungent', 'capable of wounding')]},\n", + " ('thorny',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'barbellate',\n", " 'hint': 'synonyms for barbellate',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('thorny',\n", + " ('bristled',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", + " ('burry',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('prickly',\n", + " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burred',\n", + " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", + " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", + " ('thorny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briery',\n", + " ('bristly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'bare',\n", " 'hint': 'synonyms for bare',\n", - " 'clues': [('unsheathed', 'not having a protective covering'),\n", - " ('barren', 'providing no shelter or sustenance'),\n", + " 'clues': [('unembellished', 'lacking embellishment or ornamentation'),\n", + " ('unsheathed', 'not having a protective covering'),\n", " ('stark', 'providing no shelter or sustenance'),\n", - " ('stripped', 'having everything extraneous removed including contents'),\n", + " ('mere', 'apart from anything else; without additions or modifications'),\n", " ('scanty', 'lacking in amplitude or quantity'),\n", " ('spare', 'lacking embellishment or ornamentation'),\n", - " ('au naturel', 'completely unclothed'),\n", + " ('barren', 'providing no shelter or sustenance'),\n", + " ('desolate', 'providing no shelter or sustenance'),\n", " ('naked', 'completely unclothed'),\n", - " ('unornamented', 'lacking embellishment or ornamentation'),\n", - " ('unembellished', 'lacking embellishment or ornamentation'),\n", + " ('unfinished', 'lacking a surface finish such as paint'),\n", + " ('au naturel', 'completely unclothed'),\n", " ('simple',\n", " 'apart from anything else; without additions or modifications'),\n", - " ('nude', 'completely unclothed'),\n", - " ('desolate', 'providing no shelter or sustenance'),\n", + " ('stripped', 'having everything extraneous removed including contents'),\n", " ('plain', 'lacking embellishment or ornamentation'),\n", + " ('nude', 'completely unclothed'),\n", " ('bleak', 'providing no shelter or sustenance'),\n", - " ('mere', 'apart from anything else; without additions or modifications'),\n", " ('marginal', 'just barely adequate or within a lower limit'),\n", - " ('unfinished', 'lacking a surface finish such as paint')]},\n", + " ('unornamented', 'lacking embellishment or ornamentation')]},\n", " {'answer': 'bare-ass',\n", " 'hint': 'synonyms for bare-ass',\n", - " 'clues': [('raw', '(used informally) completely unclothed'),\n", + " 'clues': [('in the raw', '(used informally) completely unclothed'),\n", " ('naked as a jaybird', '(used informally) completely unclothed'),\n", " ('peeled', '(used informally) completely unclothed'),\n", - " ('bare-assed', '(used informally) completely unclothed'),\n", - " ('in the buff', '(used informally) completely unclothed'),\n", + " ('raw', '(used informally) completely unclothed'),\n", + " ('stark naked', '(used informally) completely unclothed'),\n", " ('in the altogether', '(used informally) completely unclothed'),\n", - " ('in the raw', '(used informally) completely unclothed'),\n", - " ('stark naked', '(used informally) completely unclothed')]},\n", + " ('in the buff', '(used informally) completely unclothed'),\n", + " ('bare-assed', '(used informally) completely unclothed')]},\n", " {'answer': 'bare-assed',\n", " 'hint': 'synonyms for bare-assed',\n", - " 'clues': [('raw', '(used informally) completely unclothed'),\n", + " 'clues': [('bare-ass', '(used informally) completely unclothed'),\n", + " ('in the raw', '(used informally) completely unclothed'),\n", " ('naked as a jaybird', '(used informally) completely unclothed'),\n", " ('peeled', '(used informally) completely unclothed'),\n", - " ('in the buff', '(used informally) completely unclothed'),\n", - " ('bare-ass', '(used informally) completely unclothed'),\n", + " ('raw', '(used informally) completely unclothed'),\n", + " ('stark naked', '(used informally) completely unclothed'),\n", " ('in the altogether', '(used informally) completely unclothed'),\n", - " ('in the raw', '(used informally) completely unclothed'),\n", - " ('stark naked', '(used informally) completely unclothed')]},\n", + " ('in the buff', '(used informally) completely unclothed')]},\n", " {'answer': 'barefaced',\n", " 'hint': 'synonyms for barefaced',\n", " 'clues': [('bald', 'with no effort to conceal'),\n", - " ('brazen',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('audacious',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brassy',\n", + " ('bald-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('bodacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('brazen-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('bald-faced',\n", + " ('audacious',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('brassy',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('brazen',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n", " {'answer': 'barmy',\n", " 'hint': 'synonyms for barmy',\n", - " 'clues': [('zestful', 'marked by spirited enjoyment'),\n", - " ('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('zesty', 'marked by spirited enjoyment'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", + " ('zestful', 'marked by spirited enjoyment'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", - " ('yeasty', 'marked by spirited enjoyment'),\n", + " ('zesty', 'marked by spirited enjoyment'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('yeasty', 'marked by spirited enjoyment'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'barren',\n", " 'hint': 'synonyms for barren',\n", " 'clues': [('devoid', 'completely wanting or lacking'),\n", - " ('stark', 'providing no shelter or sustenance'),\n", " ('desolate', 'providing no shelter or sustenance'),\n", - " ('destitute', 'completely wanting or lacking'),\n", - " ('bleak', 'providing no shelter or sustenance'),\n", + " ('bare', 'providing no shelter or sustenance'),\n", " ('innocent', 'completely wanting or lacking'),\n", + " ('stark', 'providing no shelter or sustenance'),\n", " ('free', 'completely wanting or lacking'),\n", - " ('bare', 'providing no shelter or sustenance')]},\n", + " ('destitute', 'completely wanting or lacking'),\n", + " ('bleak', 'providing no shelter or sustenance')]},\n", " {'answer': 'base',\n", " 'hint': 'synonyms for base',\n", - " 'clues': [('meanspirited',\n", - " 'having or showing an ignoble lack of honor or morality; - Edmund Burke; ; - Shakespeare'),\n", - " ('humble', \"of low birth or station (`base' is archaic in this sense)\"),\n", - " ('lowly', \"of low birth or station (`base' is archaic in this sense)\"),\n", + " 'clues': [('humble',\n", + " \"of low birth or station (`base' is archaic in this sense)\"),\n", " ('immoral', 'not adhering to ethical or moral principles'),\n", + " ('meanspirited',\n", + " 'having or showing an ignoble lack of honor or morality; - Edmund Burke; ; - Shakespeare'),\n", " ('baseborn', \"of low birth or station (`base' is archaic in this sense)\"),\n", " ('mean',\n", " 'having or showing an ignoble lack of honor or morality; - Edmund Burke; ; - Shakespeare'),\n", + " ('lowly', \"of low birth or station (`base' is archaic in this sense)\"),\n", " ('basal', 'serving as or forming a base')]},\n", " {'answer': 'baseless',\n", " 'hint': 'synonyms for baseless',\n", - " 'clues': [('groundless', 'without a basis in reason or fact'),\n", - " ('unfounded', 'without a basis in reason or fact'),\n", + " 'clues': [('unfounded', 'without a basis in reason or fact'),\n", + " ('groundless', 'without a basis in reason or fact'),\n", " ('wild', 'without a basis in reason or fact'),\n", - " ('idle', 'without a basis in reason or fact'),\n", - " ('unwarranted', 'without a basis in reason or fact')]},\n", + " ('unwarranted', 'without a basis in reason or fact'),\n", + " ('idle', 'without a basis in reason or fact')]},\n", " {'answer': 'bastardly',\n", " 'hint': 'synonyms for bastardly',\n", - " 'clues': [('spurious', 'born out of wedlock; - E.A.Freeman'),\n", - " ('mean', 'of no value or worth'),\n", + " 'clues': [('misbegotten', 'born out of wedlock; - E.A.Freeman'),\n", " ('misbegot', 'born out of wedlock; - E.A.Freeman'),\n", - " ('misbegotten', 'born out of wedlock; - E.A.Freeman')]},\n", + " ('spurious', 'born out of wedlock; - E.A.Freeman'),\n", + " ('mean', 'of no value or worth')]},\n", " {'answer': 'bathetic',\n", " 'hint': 'synonyms for bathetic',\n", " 'clues': [('drippy', 'effusively or insincerely emotional'),\n", - " ('slushy', 'effusively or insincerely emotional'),\n", - " ('soupy', 'effusively or insincerely emotional'),\n", " ('mawkish', 'effusively or insincerely emotional'),\n", - " ('mushy', 'effusively or insincerely emotional'),\n", - " ('sentimental', 'effusively or insincerely emotional'),\n", - " ('soppy', 'effusively or insincerely emotional'),\n", + " ('slushy', 'effusively or insincerely emotional'),\n", + " ('kitschy', 'effusively or insincerely emotional'),\n", " ('hokey', 'effusively or insincerely emotional'),\n", - " ('schmalzy', 'effusively or insincerely emotional'),\n", + " ('schmaltzy', 'effusively or insincerely emotional'),\n", " ('maudlin', 'effusively or insincerely emotional'),\n", - " ('kitschy', 'effusively or insincerely emotional')]},\n", + " ('sentimental', 'effusively or insincerely emotional'),\n", + " ('soupy', 'effusively or insincerely emotional'),\n", + " ('mushy', 'effusively or insincerely emotional'),\n", + " ('soppy', 'effusively or insincerely emotional')]},\n", " {'answer': 'bats',\n", " 'hint': 'synonyms for bats',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'batty',\n", " 'hint': 'synonyms for batty',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'beady',\n", " 'hint': 'synonyms for beady',\n", - " 'clues': [('beadlike',\n", - " 'small and round and shiny like a shiny bead or button'),\n", - " ('jewelled', 'covered with beads or jewels or sequins'),\n", - " ('buttony', 'small and round and shiny like a shiny bead or button'),\n", - " ('spangled', 'covered with beads or jewels or sequins'),\n", + " 'clues': [('spangled', 'covered with beads or jewels or sequins'),\n", + " ('gemmed', 'covered with beads or jewels or sequins'),\n", " ('buttonlike', 'small and round and shiny like a shiny bead or button'),\n", - " ('sequined', 'covered with beads or jewels or sequins'),\n", + " ('beadlike', 'small and round and shiny like a shiny bead or button'),\n", " ('spangly', 'covered with beads or jewels or sequins'),\n", - " ('gemmed', 'covered with beads or jewels or sequins')]},\n", + " ('jeweled', 'covered with beads or jewels or sequins'),\n", + " ('sequined', 'covered with beads or jewels or sequins'),\n", + " ('buttony', 'small and round and shiny like a shiny bead or button')]},\n", " {'answer': 'beaming',\n", " 'hint': 'synonyms for beaming',\n", - " 'clues': [('effulgent', 'radiating or as if radiating light'),\n", - " ('glad', 'cheerful and bright'),\n", + " 'clues': [('glad', 'cheerful and bright'),\n", " ('radiant', 'radiating or as if radiating light'),\n", + " ('refulgent', 'radiating or as if radiating light'),\n", " ('beamy', 'radiating or as if radiating light')]},\n", " {'answer': 'beastly',\n", " 'hint': 'synonyms for beastly',\n", - " 'clues': [('god-awful', 'very unpleasant'),\n", + " 'clues': [('brutish',\n", + " 'resembling a beast; showing lack of human sensibility'),\n", + " ('hellish', 'very unpleasant'),\n", " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n", + " ('god-awful', 'very unpleasant'),\n", " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brute', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n", - " ('hellish', 'very unpleasant')]},\n", + " ('brute', 'resembling a beast; showing lack of human sensibility')]},\n", " {'answer': 'beatific',\n", " 'hint': 'synonyms for beatific',\n", - " 'clues': [('angelical',\n", - " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('saintlike',\n", + " 'clues': [('saintlike',\n", " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", - " ('saintly',\n", + " ('angelical',\n", " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", " ('sainted',\n", + " 'marked by utter benignity; resembling or befitting an angel or saint'),\n", + " ('saintly',\n", " 'marked by utter benignity; resembling or befitting an angel or saint')]},\n", " {'answer': 'becoming',\n", " 'hint': 'synonyms for becoming',\n", " 'clues': [('comme il faut', 'according with custom or propriety'),\n", " ('comely', 'according with custom or propriety'),\n", - " ('seemly', 'according with custom or propriety'),\n", " ('decorous', 'according with custom or propriety'),\n", - " ('decent', 'according with custom or propriety')]},\n", + " ('decent', 'according with custom or propriety'),\n", + " ('seemly', 'according with custom or propriety')]},\n", " {'answer': 'bedraggled',\n", " 'hint': 'synonyms for bedraggled',\n", - " 'clues': [('ramshackle', 'in deplorable condition'),\n", - " ('broken-down', 'in deplorable condition'),\n", - " ('dilapidated', 'in deplorable condition'),\n", - " ('derelict', 'in deplorable condition'),\n", + " 'clues': [('derelict', 'in deplorable condition'),\n", " ('tumble-down', 'in deplorable condition'),\n", " ('tatterdemalion', 'in deplorable condition'),\n", - " ('draggled', 'limp and soiled as if dragged in the mud')]},\n", + " ('broken-down', 'in deplorable condition'),\n", + " ('draggled', 'limp and soiled as if dragged in the mud'),\n", + " ('ramshackle', 'in deplorable condition'),\n", + " ('dilapidated', 'in deplorable condition')]},\n", " {'answer': 'beefy',\n", " 'hint': 'synonyms for beefy',\n", " 'clues': [('strapping', 'muscular and heavily built'),\n", + " ('burly', 'muscular and heavily built'),\n", " ('buirdly', 'muscular and heavily built'),\n", - " ('husky', 'muscular and heavily built'),\n", - " ('burly', 'muscular and heavily built')]},\n", + " ('husky', 'muscular and heavily built')]},\n", " {'answer': 'befuddled',\n", " 'hint': 'synonyms for befuddled',\n", - " 'clues': [('at sea',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bewildered',\n", + " 'clues': [('wooly', 'confused and vague; used especially of thinking'),\n", + " ('wooly-minded', 'confused and vague; used especially of thinking'),\n", + " ('befogged', 'stupefied by alcoholic drink'),\n", + " ('bemused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('wooly', 'confused and vague; used especially of thinking'),\n", - " ('mixed-up',\n", + " ('muddled', 'confused and vague; used especially of thinking'),\n", + " ('addled', 'confused and vague; used especially of thinking'),\n", + " ('confused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('mazed',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('addled', 'confused and vague; used especially of thinking'),\n", - " ('wooly-minded', 'confused and vague; used especially of thinking'),\n", + " ('muzzy', 'confused and vague; used especially of thinking'),\n", " ('baffled',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('lost',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bemused',\n", + " ('mixed-up',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('muzzy', 'confused and vague; used especially of thinking'),\n", " ('confounded',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('confused',\n", + " ('at sea',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('muddled', 'confused and vague; used especially of thinking'),\n", - " ('woolly-headed', 'confused and vague; used especially of thinking'),\n", - " ('befogged', 'stupefied by alcoholic drink')]},\n", + " ('bewildered',\n", + " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('woolly-headed', 'confused and vague; used especially of thinking')]},\n", " {'answer': 'begrimed',\n", " 'hint': 'synonyms for begrimed',\n", - " 'clues': [('raunchy', 'thickly covered with ingrained dirt or soot'),\n", - " ('grubby', 'thickly covered with ingrained dirt or soot'),\n", + " 'clues': [('dingy', 'thickly covered with ingrained dirt or soot'),\n", + " ('raunchy', 'thickly covered with ingrained dirt or soot'),\n", + " ('grimy', 'thickly covered with ingrained dirt or soot'),\n", " ('grungy', 'thickly covered with ingrained dirt or soot'),\n", - " ('dingy', 'thickly covered with ingrained dirt or soot'),\n", - " ('grimy', 'thickly covered with ingrained dirt or soot')]},\n", + " ('grubby', 'thickly covered with ingrained dirt or soot')]},\n", " {'answer': 'beguiled',\n", " 'hint': 'synonyms for beguiled',\n", - " 'clues': [('entranced', 'filled with wonder and delight'),\n", + " 'clues': [('charmed', 'filled with wonder and delight'),\n", + " ('entranced', 'filled with wonder and delight'),\n", " ('enthralled', 'filled with wonder and delight'),\n", " ('delighted', 'filled with wonder and delight'),\n", - " ('captivated', 'filled with wonder and delight'),\n", - " ('charmed', 'filled with wonder and delight')]},\n", + " ('captivated', 'filled with wonder and delight')]},\n", " {'answer': 'belittling',\n", " 'hint': 'synonyms for belittling',\n", - " 'clues': [('deprecating', 'tending to diminish or disparage'),\n", - " ('deprecative', 'tending to diminish or disparage'),\n", + " 'clues': [('deprecative', 'tending to diminish or disparage'),\n", " ('deprecatory', 'tending to diminish or disparage'),\n", - " ('slighting', 'tending to diminish or disparage')]},\n", + " ('slighting', 'tending to diminish or disparage'),\n", + " ('deprecating', 'tending to diminish or disparage')]},\n", " {'answer': 'bellied',\n", " 'hint': 'synonyms for bellied',\n", " 'clues': [('bulging', 'curving outward'),\n", " ('bulgy', 'curving outward'),\n", - " ('protuberant', 'curving outward'),\n", " ('bellying', 'curving outward'),\n", - " ('bulbous', 'curving outward')]},\n", + " ('bulbous', 'curving outward'),\n", + " ('protuberant', 'curving outward')]},\n", " {'answer': 'belligerent',\n", " 'hint': 'synonyms for belligerent',\n", - " 'clues': [('militant', 'engaged in war'),\n", - " ('warring', 'engaged in war'),\n", + " 'clues': [('warring', 'engaged in war'),\n", + " ('aggressive', 'characteristic of an enemy or one eager to fight'),\n", " ('war-ridden', 'engaged in war'),\n", - " ('aggressive', 'characteristic of an enemy or one eager to fight')]},\n", + " ('militant', 'engaged in war')]},\n", " {'answer': 'bellying',\n", " 'hint': 'synonyms for bellying',\n", " 'clues': [('bulging', 'curving outward'),\n", " ('bulgy', 'curving outward'),\n", + " ('bulbous', 'curving outward'),\n", " ('bellied', 'curving outward'),\n", - " ('protuberant', 'curving outward'),\n", - " ('bulbous', 'curving outward')]},\n", + " ('protuberant', 'curving outward')]},\n", " {'answer': 'bemused',\n", " 'hint': 'synonyms for bemused',\n", " 'clues': [('deep in thought', 'deeply absorbed in thought'),\n", - " ('at sea',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('lost', 'deeply absorbed in thought'),\n", " ('preoccupied', 'deeply absorbed in thought'),\n", - " ('bewildered',\n", + " ('befuddled',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('mixed-up',\n", + " ('confused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('mazed',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('lost', 'deeply absorbed in thought'),\n", " ('baffled',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('mixed-up',\n", + " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('confounded',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('confused',\n", + " ('at sea',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('befuddled',\n", + " ('bewildered',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n", " {'answer': 'benevolent',\n", " 'hint': 'synonyms for benevolent',\n", " 'clues': [('charitable',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", - " ('freehearted', 'generous in providing aid to others'),\n", - " ('philanthropic', 'generous in assistance to the poor'),\n", - " ('eleemosynary', 'generous in assistance to the poor'),\n", - " ('large-hearted',\n", - " 'showing or motivated by sympathy and understanding and generosity'),\n", - " ('beneficent', 'generous in assistance to the poor'),\n", " ('kindly',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", " ('sympathetic',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", + " ('beneficent', 'generous in assistance to the poor'),\n", + " ('large-hearted',\n", + " 'showing or motivated by sympathy and understanding and generosity'),\n", + " ('eleemosynary', 'generous in assistance to the poor'),\n", " ('good-hearted',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", " ('openhearted',\n", - " 'showing or motivated by sympathy and understanding and generosity')]},\n", + " 'showing or motivated by sympathy and understanding and generosity'),\n", + " ('freehearted', 'generous in providing aid to others'),\n", + " ('philanthropic', 'generous in assistance to the poor')]},\n", " {'answer': 'bent',\n", " 'hint': 'synonyms for bent',\n", - " 'clues': [('dead set', 'fixed in your purpose'),\n", + " 'clues': [('bent on', 'fixed in your purpose'),\n", " ('dented', 'of metal e.g.'),\n", - " ('bent on', 'fixed in your purpose'),\n", " ('bended', 'used of the back and knees; stooped'),\n", " ('out to', 'fixed in your purpose'),\n", - " ('crumpled', 'of metal e.g.')]},\n", + " ('crumpled', 'of metal e.g.'),\n", + " ('dead set', 'fixed in your purpose')]},\n", " {'answer': 'bereaved',\n", " 'hint': 'synonyms for bereaved',\n", - " 'clues': [('grieving', 'sorrowful through loss or deprivation'),\n", - " ('grief-stricken', 'sorrowful through loss or deprivation'),\n", - " ('bereft', 'sorrowful through loss or deprivation'),\n", + " 'clues': [('mourning', 'sorrowful through loss or deprivation'),\n", " ('sorrowing', 'sorrowful through loss or deprivation'),\n", - " ('mourning', 'sorrowful through loss or deprivation')]},\n", + " ('bereft', 'sorrowful through loss or deprivation'),\n", + " ('grieving', 'sorrowful through loss or deprivation'),\n", + " ('grief-stricken', 'sorrowful through loss or deprivation')]},\n", " {'answer': 'bereft',\n", " 'hint': 'synonyms for bereft',\n", - " 'clues': [('grieving', 'sorrowful through loss or deprivation'),\n", + " 'clues': [('lovelorn', 'unhappy in love; suffering from unrequited love'),\n", " ('unbeloved', 'unhappy in love; suffering from unrequited love'),\n", - " ('grief-stricken', 'sorrowful through loss or deprivation'),\n", - " ('sorrowing', 'sorrowful through loss or deprivation'),\n", " ('mourning', 'sorrowful through loss or deprivation'),\n", - " ('lovelorn', 'unhappy in love; suffering from unrequited love'),\n", - " ('bereaved', 'sorrowful through loss or deprivation')]},\n", + " ('sorrowing', 'sorrowful through loss or deprivation'),\n", + " ('bereaved', 'sorrowful through loss or deprivation'),\n", + " ('grieving', 'sorrowful through loss or deprivation'),\n", + " ('grief-stricken', 'sorrowful through loss or deprivation')]},\n", " {'answer': 'berserk',\n", " 'hint': 'synonyms for berserk',\n", - " 'clues': [('amok', 'frenzied as if possessed by a demon'),\n", - " ('demoniacal', 'frenzied as if possessed by a demon'),\n", - " ('possessed', 'frenzied as if possessed by a demon'),\n", - " ('amuck', 'frenzied as if possessed by a demon')]},\n", + " 'clues': [('possessed', 'frenzied as if possessed by a demon'),\n", + " ('amuck', 'frenzied as if possessed by a demon'),\n", + " ('amok', 'frenzied as if possessed by a demon'),\n", + " ('demoniac', 'frenzied as if possessed by a demon')]},\n", " {'answer': 'besotted',\n", " 'hint': 'synonyms for besotted',\n", - " 'clues': [('pixilated', 'very drunk'),\n", + " 'clues': [('fuddled', 'very drunk'),\n", " ('sloshed', 'very drunk'),\n", - " ('tight', 'very drunk'),\n", - " ('pissed', 'very drunk'),\n", - " ('cockeyed', 'very drunk'),\n", - " ('smashed', 'very drunk'),\n", - " ('pie-eyed', 'very drunk'),\n", - " ('blind drunk', 'very drunk'),\n", - " ('crocked', 'very drunk'),\n", " ('stiff', 'very drunk'),\n", - " ('slopped', 'very drunk'),\n", + " ('cockeyed', 'very drunk'),\n", " ('sozzled', 'very drunk'),\n", - " ('loaded', 'very drunk'),\n", + " ('pie-eyed', 'very drunk'),\n", " ('soaked', 'very drunk'),\n", - " ('fuddled', 'very drunk'),\n", - " ('plastered', 'very drunk'),\n", + " ('pixilated', 'very drunk'),\n", " ('blotto', 'very drunk'),\n", - " ('squiffy', 'very drunk'),\n", " ('wet', 'very drunk'),\n", - " ('soused', 'very drunk')]},\n", + " ('pissed', 'very drunk'),\n", + " ('soused', 'very drunk'),\n", + " ('slopped', 'very drunk'),\n", + " ('smashed', 'very drunk'),\n", + " ('blind drunk', 'very drunk'),\n", + " ('plastered', 'very drunk'),\n", + " ('crocked', 'very drunk'),\n", + " ('loaded', 'very drunk'),\n", + " ('tight', 'very drunk'),\n", + " ('squiffy', 'very drunk')]},\n", " {'answer': 'bespoke',\n", " 'hint': 'synonyms for bespoke',\n", - " 'clues': [('tailor-made', '(of clothing) custom-made'),\n", - " ('made-to-order', '(of clothing) custom-made'),\n", + " 'clues': [('bespoken', '(of clothing) custom-made'),\n", " ('tailored', '(of clothing) custom-made'),\n", - " ('bespoken', '(of clothing) custom-made')]},\n", + " ('made-to-order', '(of clothing) custom-made'),\n", + " ('tailor-made', '(of clothing) custom-made')]},\n", " {'answer': 'bespoken',\n", " 'hint': 'synonyms for bespoken',\n", - " 'clues': [('tailor-made', '(of clothing) custom-made'),\n", - " ('made-to-order', '(of clothing) custom-made'),\n", + " 'clues': [('made-to-order', '(of clothing) custom-made'),\n", + " ('tailor-made', '(of clothing) custom-made'),\n", " ('tailored', '(of clothing) custom-made'),\n", - " ('betrothed', 'pledged to be married'),\n", - " ('bespoke', '(of clothing) custom-made')]},\n", + " ('bespoke', '(of clothing) custom-made'),\n", + " ('betrothed', 'pledged to be married')]},\n", " {'answer': 'best',\n", " 'hint': 'synonyms for best',\n", - " 'clues': [('in force', 'exerting force or influence'),\n", - " ('proficient', 'having or showing knowledge and skill and aptitude'),\n", - " ('unspoilt', 'not left to spoil'),\n", - " ('estimable', 'deserving of esteem and respect'),\n", - " ('honest', 'not forged'),\n", - " ('unspoiled', 'not left to spoil'),\n", - " ('dear', 'with or in a close or intimate relationship'),\n", + " 'clues': [('good',\n", + " 'having desirable or positive qualities especially those suitable for a thing specified'),\n", " ('beneficial', 'promoting or enhancing well-being'),\n", - " ('good', 'agreeable or pleasing'),\n", - " ('expert', 'having or showing knowledge and skill and aptitude'),\n", - " ('respectable', 'deserving of esteem and respect'),\n", - " ('upright', 'of moral excellence'),\n", - " ('dependable', 'financially sound'),\n", - " ('sound', 'in excellent physical condition'),\n", - " ('honorable', 'deserving of esteem and respect'),\n", - " ('skillful', 'having or showing knowledge and skill and aptitude'),\n", - " ('just', 'of moral excellence'),\n", - " ('secure', 'financially sound'),\n", - " ('in effect', 'exerting force or influence'),\n", - " ('ripe', 'most suitable or right for a particular purpose'),\n", - " ('well', 'resulting favorably'),\n", - " ('salutary',\n", - " 'tending to promote physical well-being; beneficial to health'),\n", " ('serious', 'appealing to the mind'),\n", - " ('right', 'most suitable or right for a particular purpose'),\n", + " ('skillful', 'having or showing knowledge and skill and aptitude'),\n", " ('adept', 'having or showing knowledge and skill and aptitude'),\n", - " ('effective', 'exerting force or influence'),\n", - " ('practiced', 'having or showing knowledge and skill and aptitude'),\n", " ('undecomposed', 'not left to spoil'),\n", + " ('unspoilt', 'not left to spoil'),\n", " ('near', 'with or in a close or intimate relationship'),\n", + " ('secure', 'financially sound'),\n", + " ('in effect', 'exerting force or influence'),\n", " ('safe', 'financially sound'),\n", + " ('just', 'of moral excellence'),\n", " ('full', 'having the normally expected amount'),\n", + " ('honest', 'not forged'),\n", + " ('respectable', 'deserving of esteem and respect'),\n", + " ('expert', 'having or showing knowledge and skill and aptitude'),\n", + " ('right', 'most suitable or right for a particular purpose'),\n", + " ('honorable', 'deserving of esteem and respect'),\n", + " ('in force', 'exerting force or influence'),\n", + " ('dear', 'with or in a close or intimate relationship'),\n", + " ('upright', 'of moral excellence'),\n", + " ('well', 'resulting favorably'),\n", + " ('proficient', 'having or showing knowledge and skill and aptitude'),\n", + " ('unspoiled', 'not left to spoil'),\n", + " ('estimable', 'deserving of esteem and respect'),\n", + " ('effective', 'exerting force or influence'),\n", + " ('ripe', 'most suitable or right for a particular purpose'),\n", " ('better',\n", - " \"(comparative and superlative of `well') wiser or more advantageous and hence advisable\")]},\n", + " \"(comparative and superlative of `well') wiser or more advantageous and hence advisable\"),\n", + " ('dependable', 'financially sound'),\n", + " ('practiced', 'having or showing knowledge and skill and aptitude'),\n", + " ('sound', 'in excellent physical condition'),\n", + " ('salutary',\n", + " 'tending to promote physical well-being; beneficial to health')]},\n", " {'answer': 'best-loved',\n", " 'hint': 'synonyms for best-loved',\n", - " 'clues': [('favored',\n", + " 'clues': [('favorite',\n", " 'preferred above all others and treated with partiality'),\n", " ('pet', 'preferred above all others and treated with partiality'),\n", - " ('preferent', 'preferred above all others and treated with partiality'),\n", - " ('favourite', 'preferred above all others and treated with partiality'),\n", - " ('preferred', 'preferred above all others and treated with partiality')]},\n", + " ('preferred', 'preferred above all others and treated with partiality'),\n", + " ('favored', 'preferred above all others and treated with partiality'),\n", + " ('preferent', 'preferred above all others and treated with partiality')]},\n", " {'answer': 'bestial',\n", " 'hint': 'synonyms for bestial',\n", - " 'clues': [('beastly',\n", + " 'clues': [('brutal',\n", " 'resembling a beast; showing lack of human sensibility'),\n", - " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n", " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brute', 'resembling a beast; showing lack of human sensibility')]},\n", + " ('brute', 'resembling a beast; showing lack of human sensibility'),\n", + " ('beastly', 'resembling a beast; showing lack of human sensibility')]},\n", " {'answer': 'better',\n", " 'hint': 'synonyms for better',\n", - " 'clues': [('in force', 'exerting force or influence'),\n", - " ('proficient', 'having or showing knowledge and skill and aptitude'),\n", - " ('unspoilt', 'not left to spoil'),\n", - " ('estimable', 'deserving of esteem and respect'),\n", - " ('honest', 'not forged'),\n", - " ('unspoiled', 'not left to spoil'),\n", - " ('dear', 'with or in a close or intimate relationship'),\n", + " 'clues': [('good',\n", + " 'having desirable or positive qualities especially those suitable for a thing specified'),\n", " ('beneficial', 'promoting or enhancing well-being'),\n", - " ('good', 'agreeable or pleasing'),\n", - " ('expert', 'having or showing knowledge and skill and aptitude'),\n", - " ('well', 'wise or advantageous and hence advisable'),\n", - " ('respectable', 'deserving of esteem and respect'),\n", - " ('upright', 'of moral excellence'),\n", - " ('dependable', 'financially sound'),\n", - " ('sound', 'in excellent physical condition'),\n", - " ('honorable', 'deserving of esteem and respect'),\n", + " ('serious', 'appealing to the mind'),\n", + " ('well',\n", + " 'in good health especially after having suffered illness or injury'),\n", + " ('skillful', 'having or showing knowledge and skill and aptitude'),\n", + " ('adept', 'having or showing knowledge and skill and aptitude'),\n", " ('best',\n", " \"(comparative and superlative of `well') wiser or more advantageous and hence advisable\"),\n", - " ('skillful', 'having or showing knowledge and skill and aptitude'),\n", - " ('just', 'of moral excellence'),\n", + " ('undecomposed', 'not left to spoil'),\n", + " ('unspoilt', 'not left to spoil'),\n", + " ('near', 'with or in a close or intimate relationship'),\n", " ('secure', 'financially sound'),\n", " ('in effect', 'exerting force or influence'),\n", - " ('ripe', 'most suitable or right for a particular purpose'),\n", - " ('salutary',\n", - " 'tending to promote physical well-being; beneficial to health'),\n", + " ('safe', 'financially sound'),\n", + " ('just', 'of moral excellence'),\n", + " ('full', 'having the normally expected amount'),\n", + " ('honest', 'not forged'),\n", + " ('respectable', 'deserving of esteem and respect'),\n", + " ('expert', 'having or showing knowledge and skill and aptitude'),\n", " ('right', 'most suitable or right for a particular purpose'),\n", - " ('adept', 'having or showing knowledge and skill and aptitude'),\n", + " ('honorable', 'deserving of esteem and respect'),\n", + " ('in force', 'exerting force or influence'),\n", + " ('dear', 'with or in a close or intimate relationship'),\n", + " ('upright', 'of moral excellence'),\n", + " ('proficient', 'having or showing knowledge and skill and aptitude'),\n", + " ('unspoiled', 'not left to spoil'),\n", + " ('estimable', 'deserving of esteem and respect'),\n", " ('effective', 'exerting force or influence'),\n", + " ('ripe', 'most suitable or right for a particular purpose'),\n", + " ('dependable', 'financially sound'),\n", " ('practiced', 'having or showing knowledge and skill and aptitude'),\n", - " ('undecomposed', 'not left to spoil'),\n", - " ('near', 'with or in a close or intimate relationship'),\n", - " ('safe', 'financially sound'),\n", - " ('full', 'having the normally expected amount'),\n", - " ('serious', 'appealing to the mind')]},\n", + " ('sound', 'in excellent physical condition'),\n", + " ('salutary',\n", + " 'tending to promote physical well-being; beneficial to health')]},\n", " {'answer': 'better-looking',\n", " 'hint': 'synonyms for better-looking',\n", " 'clues': [('fine-looking',\n", " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman'),\n", - " ('well-favoured',\n", + " ('well-favored',\n", " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman'),\n", " ('good-looking',\n", " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman'),\n", @@ -38141,15 +38181,17 @@ " 'pleasing in appearance especially by reason of conformity to ideals of form and proportion; ; ; ; - Thackeray; - Lillian Hellman')]},\n", " {'answer': 'bewhiskered',\n", " 'hint': 'synonyms for bewhiskered',\n", - " 'clues': [('bearded', 'having hair on the cheeks and chin'),\n", + " 'clues': [('barbate', 'having hair on the cheeks and chin'),\n", " ('whiskery', 'having hair on the cheeks and chin'),\n", - " ('whiskered', 'having hair on the cheeks and chin'),\n", - " ('barbate', 'having hair on the cheeks and chin')]},\n", + " ('bearded', 'having hair on the cheeks and chin'),\n", + " ('whiskered', 'having hair on the cheeks and chin')]},\n", " {'answer': 'bewildered',\n", " 'hint': 'synonyms for bewildered',\n", - " 'clues': [('at sea',\n", + " 'clues': [('bemused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('mixed-up',\n", + " ('befuddled',\n", + " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('confused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('mazed',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", @@ -38157,1069 +38199,1072 @@ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('lost',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bemused',\n", + " ('mixed-up',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('confounded',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('confused',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('befuddled',\n", + " ('at sea',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n", " {'answer': 'bewitching',\n", " 'hint': 'synonyms for bewitching',\n", - " 'clues': [('captivating', 'capturing interest as if by a spell'),\n", - " ('enchanting', 'capturing interest as if by a spell'),\n", + " 'clues': [('enchanting', 'capturing interest as if by a spell'),\n", " ('fascinating', 'capturing interest as if by a spell'),\n", - " ('enthralling', 'capturing interest as if by a spell'),\n", - " ('entrancing', 'capturing interest as if by a spell')]},\n", + " ('entrancing', 'capturing interest as if by a spell'),\n", + " ('captivating', 'capturing interest as if by a spell'),\n", + " ('enthralling', 'capturing interest as if by a spell')]},\n", " {'answer': 'bicolor',\n", " 'hint': 'synonyms for bicolor',\n", - " 'clues': [('bicolour', 'having two colors'),\n", - " ('bicolored', 'having two colors'),\n", - " ('dichromatic', 'having two colors'),\n", - " ('bichrome', 'having two colors')]},\n", - " {'answer': 'bicolour',\n", - " 'hint': 'synonyms for bicolour',\n", - " 'clues': [('bicoloured', 'having two colors'),\n", - " ('dichromatic', 'having two colors'),\n", - " ('bicolor', 'having two colors'),\n", - " ('bichrome', 'having two colors')]},\n", + " 'clues': [('bicolored', 'having two colors'),\n", + " ('bicolour', 'having two colors'),\n", + " ('bichrome', 'having two colors'),\n", + " ('dichromatic', 'having two colors')]},\n", " {'answer': 'bicoloured',\n", " 'hint': 'synonyms for bicoloured',\n", - " 'clues': [('bicolour', 'having two colors'),\n", - " ('bicolored', 'having two colors'),\n", - " ('dichromatic', 'having two colors'),\n", - " ('bichrome', 'having two colors')]},\n", + " 'clues': [('bicolored', 'having two colors'),\n", + " ('bicolour', 'having two colors'),\n", + " ('bichrome', 'having two colors'),\n", + " ('dichromatic', 'having two colors')]},\n", " {'answer': 'bifurcate',\n", " 'hint': 'synonyms for bifurcate',\n", - " 'clues': [('fork-like',\n", + " 'clues': [('prongy',\n", " 'resembling a fork; divided or separated into two branches'),\n", + " ('forked', 'resembling a fork; divided or separated into two branches'),\n", + " ('branched', 'resembling a fork; divided or separated into two branches'),\n", + " ('biramous', 'resembling a fork; divided or separated into two branches'),\n", " ('forficate',\n", " 'resembling a fork; divided or separated into two branches'),\n", - " ('pronged', 'resembling a fork; divided or separated into two branches'),\n", - " ('biramous', 'resembling a fork; divided or separated into two branches'),\n", - " ('forked', 'resembling a fork; divided or separated into two branches'),\n", - " ('prongy', 'resembling a fork; divided or separated into two branches'),\n", - " ('branched',\n", + " ('fork-like',\n", + " 'resembling a fork; divided or separated into two branches'),\n", + " ('pronged',\n", " 'resembling a fork; divided or separated into two branches')]},\n", " {'answer': 'big',\n", " 'hint': 'synonyms for big',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('heavy', 'prodigious'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('giving', 'given or giving freely'),\n", - " ('with child', 'in an advanced stage of pregnancy'),\n", + " 'clues': [('great', 'in an advanced stage of pregnancy'),\n", + " ('freehanded', 'given or giving freely'),\n", " ('bragging', 'exhibiting self-importance'),\n", - " ('braggart', 'exhibiting self-importance'),\n", + " ('bountiful', 'given or giving freely'),\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('bad', 'very intense'),\n", + " ('grown', '(of animals) fully developed'),\n", + " ('fully grown', '(of animals) fully developed'),\n", + " ('heavy', 'prodigious'),\n", " ('magnanimous', 'generous and understanding and tolerant'),\n", + " ('enceinte', 'in an advanced stage of pregnancy'),\n", + " ('vainglorious', 'feeling self-importance'),\n", + " ('braggy', 'exhibiting self-importance'),\n", " ('bighearted', 'given or giving freely'),\n", - " ('gravid', 'in an advanced stage of pregnancy'),\n", - " ('full-grown', '(of animals) fully developed'),\n", - " ('expectant', 'in an advanced stage of pregnancy'),\n", - " ('adult', '(of animals) fully developed'),\n", - " ('crowing', 'exhibiting self-importance'),\n", " ('large',\n", " 'above average in size or number or quantity or magnitude or extent'),\n", " ('bounteous', 'given or giving freely'),\n", " ('openhanded', 'given or giving freely'),\n", - " ('grown', '(of animals) fully developed'),\n", " ('liberal', 'given or giving freely'),\n", - " ('bountiful', 'given or giving freely'),\n", - " ('handsome', 'given or giving freely'),\n", - " ('great', 'in an advanced stage of pregnancy'),\n", - " ('enceinte', 'in an advanced stage of pregnancy'),\n", - " ('vainglorious', 'feeling self-importance'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", - " ('braggy', 'exhibiting self-importance'),\n", + " ('adult', '(of animals) fully developed'),\n", " ('grownup', '(of animals) fully developed'),\n", " ('prominent', 'conspicuous in position or importance'),\n", - " ('bad', 'very intense'),\n", - " ('swelled', 'feeling self-importance'),\n", - " ('freehanded', 'given or giving freely')]},\n", + " ('giving', 'given or giving freely'),\n", + " ('with child', 'in an advanced stage of pregnancy'),\n", + " ('crowing', 'exhibiting self-importance'),\n", + " ('expectant', 'in an advanced stage of pregnancy'),\n", + " ('gravid', 'in an advanced stage of pregnancy'),\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('self-aggrandising', 'exhibiting self-importance'),\n", + " ('handsome', 'given or giving freely'),\n", + " ('swelled', 'feeling self-importance')]},\n", " {'answer': 'bigger',\n", " 'hint': 'synonyms for bigger',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('big', 'given or giving freely'),\n", - " ('heavy', 'prodigious'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('with child', 'in an advanced stage of pregnancy'),\n", + " 'clues': [('great', 'in an advanced stage of pregnancy'),\n", + " ('freehanded', 'given or giving freely'),\n", " ('bragging', 'exhibiting self-importance'),\n", - " ('magnanimous', 'generous and understanding and tolerant'),\n", - " ('gravid', 'in an advanced stage of pregnancy'),\n", - " ('full-grown', '(of animals) fully developed'),\n", - " ('expectant', 'in an advanced stage of pregnancy'),\n", - " ('crowing', 'exhibiting self-importance'),\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('bad', 'very intense'),\n", + " ('enceinte', 'in an advanced stage of pregnancy'),\n", + " ('fully grown', '(of animals) fully developed'),\n", + " ('heavy', 'prodigious'),\n", + " ('braggy', 'exhibiting self-importance'),\n", " ('large',\n", " 'above average in size or number or quantity or magnitude or extent'),\n", - " ('bounteous', 'given or giving freely'),\n", + " ('big', 'significant'),\n", " ('openhanded', 'given or giving freely'),\n", - " ('liberal', 'given or giving freely'),\n", - " ('bountiful', 'given or giving freely'),\n", - " ('handsome', 'given or giving freely'),\n", - " ('great', 'in an advanced stage of pregnancy'),\n", - " ('prominent', 'conspicuous in position or importance'),\n", + " ('adult', '(of animals) fully developed'),\n", " ('grownup', '(of animals) fully developed'),\n", + " ('giving', 'given or giving freely'),\n", + " ('crowing', 'exhibiting self-importance'),\n", + " ('expectant', 'in an advanced stage of pregnancy'),\n", " ('swelled', 'feeling self-importance'),\n", - " ('freehanded', 'given or giving freely'),\n", - " ('braggart', 'exhibiting self-importance'),\n", - " ('bighearted', 'given or giving freely'),\n", - " ('adult', '(of animals) fully developed'),\n", + " ('self-aggrandizing', 'exhibiting self-importance'),\n", + " ('bountiful', 'given or giving freely'),\n", " ('grown', '(of animals) fully developed'),\n", - " ('enceinte', 'in an advanced stage of pregnancy'),\n", + " ('magnanimous', 'generous and understanding and tolerant'),\n", " ('vainglorious', 'feeling self-importance'),\n", + " ('bighearted', 'given or giving freely'),\n", + " ('bounteous', 'given or giving freely'),\n", + " ('liberal', 'given or giving freely'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", - " ('braggy', 'exhibiting self-importance'),\n", - " ('giving', 'given or giving freely'),\n", - " ('bad', 'very intense')]},\n", + " ('prominent', 'conspicuous in position or importance'),\n", + " ('with child', 'in an advanced stage of pregnancy'),\n", + " ('gravid', 'in an advanced stage of pregnancy'),\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('handsome', 'given or giving freely')]},\n", " {'answer': 'bigheaded',\n", " 'hint': 'synonyms for bigheaded',\n", - " 'clues': [(\"too big for one's breeches\",\n", - " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", - " ('snooty',\n", + " 'clues': [('stuck-up',\n", " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", - " ('snotty',\n", + " ('uppish',\n", " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", - " ('stuck-up',\n", + " ('snooty',\n", " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", " ('persnickety',\n", " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", " ('snot-nosed',\n", " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", - " ('uppish',\n", + " ('snotty',\n", + " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage'),\n", + " (\"too big for one's breeches\",\n", " '(used colloquially) overly conceited or arrogant; -Laurent Le Sage')]},\n", " {'answer': 'bighearted',\n", " 'hint': 'synonyms for bighearted',\n", - " 'clues': [('bounteous', 'given or giving freely'),\n", - " ('big', 'given or giving freely'),\n", - " ('openhanded', 'given or giving freely'),\n", - " ('liberal', 'given or giving freely'),\n", + " 'clues': [('freehanded', 'given or giving freely'),\n", " ('bountiful', 'given or giving freely'),\n", - " ('handsome', 'given or giving freely'),\n", " ('giving', 'given or giving freely'),\n", - " ('freehanded', 'given or giving freely')]},\n", + " ('handsome', 'given or giving freely'),\n", + " ('openhanded', 'given or giving freely'),\n", + " ('bounteous', 'given or giving freely'),\n", + " ('big', 'given or giving freely'),\n", + " ('liberal', 'given or giving freely')]},\n", " {'answer': 'bilaterally_symmetrical',\n", " 'hint': 'synonyms for bilaterally symmetrical',\n", - " 'clues': [('zygomorphous',\n", + " 'clues': [('bilateral', 'having identical parts on each side of an axis'),\n", + " ('zygomorphous',\n", " 'capable of division into symmetrical halves by only one longitudinal plane passing through the axis'),\n", " ('zygomorphic',\n", " 'capable of division into symmetrical halves by only one longitudinal plane passing through the axis'),\n", - " ('bilateral', 'having identical parts on each side of an axis'),\n", " ('bilaterally symmetric',\n", " 'having identical parts on each side of an axis')]},\n", " {'answer': 'bilious',\n", " 'hint': 'synonyms for bilious',\n", - " 'clues': [('liverish',\n", - " 'suffering from or suggesting a liver disorder or gastric distress'),\n", + " 'clues': [('biliary', 'relating to or containing bile'),\n", " ('atrabilious', 'irritable as if suffering from indigestion'),\n", - " ('biliary', 'relating to or containing bile'),\n", + " ('dyspeptic', 'irritable as if suffering from indigestion'),\n", + " ('liverish', 'irritable as if suffering from indigestion'),\n", " ('livery',\n", - " 'suffering from or suggesting a liver disorder or gastric distress'),\n", - " ('dyspeptic', 'irritable as if suffering from indigestion')]},\n", + " 'suffering from or suggesting a liver disorder or gastric distress')]},\n", " {'answer': 'biramous',\n", " 'hint': 'synonyms for biramous',\n", - " 'clues': [('bifurcate',\n", + " 'clues': [('prongy',\n", " 'resembling a fork; divided or separated into two branches'),\n", + " ('forked', 'resembling a fork; divided or separated into two branches'),\n", + " ('branched', 'resembling a fork; divided or separated into two branches'),\n", " ('forficate',\n", " 'resembling a fork; divided or separated into two branches'),\n", - " ('pronged', 'resembling a fork; divided or separated into two branches'),\n", " ('fork-like',\n", " 'resembling a fork; divided or separated into two branches'),\n", - " ('forked', 'resembling a fork; divided or separated into two branches'),\n", - " ('prongy', 'resembling a fork; divided or separated into two branches'),\n", - " ('branched',\n", + " ('bifurcate',\n", + " 'resembling a fork; divided or separated into two branches'),\n", + " ('pronged',\n", " 'resembling a fork; divided or separated into two branches')]},\n", " {'answer': 'bit-by-bit',\n", " 'hint': 'synonyms for bit-by-bit',\n", " 'clues': [('in small stages', 'one thing at a time'),\n", - " ('step-by-step', 'one thing at a time'),\n", " ('stepwise', 'one thing at a time'),\n", - " ('piecemeal', 'one thing at a time')]},\n", + " ('piecemeal', 'one thing at a time'),\n", + " ('step-by-step', 'one thing at a time')]},\n", " {'answer': 'biting',\n", " 'hint': 'synonyms for biting',\n", - " 'clues': [('barbed', 'capable of wounding'),\n", - " ('bitter',\n", + " 'clues': [('bitter',\n", " 'causing a sharply painful or stinging sensation; used especially of cold'),\n", - " ('mordacious', 'capable of wounding'),\n", " ('nipping', 'capable of wounding'),\n", - " ('pungent', 'capable of wounding')]},\n", + " ('mordacious', 'capable of wounding'),\n", + " ('pungent', 'capable of wounding'),\n", + " ('barbed', 'capable of wounding')]},\n", " {'answer': 'bitter',\n", " 'hint': 'synonyms for bitter',\n", - " 'clues': [('acerb', 'harsh or corrosive in tone'),\n", - " ('acrid', 'harsh or corrosive in tone'),\n", - " ('acrimonious', 'marked by strong resentment or cynicism'),\n", - " ('acerbic', 'harsh or corrosive in tone'),\n", - " ('caustic', 'harsh or corrosive in tone'),\n", + " 'clues': [('acid', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", - " ('virulent', 'harsh or corrosive in tone'),\n", " ('biting',\n", " 'causing a sharply painful or stinging sensation; used especially of cold'),\n", + " ('virulent', 'harsh or corrosive in tone'),\n", + " ('acerb', 'harsh or corrosive in tone'),\n", + " ('blistering', 'harsh or corrosive in tone'),\n", + " ('caustic', 'harsh or corrosive in tone'),\n", " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", - " ('blistering', 'harsh or corrosive in tone')]},\n", + " ('acerbic', 'harsh or corrosive in tone'),\n", + " ('acrimonious', 'marked by strong resentment or cynicism')]},\n", " {'answer': 'bittie',\n", " 'hint': 'synonyms for bittie',\n", - " 'clues': [('teeny', '(used informally) very small'),\n", - " ('weensy', '(used informally) very small'),\n", - " ('teentsy', '(used informally) very small'),\n", - " ('itsy-bitsy', '(used informally) very small'),\n", + " 'clues': [('itty-bitty', '(used informally) very small'),\n", + " ('teensy', '(used informally) very small'),\n", " ('teeny-weeny', '(used informally) very small'),\n", - " ('bitty', '(used informally) very small'),\n", " ('wee', '(used informally) very small'),\n", - " ('itty-bitty', '(used informally) very small')]},\n", + " ('bitty', '(used informally) very small'),\n", + " ('itsy-bitsy', '(used informally) very small'),\n", + " ('weeny', '(used informally) very small')]},\n", " {'answer': 'bitty',\n", " 'hint': 'synonyms for bitty',\n", - " 'clues': [('teeny', '(used informally) very small'),\n", - " ('bittie', '(used informally) very small'),\n", - " ('weensy', '(used informally) very small'),\n", - " ('teentsy', '(used informally) very small'),\n", - " ('itsy-bitsy', '(used informally) very small'),\n", + " 'clues': [('bittie', '(used informally) very small'),\n", + " ('itty-bitty', '(used informally) very small'),\n", + " ('teensy', '(used informally) very small'),\n", " ('teeny-weeny', '(used informally) very small'),\n", " ('wee', '(used informally) very small'),\n", - " ('itty-bitty', '(used informally) very small')]},\n", + " ('weeny', '(used informally) very small'),\n", + " ('itsy-bitsy', '(used informally) very small')]},\n", " {'answer': 'biyearly',\n", " 'hint': 'synonyms for biyearly',\n", - " 'clues': [('half-yearly', 'occurring or payable twice each year'),\n", + " 'clues': [('biennial', 'occurring every second year'),\n", + " ('half-yearly', 'occurring or payable twice each year'),\n", " ('semiannual', 'occurring or payable twice each year'),\n", - " ('biennial', 'occurring every second year'),\n", " ('biannual', 'occurring or payable twice each year')]},\n", " {'answer': 'bizarre',\n", " 'hint': 'synonyms for bizarre',\n", - " 'clues': [('outlandish',\n", + " 'clues': [('freakish',\n", " 'conspicuously or grossly unconventional or unusual'),\n", " ('freaky', 'conspicuously or grossly unconventional or unusual'),\n", " ('outre', 'conspicuously or grossly unconventional or unusual'),\n", - " ('flaky', 'conspicuously or grossly unconventional or unusual'),\n", - " ('eccentric', 'conspicuously or grossly unconventional or unusual'),\n", + " ('flakey', 'conspicuously or grossly unconventional or unusual'),\n", + " ('outlandish', 'conspicuously or grossly unconventional or unusual'),\n", " ('gonzo', 'conspicuously or grossly unconventional or unusual'),\n", - " ('freakish', 'conspicuously or grossly unconventional or unusual'),\n", - " ('off-the-wall', 'conspicuously or grossly unconventional or unusual')]},\n", + " ('off-the-wall', 'conspicuously or grossly unconventional or unusual'),\n", + " ('eccentric', 'conspicuously or grossly unconventional or unusual')]},\n", " {'answer': 'blabbermouthed',\n", " 'hint': 'synonyms for blabbermouthed',\n", - " 'clues': [('talebearing', 'prone to communicate confidential information'),\n", + " 'clues': [('tattling', 'prone to communicate confidential information'),\n", " ('blabby', 'unwisely talking too much'),\n", - " ('tattling', 'prone to communicate confidential information'),\n", + " ('talebearing', 'prone to communicate confidential information'),\n", " ('talkative', 'unwisely talking too much'),\n", - " ('bigmouthed', 'unwisely talking too much'),\n", - " ('leaky', 'prone to communicate confidential information')]},\n", + " ('leaky', 'prone to communicate confidential information'),\n", + " ('bigmouthed', 'unwisely talking too much')]},\n", " {'answer': 'black',\n", " 'hint': 'synonyms for black',\n", - " 'clues': [('sinister',\n", - " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", + " 'clues': [('contraband', 'distributed or sold illicitly'),\n", " ('pitch-black', 'extremely dark'),\n", + " ('sinister',\n", + " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", + " ('disgraceful',\n", + " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", " ('bleak', 'offering little or no hope; ; ; - J.M.Synge'),\n", + " ('shameful',\n", + " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", + " ('dark',\n", + " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", + " ('black-market', 'distributed or sold illicitly'),\n", " ('mordant', 'harshly ironic or sinister'),\n", - " ('smutty', 'soiled with dirt or soot'),\n", - " ('fatal',\n", - " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", - " ('contraband', 'distributed or sold illicitly'),\n", " ('bootleg', 'distributed or sold illicitly'),\n", - " ('blackened',\n", - " '(of the face) made black especially as with suffused blood'),\n", - " ('opprobrious',\n", - " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", - " ('dim', 'offering little or no hope; ; ; - J.M.Synge'),\n", + " ('smuggled', 'distributed or sold illicitly'),\n", + " ('smutty', 'soiled with dirt or soot'),\n", " ('fateful',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", - " ('grim', 'harshly ironic or sinister'),\n", - " ('black-market', 'distributed or sold illicitly'),\n", - " ('calamitous',\n", - " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", - " ('disastrous',\n", - " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", - " ('smuggled', 'distributed or sold illicitly'),\n", " ('ignominious',\n", " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", - " ('disgraceful',\n", - " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", - " ('shameful',\n", - " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", - " ('dark',\n", - " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", " ('pitch-dark', 'extremely dark'),\n", + " ('disastrous',\n", + " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", " ('inglorious',\n", - " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson')]},\n", + " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", + " ('calamitous',\n", + " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", + " ('dim', 'offering little or no hope; ; ; - J.M.Synge'),\n", + " ('opprobrious',\n", + " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", + " ('grim', 'harshly ironic or sinister'),\n", + " ('fatal',\n", + " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", + " ('blackened',\n", + " '(of the face) made black especially as with suffused blood')]},\n", " {'answer': 'black-market',\n", " 'hint': 'synonyms for black-market',\n", - " 'clues': [('bootleg', 'distributed or sold illicitly'),\n", - " ('smuggled', 'distributed or sold illicitly'),\n", - " ('black', 'distributed or sold illicitly'),\n", - " ('contraband', 'distributed or sold illicitly')]},\n", + " 'clues': [('smuggled', 'distributed or sold illicitly'),\n", + " ('contraband', 'distributed or sold illicitly'),\n", + " ('bootleg', 'distributed or sold illicitly'),\n", + " ('black', 'distributed or sold illicitly')]},\n", " {'answer': 'blamable',\n", " 'hint': 'synonyms for blamable',\n", - " 'clues': [('blameworthy',\n", + " 'clues': [('culpable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('censurable',\n", + " ('blameable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('culpable',\n", + " ('censurable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blameful',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('blameable',\n", + " ('blameworthy',\n", " 'deserving blame or censure as being wrong or evil or injurious')]},\n", " {'answer': 'blame',\n", " 'hint': 'synonyms for blame',\n", - " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n", - " ('goddam', 'expletives used informally as intensifiers'),\n", - " ('blasted', 'expletives used informally as intensifiers'),\n", + " 'clues': [('blasted', 'expletives used informally as intensifiers'),\n", + " ('damn', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", " ('blamed', 'expletives used informally as intensifiers'),\n", - " ('darned', 'expletives used informally as intensifiers'),\n", - " ('damn', 'expletives used informally as intensifiers'),\n", + " ('goddamned', 'expletives used informally as intensifiers'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('darned', 'expletives used informally as intensifiers'),\n", + " ('deuced', 'expletives used informally as intensifiers')]},\n", " {'answer': 'blameable',\n", " 'hint': 'synonyms for blameable',\n", - " 'clues': [('blameworthy',\n", - " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('censurable',\n", + " 'clues': [('culpable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blamable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('culpable',\n", + " ('censurable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blameful',\n", + " 'deserving blame or censure as being wrong or evil or injurious'),\n", + " ('blameworthy',\n", " 'deserving blame or censure as being wrong or evil or injurious')]},\n", " {'answer': 'blamed',\n", " 'hint': 'synonyms for blamed',\n", - " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n", - " ('goddam', 'expletives used informally as intensifiers'),\n", - " ('blasted', 'expletives used informally as intensifiers'),\n", + " 'clues': [('blasted', 'expletives used informally as intensifiers'),\n", + " ('damn', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", " ('darned', 'expletives used informally as intensifiers'),\n", - " ('blame', 'expletives used informally as intensifiers'),\n", - " ('damn', 'expletives used informally as intensifiers'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('goddamned', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('blame', 'expletives used informally as intensifiers'),\n", + " ('deuced', 'expletives used informally as intensifiers')]},\n", " {'answer': 'blameful',\n", " 'hint': 'synonyms for blameful',\n", - " 'clues': [('blameworthy',\n", - " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('censurable',\n", + " 'clues': [('culpable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blamable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('culpable',\n", + " ('censurable',\n", + " 'deserving blame or censure as being wrong or evil or injurious'),\n", + " ('blameworthy',\n", " 'deserving blame or censure as being wrong or evil or injurious')]},\n", " {'answer': 'blameworthy',\n", " 'hint': 'synonyms for blameworthy',\n", - " 'clues': [('censurable',\n", + " 'clues': [('culpable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blamable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('culpable',\n", + " ('censurable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blameful',\n", " 'deserving blame or censure as being wrong or evil or injurious')]},\n", " {'answer': 'blanched',\n", " 'hint': 'synonyms for blanched',\n", - " 'clues': [('etiolated',\n", - " '(especially of plants) developed without chlorophyll by being deprived of light'),\n", + " 'clues': [('bloodless',\n", + " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", " ('white',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", - " ('bloodless',\n", + " ('etiolate',\n", + " '(especially of plants) developed without chlorophyll by being deprived of light'),\n", + " ('ashen',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", " ('livid',\n", - " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", - " ('ashen',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley')]},\n", " {'answer': 'bland',\n", " 'hint': 'synonyms for bland',\n", - " 'clues': [('vapid', 'lacking taste or flavor or tang'),\n", + " 'clues': [('flat', 'lacking taste or flavor or tang'),\n", " ('savourless', 'lacking taste or flavor or tang'),\n", + " ('politic',\n", + " 'smoothly agreeable and courteous with a degree of sophistication'),\n", + " ('flavorless', 'lacking taste or flavor or tang'),\n", " ('suave',\n", " 'smoothly agreeable and courteous with a degree of sophistication'),\n", - " ('flat', 'lacking stimulating characteristics; uninteresting'),\n", + " ('insipid', 'lacking taste or flavor or tang'),\n", " ('smooth',\n", " 'smoothly agreeable and courteous with a degree of sophistication'),\n", - " ('politic',\n", - " 'smoothly agreeable and courteous with a degree of sophistication'),\n", - " ('flavorless', 'lacking taste or flavor or tang'),\n", - " ('insipid', 'lacking taste or flavor or tang')]},\n", + " ('vapid', 'lacking taste or flavor or tang')]},\n", " {'answer': 'blanket',\n", " 'hint': 'synonyms for blanket',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", + " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", " {'answer': 'blasted',\n", " 'hint': 'synonyms for blasted',\n", - " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n", - " ('goddam', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", + " 'clues': [('damn', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('blamed', 'expletives used informally as intensifiers'),\n", " ('darned', 'expletives used informally as intensifiers'),\n", - " ('damn', 'expletives used informally as intensifiers'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('blamed', 'expletives used informally as intensifiers'),\n", + " ('goddamned', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('deuced', 'expletives used informally as intensifiers')]},\n", " {'answer': 'blatant',\n", " 'hint': 'synonyms for blatant',\n", - " 'clues': [('strident',\n", - " 'conspicuously and offensively loud; given to vehement outcry'),\n", - " ('clamant',\n", + " 'clues': [('vociferous',\n", " 'conspicuously and offensively loud; given to vehement outcry'),\n", " ('clamorous',\n", " 'conspicuously and offensively loud; given to vehement outcry'),\n", " ('conspicuous', 'without any attempt at concealment; completely obvious'),\n", - " ('blazing', 'without any attempt at concealment; completely obvious'),\n", - " ('vociferous',\n", - " 'conspicuously and offensively loud; given to vehement outcry')]},\n", + " ('strident',\n", + " 'conspicuously and offensively loud; given to vehement outcry'),\n", + " ('clamant',\n", + " 'conspicuously and offensively loud; given to vehement outcry'),\n", + " ('blazing', 'without any attempt at concealment; completely obvious')]},\n", " {'answer': 'blazing',\n", " 'hint': 'synonyms for blazing',\n", - " 'clues': [('conspicuous',\n", - " 'without any attempt at concealment; completely obvious'),\n", + " 'clues': [('blinding', 'shining intensely'),\n", + " ('glary', 'shining intensely'),\n", + " ('fulgent', 'shining intensely'),\n", " ('dazzling', 'shining intensely'),\n", " ('blatant', 'without any attempt at concealment; completely obvious'),\n", - " ('fulgent', 'shining intensely'),\n", - " ('blinding', 'shining intensely'),\n", - " ('glary', 'shining intensely'),\n", - " ('glaring', 'shining intensely')]},\n", + " ('glaring', 'shining intensely'),\n", + " ('conspicuous',\n", + " 'without any attempt at concealment; completely obvious')]},\n", " {'answer': 'bleached',\n", " 'hint': 'synonyms for bleached',\n", - " 'clues': [('washy', 'having lost freshness or brilliance of color'),\n", - " ('coloured', '(used of color) artificially produced; not natural'),\n", + " 'clues': [('dyed', '(used of color) artificially produced; not natural'),\n", " ('washed-out', 'having lost freshness or brilliance of color'),\n", - " ('faded', 'having lost freshness or brilliance of color'),\n", - " ('dyed', '(used of color) artificially produced; not natural')]},\n", + " ('colored', '(used of color) artificially produced; not natural'),\n", + " ('washy', 'having lost freshness or brilliance of color'),\n", + " ('faded', 'having lost freshness or brilliance of color')]},\n", " {'answer': 'bleak',\n", " 'hint': 'synonyms for bleak',\n", - " 'clues': [('cutting', 'unpleasantly cold and damp'),\n", - " ('stark', 'providing no shelter or sustenance'),\n", - " ('raw', 'unpleasantly cold and damp'),\n", + " 'clues': [('raw', 'unpleasantly cold and damp'),\n", " ('black', 'offering little or no hope; ; ; - J.M.Synge'),\n", - " ('barren', 'providing no shelter or sustenance'),\n", + " ('desolate', 'providing no shelter or sustenance'),\n", " ('dim', 'offering little or no hope; ; ; - J.M.Synge'),\n", " ('bare', 'providing no shelter or sustenance'),\n", - " ('desolate', 'providing no shelter or sustenance')]},\n", + " ('cutting', 'unpleasantly cold and damp'),\n", + " ('stark', 'providing no shelter or sustenance'),\n", + " ('barren', 'providing no shelter or sustenance')]},\n", " {'answer': 'bleary',\n", " 'hint': 'synonyms for bleary',\n", - " 'clues': [('foggy', 'indistinct or hazy in outline'),\n", - " ('blear', 'tired to the point of exhaustion'),\n", + " 'clues': [('bleary-eyed', 'tired to the point of exhaustion'),\n", " ('blurry', 'indistinct or hazy in outline'),\n", - " ('fuzzy', 'indistinct or hazy in outline'),\n", + " ('foggy', 'indistinct or hazy in outline'),\n", " ('blurred', 'indistinct or hazy in outline'),\n", - " ('blear-eyed', 'tired to the point of exhaustion'),\n", - " ('hazy', 'indistinct or hazy in outline'),\n", - " ('muzzy', 'indistinct or hazy in outline')]},\n", + " ('blear', 'tired to the point of exhaustion'),\n", + " ('muzzy', 'indistinct or hazy in outline'),\n", + " ('fuzzy', 'indistinct or hazy in outline'),\n", + " ('hazy', 'indistinct or hazy in outline')]},\n", " {'answer': 'blessed',\n", " 'hint': 'synonyms for blessed',\n", - " 'clues': [('beatified',\n", - " 'Roman Catholic; proclaimed one of the blessed and thus worthy of veneration'),\n", + " 'clues': [('blame', 'expletives used informally as intensifiers'),\n", " ('deuced', 'expletives used informally as intensifiers'),\n", - " ('goddam', 'expletives used informally as intensifiers'),\n", " ('blasted', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", - " ('blamed', 'expletives used informally as intensifiers'),\n", - " ('darned', 'expletives used informally as intensifiers'),\n", - " ('blest', 'highly favored or fortunate (as e.g. by divine grace)'),\n", " ('damn', 'expletives used informally as intensifiers'),\n", + " ('blest', 'highly favored or fortunate (as e.g. by divine grace)'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", + " ('beatified',\n", + " 'Roman Catholic; proclaimed one of the blessed and thus worthy of veneration'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('darned', 'expletives used informally as intensifiers'),\n", + " ('goddamned', 'expletives used informally as intensifiers')]},\n", " {'answer': 'blind_drunk',\n", " 'hint': 'synonyms for blind drunk',\n", - " 'clues': [('pixilated', 'very drunk'),\n", + " 'clues': [('fuddled', 'very drunk'),\n", " ('sloshed', 'very drunk'),\n", - " ('tight', 'very drunk'),\n", - " ('pissed', 'very drunk'),\n", - " ('cockeyed', 'very drunk'),\n", - " ('besotted', 'very drunk'),\n", - " ('smashed', 'very drunk'),\n", - " ('pie-eyed', 'very drunk'),\n", - " ('crocked', 'very drunk'),\n", " ('stiff', 'very drunk'),\n", - " ('slopped', 'very drunk'),\n", + " ('cockeyed', 'very drunk'),\n", " ('sozzled', 'very drunk'),\n", - " ('loaded', 'very drunk'),\n", + " ('pie-eyed', 'very drunk'),\n", " ('soaked', 'very drunk'),\n", - " ('fuddled', 'very drunk'),\n", - " ('plastered', 'very drunk'),\n", + " ('pixilated', 'very drunk'),\n", " ('blotto', 'very drunk'),\n", - " ('squiffy', 'very drunk'),\n", " ('wet', 'very drunk'),\n", - " ('soused', 'very drunk')]},\n", + " ('pissed', 'very drunk'),\n", + " ('besotted', 'very drunk'),\n", + " ('soused', 'very drunk'),\n", + " ('slopped', 'very drunk'),\n", + " ('smashed', 'very drunk'),\n", + " ('plastered', 'very drunk'),\n", + " ('crocked', 'very drunk'),\n", + " ('loaded', 'very drunk'),\n", + " ('tight', 'very drunk'),\n", + " ('squiffy', 'very drunk')]},\n", " {'answer': 'blinding',\n", " 'hint': 'synonyms for blinding',\n", - " 'clues': [('dazzling', 'shining intensely'),\n", - " ('blazing', 'shining intensely'),\n", - " ('fulgent', 'shining intensely'),\n", + " 'clues': [('blazing', 'shining intensely'),\n", " ('glary', 'shining intensely'),\n", + " ('fulgent', 'shining intensely'),\n", + " ('dazzling', 'shining intensely'),\n", " ('glaring', 'shining intensely')]},\n", " {'answer': 'blinking',\n", " 'hint': 'synonyms for blinking',\n", - " 'clues': [('crashing', 'informal intensifiers'),\n", - " ('winking', 'closing the eyes intermittently and rapidly'),\n", - " ('flaming', 'informal intensifiers'),\n", + " 'clues': [('blooming', 'informal intensifiers'),\n", " ('bally', 'informal intensifiers'),\n", - " ('fucking', 'informal intensifiers'),\n", " ('bloody', 'informal intensifiers'),\n", - " ('blooming', 'informal intensifiers')]},\n", + " ('flaming', 'informal intensifiers'),\n", + " ('crashing', 'informal intensifiers'),\n", + " ('fucking', 'informal intensifiers'),\n", + " ('winking', 'closing the eyes intermittently and rapidly')]},\n", " {'answer': 'blistering',\n", " 'hint': 'synonyms for blistering',\n", - " 'clues': [('acerb', 'harsh or corrosive in tone'),\n", - " ('hot', 'very fast; capable of quick response and great speed'),\n", - " ('acrid', 'harsh or corrosive in tone'),\n", - " ('blistery', 'hot enough to raise (or as if to raise) blisters'),\n", + " 'clues': [('acid', 'harsh or corrosive in tone'),\n", " ('acerbic', 'harsh or corrosive in tone'),\n", - " ('caustic', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", + " ('red-hot', 'very fast; capable of quick response and great speed'),\n", " ('virulent', 'harsh or corrosive in tone'),\n", - " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", + " ('acerb', 'harsh or corrosive in tone'),\n", + " ('blistery', 'hot enough to raise (or as if to raise) blisters'),\n", " ('bitter', 'harsh or corrosive in tone'),\n", - " ('red-hot', 'very fast; capable of quick response and great speed')]},\n", + " ('caustic', 'harsh or corrosive in tone'),\n", + " ('hot', 'very fast; capable of quick response and great speed'),\n", + " ('sulphurous', 'harsh or corrosive in tone')]},\n", " {'answer': 'blockheaded',\n", " 'hint': 'synonyms for blockheaded',\n", - " 'clues': [('fatheaded', '(used informally) stupid'),\n", + " 'clues': [('thick', '(used informally) stupid'),\n", + " ('fatheaded', '(used informally) stupid'),\n", + " ('wooden-headed', '(used informally) stupid'),\n", " ('duncical', '(used informally) stupid'),\n", " ('thickheaded', '(used informally) stupid'),\n", - " ('thick', '(used informally) stupid'),\n", - " ('thick-skulled', '(used informally) stupid'),\n", - " ('duncish', '(used informally) stupid'),\n", " ('loggerheaded', '(used informally) stupid'),\n", + " ('thick-skulled', '(used informally) stupid'),\n", " ('boneheaded', '(used informally) stupid'),\n", - " ('wooden-headed', '(used informally) stupid')]},\n", + " ('duncish', '(used informally) stupid')]},\n", " {'answer': 'blood-red',\n", " 'hint': 'synonyms for blood-red',\n", - " 'clues': [('ruddy',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cerise',\n", + " 'clues': [('reddish',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruby-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruby',\n", + " ('ruddy',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry',\n", + " ('cherry-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('carmine',\n", + " ('cerise',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('crimson',\n", + " ('ruby',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('scarlet',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('reddish',\n", + " ('crimson',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry-red',\n", + " ('cherry',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('red',\n", + " ('carmine',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n", + " {'answer': 'blood-related',\n", + " 'hint': 'synonyms for blood-related',\n", + " 'clues': [('cognate', 'related by blood'),\n", + " ('consanguineous', 'related by blood'),\n", + " ('kin', 'related by blood'),\n", + " ('consanguineal', 'related by blood')]},\n", " {'answer': 'bloodless',\n", " 'hint': 'synonyms for bloodless',\n", " 'clues': [('exsanguinous',\n", " 'destitute of blood or apparently so; - John Dryden'),\n", " ('white',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", + " ('exsanguine', 'destitute of blood or apparently so; - John Dryden'),\n", + " ('blanched',\n", + " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", " ('livid',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", - " ('exsanguine', 'destitute of blood or apparently so; - John Dryden'),\n", " ('ashen',\n", - " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley'),\n", - " ('blanched',\n", " 'anemic looking from illness or emotion; ; ; ; ; - Mary W. Shelley')]},\n", " {'answer': 'bloody',\n", " 'hint': 'synonyms for bloody',\n", - " 'clues': [('crashing', 'informal intensifiers'),\n", + " 'clues': [('blinking', 'informal intensifiers'),\n", + " ('blooming', 'informal intensifiers'),\n", " ('flaming', 'informal intensifiers'),\n", - " ('bally', 'informal intensifiers'),\n", + " ('crashing', 'informal intensifiers'),\n", " ('fucking', 'informal intensifiers'),\n", - " ('blinking', 'informal intensifiers'),\n", - " ('blooming', 'informal intensifiers')]},\n", + " ('bally', 'informal intensifiers')]},\n", " {'answer': 'blooming',\n", " 'hint': 'synonyms for blooming',\n", - " 'clues': [('crashing', 'informal intensifiers'),\n", - " ('flaming', 'informal intensifiers'),\n", - " ('bally', 'informal intensifiers'),\n", + " 'clues': [('blinking', 'informal intensifiers'),\n", " ('bloody', 'informal intensifiers'),\n", - " ('blinking', 'informal intensifiers'),\n", - " ('fucking', 'informal intensifiers')]},\n", + " ('flaming', 'informal intensifiers'),\n", + " ('crashing', 'informal intensifiers'),\n", + " ('fucking', 'informal intensifiers'),\n", + " ('bally', 'informal intensifiers')]},\n", " {'answer': 'blotto',\n", " 'hint': 'synonyms for blotto',\n", - " 'clues': [('pixilated', 'very drunk'),\n", + " 'clues': [('fuddled', 'very drunk'),\n", " ('sloshed', 'very drunk'),\n", - " ('tight', 'very drunk'),\n", - " ('pissed', 'very drunk'),\n", + " ('stiff', 'very drunk'),\n", " ('cockeyed', 'very drunk'),\n", + " ('sozzled', 'very drunk'),\n", + " ('pie-eyed', 'very drunk'),\n", + " ('soaked', 'very drunk'),\n", + " ('pixilated', 'very drunk'),\n", + " ('wet', 'very drunk'),\n", + " ('pissed', 'very drunk'),\n", " ('besotted', 'very drunk'),\n", + " ('soused', 'very drunk'),\n", + " ('slopped', 'very drunk'),\n", " ('smashed', 'very drunk'),\n", - " ('pie-eyed', 'very drunk'),\n", " ('blind drunk', 'very drunk'),\n", + " ('plastered', 'very drunk'),\n", " ('crocked', 'very drunk'),\n", - " ('stiff', 'very drunk'),\n", - " ('slopped', 'very drunk'),\n", - " ('sozzled', 'very drunk'),\n", " ('loaded', 'very drunk'),\n", - " ('soaked', 'very drunk'),\n", - " ('fuddled', 'very drunk'),\n", - " ('plastered', 'very drunk'),\n", - " ('squiffy', 'very drunk'),\n", - " ('wet', 'very drunk'),\n", - " ('soused', 'very drunk')]},\n", + " ('tight', 'very drunk'),\n", + " ('squiffy', 'very drunk')]},\n", " {'answer': 'blue',\n", " 'hint': 'synonyms for blue',\n", - " 'clues': [('drab', 'causing dejection'),\n", - " ('bluish',\n", - " 'of the color intermediate between green and violet; having a color similar to that of a clear unclouded sky; - Helen Hunt Jackson'),\n", - " ('spicy', 'suggestive of sexual impropriety'),\n", - " ('gentle',\n", - " 'belonging to or characteristic of the nobility or aristocracy'),\n", + " 'clues': [('disconsolate', 'causing dejection'),\n", + " ('risque', 'suggestive of sexual impropriety'),\n", + " ('grim', 'filled with melancholy and despondency'),\n", + " ('sorry', 'causing dejection'),\n", " ('puritanical', 'morally rigorous and strict'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", + " ('gloomy', 'filled with melancholy and despondency'),\n", " ('blue-blooded',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('depressed', 'filled with melancholy and despondency'),\n", - " ('dispirited', 'filled with melancholy and despondency'),\n", - " ('grim', 'filled with melancholy and despondency'),\n", - " ('patrician',\n", - " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('juicy', 'suggestive of sexual impropriety'),\n", - " ('profane', 'characterized by profanity or cursing'),\n", - " ('aristocratic',\n", + " ('dingy', 'causing dejection'),\n", + " ('aristocratical',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('naughty', 'suggestive of sexual impropriety'),\n", - " ('risque', 'suggestive of sexual impropriety'),\n", + " ('drab', 'causing dejection'),\n", " ('low', 'filled with melancholy and despondency'),\n", - " ('gloomy', 'filled with melancholy and despondency'),\n", - " ('disconsolate', 'causing dejection'),\n", - " ('dark', 'causing dejection'),\n", - " ('down', 'filled with melancholy and despondency'),\n", - " ('low-spirited', 'filled with melancholy and despondency'),\n", " ('downhearted', 'filled with melancholy and despondency'),\n", + " ('juicy', 'suggestive of sexual impropriety'),\n", + " ('dispirited', 'filled with melancholy and despondency'),\n", + " ('gentle',\n", + " 'belonging to or characteristic of the nobility or aristocracy'),\n", + " ('spicy', 'suggestive of sexual impropriety'),\n", " ('down in the mouth', 'filled with melancholy and despondency'),\n", - " ('gamey', 'suggestive of sexual impropriety'),\n", + " ('bluish',\n", + " 'of the color intermediate between green and violet; having a color similar to that of a clear unclouded sky; - Helen Hunt Jackson'),\n", + " ('patrician',\n", + " 'belonging to or characteristic of the nobility or aristocracy'),\n", " ('racy', 'suggestive of sexual impropriety'),\n", - " ('blasphemous', 'characterized by profanity or cursing'),\n", + " ('gamy', 'suggestive of sexual impropriety'),\n", " ('dismal', 'causing dejection'),\n", - " ('sorry', 'causing dejection'),\n", - " ('downcast', 'filled with melancholy and despondency'),\n", " ('dreary', 'causing dejection'),\n", - " ('dingy', 'causing dejection')]},\n", + " ('down', 'filled with melancholy and despondency'),\n", + " ('blasphemous', 'characterized by profanity or cursing'),\n", + " ('depressed', 'filled with melancholy and despondency'),\n", + " ('dark', 'causing dejection'),\n", + " ('downcast', 'filled with melancholy and despondency'),\n", + " ('naughty', 'suggestive of sexual impropriety'),\n", + " ('profane', 'characterized by profanity or cursing')]},\n", " {'answer': 'blue-blooded',\n", " 'hint': 'synonyms for blue-blooded',\n", - " 'clues': [('patrician',\n", - " 'belonging to or characteristic of the nobility or aristocracy'),\n", - " ('aristocratical',\n", + " 'clues': [('aristocratical',\n", " 'belonging to or characteristic of the nobility or aristocracy'),\n", " ('blue', 'belonging to or characteristic of the nobility or aristocracy'),\n", " ('gentle',\n", + " 'belonging to or characteristic of the nobility or aristocracy'),\n", + " ('patrician',\n", " 'belonging to or characteristic of the nobility or aristocracy')]},\n", " {'answer': 'blunt',\n", " 'hint': 'synonyms for blunt',\n", - " 'clues': [('plainspoken',\n", - " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('crude', 'devoid of any qualifications or disguise or adornment'),\n", - " ('straight-from-the-shoulder',\n", + " 'clues': [('stark',\n", + " 'devoid of any qualifications or disguise or adornment'),\n", + " ('free-spoken',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", " ('forthright',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('free-spoken',\n", - " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", " ('point-blank',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('outspoken',\n", - " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", " ('candid',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('stark', 'devoid of any qualifications or disguise or adornment'),\n", + " ('straight-from-the-shoulder',\n", + " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", + " ('crude', 'devoid of any qualifications or disguise or adornment'),\n", " ('frank',\n", + " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", + " ('plainspoken',\n", + " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", + " ('outspoken',\n", " 'characterized by directness in manner or speech; without subtlety or evasion')]},\n", " {'answer': 'blurred',\n", " 'hint': 'synonyms for blurred',\n", - " 'clues': [('hazy', 'indistinct or hazy in outline'),\n", + " 'clues': [('blurry', 'indistinct or hazy in outline'),\n", " ('bleary', 'indistinct or hazy in outline'),\n", - " ('muzzy', 'indistinct or hazy in outline'),\n", " ('foggy', 'indistinct or hazy in outline'),\n", + " ('fuzzy', 'indistinct or hazy in outline'),\n", " ('clouded', 'unclear in form or expression; ; - H.G.Wells'),\n", - " ('blurry', 'indistinct or hazy in outline'),\n", - " ('fuzzy', 'indistinct or hazy in outline')]},\n", + " ('muzzy', 'indistinct or hazy in outline'),\n", + " ('hazy', 'indistinct or hazy in outline')]},\n", " {'answer': 'blurry',\n", " 'hint': 'synonyms for blurry',\n", - " 'clues': [('hazy', 'indistinct or hazy in outline'),\n", + " 'clues': [('muzzy', 'indistinct or hazy in outline'),\n", " ('bleary', 'indistinct or hazy in outline'),\n", - " ('muzzy', 'indistinct or hazy in outline'),\n", " ('foggy', 'indistinct or hazy in outline'),\n", + " ('fuzzy', 'indistinct or hazy in outline'),\n", " ('blurred', 'indistinct or hazy in outline'),\n", - " ('fuzzy', 'indistinct or hazy in outline')]},\n", + " ('hazy', 'indistinct or hazy in outline')]},\n", " {'answer': 'boastful',\n", " 'hint': 'synonyms for boastful',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('big', 'exhibiting self-importance'),\n", + " 'clues': [('big', 'exhibiting self-importance'),\n", " ('bragging', 'exhibiting self-importance'),\n", - " ('braggart', 'exhibiting self-importance'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", + " ('crowing', 'exhibiting self-importance'),\n", " ('braggy', 'exhibiting self-importance'),\n", - " ('crowing', 'exhibiting self-importance')]},\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('self-aggrandising', 'exhibiting self-importance')]},\n", " {'answer': 'bodacious',\n", " 'hint': 'synonyms for bodacious',\n", - " 'clues': [('brazen',\n", + " 'clues': [('brazen-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('barefaced',\n", + " ('audacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('bald-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brazen-faced',\n", + " ('brassy',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('audacious',\n", + " ('brazen',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brassy',\n", + " ('barefaced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n", " {'answer': 'bodied',\n", " 'hint': 'synonyms for bodied',\n", - " 'clues': [('embodied',\n", + " 'clues': [('corporal',\n", " 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('corporal', 'possessing or existing in bodily form; - Shakespeare'),\n", + " ('corporate', 'possessing or existing in bodily form; - Shakespeare'),\n", " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('corporate', 'possessing or existing in bodily form; - Shakespeare')]},\n", + " ('embodied', 'possessing or existing in bodily form; - Shakespeare')]},\n", " {'answer': 'bodiless',\n", " 'hint': 'synonyms for bodiless',\n", - " 'clues': [('discorporate', 'not having a material body'),\n", - " ('unembodied', 'not having a material body'),\n", - " ('bodyless', 'having no trunk or main part'),\n", - " ('disembodied', 'not having a material body')]},\n", + " 'clues': [('disembodied', 'not having a material body'),\n", + " ('unbodied', 'not having a material body'),\n", + " ('discorporate', 'not having a material body'),\n", + " ('bodyless', 'having no trunk or main part')]},\n", " {'answer': 'boggy',\n", " 'hint': 'synonyms for boggy',\n", - " 'clues': [('sloughy', '(of soil) soft and watery'),\n", - " ('squashy', '(of soil) soft and watery'),\n", - " ('marshy', '(of soil) soft and watery'),\n", - " ('soggy', '(of soil) soft and watery'),\n", + " 'clues': [('marshy', '(of soil) soft and watery'),\n", + " ('miry', '(of soil) soft and watery'),\n", " ('waterlogged', '(of soil) soft and watery'),\n", - " ('muddy', '(of soil) soft and watery'),\n", + " ('mucky', '(of soil) soft and watery'),\n", " ('sloppy', '(of soil) soft and watery'),\n", + " ('soggy', '(of soil) soft and watery'),\n", " ('swampy', '(of soil) soft and watery'),\n", - " ('mucky', '(of soil) soft and watery'),\n", - " ('miry', '(of soil) soft and watery'),\n", - " ('quaggy', '(of soil) soft and watery')]},\n", + " ('sloughy', '(of soil) soft and watery'),\n", + " ('quaggy', '(of soil) soft and watery'),\n", + " ('squashy', '(of soil) soft and watery'),\n", + " ('muddy', '(of soil) soft and watery')]},\n", " {'answer': 'boisterous',\n", " 'hint': 'synonyms for boisterous',\n", - " 'clues': [('robustious', 'noisy and lacking in restraint or discipline'),\n", + " 'clues': [('rambunctious', 'noisy and lacking in restraint or discipline'),\n", " ('fierce', 'violently agitated and turbulent; ; - Ezra Pound'),\n", - " ('unruly', 'noisy and lacking in restraint or discipline'),\n", " ('rough', 'violently agitated and turbulent; ; - Ezra Pound'),\n", - " ('rambunctious', 'noisy and lacking in restraint or discipline'),\n", - " ('knockabout', 'full of rough and exuberant animal spirits')]},\n", + " ('unruly', 'noisy and lacking in restraint or discipline'),\n", + " ('knockabout', 'full of rough and exuberant animal spirits'),\n", + " ('rumbustious', 'noisy and lacking in restraint or discipline')]},\n", " {'answer': 'bombastic',\n", " 'hint': 'synonyms for bombastic',\n", " 'clues': [('turgid', 'ostentatiously lofty in style'),\n", - " ('large', 'ostentatiously lofty in style'),\n", - " ('declamatory', 'ostentatiously lofty in style'),\n", + " ('orotund', 'ostentatiously lofty in style'),\n", " ('tumid', 'ostentatiously lofty in style'),\n", - " ('orotund', 'ostentatiously lofty in style')]},\n", + " ('declamatory', 'ostentatiously lofty in style'),\n", + " ('large', 'ostentatiously lofty in style')]},\n", " {'answer': 'boneheaded',\n", " 'hint': 'synonyms for boneheaded',\n", - " 'clues': [('fatheaded', '(used informally) stupid'),\n", + " 'clues': [('thick', '(used informally) stupid'),\n", + " ('fatheaded', '(used informally) stupid'),\n", + " ('wooden-headed', '(used informally) stupid'),\n", " ('duncical', '(used informally) stupid'),\n", " ('thickheaded', '(used informally) stupid'),\n", - " ('thick', '(used informally) stupid'),\n", - " ('thick-skulled', '(used informally) stupid'),\n", " ('blockheaded', '(used informally) stupid'),\n", - " ('duncish', '(used informally) stupid'),\n", " ('loggerheaded', '(used informally) stupid'),\n", - " ('wooden-headed', '(used informally) stupid')]},\n", + " ('thick-skulled', '(used informally) stupid'),\n", + " ('duncish', '(used informally) stupid')]},\n", " {'answer': 'boney',\n", " 'hint': 'synonyms for boney',\n", - " 'clues': [('scraggy', 'being very thin'),\n", - " ('underweight', 'being very thin'),\n", - " ('weedy', 'being very thin'),\n", + " 'clues': [('underweight', 'being very thin'),\n", + " ('scrawny', 'being very thin'),\n", + " ('scraggy', 'being very thin'),\n", " ('bony', 'having bones especially many or prominent bones'),\n", - " ('skinny', 'being very thin'),\n", - " ('scrawny', 'being very thin')]},\n", + " ('weedy', 'being very thin'),\n", + " ('skinny', 'being very thin')]},\n", " {'answer': 'bonkers',\n", " 'hint': 'synonyms for bonkers',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", + " ('loco', 'informal or slang terms for mentally irregular'),\n", " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", - " ('loco', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'bonnie',\n", " 'hint': 'synonyms for bonnie',\n", - " 'clues': [('comely', 'very pleasing to the eye'),\n", - " ('sightly', 'very pleasing to the eye'),\n", - " ('fair', 'very pleasing to the eye'),\n", - " ('bonny', 'very pleasing to the eye')]},\n", + " 'clues': [('fair', 'very pleasing to the eye'),\n", + " ('bonny', 'very pleasing to the eye'),\n", + " ('comely', 'very pleasing to the eye'),\n", + " ('sightly', 'very pleasing to the eye')]},\n", " {'answer': 'bonny',\n", " 'hint': 'synonyms for bonny',\n", - " 'clues': [('comely', 'very pleasing to the eye'),\n", - " ('sightly', 'very pleasing to the eye'),\n", - " ('bonnie', 'very pleasing to the eye'),\n", - " ('fair', 'very pleasing to the eye')]},\n", + " 'clues': [('bonnie', 'very pleasing to the eye'),\n", + " ('fair', 'very pleasing to the eye'),\n", + " ('comely', 'very pleasing to the eye'),\n", + " ('sightly', 'very pleasing to the eye')]},\n", " {'answer': 'bony',\n", " 'hint': 'synonyms for bony',\n", - " 'clues': [('skeletal',\n", + " 'clues': [('cadaverous',\n", " 'very thin especially from disease or hunger or cold'),\n", - " ('osteal', 'composed of or containing bone'),\n", - " ('emaciated', 'very thin especially from disease or hunger or cold'),\n", - " ('cadaverous', 'very thin especially from disease or hunger or cold'),\n", - " ('haggard', 'very thin especially from disease or hunger or cold'),\n", - " ('osseous', 'composed of or containing bone'),\n", " ('boney', 'having bones especially many or prominent bones'),\n", - " ('gaunt', 'very thin especially from disease or hunger or cold'),\n", + " ('wasted', 'very thin especially from disease or hunger or cold'),\n", " ('pinched', 'very thin especially from disease or hunger or cold'),\n", - " ('wasted', 'very thin especially from disease or hunger or cold')]},\n", + " ('haggard', 'very thin especially from disease or hunger or cold'),\n", + " ('emaciated', 'very thin especially from disease or hunger or cold'),\n", + " ('skeletal', 'very thin especially from disease or hunger or cold'),\n", + " ('osteal', 'composed of or containing bone'),\n", + " ('osseous', 'composed of or containing bone'),\n", + " ('gaunt', 'very thin especially from disease or hunger or cold')]},\n", " {'answer': 'booming',\n", " 'hint': 'synonyms for booming',\n", " 'clues': [('palmy', 'very lively and profitable'),\n", + " ('stentorian', 'used of the voice'),\n", " ('prospering', 'very lively and profitable'),\n", - " ('prosperous', 'very lively and profitable'),\n", + " ('thriving', 'very lively and profitable'),\n", " ('flourishing', 'very lively and profitable'),\n", - " ('roaring', 'very lively and profitable'),\n", - " ('stentorian', 'used of the voice'),\n", - " ('thriving', 'very lively and profitable')]},\n", + " ('prosperous', 'very lively and profitable'),\n", + " ('roaring', 'very lively and profitable')]},\n", " {'answer': 'boorish',\n", " 'hint': 'synonyms for boorish',\n", - " 'clues': [('oafish',\n", + " 'clues': [('neandertal',\n", " 'ill-mannered and coarse and contemptible in behavior or appearance'),\n", - " ('swinish',\n", + " ('loutish',\n", " 'ill-mannered and coarse and contemptible in behavior or appearance'),\n", - " ('neanderthal',\n", + " ('swinish',\n", " 'ill-mannered and coarse and contemptible in behavior or appearance'),\n", - " ('loutish',\n", + " ('oafish',\n", " 'ill-mannered and coarse and contemptible in behavior or appearance')]},\n", " {'answer': 'bootleg',\n", " 'hint': 'synonyms for bootleg',\n", - " 'clues': [('contraband', 'distributed or sold illicitly'),\n", - " ('smuggled', 'distributed or sold illicitly'),\n", - " ('black', 'distributed or sold illicitly'),\n", - " ('black-market', 'distributed or sold illicitly')]},\n", + " 'clues': [('smuggled', 'distributed or sold illicitly'),\n", + " ('black-market', 'distributed or sold illicitly'),\n", + " ('contraband', 'distributed or sold illicitly'),\n", + " ('black', 'distributed or sold illicitly')]},\n", " {'answer': 'bootless',\n", " 'hint': 'synonyms for bootless',\n", - " 'clues': [('fruitless', 'unproductive of success'),\n", - " ('vain', 'unproductive of success'),\n", - " ('futile', 'unproductive of success'),\n", - " ('sleeveless', 'unproductive of success')]},\n", + " 'clues': [('futile', 'unproductive of success'),\n", + " ('fruitless', 'unproductive of success'),\n", + " ('sleeveless', 'unproductive of success'),\n", + " ('vain', 'unproductive of success')]},\n", " {'answer': 'bootlicking',\n", " 'hint': 'synonyms for bootlicking',\n", - " 'clues': [('fawning',\n", + " 'clues': [('obsequious',\n", " 'attempting to win favor from influential people by flattery'),\n", - " ('obsequious',\n", + " ('sycophantic',\n", " 'attempting to win favor from influential people by flattery'),\n", - " ('toadyish', 'attempting to win favor by flattery'),\n", - " ('sycophantic', 'attempting to win favor by flattery')]},\n", + " ('toadyish',\n", + " 'attempting to win favor from influential people by flattery'),\n", + " ('fawning',\n", + " 'attempting to win favor from influential people by flattery')]},\n", " {'answer': 'boring',\n", " 'hint': 'synonyms for boring',\n", - " 'clues': [('slow',\n", + " 'clues': [('irksome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('tiresome',\n", - " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('irksome',\n", + " ('dull',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('wearisome',\n", + " ('deadening',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", " ('tedious',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('dull',\n", + " ('slow',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('deadening',\n", + " ('tiresome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", " ('ho-hum',\n", + " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", + " ('wearisome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain')]},\n", " {'answer': 'bosomy',\n", " 'hint': 'synonyms for bosomy',\n", - " 'clues': [('curvy',\n", + " 'clues': [('voluptuous',\n", + " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('curvy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('well-endowed',\n", + " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('full-bosomed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('curvaceous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('stacked',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('voluptuous',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('full-bosomed',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('sonsie',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('well-endowed',\n", + " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('buxom',\n", " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n", " {'answer': 'bossy',\n", " 'hint': 'synonyms for bossy',\n", - " 'clues': [('autocratic',\n", - " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('dominating',\n", + " 'clues': [('dominating',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", " ('high-and-mighty',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('magisterial',\n", - " 'offensively self-assured or given to exercising usually unwarranted power'),\n", " ('peremptory',\n", + " 'offensively self-assured or given to exercising usually unwarranted power'),\n", + " ('autocratic',\n", + " 'offensively self-assured or given to exercising usually unwarranted power'),\n", + " ('magisterial',\n", " 'offensively self-assured or given to exercising usually unwarranted power')]},\n", " {'answer': 'bothersome',\n", " 'hint': 'synonyms for bothersome',\n", - " 'clues': [('plaguy', 'causing irritation or annoyance'),\n", - " ('pestering', 'causing irritation or annoyance'),\n", + " 'clues': [('pestering', 'causing irritation or annoyance'),\n", " ('vexing', 'causing irritation or annoyance'),\n", - " ('nettlesome', 'causing irritation or annoyance'),\n", - " ('pestiferous', 'causing irritation or annoyance'),\n", - " ('irritating', 'causing irritation or annoyance'),\n", + " ('pesky', 'causing irritation or annoyance'),\n", + " ('plaguy', 'causing irritation or annoyance'),\n", " ('galling', 'causing irritation or annoyance'),\n", - " ('annoying', 'causing irritation or annoyance'),\n", - " ('vexatious', 'causing irritation or annoyance'),\n", " ('teasing', 'causing irritation or annoyance'),\n", - " ('pesky', 'causing irritation or annoyance')]},\n", + " ('vexatious', 'causing irritation or annoyance'),\n", + " ('irritating', 'causing irritation or annoyance'),\n", + " ('annoying', 'causing irritation or annoyance'),\n", + " ('pestiferous', 'causing irritation or annoyance'),\n", + " ('nettlesome', 'causing irritation or annoyance')]},\n", " {'answer': 'bouncing',\n", " 'hint': 'synonyms for bouncing',\n", - " 'clues': [('bouncy', 'marked by lively action'),\n", + " 'clues': [('spirited', 'marked by lively action'),\n", " ('peppy', 'marked by lively action'),\n", - " ('zippy', 'marked by lively action'),\n", - " ('spirited', 'marked by lively action')]},\n", + " ('bouncy', 'marked by lively action'),\n", + " ('zippy', 'marked by lively action')]},\n", " {'answer': 'bouncy',\n", " 'hint': 'synonyms for bouncy',\n", - " 'clues': [('live', 'elastic; rebounds readily'),\n", - " ('springy', 'elastic; rebounds readily'),\n", + " 'clues': [('springy', 'elastic; rebounds readily'),\n", + " ('lively', 'elastic; rebounds readily'),\n", + " ('spirited', 'marked by lively action'),\n", + " ('peppy', 'marked by lively action'),\n", " ('resilient', 'elastic; rebounds readily'),\n", " ('zippy', 'marked by lively action'),\n", - " ('spirited', 'marked by lively action'),\n", - " ('bouncing', 'marked by lively action'),\n", - " ('peppy', 'marked by lively action')]},\n", + " ('bouncing', 'marked by lively action')]},\n", " {'answer': 'bound',\n", " 'hint': 'synonyms for bound',\n", - " 'clues': [('articled', 'bound by contract'),\n", + " 'clues': [('apprenticed', 'bound by contract'),\n", + " ('indentured', 'bound by contract'),\n", " ('bandaged', 'covered or wrapped with a bandage'),\n", - " ('apprenticed', 'bound by contract'),\n", - " ('destined', \"(usually followed by `to') governed by fate\"),\n", - " ('indentured', 'bound by contract')]},\n", + " ('destined',\n", + " \"headed or intending to head in a certain direction; often used as a combining form as in `college-bound students'\"),\n", + " ('articled', 'bound by contract')]},\n", " {'answer': 'bounderish',\n", " 'hint': 'synonyms for bounderish',\n", - " 'clues': [('underbred', '(of persons) lacking in refinement or grace'),\n", - " ('rude', '(of persons) lacking in refinement or grace'),\n", - " ('ill-bred', '(of persons) lacking in refinement or grace'),\n", + " 'clues': [('ill-bred', '(of persons) lacking in refinement or grace'),\n", + " ('underbred', '(of persons) lacking in refinement or grace'),\n", " ('yokelish', '(of persons) lacking in refinement or grace'),\n", + " ('rude', '(of persons) lacking in refinement or grace'),\n", " ('lowbred', '(of persons) lacking in refinement or grace')]},\n", " {'answer': 'bounteous',\n", " 'hint': 'synonyms for bounteous',\n", - " 'clues': [('big', 'given or giving freely'),\n", - " ('openhanded', 'given or giving freely'),\n", - " ('liberal', 'given or giving freely'),\n", + " 'clues': [('freehanded', 'given or giving freely'),\n", " ('bountiful', 'given or giving freely'),\n", - " ('handsome', 'given or giving freely'),\n", - " ('bighearted', 'given or giving freely'),\n", " ('giving', 'given or giving freely'),\n", - " ('freehanded', 'given or giving freely')]},\n", + " ('bighearted', 'given or giving freely'),\n", + " ('handsome', 'given or giving freely'),\n", + " ('openhanded', 'given or giving freely'),\n", + " ('big', 'given or giving freely'),\n", + " ('liberal', 'given or giving freely')]},\n", " {'answer': 'bountiful',\n", " 'hint': 'synonyms for bountiful',\n", - " 'clues': [('bounteous', 'given or giving freely'),\n", - " ('big', 'given or giving freely'),\n", - " ('openhanded', 'given or giving freely'),\n", - " ('liberal', 'given or giving freely'),\n", + " 'clues': [('freehanded', 'given or giving freely'),\n", + " ('giving', 'given or giving freely'),\n", " ('plentiful', 'producing in abundance'),\n", - " ('handsome', 'given or giving freely'),\n", " ('bighearted', 'given or giving freely'),\n", - " ('giving', 'given or giving freely'),\n", - " ('freehanded', 'given or giving freely')]},\n", + " ('handsome', 'given or giving freely'),\n", + " ('openhanded', 'given or giving freely'),\n", + " ('bounteous', 'given or giving freely'),\n", + " ('big', 'given or giving freely'),\n", + " ('liberal', 'given or giving freely')]},\n", " {'answer': 'bowed',\n", " 'hint': 'synonyms for bowed',\n", " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n", " ('bandy', 'have legs that curve outward at the knees'),\n", " ('bowlegged', 'have legs that curve outward at the knees'),\n", - " ('arched', 'forming or resembling an arch'),\n", - " ('arching', 'forming or resembling an arch'),\n", - " ('arcuate', 'forming or resembling an arch'),\n", + " ('bowing', 'showing an excessively deferential manner'),\n", " ('bandy-legged', 'have legs that curve outward at the knees'),\n", " ('arciform', 'forming or resembling an arch'),\n", - " ('bowing', 'showing an excessively deferential manner')]},\n", + " ('arcuate', 'forming or resembling an arch'),\n", + " ('arching', 'forming or resembling an arch'),\n", + " ('arced', 'forming or resembling an arch')]},\n", " {'answer': 'bowleg',\n", " 'hint': 'synonyms for bowleg',\n", - " 'clues': [('bandy', 'have legs that curve outward at the knees'),\n", - " ('bowlegged', 'have legs that curve outward at the knees'),\n", + " 'clues': [('bowlegged', 'have legs that curve outward at the knees'),\n", " ('bowed', 'have legs that curve outward at the knees'),\n", + " ('bandy', 'have legs that curve outward at the knees'),\n", " ('bandy-legged', 'have legs that curve outward at the knees')]},\n", " {'answer': 'bowlegged',\n", " 'hint': 'synonyms for bowlegged',\n", " 'clues': [('bowleg', 'have legs that curve outward at the knees'),\n", - " ('bandy', 'have legs that curve outward at the knees'),\n", " ('bowed', 'have legs that curve outward at the knees'),\n", + " ('bandy', 'have legs that curve outward at the knees'),\n", " ('bandy-legged', 'have legs that curve outward at the knees')]},\n", " {'answer': 'bracing',\n", " 'hint': 'synonyms for bracing',\n", - " 'clues': [('tonic', 'imparting vitality and energy'),\n", + " 'clues': [('fresh', 'imparting vitality and energy'),\n", " ('refreshful', 'imparting vitality and energy'),\n", + " ('tonic', 'imparting vitality and energy'),\n", " ('refreshing', 'imparting vitality and energy'),\n", - " ('brisk', 'imparting vitality and energy'),\n", - " ('fresh', 'imparting vitality and energy')]},\n", + " ('brisk', 'imparting vitality and energy')]},\n", " {'answer': 'braggart',\n", " 'hint': 'synonyms for braggart',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('big', 'exhibiting self-importance'),\n", + " 'clues': [('big', 'exhibiting self-importance'),\n", " ('bragging', 'exhibiting self-importance'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('crowing', 'exhibiting self-importance'),\n", " ('braggy', 'exhibiting self-importance'),\n", - " ('crowing', 'exhibiting self-importance')]},\n", + " ('self-aggrandising', 'exhibiting self-importance')]},\n", " {'answer': 'bragging',\n", " 'hint': 'synonyms for bragging',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('big', 'exhibiting self-importance'),\n", - " ('braggart', 'exhibiting self-importance'),\n", + " 'clues': [('big', 'exhibiting self-importance'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('crowing', 'exhibiting self-importance'),\n", " ('braggy', 'exhibiting self-importance'),\n", - " ('crowing', 'exhibiting self-importance')]},\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('self-aggrandising', 'exhibiting self-importance')]},\n", " {'answer': 'braggy',\n", " 'hint': 'synonyms for braggy',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('big', 'exhibiting self-importance'),\n", + " 'clues': [('big', 'exhibiting self-importance'),\n", " ('bragging', 'exhibiting self-importance'),\n", - " ('braggart', 'exhibiting self-importance'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", - " ('crowing', 'exhibiting self-importance')]},\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('crowing', 'exhibiting self-importance'),\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('self-aggrandising', 'exhibiting self-importance')]},\n", " {'answer': 'brainish',\n", " 'hint': 'synonyms for brainish',\n", " 'clues': [('tearaway',\n", " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n", - " ('madcap',\n", + " ('hotheaded',\n", " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n", - " ('impetuous',\n", + " ('madcap',\n", " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n", " ('impulsive',\n", " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\"),\n", - " ('hotheaded',\n", + " ('impetuous',\n", " \"characterized by undue haste and lack of thought or deliberation; ; ; ; ; (`brainish' is archaic)\")]},\n", " {'answer': 'brainsick',\n", " 'hint': 'synonyms for brainsick',\n", - " 'clues': [('demented', 'affected with madness or insanity'),\n", - " ('mad', 'affected with madness or insanity'),\n", - " ('disturbed', 'affected with madness or insanity'),\n", - " ('unbalanced', 'affected with madness or insanity'),\n", + " 'clues': [('unbalanced', 'affected with madness or insanity'),\n", " ('sick', 'affected with madness or insanity'),\n", + " ('demented', 'affected with madness or insanity'),\n", " ('unhinged', 'affected with madness or insanity'),\n", + " ('disturbed', 'affected with madness or insanity'),\n", + " ('mad', 'affected with madness or insanity'),\n", " ('crazy', 'affected with madness or insanity')]},\n", " {'answer': 'branched',\n", " 'hint': 'synonyms for branched',\n", - " 'clues': [('pronged',\n", + " 'clues': [('prongy',\n", " 'resembling a fork; divided or separated into two branches'),\n", " ('biramous', 'resembling a fork; divided or separated into two branches'),\n", - " ('forked', 'resembling a fork; divided or separated into two branches'),\n", - " ('ramate', 'having branches'),\n", - " ('branching', 'having branches'),\n", - " ('bifurcate',\n", - " 'resembling a fork; divided or separated into two branches'),\n", " ('forficate',\n", " 'resembling a fork; divided or separated into two branches'),\n", + " ('ramate', 'having branches'),\n", + " ('ramose', 'having branches'),\n", + " ('forked', 'resembling a fork; divided or separated into two branches'),\n", " ('fork-like',\n", " 'resembling a fork; divided or separated into two branches'),\n", - " ('prongy', 'resembling a fork; divided or separated into two branches'),\n", - " ('ramose', 'having branches')]},\n", + " ('bifurcate',\n", + " 'resembling a fork; divided or separated into two branches'),\n", + " ('branching', 'having branches'),\n", + " ('pronged',\n", + " 'resembling a fork; divided or separated into two branches')]},\n", " {'answer': 'branching',\n", " 'hint': 'synonyms for branching',\n", " 'clues': [('ramous', 'having branches'),\n", @@ -39228,803 +39273,800 @@ " ('ramose', 'having branches')]},\n", " {'answer': 'brassy',\n", " 'hint': 'synonyms for brassy',\n", - " 'clues': [('flash', 'tastelessly showy'),\n", - " ('bald-faced',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('garish', 'tastelessly showy'),\n", - " ('trashy', 'tastelessly showy'),\n", - " ('audacious',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('bodacious',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('gimcrack', 'tastelessly showy'),\n", + " 'clues': [('tatty', 'tastelessly showy'),\n", " ('brasslike', 'resembling the sound of a brass instrument'),\n", + " ('flash', 'tastelessly showy'),\n", " ('tacky', 'tastelessly showy'),\n", - " ('brazen-faced',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('meretricious', 'tastelessly showy'),\n", + " ('tawdry', 'tastelessly showy'),\n", " ('cheap', 'tastelessly showy'),\n", + " ('brazen-faced',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('gaudy', 'tastelessly showy'),\n", + " ('audacious',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('brazen',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('loud', 'tastelessly showy'),\n", + " ('trashy', 'tastelessly showy'),\n", " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('gaudy', 'tastelessly showy'),\n", - " ('tawdry', 'tastelessly showy'),\n", - " ('tatty', 'tastelessly showy'),\n", + " ('gimcrack', 'tastelessly showy'),\n", + " ('bald-faced',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('bodacious',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('barefaced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('loud', 'tastelessly showy')]},\n", + " ('garish', 'tastelessly showy')]},\n", " {'answer': 'brave',\n", " 'hint': 'synonyms for brave',\n", - " 'clues': [('gay', 'brightly colored and showy'),\n", + " 'clues': [('intrepid', 'invulnerable to fear or intimidation'),\n", + " ('dauntless', 'invulnerable to fear or intimidation'),\n", + " ('unfearing', 'invulnerable to fear or intimidation'),\n", + " ('braw', 'brightly colored and showy'),\n", + " ('audacious', 'invulnerable to fear or intimidation'),\n", + " ('gay', 'brightly colored and showy'),\n", " ('hardy', 'invulnerable to fear or intimidation'),\n", " ('fearless', 'invulnerable to fear or intimidation'),\n", - " ('braw', 'brightly colored and showy'),\n", " ('courageous',\n", - " 'possessing or displaying courage; able to face and deal with danger or fear without flinching; - Herman Melville; - William Wordsworth'),\n", - " ('audacious', 'invulnerable to fear or intimidation'),\n", - " ('dauntless', 'invulnerable to fear or intimidation'),\n", - " ('unfearing', 'invulnerable to fear or intimidation'),\n", - " ('intrepid', 'invulnerable to fear or intimidation')]},\n", + " 'possessing or displaying courage; able to face and deal with danger or fear without flinching; - Herman Melville; - William Wordsworth')]},\n", " {'answer': 'brawny',\n", " 'hint': 'synonyms for brawny',\n", - " 'clues': [('powerful',\n", + " 'clues': [('muscular',\n", " '(of a person) possessing physical strength and weight; rugged and powerful'),\n", - " ('muscular',\n", - " '(of a person) possessing physical strength and weight; rugged and powerful'),\n", - " ('sinewy',\n", + " ('powerful',\n", " '(of a person) possessing physical strength and weight; rugged and powerful'),\n", " ('hefty',\n", + " '(of a person) possessing physical strength and weight; rugged and powerful'),\n", + " ('sinewy',\n", " '(of a person) possessing physical strength and weight; rugged and powerful')]},\n", " {'answer': 'brazen',\n", " 'hint': 'synonyms for brazen',\n", - " 'clues': [('bodacious',\n", + " 'clues': [('brassy',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('insolent',\n", + " ('brazen-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('bald-faced',\n", + " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('barefaced',\n", + " ('audacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brazen-faced',\n", + " ('bald-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('audacious',\n", + " ('bodacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brassy',\n", + " ('barefaced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n", " {'answer': 'brazen-faced',\n", " 'hint': 'synonyms for brazen-faced',\n", - " 'clues': [('bodacious',\n", - " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brazen',\n", + " 'clues': [('brassy',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('insolent',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('barefaced',\n", + " ('audacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", " ('bald-faced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('audacious',\n", + " ('bodacious',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", - " ('brassy',\n", + " ('brazen',\n", + " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell'),\n", + " ('barefaced',\n", " 'unrestrained by convention or propriety; ; ; - Los Angeles Times; ; ; - Bertrand Russell')]},\n", " {'answer': 'breathless',\n", " 'hint': 'synonyms for breathless',\n", - " 'clues': [('breathtaking',\n", - " 'tending to cause suspension of regular breathing'),\n", - " ('dyspneal', 'not breathing or able to breathe except with difficulty'),\n", - " ('inanimate',\n", - " 'appearing dead; not breathing or having no perceptible pulse'),\n", + " 'clues': [('dyspneal',\n", + " 'not breathing or able to breathe except with difficulty'),\n", + " ('dyspnoeic', 'not breathing or able to breathe except with difficulty'),\n", " ('pulseless',\n", " 'appearing dead; not breathing or having no perceptible pulse'),\n", - " ('dyspneic', 'not breathing or able to breathe except with difficulty')]},\n", + " ('breathtaking', 'tending to cause suspension of regular breathing'),\n", + " ('inanimate',\n", + " 'appearing dead; not breathing or having no perceptible pulse')]},\n", " {'answer': 'briary',\n", " 'hint': 'synonyms for briary',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('thorny',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('bristled',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('prickly',\n", + " ('burry',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('spiny',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", + " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", + " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", + " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briery',\n", + " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('thorny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('barbellate',\n", + " ('bristly',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'bribable',\n", " 'hint': 'synonyms for bribable',\n", - " 'clues': [('venal', 'capable of being corrupted'),\n", + " 'clues': [('corruptible', 'capable of being corrupted'),\n", " ('purchasable', 'capable of being corrupted'),\n", - " ('corruptible', 'capable of being corrupted'),\n", - " ('dishonest', 'capable of being corrupted')]},\n", + " ('dishonest', 'capable of being corrupted'),\n", + " ('venal', 'capable of being corrupted')]},\n", " {'answer': 'briery',\n", " 'hint': 'synonyms for briery',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('thorny',\n", + " ('bristled',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", + " ('burry',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('prickly',\n", + " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burred',\n", + " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", + " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", + " ('thorny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('bristly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('barbellate',\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'bright',\n", " 'hint': 'synonyms for bright',\n", - " 'clues': [('brilliant', 'clear and sharp and ringing'),\n", - " ('hopeful', 'full or promise'),\n", - " ('vivid', 'having striking color'),\n", - " ('smart', 'characterized by quickness and ease in learning'),\n", - " ('shining',\n", - " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", - " ('promising', 'full or promise'),\n", - " ('undimmed', 'not made dim or less bright'),\n", + " 'clues': [('promising', 'full or promise'),\n", " ('lustrous',\n", " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", " ('shiny',\n", " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", + " ('shining',\n", + " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", + " ('brilliant', 'having striking color'),\n", + " ('hopeful', 'full or promise'),\n", + " ('smart', 'characterized by quickness and ease in learning'),\n", + " ('undimmed', 'not made dim or less bright'),\n", + " ('vivid', 'having striking color'),\n", " ('burnished',\n", " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow')]},\n", " {'answer': 'brilliant',\n", " 'hint': 'synonyms for brilliant',\n", - " 'clues': [('smart as a whip',\n", - " 'having or marked by unusual and impressive intelligence'),\n", - " ('vivid', 'having striking color'),\n", + " 'clues': [('splendid', 'characterized by grandeur'),\n", " ('magnificent', 'characterized by grandeur'),\n", - " ('superb', 'of surpassing excellence'),\n", " ('bright', 'having striking color'),\n", - " ('splendid', 'characterized by grandeur'),\n", + " ('superb', 'of surpassing excellence'),\n", " ('brainy', 'having or marked by unusual and impressive intelligence'),\n", + " ('vivid', 'having striking color'),\n", + " ('smart as a whip',\n", + " 'having or marked by unusual and impressive intelligence'),\n", " ('glorious', 'characterized by grandeur')]},\n", " {'answer': 'brisk',\n", " 'hint': 'synonyms for brisk',\n", - " 'clues': [('zippy', 'quick and energetic'),\n", + " 'clues': [('refreshful', 'imparting vitality and energy'),\n", " ('tonic', 'imparting vitality and energy'),\n", - " ('spanking', 'quick and energetic'),\n", - " ('lively', 'quick and energetic'),\n", + " ('merry', 'quick and energetic'),\n", + " ('bracing', 'imparting vitality and energy'),\n", " ('refreshing', 'imparting vitality and energy'),\n", " ('snappy', 'quick and energetic'),\n", - " ('bracing', 'imparting vitality and energy'),\n", - " ('refreshful', 'imparting vitality and energy'),\n", + " ('lively', 'quick and energetic'),\n", + " ('spanking', 'quick and energetic'),\n", " ('fresh', 'imparting vitality and energy'),\n", + " ('zippy', 'quick and energetic'),\n", " ('rattling', 'quick and energetic'),\n", - " ('alert', 'quick and energetic'),\n", - " ('merry', 'quick and energetic')]},\n", + " ('alert', 'quick and energetic')]},\n", " {'answer': 'bristled',\n", " 'hint': 'synonyms for bristled',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('thorny',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", + " ('burry',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('prickly',\n", + " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burred',\n", + " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", + " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briery',\n", + " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('thorny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('barbellate',\n", + " ('bristly',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'bristly',\n", " 'hint': 'synonyms for bristly',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('waspish', 'very irritable'),\n", - " ('thorny',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", + " ('bristled',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('prickly', 'very irritable'),\n", - " ('setose',\n", + " ('burry',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('spiny',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('splenetic', 'very irritable'),\n", " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", + " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", + " ('splenetic', 'very irritable'),\n", + " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('barbellate',\n", + " ('waspish', 'very irritable'),\n", + " ('thorny',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'broad',\n", " 'hint': 'synonyms for broad',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('tolerant', 'showing or characterized by broad-mindedness'),\n", - " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('unspecific', 'not detailed or specific'),\n", + " ('unsubtle', 'lacking subtlety; obvious'),\n", + " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('liberal', 'showing or characterized by broad-mindedness'),\n", - " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('full', 'being at a peak or culminating point'),\n", " ('spacious', 'very large in expanse or scope'),\n", + " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('full', 'being at a peak or culminating point'),\n", " ('large-minded', 'showing or characterized by broad-mindedness'),\n", - " ('unsubtle', 'lacking subtlety; obvious'),\n", - " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('unspecific', 'not detailed or specific')]},\n", + " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('tolerant', 'showing or characterized by broad-mindedness')]},\n", " {'answer': 'broken',\n", " 'hint': 'synonyms for broken',\n", - " 'clues': [('humiliated', 'subdued or brought low in condition or status'),\n", - " ('disordered', 'thrown into a state of disarray or confusion'),\n", + " 'clues': [('crushed', 'subdued or brought low in condition or status'),\n", " ('upset', 'thrown into a state of disarray or confusion'),\n", - " ('low', 'subdued or brought low in condition or status'),\n", - " ('humbled', 'subdued or brought low in condition or status'),\n", - " ('impoverished', 'destroyed financially'),\n", + " ('humiliated', 'subdued or brought low in condition or status'),\n", " ('broken in', 'tamed or trained to obey'),\n", - " ('rugged', 'topographically very uneven'),\n", - " ('confused', 'thrown into a state of disarray or confusion'),\n", - " ('crushed', 'subdued or brought low in condition or status'),\n", " ('unkept',\n", " '(especially of promises or contracts) having been violated or disregarded'),\n", + " ('disordered', 'thrown into a state of disarray or confusion'),\n", + " ('rugged', 'topographically very uneven'),\n", + " ('wiped out', 'destroyed financially'),\n", + " ('impoverished', 'destroyed financially'),\n", + " ('humbled', 'subdued or brought low in condition or status'),\n", " ('busted',\n", " \"out of working order (`busted' is an informal substitute for `broken')\"),\n", - " ('wiped out', 'destroyed financially')]},\n", + " ('confused', 'thrown into a state of disarray or confusion'),\n", + " ('low', 'subdued or brought low in condition or status')]},\n", " {'answer': 'broken-down',\n", " 'hint': 'synonyms for broken-down',\n", - " 'clues': [('bedraggled', 'in deplorable condition'),\n", - " ('ramshackle', 'in deplorable condition'),\n", - " ('dilapidated', 'in deplorable condition'),\n", - " ('derelict', 'in deplorable condition'),\n", + " 'clues': [('derelict', 'in deplorable condition'),\n", " ('tumble-down', 'in deplorable condition'),\n", - " ('tatterdemalion', 'in deplorable condition')]},\n", + " ('tatterdemalion', 'in deplorable condition'),\n", + " ('bedraggled', 'in deplorable condition'),\n", + " ('ramshackle', 'in deplorable condition'),\n", + " ('dilapidated', 'in deplorable condition')]},\n", " {'answer': 'brooding',\n", " 'hint': 'synonyms for brooding',\n", - " 'clues': [('broody', 'deeply or seriously thoughtful'),\n", - " ('reflective', 'deeply or seriously thoughtful'),\n", + " 'clues': [('ruminative', 'deeply or seriously thoughtful'),\n", + " ('contemplative', 'deeply or seriously thoughtful'),\n", + " ('pensive', 'deeply or seriously thoughtful'),\n", " ('pondering', 'deeply or seriously thoughtful'),\n", + " ('reflective', 'deeply or seriously thoughtful'),\n", " ('meditative', 'deeply or seriously thoughtful'),\n", - " ('contemplative', 'deeply or seriously thoughtful'),\n", - " ('musing', 'deeply or seriously thoughtful'),\n", - " ('ruminative', 'deeply or seriously thoughtful'),\n", - " ('pensive', 'deeply or seriously thoughtful')]},\n", + " ('broody', 'deeply or seriously thoughtful'),\n", + " ('musing', 'deeply or seriously thoughtful')]},\n", " {'answer': 'broody',\n", " 'hint': 'synonyms for broody',\n", - " 'clues': [('brooding', 'deeply or seriously thoughtful'),\n", - " ('reflective', 'deeply or seriously thoughtful'),\n", + " 'clues': [('ruminative', 'deeply or seriously thoughtful'),\n", + " ('contemplative', 'deeply or seriously thoughtful'),\n", + " ('pensive', 'deeply or seriously thoughtful'),\n", + " ('brooding', 'deeply or seriously thoughtful'),\n", " ('pondering', 'deeply or seriously thoughtful'),\n", + " ('reflective', 'deeply or seriously thoughtful'),\n", " ('meditative', 'deeply or seriously thoughtful'),\n", - " ('contemplative', 'deeply or seriously thoughtful'),\n", - " ('musing', 'deeply or seriously thoughtful'),\n", - " ('ruminative', 'deeply or seriously thoughtful'),\n", - " ('pensive', 'deeply or seriously thoughtful')]},\n", + " ('musing', 'deeply or seriously thoughtful')]},\n", " {'answer': 'brown',\n", " 'hint': 'synonyms for brown',\n", - " 'clues': [('chocolate-brown',\n", - " 'of a color similar to that of wood or earth'),\n", - " ('dark-brown', 'of a color similar to that of wood or earth'),\n", + " 'clues': [('dark-brown', 'of a color similar to that of wood or earth'),\n", " ('brownish', 'of a color similar to that of wood or earth'),\n", - " ('browned', '(of skin) deeply suntanned')]},\n", + " ('browned', '(of skin) deeply suntanned'),\n", + " ('chocolate-brown', 'of a color similar to that of wood or earth')]},\n", " {'answer': 'brutal',\n", " 'hint': 'synonyms for brutal',\n", - " 'clues': [('vicious',\n", - " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('barbarous',\n", + " 'clues': [('barbarous',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('fell',\n", + " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n", + " ('vicious',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('roughshod',\n", + " ('unrelenting', 'harsh'),\n", + " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n", + " ('savage',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('brute', 'resembling a beast; showing lack of human sensibility'),\n", " ('cruel',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", " ('beastly', 'resembling a beast; showing lack of human sensibility'),\n", - " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n", - " ('unrelenting', 'harsh'),\n", - " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n", - " ('savage',\n", - " '(of persons or their actions) able or disposed to inflict pain or suffering')]},\n", + " ('roughshod',\n", + " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", + " ('fell',\n", + " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", + " ('brute', 'resembling a beast; showing lack of human sensibility')]},\n", " {'answer': 'brute',\n", " 'hint': 'synonyms for brute',\n", - " 'clues': [('beastly',\n", + " 'clues': [('brutal',\n", " 'resembling a beast; showing lack of human sensibility'),\n", " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brutish', 'resembling a beast; showing lack of human sensibility')]},\n", + " ('brutish', 'resembling a beast; showing lack of human sensibility'),\n", + " ('beastly', 'resembling a beast; showing lack of human sensibility')]},\n", " {'answer': 'brutish',\n", " 'hint': 'synonyms for brutish',\n", - " 'clues': [('beastly',\n", + " 'clues': [('brutal',\n", " 'resembling a beast; showing lack of human sensibility'),\n", " ('bestial', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brutal', 'resembling a beast; showing lack of human sensibility'),\n", - " ('brute', 'resembling a beast; showing lack of human sensibility')]},\n", + " ('brute', 'resembling a beast; showing lack of human sensibility'),\n", + " ('beastly', 'resembling a beast; showing lack of human sensibility')]},\n", " {'answer': 'bubbling',\n", " 'hint': 'synonyms for bubbling',\n", - " 'clues': [('bubbly',\n", + " 'clues': [('foamy',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('foamy',\n", + " ('effervescent', 'marked by high spirits or excitement'),\n", + " ('spumy',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", + " ('sparkly', 'marked by high spirits or excitement'),\n", + " ('frothy', 'marked by high spirits or excitement'),\n", " ('foaming',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('effervescing',\n", - " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('sparkly', 'marked by high spirits or excitement'),\n", " ('scintillating', 'marked by high spirits or excitement'),\n", - " ('frothy',\n", - " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('spumy',\n", + " ('effervescing',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('effervescent', 'marked by high spirits or excitement')]},\n", + " ('bubbly',\n", + " 'emitting or filled with bubbles as from carbonation or fermentation')]},\n", " {'answer': 'bubbly',\n", " 'hint': 'synonyms for bubbly',\n", - " 'clues': [('frothy',\n", - " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('spumy',\n", - " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('foamy',\n", + " 'clues': [('foamy',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", " ('foaming',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", " ('bubbling',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", + " ('spumy',\n", + " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", + " ('frothy',\n", + " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", " ('effervescing',\n", " 'emitting or filled with bubbles as from carbonation or fermentation')]},\n", " {'answer': 'buffeted',\n", " 'hint': 'synonyms for buffeted',\n", - " 'clues': [('tempest-swept',\n", + " 'clues': [('storm-tossed',\n", " 'pounded or hit repeatedly by storms or adversities'),\n", + " ('tempest-swept', 'pounded or hit repeatedly by storms or adversities'),\n", " ('tempest-tossed', 'pounded or hit repeatedly by storms or adversities'),\n", - " ('storm-tossed', 'pounded or hit repeatedly by storms or adversities'),\n", " ('tempest-tost', 'pounded or hit repeatedly by storms or adversities')]},\n", " {'answer': 'buggy',\n", " 'hint': 'synonyms for buggy',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'built-in',\n", " 'hint': 'synonyms for built-in',\n", " 'clues': [('inbuilt',\n", " 'existing as an essential constituent or characteristic'),\n", + " ('integral', 'existing as an essential constituent or characteristic'),\n", " ('constitutional',\n", " 'existing as an essential constituent or characteristic'),\n", - " ('integral', 'existing as an essential constituent or characteristic'),\n", " ('inherent', 'existing as an essential constituent or characteristic')]},\n", " {'answer': 'buirdly',\n", " 'hint': 'synonyms for buirdly',\n", - " 'clues': [('strapping', 'muscular and heavily built'),\n", - " ('beefy', 'muscular and heavily built'),\n", - " ('husky', 'muscular and heavily built'),\n", - " ('burly', 'muscular and heavily built')]},\n", + " 'clues': [('beefy', 'muscular and heavily built'),\n", + " ('strapping', 'muscular and heavily built'),\n", + " ('burly', 'muscular and heavily built'),\n", + " ('husky', 'muscular and heavily built')]},\n", " {'answer': 'bulbous',\n", " 'hint': 'synonyms for bulbous',\n", - " 'clues': [('bulging', 'curving outward'),\n", + " 'clues': [('bulblike', 'shaped like a bulb'),\n", + " ('bulging', 'curving outward'),\n", " ('bulgy', 'curving outward'),\n", - " ('bellied', 'curving outward'),\n", - " ('protuberant', 'curving outward'),\n", " ('bellying', 'curving outward'),\n", + " ('bellied', 'curving outward'),\n", " ('bulb-shaped', 'shaped like a bulb'),\n", - " ('bulblike', 'shaped like a bulb')]},\n", + " ('protuberant', 'curving outward')]},\n", " {'answer': 'bulging',\n", " 'hint': 'synonyms for bulging',\n", - " 'clues': [('bulgy', 'curving outward'),\n", - " ('bellied', 'curving outward'),\n", - " ('protuberant', 'curving outward'),\n", - " ('convex', 'curving or bulging outward'),\n", + " 'clues': [('convex', 'curving or bulging outward'),\n", + " ('bulgy', 'curving outward'),\n", + " ('bellying', 'curving outward'),\n", " ('bulbous', 'curving outward'),\n", - " ('bellying', 'curving outward')]},\n", + " ('bellied', 'curving outward'),\n", + " ('protuberant', 'curving outward')]},\n", " {'answer': 'bulgy',\n", " 'hint': 'synonyms for bulgy',\n", " 'clues': [('bulging', 'curving outward'),\n", - " ('bellied', 'curving outward'),\n", - " ('protuberant', 'curving outward'),\n", " ('bellying', 'curving outward'),\n", - " ('bulbous', 'curving outward')]},\n", + " ('bulbous', 'curving outward'),\n", + " ('bellied', 'curving outward'),\n", + " ('protuberant', 'curving outward')]},\n", " {'answer': 'bully',\n", " 'hint': 'synonyms for bully',\n", - " 'clues': [('smashing', 'very good'),\n", + " 'clues': [('nifty', 'very good'),\n", + " ('great', 'very good'),\n", " ('not bad', 'very good'),\n", + " ('bang-up', 'very good'),\n", + " ('cracking', 'very good'),\n", + " ('smashing', 'very good'),\n", + " ('groovy', 'very good'),\n", " ('swell', 'very good'),\n", + " ('neat', 'very good'),\n", + " ('peachy', 'very good'),\n", " ('dandy', 'very good'),\n", " ('keen', 'very good'),\n", - " ('nifty', 'very good'),\n", - " ('peachy', 'very good'),\n", - " ('cracking', 'very good'),\n", - " ('slap-up', 'very good'),\n", - " ('bang-up', 'very good'),\n", " ('corking', 'very good'),\n", - " ('neat', 'very good'),\n", - " ('groovy', 'very good'),\n", - " ('great', 'very good')]},\n", + " ('slap-up', 'very good')]},\n", " {'answer': 'bum',\n", " 'hint': 'synonyms for bum',\n", - " 'clues': [('punk', 'of very poor quality; flimsy'),\n", - " ('cheap', 'of very poor quality; flimsy'),\n", - " ('chintzy', 'of very poor quality; flimsy'),\n", + " 'clues': [('crummy', 'of very poor quality; flimsy'),\n", " ('tinny', 'of very poor quality; flimsy'),\n", + " ('cheesy', 'of very poor quality; flimsy'),\n", " ('sleazy', 'of very poor quality; flimsy'),\n", - " ('crummy', 'of very poor quality; flimsy'),\n", - " ('cheesy', 'of very poor quality; flimsy')]},\n", + " ('chintzy', 'of very poor quality; flimsy'),\n", + " ('cheap', 'of very poor quality; flimsy'),\n", + " ('punk', 'of very poor quality; flimsy')]},\n", " {'answer': 'bumbling',\n", " 'hint': 'synonyms for bumbling',\n", - " 'clues': [('heavy-handed',\n", + " 'clues': [('handless',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", " ('ham-fisted',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('ham-handed',\n", + " ('butterfingered',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('bungling',\n", + " ('left-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('butterfingered',\n", + " ('bungling',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('handless',\n", + " ('ham-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('left-handed',\n", + " ('heavy-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse')]},\n", " {'answer': 'bumpy',\n", " 'hint': 'synonyms for bumpy',\n", " 'clues': [('jolty',\n", " 'causing or characterized by jolts and irregular movements'),\n", - " ('rough', 'causing or characterized by jolts and irregular movements'),\n", " ('rocky', 'causing or characterized by jolts and irregular movements'),\n", " ('jolting', 'causing or characterized by jolts and irregular movements'),\n", + " ('rough', 'causing or characterized by jolts and irregular movements'),\n", " ('jumpy', 'causing or characterized by jolts and irregular movements')]},\n", " {'answer': 'bungling',\n", " 'hint': 'synonyms for bungling',\n", " 'clues': [('bumbling',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('clumsy', 'showing lack of skill or aptitude'),\n", - " ('incompetent', 'showing lack of skill or aptitude'),\n", - " ('handless',\n", - " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('ham-handed',\n", - " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", " ('left-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('heavy-handed',\n", + " ('ham-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", " ('ham-fisted',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", + " ('clumsy', 'showing lack of skill or aptitude'),\n", + " ('handless',\n", + " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", " ('butterfingered',\n", - " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse')]},\n", + " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", + " ('heavy-handed',\n", + " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", + " ('incompetent', 'showing lack of skill or aptitude')]},\n", " {'answer': 'burly',\n", " 'hint': 'synonyms for burly',\n", - " 'clues': [('buirdly', 'muscular and heavily built'),\n", - " ('beefy', 'muscular and heavily built'),\n", + " 'clues': [('beefy', 'muscular and heavily built'),\n", " ('strapping', 'muscular and heavily built'),\n", + " ('buirdly', 'muscular and heavily built'),\n", " ('husky', 'muscular and heavily built')]},\n", " {'answer': 'burned',\n", " 'hint': 'synonyms for burned',\n", - " 'clues': [('burnt-out', 'destroyed or badly damaged by fire'),\n", - " ('burnt', 'destroyed or badly damaged by fire'),\n", + " 'clues': [('burnt', 'destroyed or badly damaged by fire'),\n", " ('burned-over', 'destroyed or badly damaged by fire'),\n", + " ('burnt-out', 'destroyed or badly damaged by fire'),\n", " ('burned-out', 'destroyed or badly damaged by fire')]},\n", " {'answer': 'burned-out',\n", " 'hint': 'synonyms for burned-out',\n", - " 'clues': [('burnt-out', 'exhausted as a result of longtime stress'),\n", - " ('burnt', 'destroyed or badly damaged by fire'),\n", - " ('burned', 'destroyed or badly damaged by fire'),\n", - " ('burned-over', 'destroyed or badly damaged by fire')]},\n", + " 'clues': [('burnt', 'destroyed or badly damaged by fire'),\n", + " ('burnt-out', 'inoperative as a result of heat or friction'),\n", + " ('burned-over', 'destroyed or badly damaged by fire'),\n", + " ('burned', 'destroyed or badly damaged by fire')]},\n", " {'answer': 'burned-over',\n", " 'hint': 'synonyms for burned-over',\n", " 'clues': [('burnt-out', 'destroyed or badly damaged by fire'),\n", - " ('burnt', 'destroyed or badly damaged by fire'),\n", + " ('burned-out', 'destroyed or badly damaged by fire'),\n", " ('burned', 'destroyed or badly damaged by fire'),\n", - " ('burned-out', 'destroyed or badly damaged by fire')]},\n", + " ('burnt', 'destroyed or badly damaged by fire')]},\n", " {'answer': 'burnished',\n", " 'hint': 'synonyms for burnished',\n", - " 'clues': [('shiny',\n", - " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", - " ('shining',\n", + " 'clues': [('shining',\n", " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", " ('lustrous',\n", " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", " ('bright',\n", + " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow'),\n", + " ('shiny',\n", " 'made smooth and bright by or as if by rubbing; reflecting a sheen or glow')]},\n", " {'answer': 'burnt',\n", " 'hint': 'synonyms for burnt',\n", - " 'clues': [('burned',\n", - " 'treated by heating to a high temperature but below the melting or fusing point'),\n", + " 'clues': [('burned-over', 'destroyed or badly damaged by fire'),\n", " ('burnt-out', 'destroyed or badly damaged by fire'),\n", - " ('burned-over', 'destroyed or badly damaged by fire'),\n", - " ('burned-out', 'destroyed or badly damaged by fire')]},\n", + " ('burned-out', 'destroyed or badly damaged by fire'),\n", + " ('burned', 'destroyed or badly damaged by fire')]},\n", " {'answer': 'burnt-out',\n", " 'hint': 'synonyms for burnt-out',\n", - " 'clues': [('burnt', 'destroyed or badly damaged by fire'),\n", - " ('burned-out', 'exhausted as a result of longtime stress'),\n", + " 'clues': [('burned-out', 'exhausted as a result of longtime stress'),\n", + " ('burnt', 'destroyed or badly damaged by fire'),\n", " ('burned', 'destroyed or badly damaged by fire'),\n", " ('burned-over', 'destroyed or badly damaged by fire')]},\n", " {'answer': 'burred',\n", " 'hint': 'synonyms for burred',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('thorny',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", + " ('bristled',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('burry',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('prickly',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burry',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", + " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('barbellate',\n", + " ('thorny',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('bristly',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'burry',\n", " 'hint': 'synonyms for burry',\n", " 'clues': [('barbed',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('thorny',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('briary',\n", + " ('bristled',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setose',\n", + " ('setaceous',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('prickly',\n", + " ('burred',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('spiny',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('burred',\n", - " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", " ('briery',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristled',\n", + " ('barbellate',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('bristly',\n", + " ('briary',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('setaceous',\n", + " ('prickly',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", - " ('barbellate',\n", + " ('thorny',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('bristly',\n", + " 'having or covered with protective barbs or quills or spines or thorns or setae etc.'),\n", + " ('setose',\n", " 'having or covered with protective barbs or quills or spines or thorns or setae etc.')]},\n", " {'answer': 'busty',\n", " 'hint': 'synonyms for busty',\n", - " 'clues': [('curvy',\n", + " 'clues': [('voluptuous',\n", + " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('curvy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('well-endowed',\n", + " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('full-bosomed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('curvaceous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('stacked',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('voluptuous',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('sonsie',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('full-bosomed',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('bosomy',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('well-endowed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n", " {'answer': 'busy',\n", " 'hint': 'synonyms for busy',\n", " 'clues': [('in use',\n", " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n", - " ('meddling', 'intrusive in a meddling or offensive manner'),\n", - " ('interfering', 'intrusive in a meddling or offensive manner'),\n", " ('meddlesome', 'intrusive in a meddling or offensive manner'),\n", - " ('officious', 'intrusive in a meddling or offensive manner'),\n", - " ('fussy', 'overcrowded or cluttered with detail'),\n", + " ('interfering', 'intrusive in a meddling or offensive manner'),\n", + " ('meddling', 'intrusive in a meddling or offensive manner'),\n", + " ('busybodied', 'intrusive in a meddling or offensive manner'),\n", " ('engaged',\n", " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n", - " ('busybodied', 'intrusive in a meddling or offensive manner')]},\n", + " ('fussy', 'overcrowded or cluttered with detail'),\n", + " ('officious', 'intrusive in a meddling or offensive manner')]},\n", " {'answer': 'busybodied',\n", " 'hint': 'synonyms for busybodied',\n", - " 'clues': [('meddling', 'intrusive in a meddling or offensive manner'),\n", - " ('interfering', 'intrusive in a meddling or offensive manner'),\n", + " 'clues': [('busy', 'intrusive in a meddling or offensive manner'),\n", " ('meddlesome', 'intrusive in a meddling or offensive manner'),\n", - " ('officious', 'intrusive in a meddling or offensive manner'),\n", - " ('busy', 'intrusive in a meddling or offensive manner')]},\n", + " ('interfering', 'intrusive in a meddling or offensive manner'),\n", + " ('meddling', 'intrusive in a meddling or offensive manner'),\n", + " ('officious', 'intrusive in a meddling or offensive manner')]},\n", " {'answer': 'butcherly',\n", " 'hint': 'synonyms for butcherly',\n", " 'clues': [('unskillful', 'poorly done'),\n", + " ('gory', 'accompanied by bloodshed'),\n", " ('slaughterous', 'accompanied by bloodshed'),\n", " ('sanguineous', 'accompanied by bloodshed'),\n", " ('sanguinary', 'accompanied by bloodshed'),\n", - " ('botchy', 'poorly done'),\n", - " ('gory', 'accompanied by bloodshed')]},\n", + " ('botchy', 'poorly done')]},\n", " {'answer': 'butterfingered',\n", " 'hint': 'synonyms for butterfingered',\n", - " 'clues': [('bumbling',\n", - " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('heavy-handed',\n", + " 'clues': [('handless',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('ham-handed',\n", + " ('bumbling',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", " ('ham-fisted',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", + " ('left-handed',\n", + " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", " ('bungling',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('handless',\n", + " ('ham-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse'),\n", - " ('left-handed',\n", + " ('heavy-handed',\n", " 'lacking physical movement skills, especially with the hands; ; ; ; - Mary H. Vorse')]},\n", " {'answer': 'buttery',\n", " 'hint': 'synonyms for buttery',\n", " 'clues': [('unctuous',\n", " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n", - " ('fulsome',\n", + " ('smarmy',\n", " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n", " ('oleaginous',\n", " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n", + " ('fulsome',\n", + " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n", " ('soapy',\n", " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n", " ('oily',\n", - " 'unpleasantly and excessively suave or ingratiating in manner or speech'),\n", - " ('smarmy',\n", " 'unpleasantly and excessively suave or ingratiating in manner or speech')]},\n", " {'answer': 'buxom',\n", " 'hint': 'synonyms for buxom',\n", - " 'clues': [('curvy',\n", + " 'clues': [('voluptuous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('curvaceous',\n", + " ('curvy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('well-endowed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('stacked',\n", + " ('full-bosomed',\n", + " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('curvaceous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('zaftig',\n", " '(of a female body) healthily plump and vigorous ; - Robt.A.Hamilton'),\n", " ('zoftig',\n", " '(of a female body) healthily plump and vigorous ; - Robt.A.Hamilton'),\n", - " ('voluptuous',\n", + " ('stacked',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('full-bosomed',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('bosomy',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('sonsie',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('well-endowed',\n", + " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('bosomy',\n", " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n", " {'answer': 'bygone',\n", " 'hint': 'synonyms for bygone',\n", - " 'clues': [('foregone', 'well in the past; former'),\n", - " ('departed', 'well in the past; former'),\n", - " ('gone', 'well in the past; former'),\n", - " ('bypast', 'well in the past; former')]},\n", + " 'clues': [('departed', 'well in the past; former'),\n", + " ('foregone', 'well in the past; former'),\n", + " ('bypast', 'well in the past; former'),\n", + " ('gone', 'well in the past; former')]},\n", " {'answer': 'bypast',\n", " 'hint': 'synonyms for bypast',\n", " 'clues': [('foregone', 'well in the past; former'),\n", + " ('bygone', 'well in the past; former'),\n", " ('departed', 'well in the past; former'),\n", - " ('gone', 'well in the past; former'),\n", - " ('bygone', 'well in the past; former')]},\n", + " ('gone', 'well in the past; former')]},\n", " {'answer': 'byzantine',\n", " 'hint': 'synonyms for byzantine',\n", - " 'clues': [('tangled',\n", + " 'clues': [('convoluted',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", - " ('knotty',\n", + " ('tangled',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", " ('tortuous',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", " ('involved',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", - " ('convoluted',\n", + " ('knotty',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott')]},\n", " {'answer': 'cadaverous',\n", " 'hint': 'synonyms for cadaverous',\n", - " 'clues': [('skeletal',\n", - " 'very thin especially from disease or hunger or cold'),\n", - " ('gaunt', 'very thin especially from disease or hunger or cold'),\n", - " ('pinched', 'very thin especially from disease or hunger or cold'),\n", - " ('bony', 'very thin especially from disease or hunger or cold'),\n", + " 'clues': [('gaunt', 'very thin especially from disease or hunger or cold'),\n", + " ('skeletal', 'very thin especially from disease or hunger or cold'),\n", " ('cadaveric', 'of or relating to a cadaver or corpse'),\n", + " ('haggard', 'very thin especially from disease or hunger or cold'),\n", + " ('bony', 'very thin especially from disease or hunger or cold'),\n", " ('wasted', 'very thin especially from disease or hunger or cold'),\n", - " ('emaciated', 'very thin especially from disease or hunger or cold'),\n", - " ('haggard', 'very thin especially from disease or hunger or cold')]},\n", + " ('pinched', 'very thin especially from disease or hunger or cold'),\n", + " ('emaciated', 'very thin especially from disease or hunger or cold')]},\n", " {'answer': 'cagey',\n", " 'hint': 'synonyms for cagey',\n", - " 'clues': [('clever',\n", + " 'clues': [('canny',\n", " 'showing self-interest and shrewdness in dealing with others'),\n", + " ('chary', 'characterized by great caution and wariness'),\n", " ('cagy', 'characterized by great caution and wariness'),\n", - " ('canny', 'showing self-interest and shrewdness in dealing with others'),\n", - " ('chary', 'characterized by great caution and wariness')]},\n", + " ('clever',\n", + " 'showing self-interest and shrewdness in dealing with others')]},\n", " {'answer': 'cagy',\n", " 'hint': 'synonyms for cagy',\n", - " 'clues': [('clever',\n", + " 'clues': [('canny',\n", " 'showing self-interest and shrewdness in dealing with others'),\n", - " ('cagey', 'showing self-interest and shrewdness in dealing with others'),\n", - " ('canny', 'showing self-interest and shrewdness in dealing with others'),\n", - " ('chary', 'characterized by great caution and wariness')]},\n", + " ('chary', 'characterized by great caution and wariness'),\n", + " ('cagey', 'characterized by great caution and wariness'),\n", + " ('clever',\n", + " 'showing self-interest and shrewdness in dealing with others')]},\n", " {'answer': 'calamitous',\n", " 'hint': 'synonyms for calamitous',\n", " 'clues': [('fateful',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", + " ('black',\n", + " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", " ('fatal',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", " ('disastrous',\n", - " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", - " ('black',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur')]},\n", " {'answer': 'calculating',\n", " 'hint': 'synonyms for calculating',\n", " 'clues': [('conniving', 'used of persons'),\n", - " ('shrewd', 'used of persons'),\n", + " ('calculative', 'used of persons'),\n", " ('scheming', 'used of persons'),\n", - " ('calculative', 'used of persons')]},\n", + " ('shrewd', 'used of persons')]},\n", " {'answer': 'calculative',\n", " 'hint': 'synonyms for calculative',\n", - " 'clues': [('conniving', 'used of persons'),\n", - " ('shrewd', 'used of persons'),\n", - " ('calculating', 'used of persons'),\n", - " ('scheming', 'used of persons')]},\n", + " 'clues': [('calculating', 'used of persons'),\n", + " ('conniving', 'used of persons'),\n", + " ('scheming', 'used of persons'),\n", + " ('shrewd', 'used of persons')]},\n", " {'answer': 'calico',\n", " 'hint': 'synonyms for calico',\n", - " 'clues': [('multicolored',\n", + " 'clues': [('particolored',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('particoloured',\n", + " ('multi-coloured',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('pied',\n", + " ('multicolor',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('piebald',\n", + " ('varicoloured',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('painted',\n", + " ('motley',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('varicolored',\n", + " ('painted',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('multi-colour',\n", + " ('pied',\n", " 'having sections or patches colored differently and usually brightly'),\n", - " ('motley',\n", + " ('piebald',\n", " 'having sections or patches colored differently and usually brightly')]},\n", " {'answer': 'callous',\n", " 'hint': 'synonyms for callous',\n", @@ -40032,809 +40074,798 @@ " 'having calluses; having skin made tough and thick through wear'),\n", " ('thickened',\n", " 'having calluses; having skin made tough and thick through wear'),\n", - " ('pachydermatous', 'emotionally hardened'),\n", - " ('indurate', 'emotionally hardened')]},\n", + " ('indurate', 'emotionally hardened'),\n", + " ('pachydermatous', 'emotionally hardened')]},\n", " {'answer': 'calumniatory',\n", " 'hint': 'synonyms for calumniatory',\n", - " 'clues': [('libelous',\n", + " 'clues': [('slanderous',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('denigratory',\n", + " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrative',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('libellous',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrating',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('defamatory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('slanderous',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('calumnious',\n", + " ('denigratory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n", " {'answer': 'calumnious',\n", " 'hint': 'synonyms for calumnious',\n", - " 'clues': [('libelous',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('denigratory',\n", + " 'clues': [('slanderous',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrative',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('libellous',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrating',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('defamatory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('slanderous',\n", + " ('denigratory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('calumniatory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n", " {'answer': 'candid',\n", " 'hint': 'synonyms for candid',\n", - " 'clues': [('plainspoken',\n", - " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('open',\n", + " 'clues': [('open',\n", " 'openly straightforward and direct without reserve or secretiveness'),\n", - " ('blunt',\n", - " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('straight-from-the-shoulder',\n", + " ('free-spoken',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", " ('forthright',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('free-spoken',\n", + " ('blunt',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('heart-to-heart',\n", - " 'openly straightforward and direct without reserve or secretiveness'),\n", " ('point-blank',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", - " ('outspoken',\n", + " ('heart-to-heart',\n", + " 'openly straightforward and direct without reserve or secretiveness'),\n", + " ('straight-from-the-shoulder',\n", " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", " ('frank',\n", + " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", + " ('plainspoken',\n", + " 'characterized by directness in manner or speech; without subtlety or evasion'),\n", + " ('outspoken',\n", " 'characterized by directness in manner or speech; without subtlety or evasion')]},\n", " {'answer': 'cannular',\n", " 'hint': 'synonyms for cannular',\n", - " 'clues': [('tubelike',\n", - " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n", - " ('tube-shaped',\n", + " 'clues': [('tubular',\n", " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n", " ('vasiform',\n", " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n", - " ('tubular',\n", + " ('tube-shaped',\n", + " 'constituting a tube; having hollow tubes (as for the passage of fluids)'),\n", + " ('tubelike',\n", " 'constituting a tube; having hollow tubes (as for the passage of fluids)')]},\n", " {'answer': 'canted',\n", " 'hint': 'synonyms for canted',\n", - " 'clues': [('leaning',\n", - " 'departing or being caused to depart from the true vertical or horizontal'),\n", - " ('tilted',\n", + " 'clues': [('atilt',\n", " 'departing or being caused to depart from the true vertical or horizontal'),\n", " ('tipped',\n", " 'departing or being caused to depart from the true vertical or horizontal'),\n", - " ('atilt',\n", + " ('tilted',\n", + " 'departing or being caused to depart from the true vertical or horizontal'),\n", + " ('leaning',\n", " 'departing or being caused to depart from the true vertical or horizontal')]},\n", " {'answer': 'capable',\n", " 'hint': 'synonyms for capable',\n", - " 'clues': [('open', 'possibly accepting or permitting'),\n", + " 'clues': [('equal to', 'having the requisite qualities for'),\n", " ('able', 'have the skills and qualifications to do things well'),\n", - " ('equal to', 'having the requisite qualities for'),\n", + " ('subject', 'possibly accepting or permitting'),\n", " ('adequate to', 'having the requisite qualities for'),\n", " ('up to', 'having the requisite qualities for'),\n", - " ('subject', 'possibly accepting or permitting')]},\n", + " ('open', 'possibly accepting or permitting')]},\n", " {'answer': 'captivated',\n", " 'hint': 'synonyms for captivated',\n", - " 'clues': [('entranced', 'filled with wonder and delight'),\n", - " ('beguiled', 'filled with wonder and delight'),\n", + " 'clues': [('charmed', 'filled with wonder and delight'),\n", " ('enthralled', 'filled with wonder and delight'),\n", + " ('beguiled', 'filled with wonder and delight'),\n", " ('delighted', 'filled with wonder and delight'),\n", - " ('charmed', 'filled with wonder and delight')]},\n", + " ('entranced', 'filled with wonder and delight')]},\n", " {'answer': 'captivating',\n", " 'hint': 'synonyms for captivating',\n", - " 'clues': [('enchanting', 'capturing interest as if by a spell'),\n", - " ('bewitching', 'capturing interest as if by a spell'),\n", + " 'clues': [('bewitching', 'capturing interest as if by a spell'),\n", + " ('enchanting', 'capturing interest as if by a spell'),\n", " ('fascinating', 'capturing interest as if by a spell'),\n", - " ('enthralling', 'capturing interest as if by a spell'),\n", - " ('entrancing', 'capturing interest as if by a spell')]},\n", + " ('entrancing', 'capturing interest as if by a spell'),\n", + " ('enthralling', 'capturing interest as if by a spell')]},\n", " {'answer': 'captive',\n", " 'hint': 'synonyms for captive',\n", - " 'clues': [('imprisoned', 'being in captivity'),\n", - " ('jailed', 'being in captivity'),\n", - " ('wrapped',\n", + " 'clues': [('intent',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", - " ('engrossed',\n", + " ('wrapped',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", + " ('imprisoned', 'being in captivity'),\n", " ('confined', 'being in captivity'),\n", - " ('intent',\n", + " ('engrossed',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", " ('absorbed',\n", - " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n", + " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", + " ('jailed', 'being in captivity')]},\n", " {'answer': 'cardinal',\n", " 'hint': 'synonyms for cardinal',\n", " 'clues': [('primal', 'serving as an essential component'),\n", + " ('central', 'serving as an essential component'),\n", " ('key', 'serving as an essential component'),\n", - " ('fundamental', 'serving as an essential component'),\n", - " ('central', 'serving as an essential component')]},\n", + " ('fundamental', 'serving as an essential component')]},\n", " {'answer': 'carefree',\n", " 'hint': 'synonyms for carefree',\n", " 'clues': [('happy-go-lucky', 'cheerfully irresponsible'),\n", - " ('harum-scarum', 'cheerfully irresponsible'),\n", " ('devil-may-care', 'cheerfully irresponsible'),\n", - " ('slaphappy', 'cheerfully irresponsible'),\n", + " ('freewheeling', 'cheerfully irresponsible'),\n", " ('unworried', 'free of trouble and worry and care'),\n", - " ('freewheeling', 'cheerfully irresponsible')]},\n", + " ('harum-scarum', 'cheerfully irresponsible'),\n", + " ('slaphappy', 'cheerfully irresponsible')]},\n", " {'answer': 'careful',\n", " 'hint': 'synonyms for careful',\n", - " 'clues': [('deliberate', 'unhurried and with care and dignity'),\n", + " 'clues': [('thrifty', 'mindful of the future in spending money'),\n", + " ('deliberate', 'unhurried and with care and dignity'),\n", " ('measured', 'unhurried and with care and dignity'),\n", - " ('heedful', 'cautiously attentive'),\n", - " ('thrifty', 'mindful of the future in spending money')]},\n", + " ('heedful', 'cautiously attentive')]},\n", " {'answer': 'careworn',\n", " 'hint': 'synonyms for careworn',\n", - " 'clues': [('haggard',\n", + " 'clues': [('worn',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n", " ('drawn',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n", - " ('raddled',\n", + " ('haggard',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n", - " ('worn',\n", + " ('raddled',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens')]},\n", " {'answer': 'carmine',\n", " 'hint': 'synonyms for carmine',\n", - " 'clues': [('red',\n", + " 'clues': [('reddish',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruddy',\n", + " ('ruby-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('blood-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('cherry-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('cerise',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruby-red',\n", + " ('ruddy',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruby',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry',\n", + " ('red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('crimson',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('scarlet',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('reddish',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry-red',\n", + " ('cherry',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('blood-red',\n", + " ('scarlet',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n", " {'answer': 'casual',\n", " 'hint': 'synonyms for casual',\n", - " 'clues': [('chance', 'occurring or appearing or singled out by chance'),\n", + " 'clues': [('nonchalant', 'marked by blithe unconcern'),\n", + " ('chance', 'occurring or appearing or singled out by chance'),\n", " ('effortless', 'not showing effort or strain'),\n", - " ('occasional', 'occurring from time to time'),\n", - " ('everyday', 'appropriate for ordinary or routine occasions'),\n", - " ('passing', 'hasty and without attention to detail; not thorough'),\n", " ('insouciant', 'marked by blithe unconcern'),\n", + " ('occasional', 'occurring from time to time'),\n", + " ('free-and-easy', 'natural and unstudied'),\n", " ('cursory', 'hasty and without attention to detail; not thorough'),\n", - " ('nonchalant', 'marked by blithe unconcern'),\n", - " ('daily', 'appropriate for ordinary or routine occasions'),\n", + " ('passing', 'hasty and without attention to detail; not thorough'),\n", " ('fooling', 'characterized by a feeling of irresponsibility'),\n", - " ('free-and-easy', 'natural and unstudied'),\n", + " ('daily', 'appropriate for ordinary or routine occasions'),\n", + " ('everyday', 'appropriate for ordinary or routine occasions'),\n", " ('perfunctory', 'hasty and without attention to detail; not thorough')]},\n", + " {'answer': 'cata-cornered',\n", + " 'hint': 'synonyms for cata-cornered',\n", + " 'clues': [('catty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('catacorner', 'slanted across a polygon on a diagonal line'),\n", + " ('kitty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('cater-cornered', 'slanted across a polygon on a diagonal line')]},\n", + " {'answer': 'catacorner',\n", + " 'hint': 'synonyms for catacorner',\n", + " 'clues': [('catty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('cata-cornered', 'slanted across a polygon on a diagonal line'),\n", + " ('kitty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('catercorner', 'slanted across a polygon on a diagonal line')]},\n", " {'answer': 'catching',\n", " 'hint': 'synonyms for catching',\n", - " 'clues': [('contractable',\n", + " 'clues': [('transmissible',\n", " '(of disease) capable of being transmitted by infection'),\n", - " ('transmissible',\n", + " ('transmittable',\n", " '(of disease) capable of being transmitted by infection'),\n", " ('contagious', '(of disease) capable of being transmitted by infection'),\n", - " ('transmittable',\n", + " ('contractable',\n", " '(of disease) capable of being transmitted by infection'),\n", " ('communicable',\n", " '(of disease) capable of being transmitted by infection')]},\n", + " {'answer': 'cater-cornered',\n", + " 'hint': 'synonyms for cater-cornered',\n", + " 'clues': [('catty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('cata-cornered', 'slanted across a polygon on a diagonal line'),\n", + " ('kitty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('catercorner', 'slanted across a polygon on a diagonal line')]},\n", " {'answer': 'cathartic',\n", " 'hint': 'synonyms for cathartic',\n", - " 'clues': [('psychotherapeutic', 'emotionally purging'),\n", - " ('purgative', 'strongly laxative'),\n", - " ('releasing', 'emotionally purging (of e.g. art)'),\n", - " ('evacuant', 'strongly laxative')]},\n", + " 'clues': [('purgative', 'strongly laxative'),\n", + " ('evacuant', 'strongly laxative'),\n", + " ('psychotherapeutic', 'emotionally purging'),\n", + " ('releasing', 'emotionally purging (of e.g. art)')]},\n", " {'answer': 'catty-cornered',\n", " 'hint': 'synonyms for catty-cornered',\n", - " 'clues': [('kitty-cornered',\n", - " 'slanted across a polygon on a diagonal line'),\n", + " 'clues': [('catty-corner', 'slanted across a polygon on a diagonal line'),\n", " ('cata-cornered', 'slanted across a polygon on a diagonal line'),\n", - " ('catercorner', 'slanted across a polygon on a diagonal line'),\n", - " ('catty-corner', 'slanted across a polygon on a diagonal line')]},\n", + " ('kitty-corner', 'slanted across a polygon on a diagonal line'),\n", + " ('catercorner', 'slanted across a polygon on a diagonal line')]},\n", " {'answer': 'caustic',\n", " 'hint': 'synonyms for caustic',\n", - " 'clues': [('acerb', 'harsh or corrosive in tone'),\n", - " ('acrid', 'harsh or corrosive in tone'),\n", + " 'clues': [('acid', 'harsh or corrosive in tone'),\n", " ('acerbic', 'harsh or corrosive in tone'),\n", + " ('sulfurous', 'harsh or corrosive in tone'),\n", " ('vitriolic', 'harsh or corrosive in tone'),\n", - " ('erosive',\n", - " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", + " ('virulent', 'harsh or corrosive in tone'),\n", + " ('acerb', 'harsh or corrosive in tone'),\n", " ('mordant',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", - " ('virulent', 'harsh or corrosive in tone'),\n", - " ('corrosive',\n", + " ('blistering', 'harsh or corrosive in tone'),\n", + " ('bitter', 'harsh or corrosive in tone'),\n", + " ('erosive',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", " ('sulphurous', 'harsh or corrosive in tone'),\n", - " ('sulfurous', 'harsh or corrosive in tone'),\n", - " ('bitter', 'harsh or corrosive in tone'),\n", - " ('blistering', 'harsh or corrosive in tone')]},\n", + " ('corrosive',\n", + " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action')]},\n", " {'answer': 'cautionary',\n", " 'hint': 'synonyms for cautionary',\n", - " 'clues': [('exemplary', 'serving to warn'),\n", - " ('prophylactic', 'warding off; - Victor Schultze'),\n", - " ('warning', 'serving to warn'),\n", - " ('monitory', 'serving to warn')]},\n", + " 'clues': [('prophylactic', 'warding off; - Victor Schultze'),\n", + " ('monitory', 'serving to warn'),\n", + " ('exemplary', 'serving to warn'),\n", + " ('warning', 'serving to warn')]},\n", " {'answer': 'ceaseless',\n", " 'hint': 'synonyms for ceaseless',\n", " 'clues': [('never-ending',\n", " 'uninterrupted in time and indefinitely long continuing'),\n", - " ('incessant', 'uninterrupted in time and indefinitely long continuing'),\n", - " ('constant', 'uninterrupted in time and indefinitely long continuing'),\n", - " ('unceasing', 'uninterrupted in time and indefinitely long continuing'),\n", " ('unremitting', 'uninterrupted in time and indefinitely long continuing'),\n", + " ('unceasing', 'uninterrupted in time and indefinitely long continuing'),\n", + " ('constant', 'uninterrupted in time and indefinitely long continuing'),\n", + " ('incessant', 'uninterrupted in time and indefinitely long continuing'),\n", " ('perpetual', 'uninterrupted in time and indefinitely long continuing')]},\n", " {'answer': 'celebrated',\n", " 'hint': 'synonyms for celebrated',\n", - " 'clues': [('famous', 'widely known and esteemed'),\n", + " 'clues': [('notable', 'widely known and esteemed'),\n", + " ('renowned', 'widely known and esteemed'),\n", + " ('far-famed', 'widely known and esteemed'),\n", + " ('famous', 'widely known and esteemed'),\n", " ('historied', 'having an illustrious past'),\n", - " ('illustrious', 'widely known and esteemed'),\n", - " ('notable', 'widely known and esteemed'),\n", " ('famed', 'widely known and esteemed'),\n", - " ('far-famed', 'widely known and esteemed'),\n", " ('noted', 'widely known and esteemed'),\n", - " ('renowned', 'widely known and esteemed')]},\n", + " ('illustrious', 'widely known and esteemed')]},\n", " {'answer': 'censurable',\n", " 'hint': 'synonyms for censurable',\n", - " 'clues': [('blameworthy',\n", + " 'clues': [('culpable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blamable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('culpable',\n", - " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blameful',\n", + " 'deserving blame or censure as being wrong or evil or injurious'),\n", + " ('blameworthy',\n", " 'deserving blame or censure as being wrong or evil or injurious')]},\n", " {'answer': 'central',\n", " 'hint': 'synonyms for central',\n", - " 'clues': [('key', 'serving as an essential component'),\n", + " 'clues': [('cardinal', 'serving as an essential component'),\n", " ('primal', 'serving as an essential component'),\n", - " ('cardinal', 'serving as an essential component'),\n", + " ('key', 'serving as an essential component'),\n", " ('fundamental', 'serving as an essential component')]},\n", " {'answer': 'cerise',\n", " 'hint': 'synonyms for cerise',\n", - " 'clues': [('red',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruddy',\n", + " 'clues': [('reddish',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruby-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruby',\n", + " ('blood-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry',\n", + " ('cherry-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('carmine',\n", + " ('ruddy',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('crimson',\n", + " ('ruby',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('scarlet',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('reddish',\n", + " ('crimson',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry-red',\n", + " ('cherry',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('blood-red',\n", + " ('carmine',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n", " {'answer': 'cernuous',\n", " 'hint': 'synonyms for cernuous',\n", - " 'clues': [('pendulous',\n", + " 'clues': [('weeping',\n", " 'having branches or flower heads that bend downward'),\n", + " ('nodding', 'having branches or flower heads that bend downward'),\n", " ('drooping', 'having branches or flower heads that bend downward'),\n", - " ('weeping', 'having branches or flower heads that bend downward'),\n", - " ('nodding', 'having branches or flower heads that bend downward')]},\n", + " ('pendulous', 'having branches or flower heads that bend downward')]},\n", " {'answer': 'chancy',\n", " 'hint': 'synonyms for chancy',\n", - " 'clues': [('dodgy',\n", + " 'clues': [('dicey',\n", " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n", - " ('fluky', 'subject to accident or chance or change'),\n", + " ('iffy', 'subject to accident or chance or change'),\n", " ('chanceful',\n", " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n", - " ('dicey',\n", - " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n", - " ('iffy', 'subject to accident or chance or change')]},\n", + " ('flukey', 'subject to accident or chance or change'),\n", + " ('dodgy',\n", + " 'of uncertain outcome; especially fraught with risk; - New Yorker')]},\n", " {'answer': 'changeable',\n", " 'hint': 'synonyms for changeable',\n", - " 'clues': [('iridescent',\n", - " 'varying in color when seen in different lights or from different angles'),\n", + " 'clues': [('uncertain', 'subject to change'),\n", " ('shot',\n", " 'varying in color when seen in different lights or from different angles'),\n", - " ('chatoyant',\n", + " ('unsettled', 'subject to change'),\n", + " ('iridescent',\n", " 'varying in color when seen in different lights or from different angles'),\n", - " ('uncertain', 'subject to change'),\n", " ('mutable',\n", " 'capable of or tending to change in form or quality or nature'),\n", - " ('unsettled', 'subject to change'),\n", " ('changeful',\n", - " 'such that alteration is possible; having a marked tendency to change')]},\n", + " 'such that alteration is possible; having a marked tendency to change'),\n", + " ('chatoyant',\n", + " 'varying in color when seen in different lights or from different angles')]},\n", " {'answer': 'changeless',\n", " 'hint': 'synonyms for changeless',\n", - " 'clues': [('immutable',\n", - " 'not subject or susceptible to change or variation in form or quality or nature'),\n", + " 'clues': [('constant', 'unvarying in nature'),\n", " ('invariant', 'unvarying in nature'),\n", - " ('unvarying', 'unvarying in nature'),\n", - " ('constant', 'unvarying in nature'),\n", - " ('unalterable', 'remaining the same for indefinitely long times')]},\n", - " {'answer': 'charitable',\n", - " 'hint': 'synonyms for charitable',\n", - " 'clues': [('large-hearted',\n", - " 'showing or motivated by sympathy and understanding and generosity'),\n", - " ('kindly',\n", - " 'showing or motivated by sympathy and understanding and generosity'),\n", - " ('sympathetic',\n", + " ('unalterable', 'remaining the same for indefinitely long times'),\n", + " ('unvarying', 'unvarying in nature'),\n", + " ('immutable',\n", + " 'not subject or susceptible to change or variation in form or quality or nature')]},\n", + " {'answer': 'charitable',\n", + " 'hint': 'synonyms for charitable',\n", + " 'clues': [('kindly',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", " ('good-hearted',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", " ('benevolent',\n", " 'showing or motivated by sympathy and understanding and generosity'),\n", " ('openhearted',\n", + " 'showing or motivated by sympathy and understanding and generosity'),\n", + " ('sympathetic',\n", + " 'showing or motivated by sympathy and understanding and generosity'),\n", + " ('large-hearted',\n", " 'showing or motivated by sympathy and understanding and generosity')]},\n", " {'answer': 'charmed',\n", " 'hint': 'synonyms for charmed',\n", - " 'clues': [('entranced', 'filled with wonder and delight'),\n", - " ('beguiled', 'filled with wonder and delight'),\n", + " 'clues': [('captivated', 'strongly attracted'),\n", + " ('entranced', 'filled with wonder and delight'),\n", " ('enthralled', 'filled with wonder and delight'),\n", - " ('delighted', 'filled with wonder and delight'),\n", - " ('captivated', 'filled with wonder and delight')]},\n", + " ('beguiled', 'filled with wonder and delight'),\n", + " ('delighted', 'filled with wonder and delight')]},\n", " {'answer': 'charming',\n", " 'hint': 'synonyms for charming',\n", - " 'clues': [('witching',\n", + " 'clues': [('wizardly',\n", " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n", - " ('sorcerous',\n", + " ('magic',\n", " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n", " ('magical',\n", " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n", - " ('wizardly',\n", + " ('sorcerous',\n", " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare'),\n", - " ('magic',\n", + " ('witching',\n", " 'possessing or using or characteristic of or appropriate to supernatural powers; ; ; ; - Shakespeare')]},\n", " {'answer': 'chatty',\n", " 'hint': 'synonyms for chatty',\n", - " 'clues': [('talkative', 'full of trivial conversation'),\n", - " ('gossipy', 'prone to friendly informal communication'),\n", + " 'clues': [('gossipy', 'prone to friendly informal communication'),\n", + " ('talky', 'full of trivial conversation'),\n", " ('gabby', 'full of trivial conversation'),\n", " ('newsy', 'prone to friendly informal communication'),\n", - " ('talky', 'full of trivial conversation'),\n", - " ('garrulous', 'full of trivial conversation'),\n", - " ('loquacious', 'full of trivial conversation')]},\n", + " ('talkative', 'full of trivial conversation'),\n", + " ('loquacious', 'full of trivial conversation'),\n", + " ('garrulous', 'full of trivial conversation')]},\n", " {'answer': 'chauvinistic',\n", " 'hint': 'synonyms for chauvinistic',\n", - " 'clues': [('nationalistic', 'fanatically patriotic'),\n", - " ('flag-waving', 'fanatically patriotic'),\n", + " 'clues': [('flag-waving', 'fanatically patriotic'),\n", + " ('ultranationalistic', 'fanatically patriotic'),\n", " ('jingoistic', 'fanatically patriotic'),\n", " ('superpatriotic', 'fanatically patriotic'),\n", - " ('ultranationalistic', 'fanatically patriotic')]},\n", + " ('nationalistic', 'fanatically patriotic')]},\n", " {'answer': 'cheap',\n", " 'hint': 'synonyms for cheap',\n", - " 'clues': [('flash', 'tastelessly showy'),\n", - " ('garish', 'tastelessly showy'),\n", - " ('trashy', 'tastelessly showy'),\n", - " ('chinchy', 'embarrassingly stingy'),\n", - " ('gimcrack', 'tastelessly showy'),\n", - " ('bum', 'of very poor quality; flimsy'),\n", - " ('tacky', 'tastelessly showy'),\n", - " ('brassy', 'tastelessly showy'),\n", - " ('meretricious', 'tastelessly showy'),\n", - " ('crummy', 'of very poor quality; flimsy'),\n", + " 'clues': [('crummy', 'of very poor quality; flimsy'),\n", + " ('tinny', 'of very poor quality; flimsy'),\n", + " ('tatty', 'tastelessly showy'),\n", " ('sleazy', 'of very poor quality; flimsy'),\n", + " ('flash', 'tastelessly showy'),\n", + " ('tacky', 'tastelessly showy'),\n", " ('inexpensive', 'relatively low in price or charging low prices'),\n", - " ('tinny', 'of very poor quality; flimsy'),\n", - " ('chintzy', 'embarrassingly stingy'),\n", - " ('gaudy', 'tastelessly showy'),\n", - " ('cheesy', 'of very poor quality; flimsy'),\n", + " ('meretricious', 'tastelessly showy'),\n", " ('tawdry', 'tastelessly showy'),\n", - " ('tatty', 'tastelessly showy'),\n", + " ('cheesy', 'of very poor quality; flimsy'),\n", + " ('gaudy', 'tastelessly showy'),\n", + " ('chintzy', 'of very poor quality; flimsy'),\n", + " ('loud', 'tastelessly showy'),\n", + " ('chinchy', 'embarrassingly stingy'),\n", + " ('bum', 'of very poor quality; flimsy'),\n", + " ('trashy', 'tastelessly showy'),\n", + " ('gimcrack', 'tastelessly showy'),\n", + " ('brassy', 'tastelessly showy'),\n", " ('punk', 'of very poor quality; flimsy'),\n", - " ('loud', 'tastelessly showy')]},\n", + " ('garish', 'tastelessly showy')]},\n", " {'answer': 'cheating',\n", " 'hint': 'synonyms for cheating',\n", - " 'clues': [('adulterous', 'not faithful to a spouse or lover'),\n", + " 'clues': [('unsportsmanlike', 'violating accepted standards or rules'),\n", " ('two-timing', 'not faithful to a spouse or lover'),\n", - " ('unsporting', 'violating accepted standards or rules'),\n", + " ('adulterous', 'not faithful to a spouse or lover'),\n", " ('dirty', 'violating accepted standards or rules'),\n", - " ('unsportsmanlike', 'violating accepted standards or rules'),\n", + " ('unsporting', 'violating accepted standards or rules'),\n", " ('foul', 'violating accepted standards or rules')]},\n", " {'answer': 'cheeseparing',\n", " 'hint': 'synonyms for cheeseparing',\n", - " 'clues': [('near', 'giving or spending with reluctance'),\n", - " ('skinny', 'giving or spending with reluctance'),\n", - " ('penny-pinching', 'giving or spending with reluctance'),\n", - " ('close', 'giving or spending with reluctance')]},\n", + " 'clues': [('skinny', 'giving or spending with reluctance'),\n", + " ('near', 'giving or spending with reluctance'),\n", + " ('close', 'giving or spending with reluctance'),\n", + " ('penny-pinching', 'giving or spending with reluctance')]},\n", " {'answer': 'cheesy',\n", " 'hint': 'synonyms for cheesy',\n", - " 'clues': [('bum', 'of very poor quality; flimsy'),\n", - " ('punk', 'of very poor quality; flimsy'),\n", - " ('cheap', 'of very poor quality; flimsy'),\n", - " ('chintzy', 'of very poor quality; flimsy'),\n", + " 'clues': [('crummy', 'of very poor quality; flimsy'),\n", " ('tinny', 'of very poor quality; flimsy'),\n", - " ('crummy', 'of very poor quality; flimsy'),\n", - " ('sleazy', 'of very poor quality; flimsy')]},\n", + " ('sleazy', 'of very poor quality; flimsy'),\n", + " ('chintzy', 'of very poor quality; flimsy'),\n", + " ('cheap', 'of very poor quality; flimsy'),\n", + " ('punk', 'of very poor quality; flimsy'),\n", + " ('bum', 'of very poor quality; flimsy')]},\n", " {'answer': 'cherry',\n", " 'hint': 'synonyms for cherry',\n", - " 'clues': [('red',\n", + " 'clues': [('reddish',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruddy',\n", + " ('ruby-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('blood-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('cherry-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('cerise',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruby-red',\n", + " ('ruddy',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruby',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('carmine',\n", + " ('red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('crimson',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('scarlet',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('reddish',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry-red',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('blood-red',\n", + " ('carmine',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n", " {'answer': 'cherry-red',\n", " 'hint': 'synonyms for cherry-red',\n", - " 'clues': [('red',\n", + " 'clues': [('reddish',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('ruby-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('blood-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruddy',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('cerise',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruby-red',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruby',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry',\n", + " ('red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('carmine',\n", + " ('scarlet',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('crimson',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('scarlet',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('reddish',\n", + " ('cherry',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('blood-red',\n", + " ('carmine',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n", " {'answer': 'chicken',\n", " 'hint': 'synonyms for chicken',\n", - " 'clues': [('lily-livered', 'easily frightened'),\n", - " ('yellow-bellied', 'easily frightened'),\n", + " 'clues': [('yellow', 'easily frightened'),\n", " ('white-livered', 'easily frightened'),\n", + " ('yellow-bellied', 'easily frightened'),\n", " ('chickenhearted', 'easily frightened'),\n", - " ('yellow', 'easily frightened')]},\n", + " ('lily-livered', 'easily frightened')]},\n", " {'answer': 'chickenhearted',\n", " 'hint': 'synonyms for chickenhearted',\n", - " 'clues': [('yellow-bellied', 'easily frightened'),\n", - " ('chicken', 'easily frightened'),\n", - " ('lily-livered', 'easily frightened'),\n", + " 'clues': [('yellow', 'easily frightened'),\n", " ('white-livered', 'easily frightened'),\n", - " ('yellow', 'easily frightened')]},\n", + " ('chicken', 'easily frightened'),\n", + " ('yellow-bellied', 'easily frightened'),\n", + " ('lily-livered', 'easily frightened')]},\n", " {'answer': 'chief',\n", " 'hint': 'synonyms for chief',\n", - " 'clues': [('main', 'most important element'),\n", + " 'clues': [('primary', 'most important element'),\n", " ('master', 'most important element'),\n", - " ('principal', 'most important element'),\n", - " ('primary', 'most important element')]},\n", + " ('main', 'most important element'),\n", + " ('principal', 'most important element')]},\n", " {'answer': 'childlike',\n", " 'hint': 'synonyms for childlike',\n", " 'clues': [('childly', 'befitting a young child'),\n", - " ('wide-eyed', 'exhibiting childlike simplicity and credulity'),\n", " ('simple', 'exhibiting childlike simplicity and credulity'),\n", + " ('wide-eyed', 'exhibiting childlike simplicity and credulity'),\n", " ('dewy-eyed', 'exhibiting childlike simplicity and credulity'),\n", " ('round-eyed', 'exhibiting childlike simplicity and credulity')]},\n", " {'answer': 'chintzy',\n", " 'hint': 'synonyms for chintzy',\n", - " 'clues': [('tinny', 'of very poor quality; flimsy'),\n", + " 'clues': [('chinchy', 'embarrassingly stingy'),\n", + " ('crummy', 'of very poor quality; flimsy'),\n", + " ('tinny', 'of very poor quality; flimsy'),\n", " ('cheap', 'embarrassingly stingy'),\n", + " ('sleazy', 'of very poor quality; flimsy'),\n", " ('cheesy', 'of very poor quality; flimsy'),\n", - " ('chinchy', 'embarrassingly stingy'),\n", - " ('bum', 'of very poor quality; flimsy'),\n", " ('punk', 'of very poor quality; flimsy'),\n", - " ('crummy', 'of very poor quality; flimsy'),\n", - " ('sleazy', 'of very poor quality; flimsy')]},\n", + " ('bum', 'of very poor quality; flimsy')]},\n", " {'answer': 'chock-full',\n", " 'hint': 'synonyms for chock-full',\n", - " 'clues': [('chuck-full', 'packed full to capacity'),\n", - " ('chockful', 'packed full to capacity'),\n", - " ('cram full', 'packed full to capacity'),\n", - " ('chockablock', 'packed full to capacity'),\n", - " ('choke-full', 'packed full to capacity')]},\n", - " {'answer': 'chockablock',\n", - " 'hint': 'synonyms for chockablock',\n", - " 'clues': [('chuck-full', 'packed full to capacity'),\n", - " ('chockful', 'packed full to capacity'),\n", - " ('cram full', 'packed full to capacity'),\n", - " ('choke-full', 'packed full to capacity')]},\n", - " {'answer': 'chockful',\n", - " 'hint': 'synonyms for chockful',\n", - " 'clues': [('chuck-full', 'packed full to capacity'),\n", - " ('cram full', 'packed full to capacity'),\n", + " 'clues': [('cram full', 'packed full to capacity'),\n", + " ('chuck-full', 'packed full to capacity'),\n", " ('choke-full', 'packed full to capacity'),\n", - " ('chockablock', 'packed full to capacity')]},\n", + " ('chockablock', 'packed full to capacity'),\n", + " ('chockful', 'packed full to capacity')]},\n", " {'answer': 'choice',\n", " 'hint': 'synonyms for choice',\n", - " 'clues': [('select', 'of superior grade'),\n", - " ('quality', 'of superior grade'),\n", - " ('prize', 'of superior grade'),\n", - " ('prime', 'of superior grade')]},\n", - " {'answer': 'choke-full',\n", - " 'hint': 'synonyms for choke-full',\n", - " 'clues': [('chuck-full', 'packed full to capacity'),\n", - " ('chockful', 'packed full to capacity'),\n", - " ('cram full', 'packed full to capacity'),\n", - " ('chockablock', 'packed full to capacity')]},\n", + " 'clues': [('prize', 'of superior grade'),\n", + " ('select', 'of superior grade'),\n", + " ('prime', 'of superior grade'),\n", + " ('quality', 'of superior grade')]},\n", " {'answer': 'choleric',\n", " 'hint': 'synonyms for choleric',\n", " 'clues': [('hot-tempered', 'quickly aroused to anger'),\n", " ('quick-tempered', 'quickly aroused to anger'),\n", - " ('irascible', 'characterized by anger'),\n", - " ('hotheaded', 'quickly aroused to anger')]},\n", - " {'answer': 'chuck-full',\n", - " 'hint': 'synonyms for chuck-full',\n", - " 'clues': [('chockful', 'packed full to capacity'),\n", - " ('cram full', 'packed full to capacity'),\n", - " ('choke-full', 'packed full to capacity'),\n", - " ('chockablock', 'packed full to capacity')]},\n", + " ('hotheaded', 'quickly aroused to anger'),\n", + " ('irascible', 'quickly aroused to anger')]},\n", " {'answer': 'chummy',\n", " 'hint': 'synonyms for chummy',\n", - " 'clues': [('thick', '(used informally) associated on close terms'),\n", + " 'clues': [('pally',\n", + " '(used colloquially) having the relationship of friends or pals'),\n", " ('palsy-walsy',\n", " '(used colloquially) having the relationship of friends or pals'),\n", " ('buddy-buddy', '(used informally) associated on close terms'),\n", + " ('thick', '(used informally) associated on close terms'),\n", " ('matey',\n", - " '(used colloquially) having the relationship of friends or pals'),\n", - " ('pally',\n", " '(used colloquially) having the relationship of friends or pals')]},\n", " {'answer': 'chunky',\n", " 'hint': 'synonyms for chunky',\n", - " 'clues': [('low-set',\n", - " 'short and thick; as e.g. having short legs and heavy musculature'),\n", - " ('dumpy',\n", + " 'clues': [('lumpy', 'like or containing small sticky lumps'),\n", + " ('low-set',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", " ('squatty',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", + " ('dumpy',\n", + " 'short and thick; as e.g. having short legs and heavy musculature'),\n", " ('squat',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", - " ('lumpy', 'like or containing small sticky lumps'),\n", " ('stumpy',\n", " 'short and thick; as e.g. having short legs and heavy musculature')]},\n", " {'answer': 'churning',\n", " 'hint': 'synonyms for churning',\n", - " 'clues': [('churned-up',\n", - " 'moving with or producing or produced by vigorous agitation'),\n", - " ('roiled', '(of a liquid) agitated vigorously; in a state of turbulence'),\n", - " ('roiling',\n", + " 'clues': [('roiling',\n", " '(of a liquid) agitated vigorously; in a state of turbulence'),\n", " ('turbulent',\n", " '(of a liquid) agitated vigorously; in a state of turbulence'),\n", - " ('roily',\n", + " ('roily', '(of a liquid) agitated vigorously; in a state of turbulence'),\n", + " ('churned-up',\n", + " 'moving with or producing or produced by vigorous agitation'),\n", + " ('roiled',\n", " '(of a liquid) agitated vigorously; in a state of turbulence')]},\n", " {'answer': 'circinate',\n", " 'hint': 'synonyms for circinate',\n", - " 'clues': [('doughnut-shaped', 'shaped like a ring'),\n", + " 'clues': [('annulate', 'shaped like a ring'),\n", " ('ring-shaped', 'shaped like a ring'),\n", + " ('ringed', 'shaped like a ring'),\n", " ('annular', 'shaped like a ring'),\n", - " ('annulate', 'shaped like a ring'),\n", - " ('ringed', 'shaped like a ring')]},\n", + " ('doughnut-shaped', 'shaped like a ring')]},\n", " {'answer': 'cissy',\n", " 'hint': 'synonyms for cissy',\n", - " 'clues': [('epicene', 'having unsuitable feminine qualities'),\n", - " ('effeminate', 'having unsuitable feminine qualities'),\n", + " 'clues': [('effeminate', 'having unsuitable feminine qualities'),\n", + " ('sissified', 'having unsuitable feminine qualities'),\n", " ('emasculate', 'having unsuitable feminine qualities'),\n", " ('sissy', 'having unsuitable feminine qualities'),\n", - " ('sissified', 'having unsuitable feminine qualities'),\n", + " ('epicene', 'having unsuitable feminine qualities'),\n", " ('sissyish', 'having unsuitable feminine qualities')]},\n", " {'answer': 'civilised',\n", " 'hint': 'synonyms for civilised',\n", - " 'clues': [('polite', 'marked by refinement in taste and manners'),\n", - " ('genteel', 'marked by refinement in taste and manners'),\n", - " ('civilized',\n", - " 'having a high state of culture and development both social and technological'),\n", + " 'clues': [('civilized', 'marked by refinement in taste and manners'),\n", + " ('polite', 'marked by refinement in taste and manners'),\n", + " ('cultivated', 'marked by refinement in taste and manners'),\n", " ('cultured', 'marked by refinement in taste and manners'),\n", - " ('cultivated', 'marked by refinement in taste and manners')]},\n", + " ('genteel', 'marked by refinement in taste and manners')]},\n", " {'answer': 'civilized',\n", " 'hint': 'synonyms for civilized',\n", - " 'clues': [('polite', 'marked by refinement in taste and manners'),\n", - " ('genteel', 'marked by refinement in taste and manners'),\n", - " ('civilised',\n", - " 'having a high state of culture and development both social and technological'),\n", - " ('cultured', 'marked by refinement in taste and manners'),\n", - " ('cultivated', 'marked by refinement in taste and manners')]},\n", + " 'clues': [('cultured', 'marked by refinement in taste and manners'),\n", + " ('civilised', 'marked by refinement in taste and manners'),\n", + " ('polite', 'marked by refinement in taste and manners'),\n", + " ('cultivated', 'marked by refinement in taste and manners'),\n", + " ('genteel', 'marked by refinement in taste and manners')]},\n", " {'answer': 'clamant',\n", " 'hint': 'synonyms for clamant',\n", - " 'clues': [('strident',\n", - " 'conspicuously and offensively loud; given to vehement outcry'),\n", - " ('clamorous',\n", - " 'conspicuously and offensively loud; given to vehement outcry'),\n", + " 'clues': [('crying', 'demanding attention; ; ; - H.L.Mencken'),\n", " ('insistent', 'demanding attention; ; ; - H.L.Mencken'),\n", - " ('instant', 'demanding attention; ; ; - H.L.Mencken'),\n", " ('exigent', 'demanding attention; ; ; - H.L.Mencken'),\n", + " ('strident',\n", + " 'conspicuously and offensively loud; given to vehement outcry'),\n", " ('blatant',\n", " 'conspicuously and offensively loud; given to vehement outcry'),\n", + " ('instant', 'demanding attention; ; ; - H.L.Mencken'),\n", " ('vociferous',\n", " 'conspicuously and offensively loud; given to vehement outcry'),\n", - " ('crying', 'demanding attention; ; ; - H.L.Mencken')]},\n", + " ('clamorous',\n", + " 'conspicuously and offensively loud; given to vehement outcry')]},\n", " {'answer': 'clamorous',\n", " 'hint': 'synonyms for clamorous',\n", - " 'clues': [('blatant',\n", - " 'conspicuously and offensively loud; given to vehement outcry'),\n", - " ('strident',\n", + " 'clues': [('strident',\n", " 'conspicuously and offensively loud; given to vehement outcry'),\n", - " ('clamant',\n", + " ('blatant',\n", " 'conspicuously and offensively loud; given to vehement outcry'),\n", " ('vociferous',\n", + " 'conspicuously and offensively loud; given to vehement outcry'),\n", + " ('clamant',\n", " 'conspicuously and offensively loud; given to vehement outcry')]},\n", " {'answer': 'clandestine',\n", " 'hint': 'synonyms for clandestine',\n", - " 'clues': [('cloak-and-dagger',\n", + " 'clues': [('undercover',\n", " 'conducted with or marked by hidden aims or methods'),\n", - " ('underground', 'conducted with or marked by hidden aims or methods'),\n", - " ('hugger-mugger', 'conducted with or marked by hidden aims or methods'),\n", - " ('secret', 'conducted with or marked by hidden aims or methods'),\n", - " ('undercover', 'conducted with or marked by hidden aims or methods'),\n", - " ('surreptitious', 'conducted with or marked by hidden aims or methods'),\n", " ('hush-hush', 'conducted with or marked by hidden aims or methods'),\n", + " ('surreptitious', 'conducted with or marked by hidden aims or methods'),\n", + " ('secret', 'conducted with or marked by hidden aims or methods'),\n", + " ('hugger-mugger', 'conducted with or marked by hidden aims or methods'),\n", + " ('underground', 'conducted with or marked by hidden aims or methods'),\n", + " ('cloak-and-dagger',\n", + " 'conducted with or marked by hidden aims or methods'),\n", " ('hole-and-corner',\n", " 'conducted with or marked by hidden aims or methods')]},\n", " {'answer': 'clannish',\n", " 'hint': 'synonyms for clannish',\n", - " 'clues': [('snobbish',\n", + " 'clues': [('snobby',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", " ('cliquish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", - " ('snobby',\n", - " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", " ('clubby',\n", + " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", + " ('snobbish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior')]},\n", " {'answer': 'clean',\n", " 'hint': 'synonyms for clean',\n", - " 'clues': [('uncontaminating',\n", + " 'clues': [('clear',\n", + " '(of sound or color) free from anything that dulls or dims'),\n", + " ('clean-living', 'morally pure'),\n", + " ('white', '(of a surface) not written or printed on'),\n", + " ('uncontaminating',\n", " 'not spreading pollution or contamination; especially radioactive contamination'),\n", - " ('neat', 'free from clumsiness; precisely or deftly executed'),\n", + " ('light', '(of sound or color) free from anything that dulls or dims'),\n", " ('fresh', 'free from impurities'),\n", - " ('white', '(of a surface) not written or printed on'),\n", " ('unclouded',\n", " '(of sound or color) free from anything that dulls or dims'),\n", " ('blank', '(of a surface) not written or printed on'),\n", - " ('uninfected', 'free from sepsis or infection'),\n", - " ('light', '(of sound or color) free from anything that dulls or dims'),\n", - " ('sporting', 'exhibiting or calling for sportsmanship or fair play'),\n", - " ('clear', '(of sound or color) free from anything that dulls or dims'),\n", - " ('clean-living', 'morally pure'),\n", " ('sportsmanlike', 'exhibiting or calling for sportsmanship or fair play'),\n", " ('sporty', 'exhibiting or calling for sportsmanship or fair play'),\n", " ('fair', '(of a manuscript) having few alterations or corrections'),\n", + " ('sporting', 'exhibiting or calling for sportsmanship or fair play'),\n", + " ('uninfected', 'free from sepsis or infection'),\n", + " ('neat', 'free from clumsiness; precisely or deftly executed'),\n", " ('unobjectionable',\n", " '(of behavior or especially language) free from objectionable elements; fit for all observers')]},\n", " {'answer': 'clean-cut',\n", " 'hint': 'synonyms for clean-cut',\n", - " 'clues': [('clear-cut',\n", - " 'clear and distinct to the senses; easily perceptible'),\n", - " ('trim', 'neat and smart in appearance'),\n", + " 'clues': [('trig', 'neat and smart in appearance'),\n", + " ('clear-cut', 'clear and distinct to the senses; easily perceptible'),\n", " ('clear', 'clear and distinct to the senses; easily perceptible'),\n", - " ('trig', 'neat and smart in appearance')]},\n", + " ('trim', 'neat and smart in appearance')]},\n", " {'answer': 'clear',\n", " 'hint': 'synonyms for clear',\n", - " 'clues': [('percipient',\n", - " 'characterized by ease and quickness in perceiving'),\n", - " ('clean', '(of sound or color) free from anything that dulls or dims'),\n", + " 'clues': [('absolved', 'freed from any question of guilt'),\n", " ('clear-cut', 'clear and distinct to the senses; easily perceptible'),\n", " ('well-defined', 'accurately stated or described'),\n", - " ('unmortgaged',\n", - " '(especially of a title) free from any encumbrance or limitation that presents a question of fact or law'),\n", - " ('unclouded',\n", - " '(of sound or color) free from anything that dulls or dims'),\n", + " ('clean', 'free of restrictions or qualifications'),\n", " ('light', '(of sound or color) free from anything that dulls or dims'),\n", + " ('vindicated', 'freed from any question of guilt'),\n", + " ('percipient', 'characterized by ease and quickness in perceiving'),\n", " ('readable', 'easily deciphered'),\n", - " ('decipherable', 'easily deciphered'),\n", - " ('absolved', 'freed from any question of guilt'),\n", + " ('open', 'affording free passage or view'),\n", + " ('unclouded',\n", + " '(of sound or color) free from anything that dulls or dims'),\n", + " ('cleared', 'freed from any question of guilt'),\n", " ('exonerated', 'freed from any question of guilt'),\n", + " ('decipherable', 'easily deciphered'),\n", " ('exculpated', 'freed from any question of guilt'),\n", - " ('vindicated', 'freed from any question of guilt'),\n", - " ('cleared', 'freed from any question of guilt'),\n", - " ('open', 'affording free passage or view')]},\n", + " ('unmortgaged',\n", + " '(especially of a title) free from any encumbrance or limitation that presents a question of fact or law')]},\n", " {'answer': 'clear-cut',\n", " 'hint': 'synonyms for clear-cut',\n", - " 'clues': [('clean-cut',\n", - " 'clear and distinct to the senses; easily perceptible'),\n", + " 'clues': [('distinct', 'clearly or sharply defined to the mind'),\n", " ('clear', 'clear and distinct to the senses; easily perceptible'),\n", - " ('distinct', 'clearly or sharply defined to the mind'),\n", + " ('clean-cut', 'clear and distinct to the senses; easily perceptible'),\n", " ('trenchant', 'clearly or sharply defined to the mind')]},\n", " {'answer': 'cleared',\n", " 'hint': 'synonyms for cleared',\n", - " 'clues': [('vindicated', 'freed from any question of guilt'),\n", - " ('absolved', 'freed from any question of guilt'),\n", + " 'clues': [('absolved', 'freed from any question of guilt'),\n", " ('clear', 'freed from any question of guilt'),\n", - " ('exonerated', 'freed from any question of guilt'),\n", - " ('exculpated', 'freed from any question of guilt')]},\n", + " ('exculpated', 'freed from any question of guilt'),\n", + " ('vindicated', 'freed from any question of guilt'),\n", + " ('exonerated', 'freed from any question of guilt')]},\n", " {'answer': 'clever',\n", " 'hint': 'synonyms for clever',\n", - " 'clues': [('cunning', 'showing inventiveness and skill'),\n", + " 'clues': [('ingenious', 'showing inventiveness and skill'),\n", " ('apt', 'mentally quick and resourceful; ; -Bram Stoker'),\n", - " ('cagey', 'showing self-interest and shrewdness in dealing with others'),\n", " ('canny', 'showing self-interest and shrewdness in dealing with others'),\n", - " ('ingenious', 'showing inventiveness and skill')]},\n", + " ('cunning', 'showing inventiveness and skill'),\n", + " ('cagy', 'showing self-interest and shrewdness in dealing with others')]},\n", " {'answer': 'cliquish',\n", " 'hint': 'synonyms for cliquish',\n", - " 'clues': [('snobbish',\n", + " 'clues': [('snobby',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", - " ('clannish',\n", + " ('snobbish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", - " ('snobby',\n", + " ('clannish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", " ('clubby',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior')]},\n", " {'answer': 'cloak-and-dagger',\n", " 'hint': 'synonyms for cloak-and-dagger',\n", - " 'clues': [('underground',\n", + " 'clues': [('clandestine',\n", " 'conducted with or marked by hidden aims or methods'),\n", - " ('hugger-mugger', 'conducted with or marked by hidden aims or methods'),\n", - " ('secret', 'conducted with or marked by hidden aims or methods'),\n", " ('undercover', 'conducted with or marked by hidden aims or methods'),\n", - " ('surreptitious', 'conducted with or marked by hidden aims or methods'),\n", - " ('clandestine', 'conducted with or marked by hidden aims or methods'),\n", " ('hush-hush', 'conducted with or marked by hidden aims or methods'),\n", + " ('surreptitious', 'conducted with or marked by hidden aims or methods'),\n", + " ('secret', 'conducted with or marked by hidden aims or methods'),\n", + " ('hugger-mugger', 'conducted with or marked by hidden aims or methods'),\n", + " ('underground', 'conducted with or marked by hidden aims or methods'),\n", " ('hole-and-corner',\n", " 'conducted with or marked by hidden aims or methods')]},\n", " {'answer': 'cloaked',\n", " 'hint': 'synonyms for cloaked',\n", - " 'clues': [('draped',\n", - " 'covered with or as if with clothes or a wrap or cloak'),\n", + " 'clues': [('masked',\n", + " 'having its true character concealed with the intent of misleading'),\n", " ('clothed', 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('mantled', 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('masked',\n", + " ('disguised',\n", " 'having its true character concealed with the intent of misleading'),\n", + " ('draped', 'covered with or as if with clothes or a wrap or cloak'),\n", " ('wrapped', 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('disguised',\n", - " 'having its true character concealed with the intent of misleading')]},\n", + " ('mantled', 'covered with or as if with clothes or a wrap or cloak')]},\n", " {'answer': 'cloistered',\n", " 'hint': 'synonyms for cloistered',\n", - " 'clues': [('sequestered', 'providing privacy or seclusion'),\n", - " ('monastic',\n", - " 'of communal life sequestered from the world under religious vows'),\n", - " ('conventual',\n", + " 'clues': [('cloistral',\n", " 'of communal life sequestered from the world under religious vows'),\n", - " ('cloistral',\n", + " ('sequestered', 'providing privacy or seclusion'),\n", + " ('secluded', 'providing privacy or seclusion'),\n", + " ('monastic',\n", " 'of communal life sequestered from the world under religious vows'),\n", " ('reclusive', 'providing privacy or seclusion'),\n", - " ('secluded', 'providing privacy or seclusion')]},\n", + " ('conventual',\n", + " 'of communal life sequestered from the world under religious vows')]},\n", " {'answer': 'close',\n", " 'hint': 'synonyms for close',\n", - " 'clues': [('tightlipped',\n", + " 'clues': [('skinny', 'giving or spending with reluctance'),\n", + " ('unaired', 'lacking fresh air'),\n", + " ('closelipped',\n", " 'inclined to secrecy or reticence about divulging information'),\n", - " ('snug', 'fitting closely but comfortably'),\n", - " ('cheeseparing', 'giving or spending with reluctance'),\n", " ('airless', 'lacking fresh air'),\n", - " ('unaired', 'lacking fresh air'),\n", - " ('stuffy', 'lacking fresh air'),\n", " ('near', 'not far distant in time or space or degree or circumstances'),\n", + " ('secretive',\n", + " 'inclined to secrecy or reticence about divulging information'),\n", " ('close-fitting', 'fitting closely but comfortably'),\n", - " ('skinny', 'giving or spending with reluctance'),\n", - " ('nigh', 'not far distant in time or space or degree or circumstances'),\n", - " ('confining', 'crowded'),\n", + " ('tight', '(of a contest or contestants) evenly matched'),\n", " ('penny-pinching', 'giving or spending with reluctance'),\n", - " ('faithful', 'marked by fidelity to an original'),\n", - " ('tight', 'of textiles'),\n", - " ('closelipped',\n", - " 'inclined to secrecy or reticence about divulging information'),\n", - " ('secretive',\n", + " ('tightlipped',\n", " 'inclined to secrecy or reticence about divulging information'),\n", " ('closemouthed',\n", - " 'inclined to secrecy or reticence about divulging information')]},\n", + " 'inclined to secrecy or reticence about divulging information'),\n", + " ('snug', 'fitting closely but comfortably'),\n", + " ('confining', 'crowded'),\n", + " ('stuffy', 'lacking fresh air'),\n", + " ('nigh', 'not far distant in time or space or degree or circumstances'),\n", + " ('cheeseparing', 'giving or spending with reluctance'),\n", + " ('faithful', 'marked by fidelity to an original')]},\n", " {'answer': 'close_at_hand',\n", " 'hint': 'synonyms for close at hand',\n", - " 'clues': [('imminent', 'close in time; about to occur'),\n", - " ('impendent', 'close in time; about to occur'),\n", + " 'clues': [('at hand', 'close in space; within reach'),\n", " ('impending', 'close in time; about to occur'),\n", - " ('at hand', 'close in time; about to occur')]},\n", + " ('impendent', 'close in time; about to occur'),\n", + " ('imminent', 'close in time; about to occur')]},\n", " {'answer': 'closed',\n", " 'hint': 'synonyms for closed',\n", " 'clues': [('unopen', 'not open'),\n", - " ('shut', 'used especially of mouth or eyes'),\n", " ('closed in', 'blocked against entry'),\n", + " ('shut', 'not open'),\n", " ('unsympathetic', 'not having an open mind')]},\n", " {'answer': 'closelipped',\n", " 'hint': 'synonyms for closelipped',\n", @@ -40858,11 +40889,11 @@ " 'hint': 'synonyms for clothed',\n", " 'clues': [('draped',\n", " 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('mantled', 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('cloaked', 'covered with or as if with clothes or a wrap or cloak'),\n", " ('clad',\n", " 'wearing or provided with clothing; sometimes used in combination; - Bible'),\n", - " ('wrapped', 'covered with or as if with clothes or a wrap or cloak')]},\n", + " ('cloaked', 'covered with or as if with clothes or a wrap or cloak'),\n", + " ('wrapped', 'covered with or as if with clothes or a wrap or cloak'),\n", + " ('mantled', 'covered with or as if with clothes or a wrap or cloak')]},\n", " {'answer': 'clouded',\n", " 'hint': 'synonyms for clouded',\n", " 'clues': [('blurred', 'unclear in form or expression; ; - H.G.Wells'),\n", @@ -40871,567 +40902,567 @@ " ('overcast', 'filled or abounding with clouds')]},\n", " {'answer': 'cloudy',\n", " 'hint': 'synonyms for cloudy',\n", - " 'clues': [('nebulose', 'lacking definite form or limits; - H.T.Moore'),\n", + " 'clues': [('turbid', '(of liquids) clouded as with sediment'),\n", + " ('mirky', '(of liquids) clouded as with sediment'),\n", + " ('nebulose', 'lacking definite form or limits; - H.T.Moore'),\n", " ('muddy', '(of liquids) clouded as with sediment'),\n", - " ('turbid', '(of liquids) clouded as with sediment'),\n", - " ('murky', '(of liquids) clouded as with sediment'),\n", - " ('mirky', '(of liquids) clouded as with sediment')]},\n", + " ('murky', '(of liquids) clouded as with sediment')]},\n", " {'answer': 'clubby',\n", " 'hint': 'synonyms for clubby',\n", - " 'clues': [('snobbish',\n", + " 'clues': [('clubbish', 'effusively sociable'),\n", + " ('snobby',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", " ('cliquish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", " ('clannish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior'),\n", - " ('clubbish', 'effusively sociable'),\n", - " ('snobby',\n", + " ('snobbish',\n", " 'befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior')]},\n", " {'answer': 'clumsy',\n", " 'hint': 'synonyms for clumsy',\n", - " 'clues': [('awkward', 'not elegant or graceful in expression'),\n", - " ('incompetent', 'showing lack of skill or aptitude'),\n", - " ('clunky', 'lacking grace in movement or posture'),\n", - " ('unwieldy', 'lacking grace in movement or posture'),\n", - " ('inapt', 'not elegant or graceful in expression'),\n", + " 'clues': [('ungainly',\n", + " 'difficult to handle or manage especially because of shape'),\n", " ('cumbersome', 'not elegant or graceful in expression'),\n", - " ('bungling', 'showing lack of skill or aptitude'),\n", - " ('ill-chosen', 'not elegant or graceful in expression'),\n", + " ('inept', 'not elegant or graceful in expression'),\n", + " ('gawky', 'lacking grace in movement or posture'),\n", + " ('unwieldy', 'lacking grace in movement or posture'),\n", + " ('awkward', 'difficult to handle or manage especially because of shape'),\n", " ('bunglesome',\n", " 'difficult to handle or manage especially because of shape'),\n", - " ('ungainly', 'lacking grace in movement or posture'),\n", + " ('ill-chosen', 'not elegant or graceful in expression'),\n", " ('fumbling', 'showing lack of skill or aptitude'),\n", - " ('inept', 'not elegant or graceful in expression'),\n", - " ('gawky', 'lacking grace in movement or posture')]},\n", + " ('clunky', 'lacking grace in movement or posture'),\n", + " ('bungling', 'showing lack of skill or aptitude'),\n", + " ('incompetent', 'showing lack of skill or aptitude'),\n", + " ('inapt', 'not elegant or graceful in expression')]},\n", " {'answer': 'clunky',\n", " 'hint': 'synonyms for clunky',\n", - " 'clues': [('unwieldy', 'lacking grace in movement or posture'),\n", + " 'clues': [('gawky', 'lacking grace in movement or posture'),\n", " ('clumsy', 'lacking grace in movement or posture'),\n", - " ('gawky', 'lacking grace in movement or posture'),\n", - " ('ungainly', 'lacking grace in movement or posture')]},\n", + " ('ungainly', 'lacking grace in movement or posture'),\n", + " ('unwieldy', 'lacking grace in movement or posture')]},\n", " {'answer': 'co-occurrent',\n", " 'hint': 'synonyms for co-occurrent',\n", - " 'clues': [('coincidental', 'occurring or operating at the same time'),\n", + " 'clues': [('concurrent', 'occurring or operating at the same time'),\n", " ('cooccurring', 'occurring or operating at the same time'),\n", - " ('simultaneous', 'occurring or operating at the same time'),\n", - " ('concurrent', 'occurring or operating at the same time'),\n", - " ('coinciding', 'occurring or operating at the same time')]},\n", + " ('coincident', 'occurring or operating at the same time'),\n", + " ('coinciding', 'occurring or operating at the same time'),\n", + " ('simultaneous', 'occurring or operating at the same time')]},\n", " {'answer': 'co-ordinated',\n", " 'hint': 'synonyms for co-ordinated',\n", - " 'clues': [('coordinated', 'intentionally matched'),\n", - " ('unified', 'operating as a unit'),\n", + " 'clues': [('matching', 'intentionally matched'),\n", + " ('coordinated', 'operating as a unit'),\n", " ('interconnected', 'operating as a unit'),\n", - " ('matching', 'intentionally matched')]},\n", + " ('unified', 'operating as a unit')]},\n", " {'answer': 'coagulated',\n", " 'hint': 'synonyms for coagulated',\n", " 'clues': [('coagulate',\n", " 'transformed from a liquid into a soft semisolid or solid mass'),\n", + " ('grumose',\n", + " 'transformed from a liquid into a soft semisolid or solid mass'),\n", " ('curdled',\n", " 'transformed from a liquid into a soft semisolid or solid mass'),\n", - " ('solidified', 'changed into a solid mass'),\n", - " ('grumose',\n", - " 'transformed from a liquid into a soft semisolid or solid mass')]},\n", + " ('solidified', 'changed into a solid mass')]},\n", " {'answer': 'coal-black',\n", " 'hint': 'synonyms for coal-black',\n", - " 'clues': [('sooty',\n", - " 'of the blackest black; similar to the color of jet or coal'),\n", - " ('jet-black',\n", + " 'clues': [('jet-black',\n", " 'of the blackest black; similar to the color of jet or coal'),\n", + " ('sooty', 'of the blackest black; similar to the color of jet or coal'),\n", " ('pitchy', 'of the blackest black; similar to the color of jet or coal'),\n", " ('jet', 'of the blackest black; similar to the color of jet or coal')]},\n", " {'answer': 'coarse',\n", " 'hint': 'synonyms for coarse',\n", - " 'clues': [('harsh',\n", - " 'of textures that are rough to the touch or substances consisting of relatively large particles'),\n", - " ('vulgar', 'lacking refinement or cultivation or taste'),\n", - " ('common', 'lacking refinement or cultivation or taste'),\n", + " 'clues': [('common', 'lacking refinement or cultivation or taste'),\n", + " ('uncouth', 'lacking refinement or cultivation or taste'),\n", " ('rough-cut', 'lacking refinement or cultivation or taste'),\n", - " ('uncouth', 'lacking refinement or cultivation or taste')]},\n", + " ('harsh',\n", + " 'of textures that are rough to the touch or substances consisting of relatively large particles'),\n", + " ('vulgar', 'lacking refinement or cultivation or taste')]},\n", " {'answer': 'coarse-grained',\n", " 'hint': 'synonyms for coarse-grained',\n", - " 'clues': [('mealy',\n", + " 'clues': [('farinaceous',\n", " 'composed of or covered with particles resembling meal in texture or consistency'),\n", - " ('gritty',\n", + " ('mealy',\n", " 'composed of or covered with particles resembling meal in texture or consistency'),\n", " ('grainy',\n", " 'composed of or covered with particles resembling meal in texture or consistency'),\n", - " ('large-grained', 'not having a fine texture'),\n", - " ('farinaceous',\n", + " ('granulose',\n", " 'composed of or covered with particles resembling meal in texture or consistency'),\n", + " ('large-grained', 'not having a fine texture'),\n", " ('granular',\n", " 'composed of or covered with particles resembling meal in texture or consistency'),\n", - " ('granulose',\n", + " ('gritty',\n", " 'composed of or covered with particles resembling meal in texture or consistency')]},\n", " {'answer': 'cobwebby',\n", " 'hint': 'synonyms for cobwebby',\n", - " 'clues': [('gauzy', 'so thin as to transmit light'),\n", - " ('transparent', 'so thin as to transmit light'),\n", - " ('gossamer', 'so thin as to transmit light'),\n", + " 'clues': [('gossamer', 'so thin as to transmit light'),\n", + " ('vaporous', 'so thin as to transmit light'),\n", + " ('diaphanous', 'so thin as to transmit light'),\n", " ('see-through', 'so thin as to transmit light'),\n", - " ('sheer', 'so thin as to transmit light'),\n", + " ('transparent', 'so thin as to transmit light'),\n", " ('gauze-like', 'so thin as to transmit light'),\n", - " ('vapourous', 'so thin as to transmit light'),\n", - " ('diaphanous', 'so thin as to transmit light'),\n", + " ('gauzy', 'so thin as to transmit light'),\n", + " ('sheer', 'so thin as to transmit light'),\n", " ('filmy', 'so thin as to transmit light')]},\n", " {'answer': 'cock-a-hoop',\n", " 'hint': 'synonyms for cock-a-hoop',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('big', 'exhibiting self-importance'),\n", + " 'clues': [('big', 'exhibiting self-importance'),\n", " ('bragging', 'exhibiting self-importance'),\n", - " ('braggart', 'exhibiting self-importance'),\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('crowing', 'exhibiting self-importance'),\n", " ('braggy', 'exhibiting self-importance'),\n", - " ('crowing', 'exhibiting self-importance')]},\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('self-aggrandising', 'exhibiting self-importance')]},\n", " {'answer': 'cockamamie',\n", " 'hint': 'synonyms for cockamamie',\n", - " 'clues': [('sappy', 'ludicrous, foolish'),\n", + " 'clues': [('goofy', 'ludicrous, foolish'),\n", + " ('sappy', 'ludicrous, foolish'),\n", + " ('silly', 'ludicrous, foolish'),\n", " ('whacky', 'ludicrous, foolish'),\n", - " ('goofy', 'ludicrous, foolish'),\n", - " ('cockamamy', 'ludicrous, foolish'),\n", " ('zany', 'ludicrous, foolish'),\n", - " ('silly', 'ludicrous, foolish')]},\n", + " ('cockamamy', 'ludicrous, foolish')]},\n", " {'answer': 'cockamamy',\n", " 'hint': 'synonyms for cockamamy',\n", - " 'clues': [('cockamamie', 'ludicrous, foolish'),\n", + " 'clues': [('goofy', 'ludicrous, foolish'),\n", " ('sappy', 'ludicrous, foolish'),\n", + " ('silly', 'ludicrous, foolish'),\n", " ('whacky', 'ludicrous, foolish'),\n", - " ('goofy', 'ludicrous, foolish'),\n", " ('zany', 'ludicrous, foolish'),\n", - " ('silly', 'ludicrous, foolish')]},\n", + " ('cockamamie', 'ludicrous, foolish')]},\n", " {'answer': 'cockeyed',\n", " 'hint': 'synonyms for cockeyed',\n", - " 'clues': [('pixilated', 'very drunk'),\n", - " ('besotted', 'very drunk'),\n", - " ('smashed', 'very drunk'),\n", - " ('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('askew', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('idiotic', 'incongruous;inviting ridicule'),\n", + " 'clues': [('fuddled', 'very drunk'),\n", + " ('sloshed', 'very drunk'),\n", + " ('laughable', 'incongruous;inviting ridicule'),\n", " ('pie-eyed', 'very drunk'),\n", - " ('blind drunk', 'very drunk'),\n", - " ('crocked', 'very drunk'),\n", - " ('slopped', 'very drunk'),\n", - " ('absurd', 'incongruous;inviting ridicule'),\n", - " ('loaded', 'very drunk'),\n", " ('soaked', 'very drunk'),\n", - " ('plastered', 'very drunk'),\n", + " ('blotto', 'very drunk'),\n", " ('derisory', 'incongruous;inviting ridicule'),\n", - " ('awry', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('ludicrous', 'incongruous;inviting ridicule'),\n", - " ('sloshed', 'very drunk'),\n", - " ('laughable', 'incongruous;inviting ridicule'),\n", - " ('nonsensical', 'incongruous;inviting ridicule'),\n", - " ('tight', 'very drunk'),\n", " ('pissed', 'very drunk'),\n", - " ('ridiculous', 'incongruous;inviting ridicule'),\n", - " ('wet', 'very drunk'),\n", - " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('soused', 'very drunk'),\n", + " ('ludicrous', 'incongruous;inviting ridicule'),\n", + " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('smashed', 'very drunk'),\n", + " ('blind drunk', 'very drunk'),\n", + " ('crocked', 'very drunk'),\n", + " ('loaded', 'very drunk'),\n", + " ('askew', 'turned or twisted toward one side; - G.K.Chesterton'),\n", " ('stiff', 'very drunk'),\n", + " ('preposterous', 'incongruous;inviting ridicule'),\n", " ('sozzled', 'very drunk'),\n", - " ('skew-whiff', 'turned or twisted toward one side; - G.K.Chesterton'),\n", - " ('fuddled', 'very drunk'),\n", - " ('blotto', 'very drunk'),\n", + " ('lopsided', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('pixilated', 'very drunk'),\n", + " ('nonsensical', 'incongruous;inviting ridicule'),\n", + " ('wet', 'very drunk'),\n", + " ('besotted', 'very drunk'),\n", + " ('awry', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('absurd', 'incongruous;inviting ridicule'),\n", + " ('slopped', 'very drunk'),\n", + " ('plastered', 'very drunk'),\n", + " ('tight', 'very drunk'),\n", " ('squiffy', 'very drunk'),\n", - " ('preposterous', 'incongruous;inviting ridicule'),\n", - " ('soused', 'very drunk')]},\n", + " ('wonky', 'turned or twisted toward one side; - G.K.Chesterton'),\n", + " ('idiotic', 'incongruous;inviting ridicule'),\n", + " ('ridiculous', 'incongruous;inviting ridicule')]},\n", " {'answer': 'cognate',\n", " 'hint': 'synonyms for cognate',\n", " 'clues': [('connate', 'related in nature'),\n", + " ('blood-related', 'related by blood'),\n", + " ('consanguineous', 'related by blood'),\n", " ('kin', 'related by blood'),\n", - " ('consanguine', 'related by blood'),\n", - " ('blood-related', 'related by blood')]},\n", + " ('consanguineal', 'related by blood')]},\n", " {'answer': 'coherent',\n", " 'hint': 'synonyms for coherent',\n", - " 'clues': [('tenacious', 'sticking together'),\n", - " ('logical',\n", - " 'capable of thinking and expressing yourself in a clear and consistent manner'),\n", - " ('ordered',\n", + " 'clues': [('consistent',\n", " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n", " ('lucid',\n", " 'capable of thinking and expressing yourself in a clear and consistent manner'),\n", - " ('consistent',\n", + " ('logical',\n", + " 'capable of thinking and expressing yourself in a clear and consistent manner'),\n", + " ('tenacious', 'sticking together'),\n", + " ('ordered',\n", " 'marked by an orderly, logical, and aesthetically consistent relation of parts')]},\n", " {'answer': 'coiling',\n", " 'hint': 'synonyms for coiling',\n", - " 'clues': [('voluted', 'in the shape of a coil'),\n", - " ('spiraling', 'in the shape of a coil'),\n", + " 'clues': [('whorled', 'in the shape of a coil'),\n", + " ('volute', 'in the shape of a coil'),\n", " ('helical', 'in the shape of a coil'),\n", " ('turbinate', 'in the shape of a coil'),\n", - " ('whorled', 'in the shape of a coil')]},\n", + " ('spiral', 'in the shape of a coil')]},\n", " {'answer': 'coincident',\n", " 'hint': 'synonyms for coincident',\n", - " 'clues': [('coincidental', 'occurring or operating at the same time'),\n", + " 'clues': [('concurrent', 'occurring or operating at the same time'),\n", " ('cooccurring', 'occurring or operating at the same time'),\n", - " ('simultaneous', 'occurring or operating at the same time'),\n", - " ('concurrent', 'occurring or operating at the same time'),\n", + " ('co-occurrent', 'occurring or operating at the same time'),\n", " ('coinciding', 'occurring or operating at the same time'),\n", - " ('co-occurrent', 'occurring or operating at the same time')]},\n", + " ('simultaneous', 'occurring or operating at the same time'),\n", + " ('coincidental', 'occurring or operating at the same time')]},\n", " {'answer': 'coincidental',\n", " 'hint': 'synonyms for coincidental',\n", - " 'clues': [('coincident', 'occurring or operating at the same time'),\n", + " 'clues': [('concurrent', 'occurring or operating at the same time'),\n", " ('cooccurring', 'occurring or operating at the same time'),\n", - " ('simultaneous', 'occurring or operating at the same time'),\n", - " ('concurrent', 'occurring or operating at the same time'),\n", + " ('coincident', 'occurring or operating at the same time'),\n", + " ('co-occurrent', 'occurring or operating at the same time'),\n", " ('coinciding', 'occurring or operating at the same time'),\n", - " ('co-occurrent', 'occurring or operating at the same time')]},\n", + " ('simultaneous', 'occurring or operating at the same time')]},\n", " {'answer': 'coinciding',\n", " 'hint': 'synonyms for coinciding',\n", - " 'clues': [('coincidental', 'occurring or operating at the same time'),\n", + " 'clues': [('concurrent', 'occurring or operating at the same time'),\n", " ('cooccurring', 'occurring or operating at the same time'),\n", - " ('simultaneous', 'occurring or operating at the same time'),\n", - " ('concurrent', 'occurring or operating at the same time'),\n", - " ('co-occurrent', 'occurring or operating at the same time')]},\n", + " ('coincident', 'occurring or operating at the same time'),\n", + " ('co-occurrent', 'occurring or operating at the same time'),\n", + " ('simultaneous', 'occurring or operating at the same time')]},\n", " {'answer': 'cold',\n", " 'hint': 'synonyms for cold',\n", - " 'clues': [('moth-eaten',\n", - " 'lacking originality or spontaneity; no longer new'),\n", - " ('dusty', 'lacking originality or spontaneity; no longer new'),\n", + " 'clues': [('dusty', 'lacking originality or spontaneity; no longer new'),\n", + " ('cold-blooded', 'without compunction or human feeling'),\n", " ('stale', 'lacking originality or spontaneity; no longer new'),\n", " ('inhuman', 'without compunction or human feeling'),\n", - " ('cold-blooded', 'without compunction or human feeling'),\n", + " ('frigid', 'sexually unresponsive'),\n", " ('insensate', 'without compunction or human feeling'),\n", - " ('frigid', 'sexually unresponsive')]},\n", + " ('moth-eaten', 'lacking originality or spontaneity; no longer new')]},\n", " {'answer': 'collateral',\n", " 'hint': 'synonyms for collateral',\n", - " 'clues': [('substantiating', 'serving to support or corroborate'),\n", + " 'clues': [('substantiative', 'serving to support or corroborate'),\n", + " ('corroborative', 'serving to support or corroborate'),\n", " ('validatory', 'serving to support or corroborate'),\n", - " ('validating', 'serving to support or corroborate'),\n", - " ('indirect',\n", - " 'descended from a common ancestor but through different lines'),\n", " ('confirmative', 'serving to support or corroborate'),\n", - " ('verificatory', 'serving to support or corroborate'),\n", + " ('validating', 'serving to support or corroborate'),\n", " ('corroboratory', 'serving to support or corroborate'),\n", - " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmatory', 'serving to support or corroborate'),\n", " ('verifying', 'serving to support or corroborate'),\n", - " ('corroborative', 'serving to support or corroborate'),\n", - " ('confirmatory', 'serving to support or corroborate')]},\n", + " ('verificatory', 'serving to support or corroborate'),\n", + " ('confirming', 'serving to support or corroborate'),\n", + " ('indirect',\n", + " 'descended from a common ancestor but through different lines')]},\n", " {'answer': 'collected',\n", " 'hint': 'synonyms for collected',\n", - " 'clues': [('gathered', 'brought together in one place'),\n", - " ('equanimous', 'in full control of your faculties'),\n", + " 'clues': [('poised', 'in full control of your faculties'),\n", " ('self-contained', 'in full control of your faculties'),\n", - " ('self-possessed', 'in full control of your faculties'),\n", - " ('poised', 'in full control of your faculties'),\n", - " ('self-collected', 'in full control of your faculties')]},\n", + " ('gathered', 'brought together in one place'),\n", + " ('self-collected', 'in full control of your faculties'),\n", + " ('equanimous', 'in full control of your faculties'),\n", + " ('self-possessed', 'in full control of your faculties')]},\n", " {'answer': 'colored',\n", " 'hint': 'synonyms for colored',\n", - " 'clues': [('coloured',\n", - " '(used of color) artificially produced; not natural'),\n", - " ('dark-skinned', 'having skin rich in melanin pigments'),\n", - " ('colorful',\n", - " 'having color or a certain color; sometimes used in combination'),\n", + " 'clues': [('dark', 'having skin rich in melanin pigments'),\n", " ('one-sided', 'favoring one person or side over another'),\n", " ('slanted', 'favoring one person or side over another'),\n", - " ('biased', 'favoring one person or side over another'),\n", + " ('coloured',\n", + " 'having color or a certain color; sometimes used in combination'),\n", " ('non-white', 'having skin rich in melanin pigments'),\n", " ('dyed', '(used of color) artificially produced; not natural'),\n", + " ('colorful',\n", + " 'having color or a certain color; sometimes used in combination'),\n", + " ('dark-skinned', 'having skin rich in melanin pigments'),\n", " ('bleached', '(used of color) artificially produced; not natural'),\n", - " ('dark', 'having skin rich in melanin pigments')]},\n", + " ('biased', 'favoring one person or side over another')]},\n", " {'answer': 'coloured',\n", " 'hint': 'synonyms for coloured',\n", " 'clues': [('colored',\n", " 'having color or a certain color; sometimes used in combination'),\n", " ('one-sided', 'favoring one person or side over another'),\n", + " ('dark', 'having skin rich in melanin pigments'),\n", + " ('slanted', 'favoring one person or side over another'),\n", + " ('dyed', '(used of color) artificially produced; not natural'),\n", + " ('non-white', 'having skin rich in melanin pigments'),\n", " ('colorful',\n", " 'having color or a certain color; sometimes used in combination'),\n", " ('dark-skinned', 'having skin rich in melanin pigments'),\n", - " ('slanted', 'favoring one person or side over another'),\n", " ('biased', 'favoring one person or side over another'),\n", - " ('non-white', 'having skin rich in melanin pigments'),\n", - " ('dyed', '(used of color) artificially produced; not natural'),\n", - " ('bleached', '(used of color) artificially produced; not natural'),\n", - " ('dark', 'having skin rich in melanin pigments')]},\n", + " ('bleached', '(used of color) artificially produced; not natural')]},\n", " {'answer': 'coltish',\n", " 'hint': 'synonyms for coltish',\n", - " 'clues': [('rollicking', 'given to merry frolicking'),\n", - " ('frolicsome', 'given to merry frolicking'),\n", + " 'clues': [('frolicsome', 'given to merry frolicking'),\n", " ('sportive', 'given to merry frolicking'),\n", + " ('rollicking', 'given to merry frolicking'),\n", " ('frolicky', 'given to merry frolicking')]},\n", " {'answer': 'combative',\n", " 'hint': 'synonyms for combative',\n", - " 'clues': [('disputative',\n", + " 'clues': [('litigious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('contentious',\n", + " ('agonistic', 'striving to overcome in argument'),\n", + " ('disputatious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('litigious',\n", + " ('disputative',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('battleful', 'having or showing a ready disposition to fight'),\n", " ('bellicose', 'having or showing a ready disposition to fight'),\n", - " ('agonistic', 'striving to overcome in argument'),\n", - " ('disputatious',\n", + " ('battleful', 'having or showing a ready disposition to fight'),\n", + " ('contentious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n", " {'answer': 'combinatory',\n", " 'hint': 'synonyms for combinatory',\n", - " 'clues': [('combinational', 'able to or tending to combine'),\n", - " ('combinative', 'relating to or involving combinations'),\n", + " 'clues': [('combinative',\n", + " 'marked by or relating to or resulting from combination'),\n", + " ('combinable', 'able to or tending to combine'),\n", " ('combinatorial', 'relating to or involving combinations'),\n", - " ('combinable', 'able to or tending to combine')]},\n", + " ('combinational', 'able to or tending to combine')]},\n", " {'answer': 'comely',\n", " 'hint': 'synonyms for comely',\n", - " 'clues': [('sightly', 'very pleasing to the eye'),\n", + " 'clues': [('comme il faut', 'according with custom or propriety'),\n", + " ('sightly', 'very pleasing to the eye'),\n", + " ('fair', 'very pleasing to the eye'),\n", + " ('decent', 'according with custom or propriety'),\n", + " ('bonny', 'very pleasing to the eye'),\n", " ('seemly', 'according with custom or propriety'),\n", - " ('becoming', 'according with custom or propriety'),\n", - " ('comme il faut', 'according with custom or propriety'),\n", " ('bonnie', 'very pleasing to the eye'),\n", " ('decorous', 'according with custom or propriety'),\n", - " ('decent', 'according with custom or propriety'),\n", - " ('fair', 'very pleasing to the eye'),\n", - " ('bonny', 'very pleasing to the eye')]},\n", + " ('becoming', 'according with custom or propriety')]},\n", " {'answer': 'comfortable',\n", " 'hint': 'synonyms for comfortable',\n", " 'clues': [('well-heeled',\n", " 'in fortunate circumstances financially; moderately rich'),\n", + " ('easy', 'in fortunate circumstances financially; moderately rich'),\n", + " ('well-situated',\n", + " 'in fortunate circumstances financially; moderately rich'),\n", + " ('well-fixed', 'in fortunate circumstances financially; moderately rich'),\n", " ('comfy',\n", " \"providing or experiencing physical well-being or relief (`comfy' is informal)\"),\n", " ('prosperous', 'in fortunate circumstances financially; moderately rich'),\n", " ('well-to-do', 'in fortunate circumstances financially; moderately rich'),\n", - " ('well-off', 'in fortunate circumstances financially; moderately rich'),\n", - " ('easy', 'in fortunate circumstances financially; moderately rich'),\n", - " ('well-situated',\n", - " 'in fortunate circumstances financially; moderately rich'),\n", - " ('well-fixed',\n", - " 'in fortunate circumstances financially; moderately rich')]},\n", + " ('well-off', 'in fortunate circumstances financially; moderately rich')]},\n", " {'answer': 'comforting',\n", " 'hint': 'synonyms for comforting',\n", - " 'clues': [('consoling', 'affording comfort or solace'),\n", - " ('satisfying', 'providing freedom from worry'),\n", + " 'clues': [('cheering', 'providing freedom from worry'),\n", " ('consolatory', 'affording comfort or solace'),\n", - " ('cheering', 'providing freedom from worry')]},\n", + " ('consoling', 'affording comfort or solace'),\n", + " ('satisfying', 'providing freedom from worry')]},\n", " {'answer': 'comic',\n", " 'hint': 'synonyms for comic',\n", - " 'clues': [('mirthful', 'arousing or provoking laughter'),\n", + " 'clues': [('risible', 'arousing or provoking laughter'),\n", + " ('comical', 'arousing or provoking laughter'),\n", " ('funny', 'arousing or provoking laughter'),\n", - " ('risible', 'arousing or provoking laughter'),\n", - " ('laughable', 'arousing or provoking laughter'),\n", " ('amusing', 'arousing or provoking laughter'),\n", - " ('comical', 'arousing or provoking laughter')]},\n", + " ('mirthful', 'arousing or provoking laughter'),\n", + " ('laughable', 'arousing or provoking laughter')]},\n", " {'answer': 'comical',\n", " 'hint': 'synonyms for comical',\n", - " 'clues': [('mirthful', 'arousing or provoking laughter'),\n", + " 'clues': [('risible', 'arousing or provoking laughter'),\n", " ('comic', 'arousing or provoking laughter'),\n", - " ('risible', 'arousing or provoking laughter'),\n", " ('funny', 'arousing or provoking laughter'),\n", - " ('laughable', 'arousing or provoking laughter'),\n", - " ('amusing', 'arousing or provoking laughter')]},\n", + " ('amusing', 'arousing or provoking laughter'),\n", + " ('mirthful', 'arousing or provoking laughter'),\n", + " ('laughable', 'arousing or provoking laughter')]},\n", " {'answer': 'comme_il_faut',\n", " 'hint': 'synonyms for comme il faut',\n", - " 'clues': [('seemly', 'according with custom or propriety'),\n", - " ('comely', 'according with custom or propriety'),\n", - " ('becoming', 'according with custom or propriety'),\n", + " 'clues': [('comely', 'according with custom or propriety'),\n", " ('decorous', 'according with custom or propriety'),\n", - " ('decent', 'according with custom or propriety')]},\n", + " ('decent', 'according with custom or propriety'),\n", + " ('becoming', 'according with custom or propriety'),\n", + " ('seemly', 'according with custom or propriety')]},\n", " {'answer': 'common',\n", " 'hint': 'synonyms for common',\n", - " 'clues': [('vernacular',\n", - " 'being or characteristic of or appropriate to everyday language'),\n", - " ('unwashed', 'of or associated with the great masses of people'),\n", - " ('usual', 'commonly encountered'),\n", - " ('coarse', 'of low or inferior quality or value; - Shakespeare'),\n", - " ('vulgar', 'lacking refinement or cultivation or taste'),\n", + " 'clues': [('coarse', 'lacking refinement or cultivation or taste'),\n", + " ('plebeian', 'of or associated with the great masses of people'),\n", + " ('mutual', 'common to or shared by two or more parties'),\n", + " ('vulgar', 'of or associated with the great masses of people'),\n", " ('rough-cut', 'lacking refinement or cultivation or taste'),\n", + " ('vernacular',\n", + " 'being or characteristic of or appropriate to everyday language'),\n", " ('uncouth', 'lacking refinement or cultivation or taste'),\n", - " ('plebeian', 'of or associated with the great masses of people'),\n", - " ('mutual', 'common to or shared by two or more parties')]},\n", + " ('usual', 'commonly encountered'),\n", + " ('unwashed', 'of or associated with the great masses of people')]},\n", " {'answer': 'commonplace',\n", " 'hint': 'synonyms for commonplace',\n", - " 'clues': [('unglamorous', 'not challenging; dull and lacking excitement'),\n", - " ('hackneyed', 'repeated too often; overfamiliar through overuse'),\n", - " ('prosaic', 'not challenging; dull and lacking excitement'),\n", + " 'clues': [('stock', 'repeated too often; overfamiliar through overuse'),\n", + " ('unglamorous', 'not challenging; dull and lacking excitement'),\n", + " ('timeworn', 'repeated too often; overfamiliar through overuse'),\n", + " ('banal', 'repeated too often; overfamiliar through overuse'),\n", " ('shopworn', 'repeated too often; overfamiliar through overuse'),\n", + " ('prosaic', 'not challenging; dull and lacking excitement'),\n", + " ('humdrum', 'not challenging; dull and lacking excitement'),\n", " ('old-hat', 'repeated too often; overfamiliar through overuse'),\n", - " ('stock', 'repeated too often; overfamiliar through overuse'),\n", - " ('timeworn', 'repeated too often; overfamiliar through overuse'),\n", + " ('hackneyed', 'repeated too often; overfamiliar through overuse'),\n", " ('threadbare', 'repeated too often; overfamiliar through overuse'),\n", - " ('trite', 'repeated too often; overfamiliar through overuse'),\n", - " ('humdrum', 'not challenging; dull and lacking excitement'),\n", - " ('banal', 'repeated too often; overfamiliar through overuse'),\n", + " ('tired', 'repeated too often; overfamiliar through overuse'),\n", " ('well-worn', 'repeated too often; overfamiliar through overuse'),\n", - " ('tired', 'repeated too often; overfamiliar through overuse')]},\n", + " ('trite', 'repeated too often; overfamiliar through overuse')]},\n", " {'answer': 'communicable',\n", " 'hint': 'synonyms for communicable',\n", - " 'clues': [('contractable',\n", - " '(of disease) capable of being transmitted by infection'),\n", - " ('transmissible',\n", + " 'clues': [('transmissible',\n", " '(of disease) capable of being transmitted by infection'),\n", " ('contagious', '(of disease) capable of being transmitted by infection'),\n", + " ('contractable',\n", + " '(of disease) capable of being transmitted by infection'),\n", " ('catching', '(of disease) capable of being transmitted by infection'),\n", " ('transmittable',\n", " '(of disease) capable of being transmitted by infection')]},\n", " {'answer': 'compact',\n", " 'hint': 'synonyms for compact',\n", " 'clues': [('heavyset', 'having a short and solid form or stature'),\n", - " ('succinct', 'briefly giving the gist of something'),\n", " ('thick', 'having a short and solid form or stature'),\n", + " ('stocky', 'having a short and solid form or stature'),\n", + " ('compendious', 'briefly giving the gist of something'),\n", " ('thickset', 'having a short and solid form or stature'),\n", " ('summary', 'briefly giving the gist of something'),\n", - " ('stocky', 'having a short and solid form or stature'),\n", - " ('compendious', 'briefly giving the gist of something')]},\n", + " ('succinct', 'briefly giving the gist of something')]},\n", " {'answer': 'compensable',\n", " 'hint': 'synonyms for compensable',\n", - " 'clues': [('paying', 'for which money is paid'),\n", - " ('stipendiary', 'for which money is paid'),\n", - " ('salaried', 'for which money is paid'),\n", - " ('remunerative', 'for which money is paid')]},\n", + " 'clues': [('salaried', 'for which money is paid'),\n", + " ('paying', 'for which money is paid'),\n", + " ('remunerative', 'for which money is paid'),\n", + " ('stipendiary', 'for which money is paid')]},\n", " {'answer': 'competitive',\n", " 'hint': 'synonyms for competitive',\n", - " 'clues': [('militant', 'showing a fighting disposition'),\n", + " 'clues': [('free-enterprise', 'subscribing to capitalistic competition'),\n", + " ('militant', 'showing a fighting disposition'),\n", " ('private-enterprise', 'subscribing to capitalistic competition'),\n", - " ('free-enterprise', 'subscribing to capitalistic competition'),\n", " ('competitory', 'involving competition or competitiveness')]},\n", " {'answer': 'complete',\n", " 'hint': 'synonyms for complete',\n", - " 'clues': [('sodding',\n", + " 'clues': [('double-dyed',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('pure',\n", + " ('terminated', 'having come or been brought to a conclusion'),\n", + " ('arrant',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('utter',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('consummate',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('ended', 'having come or been brought to a conclusion'),\n", - " ('thoroughgoing',\n", + " ('concluded', 'having come or been brought to a conclusion'),\n", + " ('stark',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('arrant',\n", + " ('pure',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('gross',\n", + " ('consummate',\n", + " 'perfect and complete in every respect; having all necessary qualities'),\n", + " ('all over', 'having come or been brought to a conclusion'),\n", + " ('unadulterated',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('ended', 'having come or been brought to a conclusion'),\n", " ('accomplished', 'highly skilled'),\n", - " ('stark',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('concluded', 'having come or been brought to a conclusion'),\n", - " ('over', 'having come or been brought to a conclusion'),\n", - " ('terminated', 'having come or been brought to a conclusion'),\n", - " ('perfect',\n", + " ('thoroughgoing',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('everlasting',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('staring',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('double-dyed',\n", + " ('over', 'having come or been brought to a conclusion'),\n", + " ('gross',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('unadulterated',\n", + " ('sodding',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('all over', 'having come or been brought to a conclusion')]},\n", + " ('perfect',\n", + " 'without qualification; used informally as (often pejorative) intensifiers')]},\n", " {'answer': 'complimentary',\n", " 'hint': 'synonyms for complimentary',\n", - " 'clues': [('gratuitous', 'costing nothing'),\n", - " ('free', 'costing nothing'),\n", + " 'clues': [('free', 'costing nothing'),\n", " ('gratis', 'costing nothing'),\n", + " ('gratuitous', 'costing nothing'),\n", " ('costless', 'costing nothing')]},\n", " {'answer': 'conceited',\n", " 'hint': 'synonyms for conceited',\n", - " 'clues': [('swollen-headed',\n", + " 'clues': [('vain',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('self-conceited',\n", + " ('swollen-headed',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", " ('egotistic',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('vain',\n", + " ('self-conceited',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", " ('swollen',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance')]},\n", " {'answer': 'concluded',\n", " 'hint': 'synonyms for concluded',\n", - " 'clues': [('over', 'having come or been brought to a conclusion'),\n", - " ('ended', 'having come or been brought to a conclusion'),\n", - " ('complete', 'having come or been brought to a conclusion'),\n", + " 'clues': [('ended', 'having come or been brought to a conclusion'),\n", + " ('over', 'having come or been brought to a conclusion'),\n", " ('terminated', 'having come or been brought to a conclusion'),\n", - " ('all over', 'having come or been brought to a conclusion')]},\n", + " ('all over', 'having come or been brought to a conclusion'),\n", + " ('complete', 'having come or been brought to a conclusion')]},\n", " {'answer': 'concomitant',\n", " 'hint': 'synonyms for concomitant',\n", - " 'clues': [('resultant', 'following or accompanying as a consequence'),\n", - " ('sequent', 'following or accompanying as a consequence'),\n", - " ('consequent', 'following or accompanying as a consequence'),\n", - " ('incidental', 'following or accompanying as a consequence'),\n", + " 'clues': [('consequent', 'following or accompanying as a consequence'),\n", + " ('attendant', 'following or accompanying as a consequence'),\n", + " ('resultant', 'following or accompanying as a consequence'),\n", " ('ensuant', 'following or accompanying as a consequence'),\n", " ('accompanying', 'following or accompanying as a consequence'),\n", - " ('attendant', 'following or accompanying as a consequence')]},\n", + " ('incidental', 'following or accompanying as a consequence'),\n", + " ('sequent', 'following or accompanying as a consequence')]},\n", " {'answer': 'concordant',\n", " 'hint': 'synonyms for concordant',\n", - " 'clues': [('accordant', 'in keeping'),\n", - " ('agreeable', 'in keeping'),\n", - " ('consonant', 'in keeping'),\n", + " 'clues': [('agreeable', 'in keeping'),\n", + " ('conformable', 'in keeping'),\n", " ('concurring', 'being of the same opinion'),\n", - " ('conformable', 'in keeping')]},\n", + " ('accordant', 'in keeping'),\n", + " ('consonant', 'in keeping')]},\n", " {'answer': 'concurrent',\n", " 'hint': 'synonyms for concurrent',\n", - " 'clues': [('coincident', 'occurring or operating at the same time'),\n", - " ('cooccurring', 'occurring or operating at the same time'),\n", - " ('simultaneous', 'occurring or operating at the same time'),\n", + " 'clues': [('cooccurring', 'occurring or operating at the same time'),\n", + " ('coincident', 'occurring or operating at the same time'),\n", + " ('co-occurrent', 'occurring or operating at the same time'),\n", " ('coinciding', 'occurring or operating at the same time'),\n", - " ('co-occurrent', 'occurring or operating at the same time')]},\n", + " ('simultaneous', 'occurring or operating at the same time')]},\n", " {'answer': 'condemnable',\n", " 'hint': 'synonyms for condemnable',\n", - " 'clues': [('reprehensible',\n", - " 'bringing or deserving severe rebuke or censure'),\n", - " ('criminal', 'bringing or deserving severe rebuke or censure'),\n", + " 'clues': [('deplorable', 'bringing or deserving severe rebuke or censure'),\n", + " ('reprehensible', 'bringing or deserving severe rebuke or censure'),\n", " ('vicious', 'bringing or deserving severe rebuke or censure'),\n", - " ('deplorable', 'bringing or deserving severe rebuke or censure')]},\n", + " ('criminal', 'bringing or deserving severe rebuke or censure')]},\n", " {'answer': 'conducive',\n", " 'hint': 'synonyms for conducive',\n", " 'clues': [('contributing',\n", " 'tending to bring about; being partly responsible for'),\n", + " ('tributary', 'tending to bring about; being partly responsible for'),\n", " ('contributory', 'tending to bring about; being partly responsible for'),\n", - " ('contributive', 'tending to bring about; being partly responsible for'),\n", - " ('tributary', 'tending to bring about; being partly responsible for')]},\n", + " ('contributive',\n", + " 'tending to bring about; being partly responsible for')]},\n", " {'answer': 'confining',\n", " 'hint': 'synonyms for confining',\n", - " 'clues': [('constrictive', 'restricting the scope or freedom of action'),\n", - " ('close', 'crowded'),\n", + " 'clues': [('restricting', 'restricting the scope or freedom of action'),\n", + " ('constrictive', 'restricting the scope or freedom of action'),\n", " ('constraining', 'restricting the scope or freedom of action'),\n", - " ('restricting', 'restricting the scope or freedom of action'),\n", + " ('close', 'crowded'),\n", " ('limiting', 'restricting the scope or freedom of action')]},\n", " {'answer': 'confirmative',\n", " 'hint': 'synonyms for confirmative',\n", - " 'clues': [('substantiating', 'serving to support or corroborate'),\n", + " 'clues': [('substantiative', 'serving to support or corroborate'),\n", + " ('corroborative', 'serving to support or corroborate'),\n", " ('validatory', 'serving to support or corroborate'),\n", - " ('collateral', 'serving to support or corroborate'),\n", " ('validating', 'serving to support or corroborate'),\n", - " ('verificatory', 'serving to support or corroborate'),\n", " ('corroboratory', 'serving to support or corroborate'),\n", - " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmatory', 'serving to support or corroborate'),\n", " ('verifying', 'serving to support or corroborate'),\n", - " ('corroborative', 'serving to support or corroborate'),\n", - " ('confirmatory', 'serving to support or corroborate')]},\n", + " ('confirming', 'serving to support or corroborate'),\n", + " ('collateral', 'serving to support or corroborate'),\n", + " ('verificatory', 'serving to support or corroborate')]},\n", " {'answer': 'confirmatory',\n", " 'hint': 'synonyms for confirmatory',\n", - " 'clues': [('substantiating', 'serving to support or corroborate'),\n", + " 'clues': [('substantiative', 'serving to support or corroborate'),\n", + " ('corroborative', 'serving to support or corroborate'),\n", " ('validatory', 'serving to support or corroborate'),\n", - " ('collateral', 'serving to support or corroborate'),\n", " ('validating', 'serving to support or corroborate'),\n", - " ('confirmative', 'serving to support or corroborate'),\n", - " ('verificatory', 'serving to support or corroborate'),\n", " ('corroboratory', 'serving to support or corroborate'),\n", - " ('confirming', 'serving to support or corroborate'),\n", " ('verifying', 'serving to support or corroborate'),\n", - " ('corroborative', 'serving to support or corroborate')]},\n", + " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmative', 'serving to support or corroborate'),\n", + " ('collateral', 'serving to support or corroborate'),\n", + " ('verificatory', 'serving to support or corroborate')]},\n", " {'answer': 'confirming',\n", " 'hint': 'synonyms for confirming',\n", - " 'clues': [('substantiating', 'serving to support or corroborate'),\n", + " 'clues': [('substantiative', 'serving to support or corroborate'),\n", + " ('corroborative', 'serving to support or corroborate'),\n", " ('validatory', 'serving to support or corroborate'),\n", - " ('collateral', 'serving to support or corroborate'),\n", - " ('positive',\n", - " 'indicating existence or presence of a suspected condition or pathogen'),\n", - " ('validating', 'serving to support or corroborate'),\n", " ('confirmative', 'serving to support or corroborate'),\n", - " ('verificatory', 'serving to support or corroborate'),\n", + " ('validating', 'serving to support or corroborate'),\n", " ('corroboratory', 'serving to support or corroborate'),\n", + " ('confirmatory', 'serving to support or corroborate'),\n", " ('verifying', 'serving to support or corroborate'),\n", - " ('corroborative', 'serving to support or corroborate'),\n", - " ('confirmatory', 'serving to support or corroborate')]},\n", + " ('positive',\n", + " 'indicating existence or presence of a suspected condition or pathogen'),\n", + " ('collateral', 'serving to support or corroborate'),\n", + " ('verificatory', 'serving to support or corroborate')]},\n", " {'answer': 'conformable',\n", " 'hint': 'synonyms for conformable',\n", - " 'clues': [('accordant', 'in keeping'),\n", - " ('agreeable', 'in keeping'),\n", - " ('consonant', 'in keeping'),\n", + " 'clues': [('agreeable', 'in keeping'),\n", " ('concordant', 'in keeping'),\n", + " ('accordant', 'in keeping'),\n", + " ('consonant', 'in keeping'),\n", " ('amenable', 'disposed or willing to comply')]},\n", " {'answer': 'confounded',\n", " 'hint': 'synonyms for confounded',\n", - " 'clues': [('at sea',\n", + " 'clues': [('bemused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bewildered',\n", + " ('befuddled',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('mixed-up',\n", + " ('confused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('mazed',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", @@ -41439,41 +41470,41 @@ " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('lost',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bemused',\n", + " ('mixed-up',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('confused',\n", + " ('at sea',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('befuddled',\n", + " ('bewildered',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n", " {'answer': 'confused',\n", " 'hint': 'synonyms for confused',\n", - " 'clues': [('disordered', 'thrown into a state of disarray or confusion'),\n", - " ('disoriented',\n", - " 'having lost your bearings; confused as to time or place or personal identity'),\n", - " ('scattered', 'lacking orderly continuity'),\n", - " ('garbled', 'lacking orderly continuity'),\n", - " ('baffled',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('lost',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " 'clues': [('upset', 'thrown into a state of disarray or confusion'),\n", + " ('illogical', 'lacking orderly continuity'),\n", " ('broken', 'thrown into a state of disarray or confusion'),\n", - " ('unconnected', 'lacking orderly continuity'),\n", - " ('at sea',\n", - " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('bewildered',\n", + " ('baffled',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('illogical', 'lacking orderly continuity'),\n", " ('mixed-up',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('mazed',\n", + " ('scattered', 'lacking orderly continuity'),\n", + " ('bewildered',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('disoriented',\n", + " 'having lost your bearings; confused as to time or place or personal identity'),\n", " ('disconnected', 'lacking orderly continuity'),\n", - " ('upset', 'thrown into a state of disarray or confusion'),\n", + " ('unconnected', 'lacking orderly continuity'),\n", " ('bemused',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('garbled', 'lacking orderly continuity'),\n", + " ('lost',\n", + " 'having lost your bearings; confused as to time or place or personal identity'),\n", + " ('disordered', 'thrown into a state of disarray or confusion'),\n", + " ('befuddled',\n", + " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", + " ('mazed',\n", + " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", " ('confounded',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment'),\n", - " ('befuddled',\n", + " ('at sea',\n", " 'perplexed by many conflicting situations or statements; filled with bewilderment')]},\n", " {'answer': 'conjectural',\n", " 'hint': 'synonyms for conjectural',\n", @@ -41482,7 +41513,7 @@ " ('hypothetical',\n", " 'based primarily on surmise rather than adequate evidence'),\n", " ('supposed', 'based primarily on surmise rather than adequate evidence'),\n", - " ('suppositious',\n", + " ('supposititious',\n", " 'based primarily on surmise rather than adequate evidence'),\n", " ('suppositional',\n", " 'based primarily on surmise rather than adequate evidence')]},\n", @@ -41491,177 +41522,176 @@ " 'clues': [('collusive',\n", " 'acting together in secret toward a fraudulent or illegal end'),\n", " ('scheming', 'used of persons'),\n", - " ('calculative', 'used of persons'),\n", + " ('calculating', 'used of persons'),\n", " ('shrewd', 'used of persons'),\n", - " ('calculating', 'used of persons')]},\n", + " ('calculative', 'used of persons')]},\n", " {'answer': 'consanguine',\n", " 'hint': 'synonyms for consanguine',\n", - " 'clues': [('kin', 'related by blood'),\n", - " ('consanguineal', 'related by blood'),\n", - " ('cognate', 'related by blood'),\n", + " 'clues': [('cognate', 'related by blood'),\n", + " ('blood-related', 'related by blood'),\n", " ('consanguineous', 'related by blood'),\n", - " ('blood-related', 'related by blood')]},\n", + " ('akin', 'related by blood'),\n", + " ('consanguineal', 'related by blood')]},\n", " {'answer': 'consanguineal',\n", " 'hint': 'synonyms for consanguineal',\n", - " 'clues': [('kin', 'related by blood'),\n", - " ('consanguine', 'related by blood'),\n", - " ('cognate', 'related by blood'),\n", - " ('blood-related', 'related by blood')]},\n", + " 'clues': [('cognate', 'related by blood'),\n", + " ('blood-related', 'related by blood'),\n", + " ('consanguineous', 'related by blood'),\n", + " ('kin', 'related by blood')]},\n", " {'answer': 'consanguineous',\n", " 'hint': 'synonyms for consanguineous',\n", - " 'clues': [('kin', 'related by blood'),\n", - " ('consanguine', 'related by blood'),\n", - " ('cognate', 'related by blood'),\n", - " ('blood-related', 'related by blood')]},\n", + " 'clues': [('cognate', 'related by blood'),\n", + " ('blood-related', 'related by blood'),\n", + " ('kin', 'related by blood'),\n", + " ('consanguineal', 'related by blood')]},\n", " {'answer': 'consecrated',\n", " 'hint': 'synonyms for consecrated',\n", " 'clues': [('consecrate',\n", " 'solemnly dedicated to or set apart for a high purpose'),\n", + " ('sacred',\n", + " 'made or declared or believed to be holy; devoted to a deity or some religious ceremony or use'),\n", " ('dedicated', 'solemnly dedicated to or set apart for a high purpose'),\n", " ('sanctified',\n", - " 'made or declared or believed to be holy; devoted to a deity or some religious ceremony or use'),\n", - " ('sacred',\n", " 'made or declared or believed to be holy; devoted to a deity or some religious ceremony or use')]},\n", " {'answer': 'consecutive',\n", " 'hint': 'synonyms for consecutive',\n", - " 'clues': [('sequent', 'in regular succession without gaps'),\n", - " ('successive', 'in regular succession without gaps'),\n", - " ('back-to-back', 'one after the other'),\n", - " ('straight', 'successive (without a break)'),\n", + " 'clues': [('back-to-back', 'one after the other'),\n", + " ('serial', 'in regular succession without gaps'),\n", + " ('sequent', 'in regular succession without gaps'),\n", " ('sequential', 'in regular succession without gaps'),\n", - " ('serial', 'in regular succession without gaps')]},\n", + " ('straight', 'successive (without a break)'),\n", + " ('successive', 'in regular succession without gaps')]},\n", " {'answer': 'consequent',\n", " 'hint': 'synonyms for consequent',\n", - " 'clues': [('resultant', 'following or accompanying as a consequence'),\n", - " ('sequent', 'following or accompanying as a consequence'),\n", + " 'clues': [('attendant', 'following or accompanying as a consequence'),\n", " ('concomitant', 'following or accompanying as a consequence'),\n", - " ('incidental', 'following or accompanying as a consequence'),\n", + " ('resultant', 'following or accompanying as a consequence'),\n", " ('ensuant', 'following or accompanying as a consequence'),\n", " ('accompanying', 'following or accompanying as a consequence'),\n", - " ('attendant', 'following or accompanying as a consequence')]},\n", + " ('incidental', 'following or accompanying as a consequence'),\n", + " ('sequent', 'following or accompanying as a consequence')]},\n", " {'answer': 'conservative',\n", " 'hint': 'synonyms for conservative',\n", - " 'clues': [('buttoned-down', 'unimaginatively conventional; - Newsweek'),\n", - " ('materialistic',\n", - " 'conforming to the standards and conventions of the middle class'),\n", - " ('cautious', 'avoiding excess'),\n", + " 'clues': [('cautious', 'avoiding excess'),\n", " ('bourgeois',\n", + " 'conforming to the standards and conventions of the middle class'),\n", + " ('button-down', 'unimaginatively conventional; - Newsweek'),\n", + " ('materialistic',\n", " 'conforming to the standards and conventions of the middle class')]},\n", " {'answer': 'consistent',\n", " 'hint': 'synonyms for consistent',\n", - " 'clues': [('logical',\n", + " 'clues': [('coherent',\n", " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n", " ('uniform', 'the same throughout in structure or composition'),\n", - " ('reproducible', 'capable of being reproduced'),\n", " ('ordered',\n", " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n", - " ('coherent',\n", - " 'marked by an orderly, logical, and aesthetically consistent relation of parts')]},\n", + " ('logical',\n", + " 'marked by an orderly, logical, and aesthetically consistent relation of parts'),\n", + " ('reproducible', 'capable of being reproduced')]},\n", " {'answer': 'consonant',\n", " 'hint': 'synonyms for consonant',\n", - " 'clues': [('agreeable', 'in keeping'),\n", - " ('harmonic', 'involving or characterized by harmony'),\n", + " 'clues': [('conformable', 'in keeping'),\n", " ('concordant', 'in keeping'),\n", - " ('conformable', 'in keeping'),\n", - " ('harmonized', 'involving or characterized by harmony'),\n", - " ('accordant', 'in keeping')]},\n", + " ('harmonised', 'involving or characterized by harmony'),\n", + " ('accordant', 'in keeping'),\n", + " ('harmonical', 'involving or characterized by harmony'),\n", + " ('agreeable', 'in keeping')]},\n", " {'answer': 'constant',\n", " 'hint': 'synonyms for constant',\n", " 'clues': [('never-ending',\n", " 'uninterrupted in time and indefinitely long continuing'),\n", - " ('incessant', 'uninterrupted in time and indefinitely long continuing'),\n", - " ('invariant', 'unvarying in nature'),\n", - " ('unceasing', 'uninterrupted in time and indefinitely long continuing'),\n", + " ('ceaseless', 'uninterrupted in time and indefinitely long continuing'),\n", " ('changeless', 'unvarying in nature'),\n", " ('unremitting', 'uninterrupted in time and indefinitely long continuing'),\n", + " ('unceasing', 'uninterrupted in time and indefinitely long continuing'),\n", + " ('invariant', 'unvarying in nature'),\n", + " ('incessant', 'uninterrupted in time and indefinitely long continuing'),\n", " ('perpetual', 'uninterrupted in time and indefinitely long continuing'),\n", - " ('ceaseless', 'uninterrupted in time and indefinitely long continuing'),\n", " ('unvarying', 'unvarying in nature')]},\n", " {'answer': 'constitutional',\n", " 'hint': 'synonyms for constitutional',\n", - " 'clues': [('integral',\n", + " 'clues': [('inbuilt',\n", " 'existing as an essential constituent or characteristic'),\n", - " ('inbuilt', 'existing as an essential constituent or characteristic'),\n", - " ('inherent', 'existing as an essential constituent or characteristic'),\n", - " ('organic',\n", - " 'constitutional in the structure of something (especially your physical makeup)'),\n", " ('constitutive',\n", " 'constitutional in the structure of something (especially your physical makeup)'),\n", - " ('built-in', 'existing as an essential constituent or characteristic'),\n", + " ('integral', 'existing as an essential constituent or characteristic'),\n", + " ('inherent', 'existing as an essential constituent or characteristic'),\n", " ('constituent',\n", - " 'constitutional in the structure of something (especially your physical makeup)')]},\n", + " 'constitutional in the structure of something (especially your physical makeup)'),\n", + " ('organic',\n", + " 'constitutional in the structure of something (especially your physical makeup)'),\n", + " ('built-in', 'existing as an essential constituent or characteristic')]},\n", " {'answer': 'constraining',\n", " 'hint': 'synonyms for constraining',\n", - " 'clues': [('confining', 'restricting the scope or freedom of action'),\n", - " ('restricting', 'restricting the scope or freedom of action'),\n", - " ('constrictive', 'restricting the scope or freedom of action'),\n", - " ('limiting', 'restricting the scope or freedom of action')]},\n", + " 'clues': [('restricting', 'restricting the scope or freedom of action'),\n", + " ('confining', 'restricting the scope or freedom of action'),\n", + " ('limiting', 'restricting the scope or freedom of action'),\n", + " ('constrictive', 'restricting the scope or freedom of action')]},\n", " {'answer': 'constrictive',\n", " 'hint': 'synonyms for constrictive',\n", - " 'clues': [('constricting',\n", - " '(of circumstances) tending to constrict freedom'),\n", + " 'clues': [('restricting', 'restricting the scope or freedom of action'),\n", " ('constraining', 'restricting the scope or freedom of action'),\n", + " ('constricting', '(of circumstances) tending to constrict freedom'),\n", " ('confining', 'restricting the scope or freedom of action'),\n", - " ('restricting', 'restricting the scope or freedom of action'),\n", " ('limiting', 'restricting the scope or freedom of action'),\n", " ('narrowing', '(of circumstances) tending to constrict freedom')]},\n", " {'answer': 'consummate',\n", " 'hint': 'synonyms for consummate',\n", - " 'clues': [('sodding',\n", + " 'clues': [('complete',\n", + " 'perfect and complete in every respect; having all necessary qualities'),\n", + " ('double-dyed',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('pure',\n", + " ('arrant',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('utter',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('thoroughgoing',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('complete',\n", - " 'perfect and complete in every respect; having all necessary qualities'),\n", - " ('arrant',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('gross',\n", + " ('stark',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('masterful', 'having or revealing supreme mastery or skill'),\n", - " ('stark',\n", + " ('pure',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('perfect',\n", + " ('unadulterated',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('masterly', 'having or revealing supreme mastery or skill'),\n", + " ('virtuoso', 'having or revealing supreme mastery or skill'),\n", " ('everlasting',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('staring',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('double-dyed',\n", + " ('gross',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('unadulterated',\n", + " ('thoroughgoing',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('masterly', 'having or revealing supreme mastery or skill'),\n", - " ('virtuoso', 'having or revealing supreme mastery or skill')]},\n", + " ('sodding',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('perfect',\n", + " 'without qualification; used informally as (often pejorative) intensifiers')]},\n", " {'answer': 'contagious',\n", " 'hint': 'synonyms for contagious',\n", - " 'clues': [('contractable',\n", - " '(of disease) capable of being transmitted by infection'),\n", - " ('transmissible',\n", + " 'clues': [('transmissible',\n", " '(of disease) capable of being transmitted by infection'),\n", - " ('catching', '(of disease) capable of being transmitted by infection'),\n", " ('transmittable',\n", " '(of disease) capable of being transmitted by infection'),\n", + " ('contractable',\n", + " '(of disease) capable of being transmitted by infection'),\n", + " ('catching', '(of disease) capable of being transmitted by infection'),\n", " ('communicable',\n", " '(of disease) capable of being transmitted by infection')]},\n", " {'answer': 'contemplative',\n", " 'hint': 'synonyms for contemplative',\n", - " 'clues': [('broody', 'deeply or seriously thoughtful'),\n", + " 'clues': [('ruminative', 'deeply or seriously thoughtful'),\n", + " ('pensive', 'deeply or seriously thoughtful'),\n", " ('brooding', 'deeply or seriously thoughtful'),\n", - " ('reflective', 'deeply or seriously thoughtful'),\n", " ('pondering', 'deeply or seriously thoughtful'),\n", + " ('reflective', 'deeply or seriously thoughtful'),\n", " ('meditative', 'deeply or seriously thoughtful'),\n", - " ('musing', 'deeply or seriously thoughtful'),\n", - " ('ruminative', 'deeply or seriously thoughtful'),\n", - " ('pensive', 'deeply or seriously thoughtful')]},\n", + " ('broody', 'deeply or seriously thoughtful'),\n", + " ('musing', 'deeply or seriously thoughtful')]},\n", " {'answer': 'contentious',\n", " 'hint': 'synonyms for contentious',\n", - " 'clues': [('combative',\n", + " 'clues': [('disputative',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('disputative',\n", + " ('combative',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", " ('litigious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", @@ -41669,80 +41699,79 @@ " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n", " {'answer': 'conterminous',\n", " 'hint': 'synonyms for conterminous',\n", - " 'clues': [('contiguous',\n", - " 'having a common boundary or edge; abutting; touching'),\n", + " 'clues': [('coextensive', 'being of equal extent or scope or duration'),\n", + " ('contiguous', 'connecting without a break; within a common boundary'),\n", + " ('coterminous', 'being of equal extent or scope or duration'),\n", " ('neighboring', 'having a common boundary or edge; abutting; touching'),\n", - " ('adjacent', 'having a common boundary or edge; abutting; touching'),\n", - " ('coextensive', 'being of equal extent or scope or duration'),\n", - " ('coterminous', 'being of equal extent or scope or duration')]},\n", + " ('adjacent', 'having a common boundary or edge; abutting; touching')]},\n", " {'answer': 'contiguous',\n", " 'hint': 'synonyms for contiguous',\n", - " 'clues': [('neighboring',\n", - " 'having a common boundary or edge; abutting; touching'),\n", - " ('adjacent', 'having a common boundary or edge; abutting; touching'),\n", - " ('conterminous', 'connecting without a break; within a common boundary'),\n", - " ('immediate', 'very close or connected in space or time')]},\n", + " 'clues': [('immediate', 'very close or connected in space or time'),\n", + " ('neighboring', 'having a common boundary or edge; abutting; touching'),\n", + " ('conterminous', 'having a common boundary or edge; abutting; touching'),\n", + " ('adjacent', 'having a common boundary or edge; abutting; touching')]},\n", " {'answer': 'contingent',\n", " 'hint': 'synonyms for contingent',\n", - " 'clues': [('contingent upon',\n", + " 'clues': [('dependant on',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('dependant upon',\n", + " ('contingent upon',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('depending on', 'determined by conditions or circumstances that follow'),\n", - " ('dependent on',\n", + " ('dependent upon',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('depending on',\n", " 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'contingent_on',\n", " 'hint': 'synonyms for contingent on',\n", - " 'clues': [('contingent upon',\n", + " 'clues': [('dependant on',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('dependant upon',\n", + " ('contingent upon',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('contingent', 'determined by conditions or circumstances that follow'),\n", " ('depending on', 'determined by conditions or circumstances that follow'),\n", - " ('dependent on',\n", - " 'determined by conditions or circumstances that follow')]},\n", + " ('dependent upon',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('contingent', 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'contingent_upon',\n", " 'hint': 'synonyms for contingent upon',\n", - " 'clues': [('contingent on',\n", + " 'clues': [('dependant on',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('dependant upon',\n", + " ('dependent upon',\n", " 'determined by conditions or circumstances that follow'),\n", " ('depending on', 'determined by conditions or circumstances that follow'),\n", - " ('dependent on',\n", + " ('contingent on',\n", " 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'continuant',\n", " 'hint': 'synonyms for continuant',\n", - " 'clues': [('sibilant',\n", + " 'clues': [('spirant',\n", " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\"),\n", - " ('spirant',\n", + " ('fricative',\n", " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\"),\n", - " ('strident',\n", + " ('sibilant',\n", " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\"),\n", - " ('fricative',\n", + " ('strident',\n", " \"of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then')\")]},\n", " {'answer': 'contraband',\n", " 'hint': 'synonyms for contraband',\n", - " 'clues': [('bootleg', 'distributed or sold illicitly'),\n", + " 'clues': [('black-market', 'distributed or sold illicitly'),\n", " ('smuggled', 'distributed or sold illicitly'),\n", - " ('black', 'distributed or sold illicitly'),\n", - " ('black-market', 'distributed or sold illicitly')]},\n", + " ('bootleg', 'distributed or sold illicitly'),\n", + " ('black', 'distributed or sold illicitly')]},\n", " {'answer': 'contractable',\n", " 'hint': 'synonyms for contractable',\n", " 'clues': [('transmissible',\n", " '(of disease) capable of being transmitted by infection'),\n", - " ('contagious', '(of disease) capable of being transmitted by infection'),\n", - " ('catching', '(of disease) capable of being transmitted by infection'),\n", " ('transmittable',\n", " '(of disease) capable of being transmitted by infection'),\n", + " ('contagious', '(of disease) capable of being transmitted by infection'),\n", + " ('catching', '(of disease) capable of being transmitted by infection'),\n", " ('communicable',\n", " '(of disease) capable of being transmitted by infection')]},\n", " {'answer': 'contradictory',\n", " 'hint': 'synonyms for contradictory',\n", - " 'clues': [('self-contradictory', 'in disagreement; ; - John Morley'),\n", - " ('confounding', 'that confounds or contradicts or confuses'),\n", - " ('conflicting', 'in disagreement; ; - John Morley'),\n", + " 'clues': [('confounding', 'that confounds or contradicts or confuses'),\n", " ('at odds', 'in disagreement; ; - John Morley'),\n", - " ('mutually exclusive', 'unable to be both true at the same time')]},\n", + " ('mutually exclusive', 'unable to be both true at the same time'),\n", + " ('conflicting', 'in disagreement; ; - John Morley'),\n", + " ('self-contradictory', 'in disagreement; ; - John Morley')]},\n", " {'answer': 'contrary',\n", " 'hint': 'synonyms for contrary',\n", " 'clues': [('obstinate', 'resistant to guidance or discipline'),\n", @@ -41753,1847 +41782,1862 @@ " 'hint': 'synonyms for contributing',\n", " 'clues': [('contributory',\n", " 'tending to bring about; being partly responsible for'),\n", - " ('contributive', 'tending to bring about; being partly responsible for'),\n", + " ('tributary', 'tending to bring about; being partly responsible for'),\n", " ('conducive', 'tending to bring about; being partly responsible for'),\n", - " ('tributary', 'tending to bring about; being partly responsible for')]},\n", + " ('contributive',\n", + " 'tending to bring about; being partly responsible for')]},\n", " {'answer': 'contributive',\n", " 'hint': 'synonyms for contributive',\n", " 'clues': [('contributing',\n", " 'tending to bring about; being partly responsible for'),\n", - " ('contributory', 'tending to bring about; being partly responsible for'),\n", + " ('tributary', 'tending to bring about; being partly responsible for'),\n", " ('conducive', 'tending to bring about; being partly responsible for'),\n", - " ('tributary', 'tending to bring about; being partly responsible for')]},\n", + " ('contributory',\n", + " 'tending to bring about; being partly responsible for')]},\n", " {'answer': 'contributory',\n", " 'hint': 'synonyms for contributory',\n", " 'clues': [('contributing',\n", " 'tending to bring about; being partly responsible for'),\n", - " ('contributive', 'tending to bring about; being partly responsible for'),\n", + " ('tributary', 'tending to bring about; being partly responsible for'),\n", " ('conducive', 'tending to bring about; being partly responsible for'),\n", - " ('tributary', 'tending to bring about; being partly responsible for')]},\n", + " ('contributive',\n", + " 'tending to bring about; being partly responsible for')]},\n", " {'answer': 'conventional',\n", " 'hint': 'synonyms for conventional',\n", - " 'clues': [('established', 'conforming with accepted standards'),\n", + " 'clues': [('schematic', 'represented in simplified or symbolic form'),\n", + " ('established', 'conforming with accepted standards'),\n", " ('formal', 'represented in simplified or symbolic form'),\n", - " ('ceremonious', 'rigidly formal or bound by convention'),\n", - " ('schematic', 'represented in simplified or symbolic form')]},\n", + " ('ceremonious', 'rigidly formal or bound by convention')]},\n", " {'answer': 'convertible',\n", " 'hint': 'synonyms for convertible',\n", - " 'clues': [('transformable',\n", + " 'clues': [('translatable',\n", + " 'capable of being changed in substance as if by alchemy'),\n", + " ('transformable',\n", " 'capable of being changed in substance as if by alchemy'),\n", " ('transmutable',\n", " 'capable of being changed in substance as if by alchemy'),\n", " ('exchangeable',\n", - " 'capable of being exchanged for or replaced by something of equal value'),\n", - " ('translatable',\n", - " 'capable of being changed in substance as if by alchemy')]},\n", + " 'capable of being exchanged for or replaced by something of equal value')]},\n", " {'answer': 'convoluted',\n", " 'hint': 'synonyms for convoluted',\n", - " 'clues': [('knotty',\n", - " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", - " ('tangled',\n", + " 'clues': [('tangled',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", - " ('convolute', 'rolled longitudinally upon itself'),\n", " ('tortuous',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", + " ('convolute', 'rolled longitudinally upon itself'),\n", " ('involved',\n", + " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott'),\n", + " ('knotty',\n", " 'highly complex or intricate and occasionally devious; ; ; ; ; ; ; ; - Sir Walter Scott')]},\n", " {'answer': 'cooccurring',\n", " 'hint': 'synonyms for cooccurring',\n", - " 'clues': [('coincidental', 'occurring or operating at the same time'),\n", - " ('simultaneous', 'occurring or operating at the same time'),\n", - " ('concurrent', 'occurring or operating at the same time'),\n", + " 'clues': [('concurrent', 'occurring or operating at the same time'),\n", + " ('coincident', 'occurring or operating at the same time'),\n", + " ('co-occurrent', 'occurring or operating at the same time'),\n", " ('coinciding', 'occurring or operating at the same time'),\n", - " ('co-occurrent', 'occurring or operating at the same time')]},\n", + " ('simultaneous', 'occurring or operating at the same time')]},\n", " {'answer': 'cooperative',\n", " 'hint': 'synonyms for cooperative',\n", - " 'clues': [('accommodative',\n", + " 'clues': [('conjunct', 'involving the joint activity of two or more'),\n", + " ('accommodative',\n", " 'willing to adjust to differences in order to obtain agreement'),\n", - " ('concerted', 'involving the joint activity of two or more'),\n", - " ('conjunct', 'involving the joint activity of two or more'),\n", - " ('conjunctive', 'involving the joint activity of two or more')]},\n", + " ('conjunctive', 'involving the joint activity of two or more'),\n", + " ('concerted', 'involving the joint activity of two or more')]},\n", " {'answer': 'coordinated',\n", " 'hint': 'synonyms for coordinated',\n", - " 'clues': [('co-ordinated', 'intentionally matched'),\n", + " 'clues': [('matching', 'intentionally matched'),\n", + " ('co-ordinated',\n", + " 'being dexterous in the use of more than one set of muscle movements; - Mary McCarthy'),\n", " ('interconnected', 'operating as a unit'),\n", - " ('matching', 'intentionally matched'),\n", " ('unified', 'operating as a unit')]},\n", " {'answer': 'copious',\n", " 'hint': 'synonyms for copious',\n", - " 'clues': [('rich', 'affording an abundant supply'),\n", - " ('voluminous', 'large in number or quantity (especially of discourse)'),\n", + " 'clues': [('ample', 'affording an abundant supply'),\n", + " ('rich', 'affording an abundant supply'),\n", " ('plentiful', 'affording an abundant supply'),\n", - " ('plenteous', 'affording an abundant supply'),\n", - " ('ample', 'affording an abundant supply')]},\n", + " ('voluminous', 'large in number or quantity (especially of discourse)'),\n", + " ('plenteous', 'affording an abundant supply')]},\n", " {'answer': 'corking',\n", " 'hint': 'synonyms for corking',\n", - " 'clues': [('smashing', 'very good'),\n", + " 'clues': [('nifty', 'very good'),\n", + " ('great', 'very good'),\n", " ('not bad', 'very good'),\n", + " ('bang-up', 'very good'),\n", + " ('cracking', 'very good'),\n", + " ('smashing', 'very good'),\n", + " ('groovy', 'very good'),\n", " ('swell', 'very good'),\n", + " ('neat', 'very good'),\n", + " ('bully', 'very good'),\n", + " ('peachy', 'very good'),\n", " ('dandy', 'very good'),\n", " ('keen', 'very good'),\n", - " ('nifty', 'very good'),\n", - " ('peachy', 'very good'),\n", - " ('cracking', 'very good'),\n", - " ('slap-up', 'very good'),\n", - " ('bang-up', 'very good'),\n", - " ('bully', 'very good'),\n", - " ('neat', 'very good'),\n", - " ('groovy', 'very good'),\n", - " ('great', 'very good')]},\n", + " ('slap-up', 'very good')]},\n", " {'answer': 'corporal',\n", " 'hint': 'synonyms for corporal',\n", - " 'clues': [('bodied',\n", - " 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('corporeal',\n", + " 'clues': [('bodily',\n", " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n", " ('corporate', 'possessing or existing in bodily form; - Shakespeare'),\n", + " ('embodied', 'possessing or existing in bodily form; - Shakespeare'),\n", " ('somatic',\n", " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n", " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('bodily',\n", + " ('corporeal',\n", " 'affecting or characteristic of the body as opposed to the mind or spirit')]},\n", " {'answer': 'corporate',\n", " 'hint': 'synonyms for corporate',\n", - " 'clues': [('bodied',\n", + " 'clues': [('corporal',\n", " 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('corporal', 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('incorporated', 'organized and maintained as a legal corporation'),\n", - " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n", " ('collective',\n", - " 'done by or characteristic of individuals acting together')]},\n", + " 'done by or characteristic of individuals acting together'),\n", + " ('embodied', 'possessing or existing in bodily form; - Shakespeare'),\n", + " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n", + " ('incorporated', 'organized and maintained as a legal corporation')]},\n", " {'answer': 'corporeal',\n", " 'hint': 'synonyms for corporeal',\n", " 'clues': [('material',\n", " 'having material or physical form or substance; - Benjamin Jowett'),\n", - " ('somatic',\n", - " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n", " ('bodily',\n", " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n", " ('corporal',\n", + " 'affecting or characteristic of the body as opposed to the mind or spirit'),\n", + " ('somatic',\n", " 'affecting or characteristic of the body as opposed to the mind or spirit')]},\n", " {'answer': 'corroborative',\n", " 'hint': 'synonyms for corroborative',\n", - " 'clues': [('substantiating', 'serving to support or corroborate'),\n", + " 'clues': [('substantiative', 'serving to support or corroborate'),\n", " ('validatory', 'serving to support or corroborate'),\n", - " ('collateral', 'serving to support or corroborate'),\n", " ('validating', 'serving to support or corroborate'),\n", - " ('confirmative', 'serving to support or corroborate'),\n", - " ('verificatory', 'serving to support or corroborate'),\n", " ('corroboratory', 'serving to support or corroborate'),\n", - " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmatory', 'serving to support or corroborate'),\n", " ('verifying', 'serving to support or corroborate'),\n", - " ('confirmatory', 'serving to support or corroborate')]},\n", + " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmative', 'serving to support or corroborate'),\n", + " ('collateral', 'serving to support or corroborate'),\n", + " ('verificatory', 'serving to support or corroborate')]},\n", " {'answer': 'corroboratory',\n", " 'hint': 'synonyms for corroboratory',\n", - " 'clues': [('substantiating', 'serving to support or corroborate'),\n", + " 'clues': [('substantiative', 'serving to support or corroborate'),\n", + " ('corroborative', 'serving to support or corroborate'),\n", " ('validatory', 'serving to support or corroborate'),\n", - " ('collateral', 'serving to support or corroborate'),\n", " ('validating', 'serving to support or corroborate'),\n", - " ('confirmative', 'serving to support or corroborate'),\n", - " ('verificatory', 'serving to support or corroborate'),\n", - " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmatory', 'serving to support or corroborate'),\n", " ('verifying', 'serving to support or corroborate'),\n", - " ('corroborative', 'serving to support or corroborate'),\n", - " ('confirmatory', 'serving to support or corroborate')]},\n", + " ('confirming', 'serving to support or corroborate'),\n", + " ('confirmative', 'serving to support or corroborate'),\n", + " ('collateral', 'serving to support or corroborate'),\n", + " ('verificatory', 'serving to support or corroborate')]},\n", " {'answer': 'corrosive',\n", " 'hint': 'synonyms for corrosive',\n", - " 'clues': [('mordant',\n", - " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", - " ('vitriolic',\n", + " 'clues': [('caustic',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", " ('erosive',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", - " ('caustic',\n", + " ('mordant',\n", + " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", + " ('vitriolic',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action')]},\n", " {'answer': 'corruptible',\n", " 'hint': 'synonyms for corruptible',\n", - " 'clues': [('purchasable', 'capable of being corrupted'),\n", - " ('venal', 'capable of being corrupted'),\n", - " ('bribable', 'capable of being corrupted'),\n", - " ('dishonest', 'capable of being corrupted')]},\n", + " 'clues': [('bribable', 'capable of being corrupted'),\n", + " ('purchasable', 'capable of being corrupted'),\n", + " ('dishonest', 'capable of being corrupted'),\n", + " ('venal', 'capable of being corrupted')]},\n", " {'answer': 'coruscant',\n", " 'hint': 'synonyms for coruscant',\n", - " 'clues': [('sparkly', 'having brief brilliant points or flashes of light'),\n", - " ('glittering', 'having brief brilliant points or flashes of light'),\n", + " 'clues': [('glinting',\n", + " 'having brief brilliant points or flashes of light'),\n", + " ('fulgid', 'having brief brilliant points or flashes of light'),\n", + " ('glittery', 'having brief brilliant points or flashes of light'),\n", " ('scintillating', 'having brief brilliant points or flashes of light'),\n", - " ('aglitter', 'having brief brilliant points or flashes of light'),\n", - " ('scintillant', 'having brief brilliant points or flashes of light'),\n", - " ('glinting', 'having brief brilliant points or flashes of light'),\n", - " ('fulgid', 'having brief brilliant points or flashes of light')]},\n", + " ('glittering', 'having brief brilliant points or flashes of light'),\n", + " ('sparkly', 'having brief brilliant points or flashes of light'),\n", + " ('scintillant', 'having brief brilliant points or flashes of light')]},\n", " {'answer': 'cosmopolitan',\n", " 'hint': 'synonyms for cosmopolitan',\n", - " 'clues': [('ecumenical',\n", - " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", - " ('world-wide',\n", + " 'clues': [('universal',\n", " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", + " ('widely distributed', 'growing or occurring in many parts of the world'),\n", " ('general',\n", " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", - " ('universal',\n", + " ('world-wide',\n", " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", - " ('widely distributed',\n", - " 'growing or occurring in many parts of the world')]},\n", + " ('ecumenical',\n", + " 'of worldwide scope or applicability; ; - Christopher Morley')]},\n", " {'answer': 'costless',\n", " 'hint': 'synonyms for costless',\n", - " 'clues': [('gratuitous', 'costing nothing'),\n", + " 'clues': [('free', 'costing nothing'),\n", " ('gratis', 'costing nothing'),\n", - " ('complimentary', 'costing nothing'),\n", - " ('free', 'costing nothing')]},\n", + " ('gratuitous', 'costing nothing'),\n", + " ('complimentary', 'costing nothing')]},\n", " {'answer': 'costly',\n", " 'hint': 'synonyms for costly',\n", " 'clues': [('high-priced', 'having a high price'),\n", - " ('pricy', 'having a high price'),\n", + " ('pricey', 'having a high price'),\n", " ('dearly-won', 'entailing great loss or sacrifice'),\n", " ('dear', 'having a high price')]},\n", " {'answer': 'countless',\n", " 'hint': 'synonyms for countless',\n", - " 'clues': [('unnumerable', 'too numerous to be counted'),\n", + " 'clues': [('multitudinous', 'too numerous to be counted'),\n", + " ('unnumberable', 'too numerous to be counted'),\n", + " ('unnumbered', 'too numerous to be counted'),\n", " ('myriad', 'too numerous to be counted'),\n", " ('infinite', 'too numerous to be counted'),\n", - " ('innumerous', 'too numerous to be counted'),\n", - " ('multitudinous', 'too numerous to be counted'),\n", - " ('uncounted', 'too numerous to be counted'),\n", " ('numberless', 'too numerous to be counted'),\n", - " ('unnumbered', 'too numerous to be counted')]},\n", + " ('uncounted', 'too numerous to be counted'),\n", + " ('innumerous', 'too numerous to be counted')]},\n", " {'answer': 'covetous',\n", " 'hint': 'synonyms for covetous',\n", - " 'clues': [('jealous',\n", - " \"showing extreme cupidity; painfully desirous of another's advantages\"),\n", + " 'clues': [('greedy', 'immoderately desirous of acquiring e.g. wealth'),\n", " ('prehensile', 'immoderately desirous of acquiring e.g. wealth'),\n", - " ('greedy', 'immoderately desirous of acquiring e.g. wealth'),\n", - " ('grabby', 'immoderately desirous of acquiring e.g. wealth'),\n", - " ('avaricious', 'immoderately desirous of acquiring e.g. wealth'),\n", " ('grasping', 'immoderately desirous of acquiring e.g. wealth'),\n", " ('envious',\n", - " \"showing extreme cupidity; painfully desirous of another's advantages\")]},\n", + " \"showing extreme cupidity; painfully desirous of another's advantages\"),\n", + " ('jealous',\n", + " \"showing extreme cupidity; painfully desirous of another's advantages\"),\n", + " ('avaricious', 'immoderately desirous of acquiring e.g. wealth'),\n", + " ('grabby', 'immoderately desirous of acquiring e.g. wealth')]},\n", " {'answer': 'cozy',\n", " 'hint': 'synonyms for cozy',\n", - " 'clues': [('cosy',\n", - " 'enjoying or affording comforting warmth and shelter especially in a small space'),\n", + " 'clues': [('informal',\n", + " 'having or fostering a warm or friendly and informal atmosphere'),\n", " ('snug',\n", " 'enjoying or affording comforting warmth and shelter especially in a small space'),\n", " ('intimate',\n", " 'having or fostering a warm or friendly and informal atmosphere'),\n", - " ('informal',\n", - " 'having or fostering a warm or friendly and informal atmosphere')]},\n", + " ('cosy',\n", + " 'enjoying or affording comforting warmth and shelter especially in a small space')]},\n", " {'answer': 'crabbed',\n", " 'hint': 'synonyms for crabbed',\n", - " 'clues': [('ill-tempered', 'annoyed and irritable'),\n", - " ('cross', 'annoyed and irritable'),\n", - " ('grouchy', 'annoyed and irritable'),\n", - " ('bad-tempered', 'annoyed and irritable'),\n", + " 'clues': [('grouchy', 'annoyed and irritable'),\n", " ('fussy', 'annoyed and irritable'),\n", + " ('cross', 'annoyed and irritable'),\n", " ('grumpy', 'annoyed and irritable'),\n", - " ('crabby', 'annoyed and irritable')]},\n", + " ('crabby', 'annoyed and irritable'),\n", + " ('bad-tempered', 'annoyed and irritable'),\n", + " ('ill-tempered', 'annoyed and irritable')]},\n", " {'answer': 'crabby',\n", " 'hint': 'synonyms for crabby',\n", - " 'clues': [('ill-tempered', 'annoyed and irritable'),\n", - " ('crabbed', 'annoyed and irritable'),\n", - " ('cross', 'annoyed and irritable'),\n", + " 'clues': [('crabbed', 'annoyed and irritable'),\n", + " ('fussy', 'annoyed and irritable'),\n", " ('grouchy', 'annoyed and irritable'),\n", + " ('cross', 'annoyed and irritable'),\n", + " ('grumpy', 'annoyed and irritable'),\n", " ('bad-tempered', 'annoyed and irritable'),\n", - " ('fussy', 'annoyed and irritable'),\n", - " ('grumpy', 'annoyed and irritable')]},\n", + " ('ill-tempered', 'annoyed and irritable')]},\n", " {'answer': 'crack',\n", " 'hint': 'synonyms for crack',\n", - " 'clues': [('topnotch', 'of the highest quality'),\n", + " 'clues': [('ace', 'of the highest quality'),\n", + " ('topnotch', 'of the highest quality'),\n", + " ('super', 'of the highest quality'),\n", " ('first-rate', 'of the highest quality'),\n", " ('tops', 'of the highest quality'),\n", - " ('super', 'of the highest quality'),\n", - " ('tiptop', 'of the highest quality'),\n", - " ('ace', 'of the highest quality')]},\n", + " ('tiptop', 'of the highest quality')]},\n", " {'answer': 'cracked',\n", " 'hint': 'synonyms for cracked',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('chapped', 'used of skin roughened as a result of cold or exposure'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('roughened', 'used of skin roughened as a result of cold or exposure'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", - " ('buggy', 'informal or slang terms for mentally irregular'),\n", - " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", " ('alligatored',\n", " 'of paint or varnish; having the appearance of alligator hide'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", + " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", + " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('chapped', 'used of skin roughened as a result of cold or exposure'),\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'crackers',\n", " 'hint': 'synonyms for crackers',\n", - " 'clues': [('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'cracking',\n", " 'hint': 'synonyms for cracking',\n", - " 'clues': [('smashing', 'very good'),\n", + " 'clues': [('nifty', 'very good'),\n", + " ('great', 'very good'),\n", " ('not bad', 'very good'),\n", + " ('bang-up', 'very good'),\n", + " ('smashing', 'very good'),\n", + " ('groovy', 'very good'),\n", " ('swell', 'very good'),\n", + " ('neat', 'very good'),\n", + " ('bully', 'very good'),\n", + " ('peachy', 'very good'),\n", " ('dandy', 'very good'),\n", " ('keen', 'very good'),\n", - " ('nifty', 'very good'),\n", - " ('peachy', 'very good'),\n", - " ('slap-up', 'very good'),\n", - " ('bang-up', 'very good'),\n", " ('corking', 'very good'),\n", - " ('bully', 'very good'),\n", - " ('neat', 'very good'),\n", - " ('groovy', 'very good'),\n", - " ('great', 'very good')]},\n", + " ('slap-up', 'very good')]},\n", " {'answer': 'crafty',\n", " 'hint': 'synonyms for crafty',\n", - " 'clues': [('tricky', 'marked by skill in deception'),\n", - " ('knavish', 'marked by skill in deception'),\n", + " 'clues': [('cunning', 'marked by skill in deception'),\n", " ('sly', 'marked by skill in deception'),\n", - " ('slick', 'marked by skill in deception'),\n", - " ('wily', 'marked by skill in deception'),\n", + " ('tricksy', 'marked by skill in deception'),\n", " ('foxy', 'marked by skill in deception'),\n", + " ('slick', 'marked by skill in deception'),\n", " ('dodgy', 'marked by skill in deception'),\n", - " ('guileful', 'marked by skill in deception'),\n", - " ('cunning', 'marked by skill in deception')]},\n", - " {'answer': 'cram_full',\n", - " 'hint': 'synonyms for cram full',\n", - " 'clues': [('chuck-full', 'packed full to capacity'),\n", - " ('chockful', 'packed full to capacity'),\n", - " ('chockablock', 'packed full to capacity'),\n", - " ('choke-full', 'packed full to capacity')]},\n", + " ('knavish', 'marked by skill in deception'),\n", + " ('wily', 'marked by skill in deception'),\n", + " ('guileful', 'marked by skill in deception')]},\n", " {'answer': 'cranky',\n", " 'hint': 'synonyms for cranky',\n", - " 'clues': [('crank',\n", - " '(used of boats) inclined to heel over easily under sail'),\n", - " ('nettlesome', 'easily irritated or annoyed'),\n", + " 'clues': [('nettlesome', 'easily irritated or annoyed'),\n", + " ('scratchy', 'easily irritated or annoyed'),\n", + " ('techy', 'easily irritated or annoyed'),\n", + " ('crank', '(used of boats) inclined to heel over easily under sail'),\n", " ('fractious', 'easily irritated or annoyed'),\n", - " ('petulant', 'easily irritated or annoyed'),\n", - " ('tender', '(used of boats) inclined to heel over easily under sail'),\n", " ('irritable', 'easily irritated or annoyed'),\n", - " ('peevish', 'easily irritated or annoyed'),\n", - " ('tippy', '(used of boats) inclined to heel over easily under sail'),\n", - " ('techy', 'easily irritated or annoyed'),\n", " ('pettish', 'easily irritated or annoyed'),\n", - " ('scratchy', 'easily irritated or annoyed'),\n", - " ('peckish', 'easily irritated or annoyed'),\n", - " ('testy', 'easily irritated or annoyed')]},\n", + " ('tippy', '(used of boats) inclined to heel over easily under sail'),\n", + " ('tender', '(used of boats) inclined to heel over easily under sail'),\n", + " ('testy', 'easily irritated or annoyed'),\n", + " ('peevish', 'easily irritated or annoyed'),\n", + " ('petulant', 'easily irritated or annoyed'),\n", + " ('peckish', 'easily irritated or annoyed')]},\n", " {'answer': 'crappy',\n", " 'hint': 'synonyms for crappy',\n", - " 'clues': [('shitty', 'very bad'),\n", - " ('rotten', 'very bad'),\n", + " 'clues': [('rotten', 'very bad'),\n", + " ('stinking', 'very bad'),\n", " ('icky', 'very bad'),\n", " ('lousy', 'very bad'),\n", " ('stinky', 'very bad'),\n", - " ('stinking', 'very bad')]},\n", + " ('shitty', 'very bad')]},\n", " {'answer': 'crashing',\n", " 'hint': 'synonyms for crashing',\n", - " 'clues': [('flaming', 'informal intensifiers'),\n", - " ('bally', 'informal intensifiers'),\n", - " ('fucking', 'informal intensifiers'),\n", + " 'clues': [('blinking', 'informal intensifiers'),\n", + " ('blooming', 'informal intensifiers'),\n", " ('bloody', 'informal intensifiers'),\n", - " ('blinking', 'informal intensifiers'),\n", - " ('blooming', 'informal intensifiers')]},\n", + " ('flaming', 'informal intensifiers'),\n", + " ('fucking', 'informal intensifiers'),\n", + " ('bally', 'informal intensifiers')]},\n", " {'answer': 'crazy',\n", " 'hint': 'synonyms for crazy',\n", - " 'clues': [('unhinged', 'affected with madness or insanity'),\n", - " ('brainsick', 'affected with madness or insanity'),\n", + " 'clues': [('unbalanced', 'affected with madness or insanity'),\n", + " ('dotty', 'intensely enthusiastic about or preoccupied with'),\n", + " ('sick', 'affected with madness or insanity'),\n", " ('gaga', 'intensely enthusiastic about or preoccupied with'),\n", - " ('wild', 'intensely enthusiastic about or preoccupied with'),\n", - " ('mad', 'affected with madness or insanity'),\n", - " ('screwball', 'foolish; totally unsound'),\n", " ('softheaded', 'foolish; totally unsound'),\n", - " ('demented', 'affected with madness or insanity'),\n", + " ('wild', 'intensely enthusiastic about or preoccupied with'),\n", + " ('brainsick', 'affected with madness or insanity'),\n", " ('half-baked', 'foolish; totally unsound'),\n", + " ('demented', 'affected with madness or insanity'),\n", + " ('screwball', 'foolish; totally unsound'),\n", + " ('unhinged', 'affected with madness or insanity'),\n", " ('disturbed', 'affected with madness or insanity'),\n", - " ('sick', 'affected with madness or insanity'),\n", - " ('unbalanced', 'affected with madness or insanity'),\n", - " ('dotty', 'intensely enthusiastic about or preoccupied with')]},\n", + " ('mad', 'affected with madness or insanity')]},\n", " {'answer': 'creaky',\n", " 'hint': 'synonyms for creaky',\n", - " 'clues': [('flea-bitten', 'worn and broken down by hard use'),\n", - " ('rheumy', 'of or pertaining to arthritis'),\n", - " ('decrepit', 'worn and broken down by hard use'),\n", + " 'clues': [('woebegone', 'worn and broken down by hard use'),\n", " ('run-down', 'worn and broken down by hard use'),\n", + " ('flea-bitten', 'worn and broken down by hard use'),\n", + " ('rheumy', 'of or pertaining to arthritis'),\n", + " ('rheumatoid', 'of or pertaining to arthritis'),\n", " ('rheumatic', 'of or pertaining to arthritis'),\n", - " ('derelict', 'worn and broken down by hard use'),\n", + " ('arthritic', 'of or pertaining to arthritis'),\n", + " ('decrepit', 'worn and broken down by hard use'),\n", " ('screaky', 'having a rasping or grating sound'),\n", - " ('woebegone', 'worn and broken down by hard use'),\n", - " ('rheumatoid', 'of or pertaining to arthritis'),\n", - " ('arthritic', 'of or pertaining to arthritis')]},\n", + " ('derelict', 'worn and broken down by hard use')]},\n", " {'answer': 'criminal',\n", " 'hint': 'synonyms for criminal',\n", - " 'clues': [('condemnable',\n", - " 'bringing or deserving severe rebuke or censure'),\n", + " 'clues': [('felonious',\n", + " 'involving or being or having the nature of a crime'),\n", + " ('condemnable', 'bringing or deserving severe rebuke or censure'),\n", " ('deplorable', 'bringing or deserving severe rebuke or censure'),\n", - " ('felonious', 'involving or being or having the nature of a crime'),\n", - " ('reprehensible', 'bringing or deserving severe rebuke or censure'),\n", - " ('vicious', 'bringing or deserving severe rebuke or censure')]},\n", + " ('vicious', 'bringing or deserving severe rebuke or censure'),\n", + " ('reprehensible', 'bringing or deserving severe rebuke or censure')]},\n", " {'answer': 'crimson',\n", " 'hint': 'synonyms for crimson',\n", - " 'clues': [('red',\n", + " 'clues': [('reddish',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruddy',\n", + " ('ruby-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('blood-red',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", + " ('cherry-red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('cerise',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('ruby-red',\n", + " ('ruddy',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('ruby',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('red-faced',\n", - " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n", - " ('cherry',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('carmine',\n", + " ('violent',\n", + " 'characterized by violence or bloodshed; - Andrea Parke; - Thomas Gray; - Hudson Strode'),\n", + " ('red',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('reddened',\n", " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n", + " ('red-faced',\n", + " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n", " ('scarlet',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('reddish',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('cherry-red',\n", - " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", " ('flushed',\n", " '(especially of the face) reddened or suffused with or as if with blood from emotion or exertion'),\n", - " ('blood-red',\n", + " ('cherry',\n", " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies'),\n", - " ('violent',\n", - " 'characterized by violence or bloodshed; - Andrea Parke; - Thomas Gray; - Hudson Strode')]},\n", + " ('carmine',\n", + " 'of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies')]},\n", " {'answer': 'crinkled',\n", " 'hint': 'synonyms for crinkled',\n", - " 'clues': [('crinkly', 'uneven by virtue of having wrinkles or waves'),\n", - " ('wavelike', 'uneven by virtue of having wrinkles or waves'),\n", + " 'clues': [('wavelike', 'uneven by virtue of having wrinkles or waves'),\n", + " ('crinkly', 'uneven by virtue of having wrinkles or waves'),\n", " ('rippled', 'uneven by virtue of having wrinkles or waves'),\n", " ('wavy', 'uneven by virtue of having wrinkles or waves')]},\n", " {'answer': 'crinkly',\n", " 'hint': 'synonyms for crinkly',\n", " 'clues': [('wavelike', 'uneven by virtue of having wrinkles or waves'),\n", - " ('crinkled', 'uneven by virtue of having wrinkles or waves'),\n", + " ('wavy', 'uneven by virtue of having wrinkles or waves'),\n", " ('rippled', 'uneven by virtue of having wrinkles or waves'),\n", - " ('wavy', 'uneven by virtue of having wrinkles or waves')]},\n", + " ('crinkled', 'uneven by virtue of having wrinkles or waves')]},\n", " {'answer': 'crippled',\n", " 'hint': 'synonyms for crippled',\n", - " 'clues': [('lame', 'disabled in the feet or legs'),\n", - " ('halt', 'disabled in the feet or legs'),\n", + " 'clues': [('halt', 'disabled in the feet or legs'),\n", " ('game', 'disabled in the feet or legs'),\n", + " ('lame', 'disabled in the feet or legs'),\n", " ('gimpy', 'disabled in the feet or legs')]},\n", " {'answer': 'crisp',\n", " 'hint': 'synonyms for crisp',\n", - " 'clues': [('frosty', 'pleasantly cold and invigorating'),\n", - " ('curt', 'brief and to the point; effectively cut short'),\n", - " ('nipping', 'pleasantly cold and invigorating'),\n", - " ('kinky', '(of hair) in small tight curls'),\n", + " 'clues': [('sharp', '(of something seen or heard) clearly defined'),\n", + " ('frosty', 'pleasantly cold and invigorating'),\n", " ('frizzy', '(of hair) in small tight curls'),\n", - " ('crispy', 'tender and brittle'),\n", " ('snappy', 'pleasantly cold and invigorating'),\n", + " ('curt', 'brief and to the point; effectively cut short'),\n", " ('laconic', 'brief and to the point; effectively cut short'),\n", - " ('nippy', 'pleasantly cold and invigorating'),\n", - " ('sharp', '(of something seen or heard) clearly defined'),\n", - " ('terse', 'brief and to the point; effectively cut short')]},\n", + " ('crispy', 'tender and brittle'),\n", + " ('nipping', 'pleasantly cold and invigorating'),\n", + " ('kinky', '(of hair) in small tight curls'),\n", + " ('terse', 'brief and to the point; effectively cut short'),\n", + " ('nippy', 'pleasantly cold and invigorating')]},\n", " {'answer': 'crocked',\n", " 'hint': 'synonyms for crocked',\n", - " 'clues': [('pixilated', 'very drunk'),\n", + " 'clues': [('fuddled', 'very drunk'),\n", " ('sloshed', 'very drunk'),\n", - " ('tight', 'very drunk'),\n", - " ('pissed', 'very drunk'),\n", - " ('cockeyed', 'very drunk'),\n", - " ('besotted', 'very drunk'),\n", - " ('smashed', 'very drunk'),\n", - " ('pie-eyed', 'very drunk'),\n", - " ('blind drunk', 'very drunk'),\n", " ('stiff', 'very drunk'),\n", - " ('slopped', 'very drunk'),\n", + " ('cockeyed', 'very drunk'),\n", " ('sozzled', 'very drunk'),\n", - " ('loaded', 'very drunk'),\n", + " ('pie-eyed', 'very drunk'),\n", " ('soaked', 'very drunk'),\n", - " ('fuddled', 'very drunk'),\n", - " ('plastered', 'very drunk'),\n", + " ('pixilated', 'very drunk'),\n", " ('blotto', 'very drunk'),\n", - " ('squiffy', 'very drunk'),\n", " ('wet', 'very drunk'),\n", - " ('soused', 'very drunk')]},\n", + " ('pissed', 'very drunk'),\n", + " ('besotted', 'very drunk'),\n", + " ('soused', 'very drunk'),\n", + " ('slopped', 'very drunk'),\n", + " ('smashed', 'very drunk'),\n", + " ('blind drunk', 'very drunk'),\n", + " ('plastered', 'very drunk'),\n", + " ('loaded', 'very drunk'),\n", + " ('tight', 'very drunk'),\n", + " ('squiffy', 'very drunk')]},\n", " {'answer': 'crookback',\n", " 'hint': 'synonyms for crookback',\n", - " 'clues': [('humped',\n", + " 'clues': [('kyphotic',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('humpbacked',\n", + " ('crookbacked',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", " ('hunchbacked',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('gibbous',\n", + " ('humpbacked',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('crookbacked',\n", + " ('gibbous',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('kyphotic',\n", + " ('humped',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column')]},\n", " {'answer': 'crookbacked',\n", " 'hint': 'synonyms for crookbacked',\n", - " 'clues': [('humped',\n", - " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('humpbacked',\n", + " 'clues': [('kyphotic',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", " ('crookback',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('gibbous',\n", - " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", " ('hunchbacked',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", - " ('kyphotic',\n", + " ('humpbacked',\n", + " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", + " ('gibbous',\n", + " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column'),\n", + " ('humped',\n", " 'characteristic of or suffering from kyphosis, an abnormality of the vertebral column')]},\n", " {'answer': 'crooked',\n", " 'hint': 'synonyms for crooked',\n", - " 'clues': [('stooped', 'having the back and shoulders rounded; not erect'),\n", + " 'clues': [('stooping', 'having the back and shoulders rounded; not erect'),\n", + " ('stooped', 'having the back and shoulders rounded; not erect'),\n", + " ('round-backed', 'having the back and shoulders rounded; not erect'),\n", " ('corrupt', 'not straight; dishonest or immoral or evasive'),\n", - " ('stooping', 'having the back and shoulders rounded; not erect'),\n", " ('round-shouldered', 'having the back and shoulders rounded; not erect'),\n", " ('hunched', 'having the back and shoulders rounded; not erect'),\n", - " ('round-backed', 'having the back and shoulders rounded; not erect'),\n", " ('asymmetrical', 'irregular in shape or outline')]},\n", " {'answer': 'cross',\n", " 'hint': 'synonyms for cross',\n", - " 'clues': [('grouchy', 'annoyed and irritable'),\n", - " ('bad-tempered', 'annoyed and irritable'),\n", - " ('transverse',\n", - " 'extending or lying across; in a crosswise direction; at right angles to the long axis'),\n", - " ('fussy', 'annoyed and irritable'),\n", + " 'clues': [('fussy', 'annoyed and irritable'),\n", " ('grumpy', 'annoyed and irritable'),\n", + " ('bad-tempered', 'annoyed and irritable'),\n", " ('thwartwise',\n", " 'extending or lying across; in a crosswise direction; at right angles to the long axis'),\n", - " ('ill-tempered', 'annoyed and irritable'),\n", + " ('transverse',\n", + " 'extending or lying across; in a crosswise direction; at right angles to the long axis'),\n", " ('crabbed', 'annoyed and irritable'),\n", - " ('crabby', 'annoyed and irritable')]},\n", + " ('grouchy', 'annoyed and irritable'),\n", + " ('crabby', 'annoyed and irritable'),\n", + " ('ill-tempered', 'annoyed and irritable')]},\n", " {'answer': 'crowing',\n", " 'hint': 'synonyms for crowing',\n", - " 'clues': [('self-aggrandising', 'exhibiting self-importance'),\n", - " ('boastful', 'exhibiting self-importance'),\n", - " ('big', 'exhibiting self-importance'),\n", + " 'clues': [('big', 'exhibiting self-importance'),\n", " ('bragging', 'exhibiting self-importance'),\n", - " ('braggart', 'exhibiting self-importance'),\n", " ('cock-a-hoop', 'exhibiting self-importance'),\n", - " ('braggy', 'exhibiting self-importance')]},\n", + " ('boastful', 'exhibiting self-importance'),\n", + " ('braggy', 'exhibiting self-importance'),\n", + " ('braggart', 'exhibiting self-importance'),\n", + " ('self-aggrandising', 'exhibiting self-importance')]},\n", " {'answer': 'crucial',\n", " 'hint': 'synonyms for crucial',\n", - " 'clues': [('all-important', 'of the greatest importance'),\n", + " 'clues': [('of the essence', 'of the greatest importance'),\n", + " ('all important', 'of the greatest importance'),\n", " ('important',\n", " 'of extreme importance; vital to the resolution of a crisis'),\n", - " ('of the essence', 'of the greatest importance'),\n", " ('essential', 'of the greatest importance')]},\n", " {'answer': 'cruddy',\n", " 'hint': 'synonyms for cruddy',\n", " 'clues': [('smutty', 'characterized by obscenity'),\n", - " ('nasty', 'characterized by obscenity'),\n", + " ('foul', 'characterized by obscenity'),\n", " ('filthy', 'characterized by obscenity'),\n", - " ('foul', 'characterized by obscenity')]},\n", + " ('nasty', 'characterized by obscenity')]},\n", " {'answer': 'crude',\n", " 'hint': 'synonyms for crude',\n", - " 'clues': [('rough', 'not carefully or expertly made'),\n", - " ('rude',\n", - " 'belonging to an early stage of technical development; characterized by simplicity and (often) crudeness'),\n", - " ('raw', 'not processed or subjected to analysis'),\n", - " ('gross', 'conspicuously and tastelessly indecent'),\n", - " ('primitive',\n", - " 'belonging to an early stage of technical development; characterized by simplicity and (often) crudeness'),\n", + " 'clues': [('stark',\n", + " 'devoid of any qualifications or disguise or adornment'),\n", " ('earthy', 'conspicuously and tastelessly indecent'),\n", - " ('blunt', 'devoid of any qualifications or disguise or adornment'),\n", - " ('stark', 'devoid of any qualifications or disguise or adornment'),\n", " ('unrefined', 'not refined or processed'),\n", " ('vulgar', 'conspicuously and tastelessly indecent'),\n", - " ('unprocessed', 'not refined or processed')]},\n", + " ('gross', 'conspicuously and tastelessly indecent'),\n", + " ('primitive',\n", + " 'belonging to an early stage of technical development; characterized by simplicity and (often) crudeness'),\n", + " ('raw', 'not processed or subjected to analysis'),\n", + " ('rude',\n", + " 'belonging to an early stage of technical development; characterized by simplicity and (often) crudeness'),\n", + " ('unprocessed', 'not refined or processed'),\n", + " ('rough', 'not carefully or expertly made'),\n", + " ('blunt', 'devoid of any qualifications or disguise or adornment')]},\n", " {'answer': 'cruel',\n", " 'hint': 'synonyms for cruel',\n", " 'clues': [('savage',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", " ('barbarous',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('fell',\n", - " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('brutal',\n", + " ('vicious',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", " ('roughshod',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", - " ('vicious',\n", + " ('brutal',\n", + " '(of persons or their actions) able or disposed to inflict pain or suffering'),\n", + " ('fell',\n", " '(of persons or their actions) able or disposed to inflict pain or suffering')]},\n", " {'answer': 'crummy',\n", " 'hint': 'synonyms for crummy',\n", - " 'clues': [('bum', 'of very poor quality; flimsy'),\n", - " ('punk', 'of very poor quality; flimsy'),\n", - " ('cheap', 'of very poor quality; flimsy'),\n", - " ('chintzy', 'of very poor quality; flimsy'),\n", + " 'clues': [('cheesy', 'of very poor quality; flimsy'),\n", " ('tinny', 'of very poor quality; flimsy'),\n", " ('sleazy', 'of very poor quality; flimsy'),\n", - " ('cheesy', 'of very poor quality; flimsy')]},\n", + " ('chintzy', 'of very poor quality; flimsy'),\n", + " ('cheap', 'of very poor quality; flimsy'),\n", + " ('punk', 'of very poor quality; flimsy'),\n", + " ('bum', 'of very poor quality; flimsy')]},\n", " {'answer': 'crushed',\n", " 'hint': 'synonyms for crushed',\n", - " 'clues': [('humiliated', 'subdued or brought low in condition or status'),\n", - " ('broken', 'subdued or brought low in condition or status'),\n", + " 'clues': [('broken', 'subdued or brought low in condition or status'),\n", + " ('humiliated', 'subdued or brought low in condition or status'),\n", " ('low', 'subdued or brought low in condition or status'),\n", " ('humbled', 'subdued or brought low in condition or status')]},\n", " {'answer': 'crusty',\n", " 'hint': 'synonyms for crusty',\n", - " 'clues': [('crusted', 'having a hardened crust as a covering'),\n", - " ('crustlike', 'having a hardened crust as a covering'),\n", - " ('curmudgeonly', 'brusque and surly and forbidding'),\n", + " 'clues': [('curmudgeonly', 'brusque and surly and forbidding'),\n", + " ('encrusted', 'having a hardened crust as a covering'),\n", " ('ill-humoured', 'brusque and surly and forbidding'),\n", + " ('crustlike', 'having a hardened crust as a covering'),\n", " ('gruff', 'brusque and surly and forbidding')]},\n", " {'answer': 'crying',\n", " 'hint': 'synonyms for crying',\n", - " 'clues': [('insistent', 'demanding attention; ; ; - H.L.Mencken'),\n", + " 'clues': [('glaring',\n", + " 'conspicuously and outrageously bad or reprehensible'),\n", + " ('insistent', 'demanding attention; ; ; - H.L.Mencken'),\n", + " ('egregious', 'conspicuously and outrageously bad or reprehensible'),\n", + " ('exigent', 'demanding attention; ; ; - H.L.Mencken'),\n", " ('rank', 'conspicuously and outrageously bad or reprehensible'),\n", - " ('flagrant', 'conspicuously and outrageously bad or reprehensible'),\n", " ('instant', 'demanding attention; ; ; - H.L.Mencken'),\n", + " ('flagrant', 'conspicuously and outrageously bad or reprehensible'),\n", " ('clamant', 'demanding attention; ; ; - H.L.Mencken'),\n", - " ('egregious', 'conspicuously and outrageously bad or reprehensible'),\n", - " ('exigent', 'demanding attention; ; ; - H.L.Mencken'),\n", - " ('glaring', 'conspicuously and outrageously bad or reprehensible'),\n", " ('gross', 'conspicuously and outrageously bad or reprehensible')]},\n", " {'answer': 'cryptic',\n", " 'hint': 'synonyms for cryptic',\n", - " 'clues': [('sibylline',\n", - " 'having a secret or hidden meaning; ; ; - John Gunther'),\n", + " 'clues': [('deep', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('sibylline', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", - " ('deep', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('cryptical', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", + " ('qabalistic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", - " ('kabbalistic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", - " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", - " ('cryptical', 'having a secret or hidden meaning; ; ; - John Gunther')]},\n", + " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson')]},\n", " {'answer': 'cryptical',\n", " 'hint': 'synonyms for cryptical',\n", - " 'clues': [('sibylline',\n", - " 'having a secret or hidden meaning; ; ; - John Gunther'),\n", + " 'clues': [('deep', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('sibylline', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", " ('cryptic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", - " ('deep', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('qabalistic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", - " ('kabbalistic', 'having a secret or hidden meaning; ; ; - John Gunther'),\n", " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson')]},\n", " {'answer': 'crystal_clear',\n", " 'hint': 'synonyms for crystal clear',\n", - " 'clues': [('limpid',\n", - " 'transmitting light; able to be seen through with clarity'),\n", - " ('lucid',\n", + " 'clues': [('lucid',\n", " '(of language) transparently clear; easily understandable; ; ; - Robert Burton'),\n", + " ('crystalline',\n", + " 'transmitting light; able to be seen through with clarity'),\n", + " ('pellucid', 'transmitting light; able to be seen through with clarity'),\n", " ('transparent',\n", " 'transmitting light; able to be seen through with clarity'),\n", " ('perspicuous',\n", " '(of language) transparently clear; easily understandable; ; ; - Robert Burton'),\n", - " ('pellucid', 'transmitting light; able to be seen through with clarity'),\n", + " ('limpid', 'transmitting light; able to be seen through with clarity'),\n", " ('luculent',\n", - " '(of language) transparently clear; easily understandable; ; ; - Robert Burton'),\n", - " ('crystalline',\n", - " 'transmitting light; able to be seen through with clarity')]},\n", + " '(of language) transparently clear; easily understandable; ; ; - Robert Burton')]},\n", " {'answer': 'crystalline',\n", " 'hint': 'synonyms for crystalline',\n", - " 'clues': [('limpid',\n", + " 'clues': [('transparent',\n", " 'transmitting light; able to be seen through with clarity'),\n", + " ('limpid', 'transmitting light; able to be seen through with clarity'),\n", " ('crystal clear',\n", " 'transmitting light; able to be seen through with clarity'),\n", " ('pellucid', 'transmitting light; able to be seen through with clarity'),\n", - " ('lucid', 'transmitting light; able to be seen through with clarity'),\n", - " ('transparent',\n", - " 'transmitting light; able to be seen through with clarity')]},\n", + " ('lucid', 'transmitting light; able to be seen through with clarity')]},\n", " {'answer': 'cube-shaped',\n", " 'hint': 'synonyms for cube-shaped',\n", - " 'clues': [('cubical', 'shaped like a cube'),\n", - " ('cubelike', 'shaped like a cube'),\n", + " 'clues': [('cuboidal', 'shaped like a cube'),\n", " ('cubiform', 'shaped like a cube'),\n", - " ('cuboid', 'shaped like a cube')]},\n", + " ('cubelike', 'shaped like a cube'),\n", + " ('cubical', 'shaped like a cube')]},\n", " {'answer': 'cubelike',\n", " 'hint': 'synonyms for cubelike',\n", - " 'clues': [('cubical', 'shaped like a cube'),\n", - " ('cube-shaped', 'shaped like a cube'),\n", + " 'clues': [('cuboidal', 'shaped like a cube'),\n", " ('cubiform', 'shaped like a cube'),\n", - " ('cuboid', 'shaped like a cube')]},\n", + " ('cubical', 'shaped like a cube'),\n", + " ('cube-shaped', 'shaped like a cube')]},\n", " {'answer': 'cubical',\n", " 'hint': 'synonyms for cubical',\n", - " 'clues': [('cubelike', 'shaped like a cube'),\n", - " ('cube-shaped', 'shaped like a cube'),\n", + " 'clues': [('cuboidal', 'shaped like a cube'),\n", " ('cubiform', 'shaped like a cube'),\n", - " ('cuboid', 'shaped like a cube')]},\n", + " ('cubelike', 'shaped like a cube'),\n", + " ('cube-shaped', 'shaped like a cube')]},\n", " {'answer': 'cubiform',\n", " 'hint': 'synonyms for cubiform',\n", - " 'clues': [('cubical', 'shaped like a cube'),\n", + " 'clues': [('cuboidal', 'shaped like a cube'),\n", " ('cubelike', 'shaped like a cube'),\n", - " ('cube-shaped', 'shaped like a cube'),\n", - " ('cuboid', 'shaped like a cube')]},\n", + " ('cubical', 'shaped like a cube'),\n", + " ('cube-shaped', 'shaped like a cube')]},\n", " {'answer': 'cuboid',\n", " 'hint': 'synonyms for cuboid',\n", - " 'clues': [('cubical', 'shaped like a cube'),\n", - " ('cubelike', 'shaped like a cube'),\n", - " ('cube-shaped', 'shaped like a cube'),\n", + " 'clues': [('cuboidal', 'shaped like a cube'),\n", " ('cubiform', 'shaped like a cube'),\n", - " ('cuboidal', 'shaped like a cube')]},\n", + " ('cubelike', 'shaped like a cube'),\n", + " ('cubical', 'shaped like a cube'),\n", + " ('cube-shaped', 'shaped like a cube')]},\n", " {'answer': 'cuboidal',\n", " 'hint': 'synonyms for cuboidal',\n", - " 'clues': [('cubical', 'shaped like a cube'),\n", + " 'clues': [('cubiform', 'shaped like a cube'),\n", + " ('cuboid', 'shaped like a cube'),\n", " ('cubelike', 'shaped like a cube'),\n", - " ('cube-shaped', 'shaped like a cube'),\n", - " ('cubiform', 'shaped like a cube'),\n", - " ('cuboid', 'shaped like a cube')]},\n", + " ('cubical', 'shaped like a cube'),\n", + " ('cube-shaped', 'shaped like a cube')]},\n", " {'answer': 'culpable',\n", " 'hint': 'synonyms for culpable',\n", - " 'clues': [('blameworthy',\n", + " 'clues': [('blamable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('censurable',\n", " 'deserving blame or censure as being wrong or evil or injurious'),\n", - " ('blamable',\n", - " 'deserving blame or censure as being wrong or evil or injurious'),\n", " ('blameful',\n", + " 'deserving blame or censure as being wrong or evil or injurious'),\n", + " ('blameworthy',\n", " 'deserving blame or censure as being wrong or evil or injurious')]},\n", " {'answer': 'cultivated',\n", " 'hint': 'synonyms for cultivated',\n", - " 'clues': [('polite', 'marked by refinement in taste and manners'),\n", - " ('genteel', 'marked by refinement in taste and manners'),\n", - " ('civilised', 'marked by refinement in taste and manners'),\n", - " ('cultured', 'marked by refinement in taste and manners')]},\n", + " 'clues': [('civilized', 'marked by refinement in taste and manners'),\n", + " ('polite', 'marked by refinement in taste and manners'),\n", + " ('cultured', 'marked by refinement in taste and manners'),\n", + " ('genteel', 'marked by refinement in taste and manners')]},\n", " {'answer': 'cultured',\n", " 'hint': 'synonyms for cultured',\n", - " 'clues': [('polite', 'marked by refinement in taste and manners'),\n", - " ('genteel', 'marked by refinement in taste and manners'),\n", - " ('civilised', 'marked by refinement in taste and manners'),\n", - " ('cultivated', 'marked by refinement in taste and manners')]},\n", + " 'clues': [('civilized', 'marked by refinement in taste and manners'),\n", + " ('polite', 'marked by refinement in taste and manners'),\n", + " ('cultivated', 'marked by refinement in taste and manners'),\n", + " ('genteel', 'marked by refinement in taste and manners')]},\n", " {'answer': 'cumbersome',\n", " 'hint': 'synonyms for cumbersome',\n", - " 'clues': [('ill-chosen', 'not elegant or graceful in expression'),\n", - " ('awkward', 'not elegant or graceful in expression'),\n", - " ('inept', 'not elegant or graceful in expression'),\n", + " 'clues': [('awkward', 'not elegant or graceful in expression'),\n", " ('cumbrous',\n", " 'difficult to handle or use especially because of size or weight'),\n", + " ('inept', 'not elegant or graceful in expression'),\n", " ('clumsy', 'not elegant or graceful in expression'),\n", - " ('inapt', 'not elegant or graceful in expression')]},\n", + " ('inapt', 'not elegant or graceful in expression'),\n", + " ('ill-chosen', 'not elegant or graceful in expression')]},\n", " {'answer': 'cunning',\n", " 'hint': 'synonyms for cunning',\n", - " 'clues': [('tricky', 'marked by skill in deception'),\n", + " 'clues': [('clever', 'showing inventiveness and skill'),\n", + " ('sly', 'marked by skill in deception'),\n", + " ('tricksy', 'marked by skill in deception'),\n", + " ('ingenious', 'showing inventiveness and skill'),\n", + " ('crafty', 'marked by skill in deception'),\n", " ('cute',\n", " 'attractive especially by means of smallness or prettiness or quaintness'),\n", - " ('knavish', 'marked by skill in deception'),\n", - " ('sly', 'marked by skill in deception'),\n", - " ('slick', 'marked by skill in deception'),\n", - " ('wily', 'marked by skill in deception'),\n", " ('foxy', 'marked by skill in deception'),\n", - " ('clever', 'showing inventiveness and skill'),\n", + " ('slick', 'marked by skill in deception'),\n", " ('dodgy', 'marked by skill in deception'),\n", - " ('guileful', 'marked by skill in deception'),\n", - " ('ingenious', 'showing inventiveness and skill'),\n", - " ('crafty', 'marked by skill in deception')]},\n", + " ('knavish', 'marked by skill in deception'),\n", + " ('wily', 'marked by skill in deception'),\n", + " ('guileful', 'marked by skill in deception')]},\n", " {'answer': 'curative',\n", " 'hint': 'synonyms for curative',\n", - " 'clues': [('healing', 'tending to cure or restore to health'),\n", - " ('therapeutic', 'tending to cure or restore to health'),\n", - " ('remedial', 'tending to cure or restore to health'),\n", + " 'clues': [('remedial', 'tending to cure or restore to health'),\n", " ('sanative', 'tending to cure or restore to health'),\n", + " ('healing', 'tending to cure or restore to health'),\n", + " ('therapeutic', 'tending to cure or restore to health'),\n", " ('alterative', 'tending to cure or restore to health')]},\n", " {'answer': 'cured',\n", " 'hint': 'synonyms for cured',\n", - " 'clues': [('corned', '(used especially of meat) cured in brine'),\n", - " ('recovered', 'freed from illness or injury; ; ; ; - Normon Cameron'),\n", - " ('healed', 'freed from illness or injury; ; ; ; - Normon Cameron'),\n", + " 'clues': [('aged',\n", + " \"(used of tobacco) aging as a preservative process (`aged' is pronounced as one syllable)\"),\n", " ('vulcanised',\n", " '(used of rubber) treated by a chemical or physical process to improve its properties (hardness and strength and odor and elasticity)'),\n", - " ('aged',\n", - " \"(used of tobacco) aging as a preservative process (`aged' is pronounced as one syllable)\")]},\n", + " ('corned', '(used especially of meat) cured in brine'),\n", + " ('recovered', 'freed from illness or injury; ; ; ; - Normon Cameron'),\n", + " ('healed', 'freed from illness or injury; ; ; ; - Normon Cameron')]},\n", " {'answer': 'curious',\n", " 'hint': 'synonyms for curious',\n", - " 'clues': [('singular', 'beyond or deviating from the usual or expected'),\n", + " 'clues': [('rum', 'beyond or deviating from the usual or expected'),\n", + " ('odd', 'beyond or deviating from the usual or expected'),\n", " ('queer', 'beyond or deviating from the usual or expected'),\n", " ('peculiar', 'beyond or deviating from the usual or expected'),\n", - " ('odd', 'beyond or deviating from the usual or expected'),\n", - " ('rummy', 'beyond or deviating from the usual or expected'),\n", " ('funny', 'beyond or deviating from the usual or expected'),\n", - " ('rum', 'beyond or deviating from the usual or expected')]},\n", + " ('singular', 'beyond or deviating from the usual or expected'),\n", + " ('rummy', 'beyond or deviating from the usual or expected')]},\n", " {'answer': 'cursed',\n", " 'hint': 'synonyms for cursed',\n", - " 'clues': [('unsaved', 'in danger of the eternal punishment of Hell'),\n", - " ('doomed', 'in danger of the eternal punishment of Hell'),\n", - " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n", + " 'clues': [('curst', 'deserving a curse; sometimes used as an intensifier'),\n", " ('damned', 'in danger of the eternal punishment of Hell'),\n", - " ('curst', 'deserving a curse; sometimes used as an intensifier')]},\n", + " ('unsaved', 'in danger of the eternal punishment of Hell'),\n", + " ('doomed', 'in danger of the eternal punishment of Hell'),\n", + " ('unredeemed', 'in danger of the eternal punishment of Hell')]},\n", " {'answer': 'curt',\n", " 'hint': 'synonyms for curt',\n", - " 'clues': [('brusque', 'marked by rude or peremptory shortness'),\n", - " ('brusk', 'marked by rude or peremptory shortness'),\n", - " ('short', 'marked by rude or peremptory shortness'),\n", + " 'clues': [('brusk', 'marked by rude or peremptory shortness'),\n", " ('laconic', 'brief and to the point; effectively cut short'),\n", - " ('crisp', 'brief and to the point; effectively cut short'),\n", - " ('terse', 'brief and to the point; effectively cut short')]},\n", + " ('brusque', 'marked by rude or peremptory shortness'),\n", + " ('short', 'marked by rude or peremptory shortness'),\n", + " ('terse', 'brief and to the point; effectively cut short'),\n", + " ('crisp', 'brief and to the point; effectively cut short')]},\n", " {'answer': 'curvaceous',\n", " 'hint': 'synonyms for curvaceous',\n", - " 'clues': [('curvy',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('stacked',\n", + " 'clues': [('voluptuous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('voluptuous',\n", + " ('curvy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('well-endowed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('full-bosomed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('bosomy',\n", + " ('stacked',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('sonsie',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('well-endowed',\n", + " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('bosomy',\n", " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n", " {'answer': 'curvy',\n", " 'hint': 'synonyms for curvy',\n", - " 'clues': [('sonsie',\n", + " 'clues': [('voluptuous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('stacked',\n", + " ('well-endowed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('full-bosomed',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('voluptuous',\n", - " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('curvaceous',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", - " ('bosomy',\n", + " ('stacked',\n", + " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('busty', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('sonsie',\n", " \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('sonsy', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", " ('curvey', 'having curves'),\n", - " ('well-endowed',\n", + " ('buxom', \"(of a woman's body) having a large bosom and pleasing curves\"),\n", + " ('bosomy',\n", " \"(of a woman's body) having a large bosom and pleasing curves\")]},\n", " {'answer': 'cuspated',\n", " 'hint': 'synonyms for cuspated',\n", - " 'clues': [('cuspidated', 'having cusps or points'),\n", - " ('cusped', 'having cusps or points'),\n", + " 'clues': [('cuspidal', 'having cusps or points'),\n", + " ('cuspate', 'having cusps or points'),\n", + " ('cuspidated', 'having cusps or points'),\n", + " ('cusped', 'having cusps or points')]},\n", + " {'answer': 'cuspidate',\n", + " 'hint': 'synonyms for cuspidate',\n", + " 'clues': [('cuspidal', 'having cusps or points'),\n", " ('cuspate', 'having cusps or points'),\n", - " ('cuspidal', 'having cusps or points')]},\n", + " ('cuspidated', 'having cusps or points'),\n", + " ('cusped', 'having cusps or points')]},\n", " {'answer': 'cut',\n", " 'hint': 'synonyms for cut',\n", - " 'clues': [('thinned', 'mixed with water'),\n", - " ('trimmed', 'made neat and tidy by trimming'),\n", + " 'clues': [('trimmed', 'made neat and tidy by trimming'),\n", " ('weakened', 'mixed with water'),\n", + " ('emasculated', '(of a male animal) having the testicles removed'),\n", + " ('slashed', '(used of rates or prices) reduced usually sharply'),\n", + " ('shortened', 'with parts removed'),\n", " ('gelded', '(of a male animal) having the testicles removed'),\n", " ('mown',\n", " '(used of grass or vegetation) cut down with a hand implement or machine'),\n", - " ('shortened', 'with parts removed'),\n", - " ('emasculated', '(of a male animal) having the testicles removed'),\n", - " ('slashed', '(used of rates or prices) reduced usually sharply')]},\n", + " ('thinned', 'mixed with water')]},\n", " {'answer': 'cutting',\n", " 'hint': 'synonyms for cutting',\n", - " 'clues': [('bleak', 'unpleasantly cold and damp'),\n", - " ('edged', '(of speech) harsh or hurtful in tone or character'),\n", - " ('lancinate', 'painful as if caused by a sharp instrument'),\n", - " ('knifelike', 'painful as if caused by a sharp instrument'),\n", - " ('keen', 'painful as if caused by a sharp instrument'),\n", + " 'clues': [('stinging',\n", + " '(of speech) harsh or hurtful in tone or character'),\n", + " ('piercing', 'painful as if caused by a sharp instrument'),\n", " ('stabbing', 'painful as if caused by a sharp instrument'),\n", " ('raw', 'unpleasantly cold and damp'),\n", - " ('stinging', '(of speech) harsh or hurtful in tone or character'),\n", " ('lancinating', 'painful as if caused by a sharp instrument'),\n", - " ('piercing', 'painful as if caused by a sharp instrument')]},\n", + " ('knifelike', 'painful as if caused by a sharp instrument'),\n", + " ('bleak', 'unpleasantly cold and damp'),\n", + " ('lancinate', 'painful as if caused by a sharp instrument'),\n", + " ('keen', 'painful as if caused by a sharp instrument'),\n", + " ('edged', '(of speech) harsh or hurtful in tone or character')]},\n", " {'answer': 'daft',\n", " 'hint': 'synonyms for daft',\n", - " 'clues': [('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('dotty', 'informal or slang terms for mentally irregular'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('dotty', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'daily',\n", " 'hint': 'synonyms for daily',\n", " 'clues': [('day-to-day', 'of or belonging to or occurring every day'),\n", - " ('day-by-day', 'of or belonging to or occurring every day'),\n", + " ('casual', 'appropriate for ordinary or routine occasions'),\n", " ('day-after-day', 'of or belonging to or occurring every day'),\n", " ('everyday', 'appropriate for ordinary or routine occasions'),\n", - " ('casual', 'appropriate for ordinary or routine occasions')]},\n", + " ('day-by-day', 'of or belonging to or occurring every day')]},\n", " {'answer': 'dainty',\n", " 'hint': 'synonyms for dainty',\n", - " 'clues': [('twee', 'affectedly dainty or refined'),\n", - " ('niminy-piminy', 'affectedly dainty or refined'),\n", + " 'clues': [('squeamish', 'excessively fastidious and easily disgusted'),\n", " ('nice', 'excessively fastidious and easily disgusted'),\n", - " ('squeamish', 'excessively fastidious and easily disgusted'),\n", + " ('prim', 'affectedly dainty or refined'),\n", " ('mincing', 'affectedly dainty or refined'),\n", + " ('twee', 'affectedly dainty or refined'),\n", + " ('overnice', 'excessively fastidious and easily disgusted'),\n", " ('prissy', 'excessively fastidious and easily disgusted'),\n", " ('exquisite', 'delicately beautiful'),\n", - " ('overnice', 'excessively fastidious and easily disgusted'),\n", - " ('prim', 'affectedly dainty or refined')]},\n", + " ('niminy-piminy', 'affectedly dainty or refined')]},\n", " {'answer': 'damaging',\n", " 'hint': 'synonyms for damaging',\n", - " 'clues': [('prejudicious',\n", + " 'clues': [('detrimental',\n", " \"(sometimes followed by `to') causing harm or injury\"),\n", " ('negative',\n", " 'designed or tending to discredit, especially without positive or helpful suggestions'),\n", - " ('prejudicial', \"(sometimes followed by `to') causing harm or injury\"),\n", - " ('detrimental', \"(sometimes followed by `to') causing harm or injury\")]},\n", + " ('prejudicious', \"(sometimes followed by `to') causing harm or injury\"),\n", + " ('prejudicial', \"(sometimes followed by `to') causing harm or injury\")]},\n", " {'answer': 'damn',\n", " 'hint': 'synonyms for damn',\n", - " 'clues': [('goddamn', 'used as expletives'),\n", + " 'clues': [('blame', 'expletives used informally as intensifiers'),\n", " ('deuced', 'expletives used informally as intensifiers'),\n", " ('blasted', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('blamed', 'expletives used informally as intensifiers'),\n", - " ('darned', 'expletives used informally as intensifiers'),\n", + " ('goddamn', 'used as expletives'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('darned', 'expletives used informally as intensifiers')]},\n", " {'answer': 'damned',\n", " 'hint': 'synonyms for damned',\n", - " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n", - " ('goddam', 'expletives used informally as intensifiers'),\n", - " ('blasted', 'expletives used informally as intensifiers'),\n", + " 'clues': [('blasted', 'expletives used informally as intensifiers'),\n", + " ('damn', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n", - " ('unsaved', 'in danger of the eternal punishment of Hell'),\n", - " ('blamed', 'expletives used informally as intensifiers'),\n", " ('darned', 'expletives used informally as intensifiers'),\n", - " ('damn', 'expletives used informally as intensifiers'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('blamed', 'expletives used informally as intensifiers'),\n", + " ('goddamned', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", + " ('unsaved', 'in danger of the eternal punishment of Hell'),\n", " ('doomed', 'in danger of the eternal punishment of Hell'),\n", - " ('cursed', 'in danger of the eternal punishment of Hell'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('deuced', 'expletives used informally as intensifiers'),\n", + " ('cursed', 'in danger of the eternal punishment of Hell')]},\n", " {'answer': 'dandy',\n", " 'hint': 'synonyms for dandy',\n", - " 'clues': [('smashing', 'very good'),\n", + " 'clues': [('nifty', 'very good'),\n", + " ('great', 'very good'),\n", " ('not bad', 'very good'),\n", + " ('bang-up', 'very good'),\n", + " ('cracking', 'very good'),\n", + " ('smashing', 'very good'),\n", + " ('groovy', 'very good'),\n", " ('swell', 'very good'),\n", - " ('keen', 'very good'),\n", - " ('nifty', 'very good'),\n", + " ('neat', 'very good'),\n", + " ('bully', 'very good'),\n", " ('peachy', 'very good'),\n", - " ('cracking', 'very good'),\n", - " ('slap-up', 'very good'),\n", - " ('bang-up', 'very good'),\n", + " ('keen', 'very good'),\n", " ('corking', 'very good'),\n", - " ('bully', 'very good'),\n", - " ('neat', 'very good'),\n", - " ('groovy', 'very good'),\n", - " ('great', 'very good')]},\n", + " ('slap-up', 'very good')]},\n", " {'answer': 'dangerous',\n", " 'hint': 'synonyms for dangerous',\n", " 'clues': [('unsafe',\n", " 'involving or causing danger or risk; liable to hurt or harm'),\n", " ('life-threatening', 'causing fear or anxiety by threatening great harm'),\n", + " ('grievous', 'causing fear or anxiety by threatening great harm'),\n", " ('serious', 'causing fear or anxiety by threatening great harm'),\n", " ('grave', 'causing fear or anxiety by threatening great harm'),\n", - " ('grievous', 'causing fear or anxiety by threatening great harm'),\n", " ('severe', 'causing fear or anxiety by threatening great harm')]},\n", " {'answer': 'dapper',\n", " 'hint': 'synonyms for dapper',\n", - " 'clues': [('snappy', 'marked by up-to-dateness in dress and manners'),\n", - " ('dashing', 'marked by up-to-dateness in dress and manners'),\n", - " ('natty', 'marked by up-to-dateness in dress and manners'),\n", - " ('spiffy', 'marked by up-to-dateness in dress and manners'),\n", + " 'clues': [('natty', 'marked by up-to-dateness in dress and manners'),\n", " ('spruce', 'marked by up-to-dateness in dress and manners'),\n", + " ('snappy', 'marked by up-to-dateness in dress and manners'),\n", + " ('spiffy', 'marked by up-to-dateness in dress and manners'),\n", " ('raffish', 'marked by up-to-dateness in dress and manners'),\n", + " ('dashing', 'marked by up-to-dateness in dress and manners'),\n", " ('rakish', 'marked by up-to-dateness in dress and manners'),\n", " ('jaunty', 'marked by up-to-dateness in dress and manners')]},\n", " {'answer': 'daring',\n", " 'hint': 'synonyms for daring',\n", - " 'clues': [('venturesome', 'disposed to venture or take risks'),\n", - " ('audacious', 'disposed to venture or take risks'),\n", + " 'clues': [('audacious', 'disposed to venture or take risks'),\n", + " ('venturesome', 'disposed to venture or take risks'),\n", " ('avant-garde', 'radically new or original'),\n", " ('venturous', 'disposed to venture or take risks')]},\n", " {'answer': 'dark',\n", " 'hint': 'synonyms for dark',\n", - " 'clues': [('sinister',\n", - " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", - " ('saturnine', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('drab', 'causing dejection'),\n", - " ('gloomy', 'causing dejection'),\n", + " 'clues': [('disconsolate', 'causing dejection'),\n", + " ('sullen', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('obscure', 'marked by difficulty of style or expression'),\n", + " ('grim', 'causing dejection'),\n", " ('blue', 'causing dejection'),\n", + " ('sinister',\n", + " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", + " ('glowering', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('sorry', 'causing dejection'),\n", + " ('non-white', 'having skin rich in melanin pigments'),\n", " ('coloured', 'having skin rich in melanin pigments'),\n", + " ('glum', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", " ('dour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('black',\n", + " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", + " ('dark-skinned', 'having skin rich in melanin pigments'),\n", " ('moody', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", " ('morose', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('glowering', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('drear', 'causing dejection'),\n", - " ('glum', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('disconsolate', 'causing dejection'),\n", " ('dismal', 'causing dejection'),\n", - " ('obscure', 'marked by difficulty of style or expression'),\n", - " ('grim', 'causing dejection'),\n", - " ('dark-skinned', 'having skin rich in melanin pigments'),\n", - " ('black',\n", - " 'stemming from evil characteristics or forces; wicked or dishonorable; ; ; ; ; ; ; -Thomas Hardy'),\n", - " ('sorry', 'causing dejection'),\n", - " ('sour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('non-white', 'having skin rich in melanin pigments'),\n", - " ('sullen', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('gloomy', 'causing dejection'),\n", + " ('dreary', 'causing dejection'),\n", " ('benighted', 'lacking enlightenment or knowledge or culture'),\n", - " ('dingy', 'causing dejection')]},\n", + " ('dingy', 'causing dejection'),\n", + " ('sour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('saturnine', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('drab', 'causing dejection')]},\n", " {'answer': 'dark-skinned',\n", " 'hint': 'synonyms for dark-skinned',\n", - " 'clues': [('non-white', 'having skin rich in melanin pigments'),\n", - " ('coloured', 'having skin rich in melanin pigments'),\n", + " 'clues': [('dark', 'having skin rich in melanin pigments'),\n", " ('swarthy', 'naturally having skin of a dark color'),\n", " ('dusky', 'naturally having skin of a dark color'),\n", + " ('colored', 'having skin rich in melanin pigments'),\n", " ('swart', 'naturally having skin of a dark color'),\n", - " ('dark', 'having skin rich in melanin pigments')]},\n", + " ('non-white', 'having skin rich in melanin pigments')]},\n", " {'answer': 'darned',\n", " 'hint': 'synonyms for darned',\n", - " 'clues': [('deuced', 'expletives used informally as intensifiers'),\n", - " ('goddam', 'expletives used informally as intensifiers'),\n", - " ('blasted', 'expletives used informally as intensifiers'),\n", + " 'clues': [('blasted', 'expletives used informally as intensifiers'),\n", + " ('damn', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", " ('blamed', 'expletives used informally as intensifiers'),\n", - " ('damn', 'expletives used informally as intensifiers'),\n", + " ('goddamned', 'expletives used informally as intensifiers'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('deuced', 'expletives used informally as intensifiers')]},\n", " {'answer': 'dashing',\n", " 'hint': 'synonyms for dashing',\n", - " 'clues': [('snappy', 'marked by up-to-dateness in dress and manners'),\n", - " ('jaunty', 'marked by up-to-dateness in dress and manners'),\n", - " ('dapper', 'marked by up-to-dateness in dress and manners'),\n", - " ('natty', 'marked by up-to-dateness in dress and manners'),\n", - " ('spiffy', 'marked by up-to-dateness in dress and manners'),\n", + " 'clues': [('natty', 'marked by up-to-dateness in dress and manners'),\n", " ('spruce', 'marked by up-to-dateness in dress and manners'),\n", - " ('raffish', 'marked by up-to-dateness in dress and manners'),\n", " ('gallant', 'lively and spirited'),\n", - " ('rakish', 'marked by up-to-dateness in dress and manners')]},\n", + " ('snappy', 'marked by up-to-dateness in dress and manners'),\n", + " ('spiffy', 'marked by up-to-dateness in dress and manners'),\n", + " ('raffish', 'marked by up-to-dateness in dress and manners'),\n", + " ('dapper', 'marked by up-to-dateness in dress and manners'),\n", + " ('rakish', 'marked by up-to-dateness in dress and manners'),\n", + " ('jaunty', 'marked by up-to-dateness in dress and manners')]},\n", " {'answer': 'dateless',\n", " 'hint': 'synonyms for dateless',\n", - " 'clues': [('undated', 'not bearing a date'),\n", - " ('timeless', 'unaffected by time'),\n", + " 'clues': [('sempiternal',\n", + " 'having no known beginning and presumably no end'),\n", + " ('undated', 'not bearing a date'),\n", " ('endless', 'having no known beginning and presumably no end'),\n", - " ('sempiternal', 'having no known beginning and presumably no end')]},\n", + " ('timeless', 'unaffected by time')]},\n", " {'answer': 'dauntless',\n", " 'hint': 'synonyms for dauntless',\n", - " 'clues': [('brave', 'invulnerable to fear or intimidation'),\n", + " 'clues': [('intrepid', 'invulnerable to fear or intimidation'),\n", " ('hardy', 'invulnerable to fear or intimidation'),\n", + " ('unfearing', 'invulnerable to fear or intimidation'),\n", " ('fearless', 'invulnerable to fear or intimidation'),\n", " ('audacious', 'invulnerable to fear or intimidation'),\n", - " ('unfearing', 'invulnerable to fear or intimidation'),\n", - " ('intrepid', 'invulnerable to fear or intimidation')]},\n", + " ('brave', 'invulnerable to fear or intimidation')]},\n", " {'answer': 'dazed',\n", " 'hint': 'synonyms for dazed',\n", - " 'clues': [('foggy',\n", + " 'clues': [('stunned',\n", + " 'in a state of mental numbness especially as resulting from shock'),\n", + " ('stuporous',\n", " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n", " ('groggy',\n", " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n", + " ('foggy',\n", + " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n", " ('logy',\n", " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n", - " ('stupid',\n", - " 'in a state of mental numbness especially as resulting from shock'),\n", " ('stupefied',\n", " 'in a state of mental numbness especially as resulting from shock'),\n", - " ('stuporous',\n", - " 'stunned or confused and slow to react (as from blows or drunkenness or exhaustion)'),\n", - " ('stunned',\n", + " ('stupid',\n", " 'in a state of mental numbness especially as resulting from shock')]},\n", " {'answer': 'dazzling',\n", " 'hint': 'synonyms for dazzling',\n", - " 'clues': [('blinding', 'shining intensely'),\n", - " ('glary', 'shining intensely'),\n", - " ('glaring', 'shining intensely'),\n", - " ('fulgurant',\n", + " 'clues': [('fulgurous',\n", " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones'),\n", + " ('blinding', 'shining intensely'),\n", " ('blazing', 'shining intensely'),\n", - " ('fulgurous',\n", - " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones'),\n", " ('fulgent', 'shining intensely'),\n", " ('eye-popping',\n", + " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones'),\n", + " ('glaring', 'shining intensely'),\n", + " ('glary', 'shining intensely'),\n", + " ('fulgurant',\n", " 'amazingly impressive; suggestive of the flashing of lightning; ; - Janet Flanner; - Idwal Jones')]},\n", " {'answer': 'dead',\n", " 'hint': 'synonyms for dead',\n", - " 'clues': [('stagnant', 'not circulating or flowing'),\n", - " ('drained', 'drained of electric charge; discharged'),\n", - " ('idle', 'not yielding a return'),\n", - " ('all in', 'very tired'),\n", - " ('bushed', 'very tired'),\n", - " ('deadened', 'devoid of physical sensation; numb'),\n", + " 'clues': [('beat', 'very tired'),\n", " ('utter', 'complete'),\n", - " ('beat', 'very tired'),\n", + " ('deadened', 'devoid of physical sensation; numb'),\n", + " ('bushed', 'very tired'),\n", + " ('all in', 'very tired'),\n", + " ('drained', 'drained of electric charge; discharged'),\n", " ('numb',\n", - " \"(followed by `to') not showing human feeling or sensitivity; unresponsive\")]},\n", + " \"(followed by `to') not showing human feeling or sensitivity; unresponsive\"),\n", + " ('stagnant', 'not circulating or flowing'),\n", + " ('idle', 'not yielding a return')]},\n", " {'answer': 'deadening',\n", " 'hint': 'synonyms for deadening',\n", - " 'clues': [('slow',\n", + " 'clues': [('irksome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('tiresome',\n", + " ('dull',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('irksome',\n", + " ('tedious',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('boring',\n", + " ('slow',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('wearisome',\n", + " ('tiresome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('tedious',\n", + " ('boring',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", " ('ho-hum',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('dull',\n", + " ('wearisome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain')]},\n", " {'answer': 'deadly',\n", " 'hint': 'synonyms for deadly',\n", - " 'clues': [('pernicious', 'exceedingly harmful'),\n", - " ('mortal', 'causing or capable of causing death'),\n", - " ('pestilent', 'exceedingly harmful'),\n", - " ('baneful', 'exceedingly harmful'),\n", - " ('virulent', 'extremely poisonous or injurious; producing venom'),\n", + " 'clues': [('lethal', 'of an instrument of certain death'),\n", " ('venomous', 'extremely poisonous or injurious; producing venom'),\n", + " ('pernicious', 'exceedingly harmful'),\n", " ('deathly', 'causing or capable of causing death'),\n", - " ('lethal', 'of an instrument of certain death')]},\n", + " ('mortal', 'causing or capable of causing death'),\n", + " ('virulent', 'extremely poisonous or injurious; producing venom'),\n", + " ('baneful', 'exceedingly harmful'),\n", + " ('pestilent', 'exceedingly harmful')]},\n", " {'answer': 'deadpan',\n", " 'hint': 'synonyms for deadpan',\n", " 'clues': [('unexpressive', 'deliberately impassive in manner'),\n", " ('impassive', 'deliberately impassive in manner'),\n", - " ('expressionless', 'deliberately impassive in manner'),\n", - " ('poker-faced', 'deliberately impassive in manner')]},\n", + " ('poker-faced', 'deliberately impassive in manner'),\n", + " ('expressionless', 'deliberately impassive in manner')]},\n", " {'answer': 'dealt_out',\n", " 'hint': 'synonyms for dealt out',\n", " 'clues': [('parceled out', 'given out in portions'),\n", - " ('doled out', 'given out in portions'),\n", + " ('apportioned', 'given out in portions'),\n", " ('meted out', 'given out in portions'),\n", - " ('apportioned', 'given out in portions')]},\n", + " ('doled out', 'given out in portions')]},\n", " {'answer': 'dear',\n", " 'hint': 'synonyms for dear',\n", - " 'clues': [('earnest', 'earnest'),\n", - " ('high-priced', 'having a high price'),\n", - " ('near', 'with or in a close or intimate relationship'),\n", - " ('devout', 'earnest'),\n", + " 'clues': [('high-priced', 'having a high price'),\n", + " ('good', 'with or in a close or intimate relationship'),\n", + " ('pricey', 'having a high price'),\n", + " ('costly', 'having a high price'),\n", " ('heartfelt', 'earnest'),\n", + " ('devout', 'earnest'),\n", + " ('earnest', 'earnest'),\n", " ('beloved', 'dearly loved'),\n", - " ('good', 'with or in a close or intimate relationship'),\n", - " ('pricy', 'having a high price'),\n", " ('darling', 'dearly loved'),\n", - " ('costly', 'having a high price')]},\n", + " ('near', 'with or in a close or intimate relationship')]},\n", " {'answer': 'debased',\n", " 'hint': 'synonyms for debased',\n", - " 'clues': [('devalued', 'lowered in value'),\n", - " ('adulterated', 'mixed with impurities'),\n", + " 'clues': [('corrupted', 'ruined in character or quality'),\n", + " ('devalued', 'lowered in value'),\n", " ('degraded', 'lowered in value'),\n", - " ('corrupted', 'ruined in character or quality'),\n", + " ('adulterate', 'mixed with impurities'),\n", " ('vitiated', 'ruined in character or quality')]},\n", " {'answer': 'debatable',\n", " 'hint': 'synonyms for debatable',\n", - " 'clues': [('problematic', 'open to doubt or debate'),\n", + " 'clues': [('problematical', 'open to doubt or debate'),\n", + " ('disputable', 'open to argument or debate'),\n", " ('arguable', 'open to argument or debate'),\n", - " ('disputable', 'capable of being disproved'),\n", " ('moot', 'open to argument or debate')]},\n", " {'answer': 'debauched',\n", " 'hint': 'synonyms for debauched',\n", - " 'clues': [('libertine', 'unrestrained by convention or morality'),\n", - " ('riotous', 'unrestrained by convention or morality'),\n", - " ('dissolute', 'unrestrained by convention or morality'),\n", + " 'clues': [('riotous', 'unrestrained by convention or morality'),\n", " ('degenerate', 'unrestrained by convention or morality'),\n", - " ('degraded', 'unrestrained by convention or morality'),\n", - " ('profligate', 'unrestrained by convention or morality'),\n", " ('dissipated', 'unrestrained by convention or morality'),\n", - " ('fast', 'unrestrained by convention or morality')]},\n", + " ('fast', 'unrestrained by convention or morality'),\n", + " ('libertine', 'unrestrained by convention or morality'),\n", + " ('dissolute', 'unrestrained by convention or morality'),\n", + " ('degraded', 'unrestrained by convention or morality'),\n", + " ('profligate', 'unrestrained by convention or morality')]},\n", " {'answer': 'debile',\n", " 'hint': 'synonyms for debile',\n", - " 'clues': [('rickety', 'lacking bodily or muscular strength or vitality'),\n", + " 'clues': [('weakly', 'lacking bodily or muscular strength or vitality'),\n", " ('decrepit', 'lacking bodily or muscular strength or vitality'),\n", - " ('sapless', 'lacking bodily or muscular strength or vitality'),\n", " ('infirm', 'lacking bodily or muscular strength or vitality'),\n", - " ('weak', 'lacking bodily or muscular strength or vitality'),\n", + " ('sapless', 'lacking bodily or muscular strength or vitality'),\n", + " ('rickety', 'lacking bodily or muscular strength or vitality'),\n", " ('feeble', 'lacking bodily or muscular strength or vitality')]},\n", " {'answer': 'debonair',\n", " 'hint': 'synonyms for debonair',\n", " 'clues': [('suave', 'having a sophisticated charm'),\n", - " ('debonnaire', 'having a sophisticated charm'),\n", " ('chipper',\n", " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds'),\n", + " ('debonnaire', 'having a sophisticated charm'),\n", " ('jaunty',\n", " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds')]},\n", " {'answer': 'debonaire',\n", " 'hint': 'synonyms for debonaire',\n", - " 'clues': [('suave', 'having a sophisticated charm'),\n", - " ('debonair',\n", + " 'clues': [('debonair',\n", " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds'),\n", + " ('suave', 'having a sophisticated charm'),\n", " ('chipper',\n", " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds'),\n", " ('jaunty',\n", " 'having a cheerful, lively, and self-confident air; - Frances G. Patton; - H.M.Reynolds')]},\n", " {'answer': 'deceased',\n", " 'hint': 'synonyms for deceased',\n", - " 'clues': [('departed', 'dead'),\n", + " 'clues': [('at rest', 'dead'),\n", " ('gone', 'dead'),\n", " ('at peace', 'dead'),\n", - " ('at rest', 'dead'),\n", - " ('asleep', 'dead')]},\n", + " ('asleep', 'dead'),\n", + " ('departed', 'dead')]},\n", " {'answer': 'deceitful',\n", " 'hint': 'synonyms for deceitful',\n", - " 'clues': [('ambidextrous',\n", - " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-tongued',\n", + " 'clues': [('double-tongued',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('double-dealing',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", + " ('two-faced',\n", + " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('fallacious', 'intended to deceive; ; ; - S.T.Coleridge'),\n", - " ('fraudulent', 'intended to deceive; ; ; - S.T.Coleridge'),\n", + " ('ambidextrous',\n", + " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('double-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('duplicitous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('two-faced',\n", - " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n", + " ('fraudulent', 'intended to deceive; ; ; - S.T.Coleridge')]},\n", " {'answer': 'decent',\n", " 'hint': 'synonyms for decent',\n", - " 'clues': [('adequate', 'sufficient for the purpose'),\n", + " 'clues': [('enough', 'sufficient for the purpose'),\n", " ('comme il faut', 'according with custom or propriety'),\n", - " ('seemly', 'according with custom or propriety'),\n", " ('comely', 'according with custom or propriety'),\n", - " ('becoming', 'according with custom or propriety'),\n", + " ('adequate', 'sufficient for the purpose'),\n", " ('decorous', 'according with custom or propriety'),\n", " ('nice', 'socially or conventionally correct; refined or virtuous'),\n", - " ('enough', 'sufficient for the purpose')]},\n", + " ('becoming', 'according with custom or propriety'),\n", + " ('seemly', 'according with custom or propriety')]},\n", " {'answer': 'declamatory',\n", " 'hint': 'synonyms for declamatory',\n", " 'clues': [('turgid', 'ostentatiously lofty in style'),\n", - " ('large', 'ostentatiously lofty in style'),\n", - " ('bombastic', 'ostentatiously lofty in style'),\n", + " ('orotund', 'ostentatiously lofty in style'),\n", " ('tumid', 'ostentatiously lofty in style'),\n", - " ('orotund', 'ostentatiously lofty in style')]},\n", + " ('bombastic', 'ostentatiously lofty in style'),\n", + " ('large', 'ostentatiously lofty in style')]},\n", " {'answer': 'decorous',\n", " 'hint': 'synonyms for decorous',\n", " 'clues': [('comme il faut', 'according with custom or propriety'),\n", - " ('seemly', 'according with custom or propriety'),\n", " ('comely', 'according with custom or propriety'),\n", + " ('decent', 'according with custom or propriety'),\n", " ('becoming', 'according with custom or propriety'),\n", - " ('decent', 'according with custom or propriety')]},\n", + " ('seemly', 'according with custom or propriety')]},\n", " {'answer': 'decrepit',\n", " 'hint': 'synonyms for decrepit',\n", - " 'clues': [('rickety', 'lacking bodily or muscular strength or vitality'),\n", + " 'clues': [('weakly', 'lacking bodily or muscular strength or vitality'),\n", + " ('infirm', 'lacking bodily or muscular strength or vitality'),\n", + " ('rickety', 'lacking bodily or muscular strength or vitality'),\n", + " ('woebegone', 'worn and broken down by hard use'),\n", + " ('feeble', 'lacking bodily or muscular strength or vitality'),\n", + " ('run-down', 'worn and broken down by hard use'),\n", " ('flea-bitten', 'worn and broken down by hard use'),\n", - " ('debile', 'lacking bodily or muscular strength or vitality'),\n", - " ('sapless', 'lacking bodily or muscular strength or vitality'),\n", " ('creaky', 'worn and broken down by hard use'),\n", - " ('run-down', 'worn and broken down by hard use'),\n", - " ('weakly', 'lacking bodily or muscular strength or vitality'),\n", - " ('derelict', 'worn and broken down by hard use'),\n", - " ('woebegone', 'worn and broken down by hard use'),\n", - " ('infirm', 'lacking bodily or muscular strength or vitality'),\n", - " ('feeble', 'lacking bodily or muscular strength or vitality')]},\n", + " ('sapless', 'lacking bodily or muscular strength or vitality'),\n", + " ('debile', 'lacking bodily or muscular strength or vitality'),\n", + " ('derelict', 'worn and broken down by hard use')]},\n", " {'answer': 'deep',\n", " 'hint': 'synonyms for deep',\n", - " 'clues': [('bass', 'having or denoting a low vocal or instrumental range'),\n", - " ('thick', '(of darkness) very intense'),\n", - " ('rich', 'strong; intense'),\n", - " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", - " ('cryptic', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " 'clues': [('cryptical', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", " ('abstruse',\n", " 'difficult to penetrate; incomprehensible to one of ordinary understanding or knowledge'),\n", - " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('mystifying', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", " ('recondite',\n", " 'difficult to penetrate; incomprehensible to one of ordinary understanding or knowledge'),\n", - " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson')]},\n", + " ('rich', 'strong; intense'),\n", + " ('mysterious', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('thick', '(of darkness) very intense'),\n", + " ('inscrutable', 'of an obscure nature; ; ; ; - Rachel Carson'),\n", + " ('bass', 'having or denoting a low vocal or instrumental range')]},\n", " {'answer': 'defamatory',\n", " 'hint': 'synonyms for defamatory',\n", - " 'clues': [('libelous',\n", + " 'clues': [('slanderous',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('denigratory',\n", + " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrative',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('libellous',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrating',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('slanderous',\n", + " ('denigratory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('calumniatory',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n", " {'answer': 'defeated',\n", " 'hint': 'synonyms for defeated',\n", - " 'clues': [('disappointed', 'disappointingly unsuccessful'),\n", - " ('thwarted', 'disappointingly unsuccessful'),\n", - " ('frustrated', 'disappointingly unsuccessful'),\n", + " 'clues': [('foiled', 'disappointingly unsuccessful'),\n", + " ('disappointed', 'disappointingly unsuccessful'),\n", " ('discomfited', 'disappointingly unsuccessful'),\n", - " ('foiled', 'disappointingly unsuccessful')]},\n", + " ('thwarted', 'disappointingly unsuccessful'),\n", + " ('frustrated', 'disappointingly unsuccessful')]},\n", " {'answer': 'deficient',\n", " 'hint': 'synonyms for deficient',\n", " 'clues': [('substandard', 'falling short of some prescribed norm'),\n", - " ('wanting', 'inadequate in amount or degree'),\n", - " ('inferior', 'falling short of some prescribed norm'),\n", + " ('lacking', 'inadequate in amount or degree'),\n", " ('insufficient',\n", " 'of a quantity not able to fulfill a need or requirement'),\n", - " ('lacking', 'inadequate in amount or degree')]},\n", + " ('inferior', 'falling short of some prescribed norm'),\n", + " ('wanting', 'inadequate in amount or degree')]},\n", " {'answer': 'definitive',\n", " 'hint': 'synonyms for definitive',\n", - " 'clues': [('authoritative', 'of recognized authority or excellence'),\n", - " ('classic', 'of recognized authority or excellence'),\n", + " 'clues': [('determinate',\n", + " 'supplying or being a final or conclusive settlement'),\n", + " ('classical', 'of recognized authority or excellence'),\n", " ('unequivocal', 'clearly defined or formulated; - R.B.Taney'),\n", - " ('determinate', 'supplying or being a final or conclusive settlement')]},\n", + " ('authoritative', 'of recognized authority or excellence')]},\n", " {'answer': 'deformed',\n", " 'hint': 'synonyms for deformed',\n", - " 'clues': [('misshapen', 'so badly formed or out of shape as to be ugly'),\n", - " ('ill-shapen', 'so badly formed or out of shape as to be ugly'),\n", + " 'clues': [('malformed', 'so badly formed or out of shape as to be ugly'),\n", " ('distorted', 'so badly formed or out of shape as to be ugly'),\n", - " ('malformed', 'so badly formed or out of shape as to be ugly')]},\n", + " ('ill-shapen', 'so badly formed or out of shape as to be ugly'),\n", + " ('misshapen', 'so badly formed or out of shape as to be ugly')]},\n", " {'answer': 'degenerate',\n", " 'hint': 'synonyms for degenerate',\n", - " 'clues': [('libertine', 'unrestrained by convention or morality'),\n", - " ('riotous', 'unrestrained by convention or morality'),\n", - " ('dissolute', 'unrestrained by convention or morality'),\n", - " ('degraded', 'unrestrained by convention or morality'),\n", - " ('profligate', 'unrestrained by convention or morality'),\n", + " 'clues': [('riotous', 'unrestrained by convention or morality'),\n", " ('dissipated', 'unrestrained by convention or morality'),\n", " ('fast', 'unrestrained by convention or morality'),\n", - " ('debauched', 'unrestrained by convention or morality')]},\n", + " ('debauched', 'unrestrained by convention or morality'),\n", + " ('libertine', 'unrestrained by convention or morality'),\n", + " ('dissolute', 'unrestrained by convention or morality'),\n", + " ('degraded', 'unrestrained by convention or morality'),\n", + " ('profligate', 'unrestrained by convention or morality')]},\n", " {'answer': 'degraded',\n", " 'hint': 'synonyms for degraded',\n", - " 'clues': [('libertine', 'unrestrained by convention or morality'),\n", - " ('riotous', 'unrestrained by convention or morality'),\n", - " ('dissolute', 'unrestrained by convention or morality'),\n", - " ('degenerate', 'unrestrained by convention or morality'),\n", + " 'clues': [('riotous', 'unrestrained by convention or morality'),\n", " ('devalued', 'lowered in value'),\n", - " ('debased', 'lowered in value'),\n", - " ('profligate', 'unrestrained by convention or morality'),\n", - " ('dissipated', 'unrestrained by convention or morality'),\n", + " ('degenerate', 'unrestrained by convention or morality'),\n", " ('fast', 'unrestrained by convention or morality'),\n", - " ('debauched', 'unrestrained by convention or morality')]},\n", + " ('dissipated', 'unrestrained by convention or morality'),\n", + " ('debauched', 'unrestrained by convention or morality'),\n", + " ('debased', 'lowered in value'),\n", + " ('libertine', 'unrestrained by convention or morality'),\n", + " ('dissolute', 'unrestrained by convention or morality'),\n", + " ('profligate', 'unrestrained by convention or morality')]},\n", " {'answer': 'delectable',\n", " 'hint': 'synonyms for delectable',\n", - " 'clues': [('pleasant-tasting', 'extremely pleasing to the sense of taste'),\n", - " ('sexually attractive', 'capable of arousing desire'),\n", - " ('delicious', 'extremely pleasing to the sense of taste'),\n", + " 'clues': [('luscious', 'extremely pleasing to the sense of taste'),\n", " ('toothsome', 'extremely pleasing to the sense of taste'),\n", + " ('sexually attractive', 'capable of arousing desire'),\n", + " ('pleasant-tasting', 'extremely pleasing to the sense of taste'),\n", " ('scrumptious', 'extremely pleasing to the sense of taste'),\n", " ('yummy', 'extremely pleasing to the sense of taste'),\n", - " ('luscious', 'extremely pleasing to the sense of taste')]},\n", + " ('delicious', 'extremely pleasing to the sense of taste')]},\n", " {'answer': 'delicate',\n", " 'hint': 'synonyms for delicate',\n", - " 'clues': [('frail', 'easily broken or damaged or destroyed'),\n", - " ('soft', 'easily hurt'),\n", - " ('ticklish', 'difficult to handle; requiring great tact'),\n", - " ('fragile', 'easily broken or damaged or destroyed'),\n", + " 'clues': [('ticklish', 'difficult to handle; requiring great tact'),\n", " ('touchy', 'difficult to handle; requiring great tact'),\n", + " ('fragile', 'easily broken or damaged or destroyed'),\n", + " ('soft', 'easily hurt'),\n", + " ('frail', 'easily broken or damaged or destroyed'),\n", " ('finespun', 'developed with extreme delicacy and subtlety')]},\n", " {'answer': 'delicious',\n", " 'hint': 'synonyms for delicious',\n", - " 'clues': [('pleasant-tasting', 'extremely pleasing to the sense of taste'),\n", + " 'clues': [('luscious', 'extremely pleasing to the sense of taste'),\n", " ('delectable', 'extremely pleasing to the sense of taste'),\n", - " ('delightful', 'greatly pleasing or entertaining'),\n", " ('toothsome', 'extremely pleasing to the sense of taste'),\n", + " ('delightful', 'greatly pleasing or entertaining'),\n", + " ('pleasant-tasting', 'extremely pleasing to the sense of taste'),\n", " ('scrumptious', 'extremely pleasing to the sense of taste'),\n", - " ('yummy', 'extremely pleasing to the sense of taste'),\n", - " ('luscious', 'extremely pleasing to the sense of taste')]},\n", + " ('yummy', 'extremely pleasing to the sense of taste')]},\n", " {'answer': 'delighted',\n", " 'hint': 'synonyms for delighted',\n", - " 'clues': [('entranced', 'filled with wonder and delight'),\n", - " ('beguiled', 'filled with wonder and delight'),\n", + " 'clues': [('charmed', 'filled with wonder and delight'),\n", + " ('entranced', 'filled with wonder and delight'),\n", " ('enthralled', 'filled with wonder and delight'),\n", - " ('captivated', 'filled with wonder and delight'),\n", - " ('charmed', 'filled with wonder and delight')]},\n", + " ('beguiled', 'filled with wonder and delight'),\n", + " ('captivated', 'filled with wonder and delight')]},\n", " {'answer': 'delinquent',\n", " 'hint': 'synonyms for delinquent',\n", - " 'clues': [('neglectful', 'failing in what duty requires'),\n", + " 'clues': [('remiss', 'failing in what duty requires'),\n", + " ('neglectful', 'failing in what duty requires'),\n", " ('overdue', 'past due; not paid at the scheduled time'),\n", - " ('remiss', 'failing in what duty requires'),\n", " ('derelict', 'failing in what duty requires')]},\n", " {'answer': 'delirious',\n", " 'hint': 'synonyms for delirious',\n", - " 'clues': [('frantic', 'marked by uncontrolled excitement or emotion'),\n", + " 'clues': [('unrestrained', 'marked by uncontrolled excitement or emotion'),\n", " ('hallucinating', 'experiencing delirium'),\n", " ('excited', 'marked by uncontrolled excitement or emotion'),\n", " ('mad', 'marked by uncontrolled excitement or emotion'),\n", - " ('unrestrained', 'marked by uncontrolled excitement or emotion')]},\n", + " ('frantic', 'marked by uncontrolled excitement or emotion')]},\n", " {'answer': 'deluxe',\n", " 'hint': 'synonyms for deluxe',\n", - " 'clues': [('gilded', 'rich and superior in quality'),\n", - " ('de luxe', 'elegant and sumptuous'),\n", - " ('sumptuous', 'rich and superior in quality'),\n", - " ('princely', 'rich and superior in quality'),\n", + " 'clues': [('luxe', 'elegant and sumptuous'),\n", " ('grand', 'rich and superior in quality'),\n", + " ('gilded', 'rich and superior in quality'),\n", + " ('de luxe', 'elegant and sumptuous'),\n", " ('opulent', 'rich and superior in quality'),\n", - " ('luxe', 'elegant and sumptuous'),\n", - " ('luxurious', 'rich and superior in quality')]},\n", + " ('luxurious', 'rich and superior in quality'),\n", + " ('sumptuous', 'rich and superior in quality'),\n", + " ('princely', 'rich and superior in quality')]},\n", " {'answer': 'demented',\n", " 'hint': 'synonyms for demented',\n", - " 'clues': [('brainsick', 'affected with madness or insanity'),\n", - " ('mad', 'affected with madness or insanity'),\n", - " ('disturbed', 'affected with madness or insanity'),\n", - " ('unbalanced', 'affected with madness or insanity'),\n", + " 'clues': [('unbalanced', 'affected with madness or insanity'),\n", " ('sick', 'affected with madness or insanity'),\n", + " ('crazy', 'affected with madness or insanity'),\n", " ('unhinged', 'affected with madness or insanity'),\n", - " ('crazy', 'affected with madness or insanity')]},\n", + " ('disturbed', 'affected with madness or insanity'),\n", + " ('mad', 'affected with madness or insanity'),\n", + " ('brainsick', 'affected with madness or insanity')]},\n", " {'answer': 'demode',\n", " 'hint': 'synonyms for demode',\n", - " 'clues': [('passe', 'out of fashion'),\n", - " ('antique', 'out of fashion'),\n", - " ('old-fashioned', 'out of fashion'),\n", - " ('old-hat', 'out of fashion'),\n", + " 'clues': [('antique', 'out of fashion'),\n", " ('outmoded', 'out of fashion'),\n", - " ('ex', 'out of fashion')]},\n", + " ('ex', 'out of fashion'),\n", + " ('passee', 'out of fashion'),\n", + " ('old-fashioned', 'out of fashion'),\n", + " ('old-hat', 'out of fashion')]},\n", " {'answer': 'demoniac',\n", " 'hint': 'synonyms for demoniac',\n", - " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n", + " 'clues': [('possessed', 'frenzied as if possessed by a demon'),\n", + " ('berserk', 'frenzied as if possessed by a demon'),\n", + " ('amuck', 'frenzied as if possessed by a demon'),\n", " ('amok', 'frenzied as if possessed by a demon'),\n", - " ('demoniacal', 'frenzied as if possessed by a demon'),\n", - " ('possessed', 'frenzied as if possessed by a demon'),\n", - " ('amuck', 'frenzied as if possessed by a demon')]},\n", + " ('demoniacal', 'frenzied as if possessed by a demon')]},\n", " {'answer': 'demoniacal',\n", " 'hint': 'synonyms for demoniacal',\n", - " 'clues': [('berserk', 'frenzied as if possessed by a demon'),\n", - " ('amok', 'frenzied as if possessed by a demon'),\n", - " ('possessed', 'frenzied as if possessed by a demon'),\n", + " 'clues': [('possessed', 'frenzied as if possessed by a demon'),\n", + " ('berserk', 'frenzied as if possessed by a demon'),\n", " ('amuck', 'frenzied as if possessed by a demon'),\n", + " ('amok', 'frenzied as if possessed by a demon'),\n", " ('demoniac', 'frenzied as if possessed by a demon')]},\n", " {'answer': 'demonic',\n", " 'hint': 'synonyms for demonic',\n", - " 'clues': [('unholy',\n", - " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('satanic',\n", + " 'clues': [('diabolic',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", " ('hellish',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('diabolic',\n", + " ('satanic',\n", + " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", + " ('fiendish',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", " ('infernal',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('fiendish',\n", + " ('unholy',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell')]},\n", " {'answer': 'dendriform',\n", " 'hint': 'synonyms for dendriform',\n", - " 'clues': [('dendroidal',\n", + " 'clues': [('dendroid',\n", " 'resembling a tree in form and branching structure'),\n", - " ('arboriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('arboresque', 'resembling a tree in form and branching structure'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", " ('arboreous', 'resembling a tree in form and branching structure'),\n", + " ('arboreal', 'resembling a tree in form and branching structure'),\n", " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", - " ('arboresque', 'resembling a tree in form and branching structure')]},\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'dendroid',\n", " 'hint': 'synonyms for dendroid',\n", - " 'clues': [('dendroidal',\n", + " 'clues': [('arboresque',\n", " 'resembling a tree in form and branching structure'),\n", - " ('arboriform', 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", + " ('dendroidal', 'resembling a tree in form and branching structure'),\n", " ('arboreous', 'resembling a tree in form and branching structure'),\n", + " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", - " ('arboresque', 'resembling a tree in form and branching structure')]},\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'dendroidal',\n", " 'hint': 'synonyms for dendroidal',\n", - " 'clues': [('arboriform',\n", + " 'clues': [('dendroid',\n", " 'resembling a tree in form and branching structure'),\n", - " ('arboreal', 'resembling a tree in form and branching structure'),\n", - " ('dendriform', 'resembling a tree in form and branching structure'),\n", + " ('arboresque', 'resembling a tree in form and branching structure'),\n", " ('arborescent', 'resembling a tree in form and branching structure'),\n", - " ('dendroid', 'resembling a tree in form and branching structure'),\n", " ('treelike', 'resembling a tree in form and branching structure'),\n", " ('arboreous', 'resembling a tree in form and branching structure'),\n", + " ('arboreal', 'resembling a tree in form and branching structure'),\n", + " ('dendriform', 'resembling a tree in form and branching structure'),\n", " ('tree-shaped', 'resembling a tree in form and branching structure'),\n", - " ('arboresque', 'resembling a tree in form and branching structure')]},\n", + " ('arboriform', 'resembling a tree in form and branching structure')]},\n", " {'answer': 'denigrating',\n", " 'hint': 'synonyms for denigrating',\n", - " 'clues': [('libelous',\n", + " 'clues': [('slanderous',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('denigratory',\n", + " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrative',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('libellous',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('defamatory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('slanderous',\n", + " ('denigratory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('calumniatory',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n", " {'answer': 'denigrative',\n", " 'hint': 'synonyms for denigrative',\n", - " 'clues': [('libelous',\n", + " 'clues': [('slanderous',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('denigratory',\n", + " ('calumnious',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('libellous',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrating',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('defamatory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('slanderous',\n", + " ('denigratory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('calumniatory',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n", " {'answer': 'denigratory',\n", " 'hint': 'synonyms for denigratory',\n", - " 'clues': [('libelous',\n", + " 'clues': [('slanderous',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrative',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", + " ('libellous',\n", + " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('denigrating',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('defamatory',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('slanderous',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", " ('calumniatory',\n", - " '(used of statements) harmful and often untrue; tending to discredit or malign'),\n", - " ('calumnious',\n", " '(used of statements) harmful and often untrue; tending to discredit or malign')]},\n", " {'answer': 'dense',\n", " 'hint': 'synonyms for dense',\n", - " 'clues': [('dim',\n", + " 'clues': [('slow',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", " ('thick', 'hard to pass through because of dense growth'),\n", - " ('dull',\n", + " ('obtuse',\n", + " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", + " ('dim',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('impenetrable',\n", - " 'permitting little if any light to pass through because of denseness of matter'),\n", " ('dumb',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('heavy',\n", + " ('impenetrable',\n", " 'permitting little if any light to pass through because of denseness of matter'),\n", - " ('obtuse',\n", + " ('dull',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('slow',\n", - " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray')]},\n", + " ('heavy',\n", + " 'permitting little if any light to pass through because of denseness of matter')]},\n", " {'answer': 'departed',\n", " 'hint': 'synonyms for departed',\n", - " 'clues': [('gone', 'well in the past; former'),\n", - " ('bypast', 'well in the past; former'),\n", - " ('bygone', 'well in the past; former'),\n", - " ('at peace', 'dead'),\n", - " ('at rest', 'dead'),\n", + " 'clues': [('at rest', 'dead'),\n", + " ('gone', 'dead'),\n", " ('deceased', 'dead'),\n", + " ('bypast', 'well in the past; former'),\n", " ('foregone', 'well in the past; former'),\n", + " ('at peace', 'dead'),\n", + " ('bygone', 'well in the past; former'),\n", " ('asleep', 'dead')]},\n", " {'answer': 'dependable',\n", " 'hint': 'synonyms for dependable',\n", - " 'clues': [('secure', 'financially sound'),\n", - " ('rock-steady', 'consistent in performance or behavior'),\n", - " ('reliable', 'worthy of reliance or trust'),\n", + " 'clues': [('steady-going', 'consistent in performance or behavior'),\n", + " ('safe', 'financially sound'),\n", " ('honest', 'worthy of being depended on'),\n", + " ('reliable', 'worthy of being depended on'),\n", " ('good', 'financially sound'),\n", - " ('safe', 'financially sound'),\n", " ('true', 'worthy of being depended on'),\n", - " ('steady-going', 'consistent in performance or behavior')]},\n", + " ('rock-steady', 'consistent in performance or behavior'),\n", + " ('secure', 'financially sound')]},\n", " {'answer': 'dependant',\n", " 'hint': 'synonyms for dependant',\n", " 'clues': [('qualified', 'contingent on something else'),\n", - " ('strung-out', 'addicted to a drug'),\n", - " ('hooked', 'addicted to a drug'),\n", " ('drug-addicted', 'addicted to a drug'),\n", - " ('dependent', 'addicted to a drug')]},\n", + " ('hooked', 'addicted to a drug'),\n", + " ('dependent', 'contingent on something else'),\n", + " ('strung-out', 'addicted to a drug')]},\n", " {'answer': 'dependant_on',\n", " 'hint': 'synonyms for dependant on',\n", - " 'clues': [('contingent upon',\n", + " 'clues': [('dependent on',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('dependant upon',\n", + " ('contingent upon',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('contingent', 'determined by conditions or circumstances that follow'),\n", " ('depending on', 'determined by conditions or circumstances that follow'),\n", - " ('dependent on',\n", - " 'determined by conditions or circumstances that follow')]},\n", + " ('dependant upon',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('contingent', 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'dependant_upon',\n", " 'hint': 'synonyms for dependant upon',\n", - " 'clues': [('contingent upon',\n", + " 'clues': [('dependant on',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('contingent upon',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('contingent', 'determined by conditions or circumstances that follow'),\n", - " ('dependant on', 'determined by conditions or circumstances that follow'),\n", - " ('depending on', 'determined by conditions or circumstances that follow'),\n", " ('dependent upon',\n", - " 'determined by conditions or circumstances that follow')]},\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('depending on', 'determined by conditions or circumstances that follow'),\n", + " ('contingent', 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'dependent',\n", " 'hint': 'synonyms for dependent',\n", " 'clues': [('subject',\n", " 'being under the power or sovereignty of another or others'),\n", + " ('pendant', 'held from above'),\n", " ('subordinate',\n", " '(of a clause) unable to stand alone syntactically as a complete sentence'),\n", - " ('dependant', 'addicted to a drug'),\n", " ('qualified', 'contingent on something else'),\n", - " ('pendent', 'held from above'),\n", - " ('strung-out', 'addicted to a drug'),\n", + " ('drug-addicted', 'addicted to a drug'),\n", " ('hooked', 'addicted to a drug'),\n", - " ('drug-addicted', 'addicted to a drug')]},\n", + " ('strung-out', 'addicted to a drug')]},\n", + " {'answer': 'dependent_on',\n", + " 'hint': 'synonyms for dependent on',\n", + " 'clues': [('dependant on',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('contingent upon',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('dependent upon',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('depending on', 'determined by conditions or circumstances that follow'),\n", + " ('contingent', 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'dependent_upon',\n", " 'hint': 'synonyms for dependent upon',\n", - " 'clues': [('contingent upon',\n", + " 'clues': [('dependant on',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('dependant upon',\n", + " ('contingent upon',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('contingent', 'determined by conditions or circumstances that follow'),\n", " ('depending on', 'determined by conditions or circumstances that follow'),\n", - " ('dependent on',\n", - " 'determined by conditions or circumstances that follow')]},\n", + " ('contingent', 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'depending_on',\n", " 'hint': 'synonyms for depending on',\n", - " 'clues': [('contingent upon',\n", + " 'clues': [('dependant on',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('dependant upon',\n", + " ('contingent upon',\n", " 'determined by conditions or circumstances that follow'),\n", - " ('contingent', 'determined by conditions or circumstances that follow'),\n", - " ('dependent on',\n", - " 'determined by conditions or circumstances that follow')]},\n", + " ('dependent upon',\n", + " 'determined by conditions or circumstances that follow'),\n", + " ('contingent', 'determined by conditions or circumstances that follow')]},\n", " {'answer': 'deplorable',\n", " 'hint': 'synonyms for deplorable',\n", - " 'clues': [('wretched', 'of very poor quality or condition'),\n", - " ('sad', 'bad; unfortunate'),\n", - " ('lamentable', 'bad; unfortunate'),\n", + " 'clues': [('distressing', 'bad; unfortunate'),\n", + " ('woeful', 'of very poor quality or condition'),\n", + " ('condemnable', 'bringing or deserving severe rebuke or censure'),\n", " ('miserable', 'of very poor quality or condition'),\n", + " ('sad', 'bad; unfortunate'),\n", + " ('execrable', 'of very poor quality or condition'),\n", " ('criminal', 'bringing or deserving severe rebuke or censure'),\n", - " ('vicious', 'bringing or deserving severe rebuke or censure'),\n", - " ('distressing', 'bad; unfortunate'),\n", " ('pitiful', 'bad; unfortunate'),\n", - " ('condemnable', 'bringing or deserving severe rebuke or censure'),\n", + " ('wretched', 'of very poor quality or condition'),\n", + " ('reprehensible', 'bringing or deserving severe rebuke or censure'),\n", " ('sorry', 'bad; unfortunate'),\n", - " ('execrable', 'of very poor quality or condition'),\n", - " ('woeful', 'of very poor quality or condition'),\n", - " ('reprehensible', 'bringing or deserving severe rebuke or censure')]},\n", + " ('lamentable', 'bad; unfortunate'),\n", + " ('vicious', 'bringing or deserving severe rebuke or censure')]},\n", " {'answer': 'deprecating',\n", " 'hint': 'synonyms for deprecating',\n", " 'clues': [('deprecative', 'tending to diminish or disparage'),\n", " ('deprecatory', 'tending to diminish or disparage'),\n", - " ('belittling', 'tending to diminish or disparage'),\n", - " ('slighting', 'tending to diminish or disparage')]},\n", + " ('slighting', 'tending to diminish or disparage'),\n", + " ('belittling', 'tending to diminish or disparage')]},\n", " {'answer': 'deprecative',\n", " 'hint': 'synonyms for deprecative',\n", - " 'clues': [('deprecating', 'tending to diminish or disparage'),\n", + " 'clues': [('depreciative', 'tending to diminish or disparage'),\n", " ('deprecatory', 'tending to diminish or disparage'),\n", + " ('slighting', 'tending to diminish or disparage'),\n", " ('belittling', 'tending to diminish or disparage'),\n", - " ('depreciative', 'tending to diminish or disparage'),\n", - " ('slighting', 'tending to diminish or disparage')]},\n", + " ('deprecating', 'tending to diminish or disparage')]},\n", " {'answer': 'deprecatory',\n", " 'hint': 'synonyms for deprecatory',\n", - " 'clues': [('deprecating', 'tending to diminish or disparage'),\n", - " ('deprecative', 'tending to diminish or disparage'),\n", - " ('depreciatory', 'tending to diminish or disparage'),\n", + " 'clues': [('deprecative', 'tending to diminish or disparage'),\n", + " ('slighting', 'tending to diminish or disparage'),\n", " ('belittling', 'tending to diminish or disparage'),\n", - " ('slighting', 'tending to diminish or disparage')]},\n", + " ('depreciatory', 'tending to diminish or disparage'),\n", + " ('deprecating', 'tending to diminish or disparage')]},\n", " {'answer': 'depreciative',\n", " 'hint': 'synonyms for depreciative',\n", - " 'clues': [('deprecatory', 'tending to diminish or disparage'),\n", + " 'clues': [('deprecative', 'tending to diminish or disparage'),\n", " ('belittling', 'tending to diminish or disparage'),\n", + " ('depreciatory', 'tending to diminish or disparage'),\n", " ('deprecating', 'tending to diminish or disparage'),\n", - " ('deprecative', 'tending to diminish or disparage'),\n", " ('slighting', 'tending to diminish or disparage')]},\n", " {'answer': 'depreciatory',\n", " 'hint': 'synonyms for depreciatory',\n", - " 'clues': [('deprecatory', 'tending to diminish or disparage'),\n", + " 'clues': [('deprecative', 'tending to diminish or disparage'),\n", " ('belittling', 'tending to diminish or disparage'),\n", - " ('depreciative', 'tending to diminish or disparage'),\n", " ('deprecating', 'tending to diminish or disparage'),\n", - " ('slighting', 'tending to diminish or disparage')]},\n", + " ('slighting', 'tending to diminish or disparage'),\n", + " ('deprecatory', 'tending to diminish or disparage')]},\n", " {'answer': 'depressed',\n", " 'hint': 'synonyms for depressed',\n", - " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n", + " 'clues': [('low', 'filled with melancholy and despondency'),\n", " ('downhearted', 'filled with melancholy and despondency'),\n", - " ('down in the mouth', 'filled with melancholy and despondency'),\n", - " ('low', 'filled with melancholy and despondency'),\n", - " ('downcast', 'filled with melancholy and despondency'),\n", - " ('blue', 'filled with melancholy and despondency'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", " ('down', 'lower than previously'),\n", - " ('dispirited', 'filled with melancholy and despondency'),\n", " ('gloomy', 'filled with melancholy and despondency'),\n", - " ('grim', 'filled with melancholy and despondency')]},\n", + " ('dispirited', 'filled with melancholy and despondency'),\n", + " ('grim', 'filled with melancholy and despondency'),\n", + " ('down in the mouth', 'filled with melancholy and despondency'),\n", + " ('downcast', 'filled with melancholy and despondency'),\n", + " ('blue', 'filled with melancholy and despondency')]},\n", " {'answer': 'derelict',\n", " 'hint': 'synonyms for derelict',\n", - " 'clues': [('abandoned', 'forsaken by owner or inhabitants'),\n", - " ('flea-bitten', 'worn and broken down by hard use'),\n", + " 'clues': [('woebegone', 'worn and broken down by hard use'),\n", + " ('deserted', 'forsaken by owner or inhabitants'),\n", " ('neglectful', 'failing in what duty requires'),\n", - " ('decrepit', 'worn and broken down by hard use'),\n", - " ('delinquent', 'failing in what duty requires'),\n", + " ('run-down', 'worn and broken down by hard use'),\n", + " ('bedraggled', 'in deplorable condition'),\n", + " ('abandoned', 'forsaken by owner or inhabitants'),\n", + " ('flea-bitten', 'worn and broken down by hard use'),\n", " ('creaky', 'worn and broken down by hard use'),\n", + " ('delinquent', 'failing in what duty requires'),\n", " ('broken-down', 'in deplorable condition'),\n", - " ('run-down', 'worn and broken down by hard use'),\n", - " ('dilapidated', 'in deplorable condition'),\n", + " ('tumble-down', 'in deplorable condition'),\n", " ('tatterdemalion', 'in deplorable condition'),\n", + " ('decrepit', 'worn and broken down by hard use'),\n", " ('remiss', 'failing in what duty requires'),\n", - " ('bedraggled', 'in deplorable condition'),\n", - " ('woebegone', 'worn and broken down by hard use'),\n", " ('ramshackle', 'in deplorable condition'),\n", - " ('deserted', 'forsaken by owner or inhabitants'),\n", - " ('tumble-down', 'in deplorable condition')]},\n", + " ('dilapidated', 'in deplorable condition')]},\n", " {'answer': 'derisive',\n", " 'hint': 'synonyms for derisive',\n", - " 'clues': [('mocking', 'abusing vocally; expressing contempt or ridicule'),\n", - " ('gibelike', 'abusing vocally; expressing contempt or ridicule'),\n", - " ('jeering', 'abusing vocally; expressing contempt or ridicule'),\n", - " ('taunting', 'abusing vocally; expressing contempt or ridicule')]},\n", + " 'clues': [('jeering', 'abusing vocally; expressing contempt or ridicule'),\n", + " ('taunting', 'abusing vocally; expressing contempt or ridicule'),\n", + " ('mocking', 'abusing vocally; expressing contempt or ridicule'),\n", + " ('gibelike', 'abusing vocally; expressing contempt or ridicule')]},\n", " {'answer': 'derisory',\n", " 'hint': 'synonyms for derisory',\n", - " 'clues': [('ludicrous', 'incongruous;inviting ridicule'),\n", - " ('laughable', 'incongruous;inviting ridicule'),\n", + " 'clues': [('preposterous', 'incongruous;inviting ridicule'),\n", + " ('ludicrous', 'incongruous;inviting ridicule'),\n", " ('absurd', 'incongruous;inviting ridicule'),\n", + " ('laughable', 'incongruous;inviting ridicule'),\n", " ('nonsensical', 'incongruous;inviting ridicule'),\n", " ('cockeyed', 'incongruous;inviting ridicule'),\n", - " ('preposterous', 'incongruous;inviting ridicule'),\n", - " ('ridiculous', 'incongruous;inviting ridicule'),\n", - " ('idiotic', 'incongruous;inviting ridicule')]},\n", + " ('idiotic', 'incongruous;inviting ridicule'),\n", + " ('ridiculous', 'incongruous;inviting ridicule')]},\n", " {'answer': 'dermal',\n", " 'hint': 'synonyms for dermal',\n", - " 'clues': [('dermic', 'of or relating to or located in the dermis'),\n", - " ('cuticular', 'of or relating to a cuticle or cuticula'),\n", - " ('cutaneal', 'relating to or existing on or affecting the skin'),\n", + " 'clues': [('epidermal', 'of or relating to a cuticle or cuticula'),\n", " ('epidermic', 'of or relating to a cuticle or cuticula'),\n", - " ('epidermal', 'of or relating to a cuticle or cuticula'),\n", - " ('cutaneous', 'relating to or existing on or affecting the skin')]},\n", + " ('cutaneal', 'relating to or existing on or affecting the skin'),\n", + " ('dermic', 'of or relating to or located in the dermis'),\n", + " ('cutaneous', 'relating to or existing on or affecting the skin'),\n", + " ('cuticular', 'of or relating to a cuticle or cuticula')]},\n", " {'answer': 'desiccated',\n", " 'hint': 'synonyms for desiccated',\n", - " 'clues': [('dehydrated', 'preserved by removing natural moisture'),\n", - " ('arid', 'lacking vitality or spirit; lifeless; ; ; -C.J.Rolo'),\n", + " 'clues': [('desiccate',\n", + " 'lacking vitality or spirit; lifeless; ; ; -C.J.Rolo'),\n", " ('dried', 'preserved by removing natural moisture'),\n", + " ('dehydrated', 'preserved by removing natural moisture'),\n", " ('dried-out', 'thoroughly dried out'),\n", - " ('desiccate', 'lacking vitality or spirit; lifeless; ; ; -C.J.Rolo')]},\n", + " ('arid', 'lacking vitality or spirit; lifeless; ; ; -C.J.Rolo')]},\n", " {'answer': 'desired',\n", " 'hint': 'synonyms for desired',\n", - " 'clues': [('coveted', 'greatly desired'),\n", + " 'clues': [('in demand', 'greatly desired'),\n", " ('craved', 'wanted intensely'),\n", - " ('in demand', 'greatly desired'),\n", + " ('coveted', 'greatly desired'),\n", " ('sought after', 'greatly desired')]},\n", " {'answer': 'desolate',\n", " 'hint': 'synonyms for desolate',\n", - " 'clues': [('barren', 'providing no shelter or sustenance'),\n", - " ('bare', 'providing no shelter or sustenance'),\n", + " 'clues': [('bare', 'providing no shelter or sustenance'),\n", " ('stark', 'providing no shelter or sustenance'),\n", - " ('bleak', 'providing no shelter or sustenance')]},\n", + " ('bleak', 'providing no shelter or sustenance'),\n", + " ('barren', 'providing no shelter or sustenance')]},\n", " {'answer': 'desperate',\n", " 'hint': 'synonyms for desperate',\n", - " 'clues': [('do-or-die', 'desperately determined'),\n", - " ('despairing', 'arising from or marked by despair or loss of hope'),\n", + " 'clues': [('dire',\n", + " 'fraught with extreme danger; nearly hopeless; ; - G.C.Marshall'),\n", " ('heroic',\n", " 'showing extreme courage; especially of actions courageously undertaken in desperation as a last resort; ; - G.C.Marshall'),\n", - " ('dire',\n", - " 'fraught with extreme danger; nearly hopeless; ; - G.C.Marshall')]},\n", + " ('despairing', 'arising from or marked by despair or loss of hope'),\n", + " ('do-or-die', 'desperately determined')]},\n", " {'answer': 'despicable',\n", " 'hint': 'synonyms for despicable',\n", - " 'clues': [('vile', 'morally reprehensible'),\n", - " ('ugly', 'morally reprehensible'),\n", - " ('slimy', 'morally reprehensible'),\n", + " 'clues': [('slimy', 'morally reprehensible'),\n", " ('worthless', 'morally reprehensible'),\n", + " ('ugly', 'morally reprehensible'),\n", " ('wretched', 'morally reprehensible'),\n", - " ('unworthy', 'morally reprehensible')]},\n", + " ('unworthy', 'morally reprehensible'),\n", + " ('vile', 'morally reprehensible')]},\n", " {'answer': 'despoiled',\n", " 'hint': 'synonyms for despoiled',\n", - " 'clues': [('sacked',\n", + " 'clues': [('raped',\n", " 'having been robbed and destroyed by force and violence'),\n", - " ('raped', 'having been robbed and destroyed by force and violence'),\n", + " ('ravaged', 'having been robbed and destroyed by force and violence'),\n", " ('pillaged', 'having been robbed and destroyed by force and violence'),\n", - " ('ravaged', 'having been robbed and destroyed by force and violence')]},\n", + " ('sacked', 'having been robbed and destroyed by force and violence')]},\n", " {'answer': 'despotic',\n", " 'hint': 'synonyms for despotic',\n", - " 'clues': [('despotical',\n", - " 'belonging to or having the characteristics of a despot'),\n", - " ('authoritarian',\n", + " 'clues': [('tyrannical',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('tyrannical',\n", + " ('despotical', 'belonging to or having the characteristics of a despot'),\n", + " ('dictatorial',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('autocratic',\n", + " ('authoritarian',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('dictatorial',\n", + " ('autocratic',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty')]},\n", " {'answer': 'destitute',\n", " 'hint': 'synonyms for destitute',\n", - " 'clues': [('devoid', 'completely wanting or lacking'),\n", - " ('innocent', 'completely wanting or lacking'),\n", - " ('poverty-stricken', 'poor enough to need help from others'),\n", + " 'clues': [('poverty-stricken', 'poor enough to need help from others'),\n", + " ('devoid', 'completely wanting or lacking'),\n", + " ('needy', 'poor enough to need help from others'),\n", " ('barren', 'completely wanting or lacking'),\n", + " ('innocent', 'completely wanting or lacking'),\n", " ('free', 'completely wanting or lacking'),\n", - " ('indigent', 'poor enough to need help from others'),\n", + " ('impoverished', 'poor enough to need help from others'),\n", " ('necessitous', 'poor enough to need help from others'),\n", - " ('needy', 'poor enough to need help from others'),\n", - " ('impoverished', 'poor enough to need help from others')]},\n", + " ('indigent', 'poor enough to need help from others')]},\n", " {'answer': 'detached',\n", " 'hint': 'synonyms for detached',\n", - " 'clues': [('separated', 'no longer connected or joined'),\n", + " 'clues': [('uncaring', 'lacking affection or warm feeling'),\n", + " ('unaffectionate', 'lacking affection or warm feeling'),\n", + " ('separated',\n", + " 'being or feeling set or kept apart from others; ; - Sherwood Anderson'),\n", " ('isolated',\n", " 'being or feeling set or kept apart from others; ; - Sherwood Anderson'),\n", - " ('unaffectionate', 'lacking affection or warm feeling'),\n", + " ('degage', 'showing lack of emotional involvement; - J.S.Perelman'),\n", + " ('free', 'not fixed in position'),\n", " ('set-apart',\n", " 'being or feeling set or kept apart from others; ; - Sherwood Anderson'),\n", - " ('free', 'not fixed in position'),\n", - " ('uninvolved', 'showing lack of emotional involvement; - J.S.Perelman'),\n", - " ('degage', 'showing lack of emotional involvement; - J.S.Perelman'),\n", - " ('uncaring', 'lacking affection or warm feeling')]},\n", + " ('uninvolved', 'showing lack of emotional involvement; - J.S.Perelman')]},\n", " {'answer': 'determined',\n", " 'hint': 'synonyms for determined',\n", - " 'clues': [('set', 'determined or decided upon as by an authority'),\n", + " 'clues': [('compulsive', 'strongly motivated to succeed'),\n", + " ('set', 'determined or decided upon as by an authority'),\n", " ('driven', 'strongly motivated to succeed'),\n", - " ('dictated', 'determined or decided upon as by an authority'),\n", - " ('compulsive', 'strongly motivated to succeed')]},\n", + " ('dictated', 'determined or decided upon as by an authority')]},\n", " {'answer': 'detestable',\n", " 'hint': 'synonyms for detestable',\n", - " 'clues': [('abominable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", + " 'clues': [('repulsive', 'offensive to the mind'),\n", + " ('odious', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", + " ('execrable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", " ('abhorrent', 'offensive to the mind'),\n", + " ('abominable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", " ('obscene', 'offensive to the mind'),\n", - " ('execrable', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", - " ('repulsive', 'offensive to the mind'),\n", - " ('odious', 'unequivocally detestable; ; ; ; - Edmund Burke'),\n", " ('repugnant', 'offensive to the mind')]},\n", " {'answer': 'deuced',\n", " 'hint': 'synonyms for deuced',\n", - " 'clues': [('goddam', 'expletives used informally as intensifiers'),\n", - " ('goddamned', 'expletives used informally as intensifiers'),\n", - " ('blasted', 'expletives used informally as intensifiers'),\n", + " 'clues': [('blasted', 'expletives used informally as intensifiers'),\n", + " ('damn', 'expletives used informally as intensifiers'),\n", " ('blessed', 'expletives used informally as intensifiers'),\n", - " ('blamed', 'expletives used informally as intensifiers'),\n", " ('darned', 'expletives used informally as intensifiers'),\n", - " ('damn', 'expletives used informally as intensifiers'),\n", + " ('goddam', 'expletives used informally as intensifiers'),\n", + " ('blamed', 'expletives used informally as intensifiers'),\n", + " ('infernal', 'expletives used informally as intensifiers'),\n", " ('damned', 'expletives used informally as intensifiers'),\n", - " ('infernal', 'expletives used informally as intensifiers')]},\n", + " ('goddamned', 'expletives used informally as intensifiers')]},\n", " {'answer': 'devastating',\n", " 'hint': 'synonyms for devastating',\n", - " 'clues': [('withering',\n", + " 'clues': [('annihilative',\n", " 'wreaking or capable of wreaking complete destruction'),\n", - " ('annihilative', 'wreaking or capable of wreaking complete destruction'),\n", - " ('annihilating', 'making light of; ; ; - W.S.Gilbert'),\n", " ('crushing',\n", - " 'physically or spiritually devastating; often used in combination')]},\n", + " 'physically or spiritually devastating; often used in combination'),\n", + " ('withering', 'wreaking or capable of wreaking complete destruction'),\n", + " ('annihilating',\n", + " 'wreaking or capable of wreaking complete destruction')]},\n", " {'answer': 'devil-may-care',\n", " 'hint': 'synonyms for devil-may-care',\n", " 'clues': [('carefree', 'cheerfully irresponsible'),\n", - " ('happy-go-lucky', 'cheerfully irresponsible'),\n", " ('rakish',\n", " 'marked by a carefree unconventionality or disreputableness; - Crary Moore'),\n", - " ('harum-scarum', 'cheerfully irresponsible'),\n", " ('raffish',\n", " 'marked by a carefree unconventionality or disreputableness; - Crary Moore'),\n", - " ('slaphappy', 'cheerfully irresponsible'),\n", - " ('freewheeling', 'cheerfully irresponsible')]},\n", + " ('freewheeling', 'cheerfully irresponsible'),\n", + " ('happy-go-lucky', 'cheerfully irresponsible'),\n", + " ('harum-scarum', 'cheerfully irresponsible'),\n", + " ('slaphappy', 'cheerfully irresponsible')]},\n", " {'answer': 'devilish',\n", " 'hint': 'synonyms for devilish',\n", - " 'clues': [('mephistophelian',\n", + " 'clues': [('mephistophelean',\n", " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", " ('roguish', 'playful in an appealingly bold way'),\n", " ('rascally', 'playful in an appealingly bold way'),\n", - " ('diabolical',\n", + " ('diabolic',\n", " 'showing the cunning or ingenuity or wickedness typical of a devil')]},\n", " {'answer': 'devious',\n", " 'hint': 'synonyms for devious',\n", - " 'clues': [('circuitous', 'deviating from a straight course'),\n", - " ('oblique',\n", + " 'clues': [('oblique',\n", " 'indirect in departing from the accepted or proper way; misleading'),\n", - " ('roundabout', 'deviating from a straight course'),\n", - " ('shifty', 'characterized by insincerity or deceit; evasive')]},\n", + " ('circuitous', 'deviating from a straight course'),\n", + " ('shifty', 'characterized by insincerity or deceit; evasive'),\n", + " ('roundabout', 'deviating from a straight course')]},\n", " {'answer': 'devoid',\n", " 'hint': 'synonyms for devoid',\n", - " 'clues': [('destitute', 'completely wanting or lacking'),\n", - " ('free', 'completely wanting or lacking'),\n", + " 'clues': [('barren', 'completely wanting or lacking'),\n", " ('innocent', 'completely wanting or lacking'),\n", - " ('barren', 'completely wanting or lacking')]},\n", + " ('free', 'completely wanting or lacking'),\n", + " ('destitute', 'completely wanting or lacking')]},\n", " {'answer': 'devout',\n", " 'hint': 'synonyms for devout',\n", " 'clues': [('dear', 'earnest'),\n", @@ -43602,86 +43646,85 @@ " ('heartfelt', 'earnest')]},\n", " {'answer': 'dewy-eyed',\n", " 'hint': 'synonyms for dewy-eyed',\n", - " 'clues': [('wide-eyed', 'exhibiting childlike simplicity and credulity'),\n", - " ('childlike', 'exhibiting childlike simplicity and credulity'),\n", + " 'clues': [('childlike', 'exhibiting childlike simplicity and credulity'),\n", + " ('simple', 'exhibiting childlike simplicity and credulity'),\n", " ('round-eyed', 'exhibiting childlike simplicity and credulity'),\n", - " ('simple', 'exhibiting childlike simplicity and credulity')]},\n", + " ('wide-eyed', 'exhibiting childlike simplicity and credulity')]},\n", " {'answer': 'diabolic',\n", " 'hint': 'synonyms for diabolic',\n", - " 'clues': [('unholy',\n", - " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('mephistophelian',\n", + " 'clues': [('mephistophelean',\n", " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", - " ('infernal',\n", + " ('diabolical',\n", + " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", + " ('demonic',\n", + " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", + " ('hellish',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", " ('devilish',\n", " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", - " ('diabolical',\n", - " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", - " ('satanic',\n", + " ('unholy',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", " ('fiendish',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('hellish',\n", + " ('satanic',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('demonic',\n", + " ('infernal',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell')]},\n", " {'answer': 'diabolical',\n", " 'hint': 'synonyms for diabolical',\n", - " 'clues': [('unholy',\n", - " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('mephistophelian',\n", + " 'clues': [('mephistophelean',\n", " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", - " ('infernal',\n", + " ('demonic',\n", + " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", + " ('hellish',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", " ('devilish',\n", " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", - " ('satanic',\n", + " ('unholy',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('diabolic',\n", - " 'showing the cunning or ingenuity or wickedness typical of a devil'),\n", " ('fiendish',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('hellish',\n", + " ('diabolic',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", - " ('demonic',\n", + " ('satanic',\n", + " 'extremely evil or cruel; expressive of cruelty or befitting hell'),\n", + " ('infernal',\n", " 'extremely evil or cruel; expressive of cruelty or befitting hell')]},\n", " {'answer': 'diagonal',\n", " 'hint': 'synonyms for diagonal',\n", " 'clues': [('aslope', 'having an oblique or slanted direction'),\n", - " ('sloped', 'having an oblique or slanted direction'),\n", " ('slanted', 'having an oblique or slanted direction'),\n", " ('aslant', 'having an oblique or slanted direction'),\n", + " ('sloping', 'having an oblique or slanted direction'),\n", " ('slanting', 'having an oblique or slanted direction'),\n", - " ('sloping', 'having an oblique or slanted direction')]},\n", + " ('sloped', 'having an oblique or slanted direction')]},\n", " {'answer': 'diametrical',\n", " 'hint': 'synonyms for diametrical',\n", - " 'clues': [('diametral', 'related to or along a diameter'),\n", - " ('polar', 'characterized by opposite extremes; completely opposed'),\n", - " ('diametric', 'related to or along a diameter'),\n", - " ('opposite', 'characterized by opposite extremes; completely opposed')]},\n", + " 'clues': [('diametric', 'related to or along a diameter'),\n", + " ('opposite', 'characterized by opposite extremes; completely opposed'),\n", + " ('diametral', 'related to or along a diameter'),\n", + " ('polar', 'characterized by opposite extremes; completely opposed')]},\n", " {'answer': 'diaphanous',\n", " 'hint': 'synonyms for diaphanous',\n", - " 'clues': [('gauzy', 'so thin as to transmit light'),\n", - " ('transparent', 'so thin as to transmit light'),\n", - " ('gossamer', 'so thin as to transmit light'),\n", + " 'clues': [('gossamer', 'so thin as to transmit light'),\n", + " ('vaporous', 'so thin as to transmit light'),\n", " ('see-through', 'so thin as to transmit light'),\n", - " ('sheer', 'so thin as to transmit light'),\n", + " ('transparent', 'so thin as to transmit light'),\n", " ('gauze-like', 'so thin as to transmit light'),\n", - " ('vapourous', 'so thin as to transmit light'),\n", + " ('gauzy', 'so thin as to transmit light'),\n", + " ('sheer', 'so thin as to transmit light'),\n", " ('cobwebby', 'so thin as to transmit light'),\n", " ('filmy', 'so thin as to transmit light')]},\n", " {'answer': 'dictatorial',\n", " 'hint': 'synonyms for dictatorial',\n", - " 'clues': [('authoritarian',\n", - " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('tyrannical',\n", + " 'clues': [('despotic',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('despotic',\n", + " ('tyrannical',\n", " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", + " ('authoritarian', 'expecting unquestioning obedience'),\n", + " ('overbearing', 'expecting unquestioning obedience'),\n", " ('autocratic',\n", - " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty'),\n", - " ('overbearing', 'expecting unquestioning obedience')]},\n", + " 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty')]},\n", " {'answer': 'digressive',\n", " 'hint': 'synonyms for digressive',\n", " 'clues': [('tangential', 'of superficial relevance if any'),\n", @@ -43693,595 +43736,597 @@ " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects')]},\n", " {'answer': 'dilapidated',\n", " 'hint': 'synonyms for dilapidated',\n", - " 'clues': [('bedraggled', 'in deplorable condition'),\n", - " ('ramshackle', 'in deplorable condition'),\n", - " ('broken-down', 'in deplorable condition'),\n", + " 'clues': [('derelict', 'in deplorable condition'),\n", + " ('tumble-down', 'in deplorable condition'),\n", " ('tatterdemalion', 'in deplorable condition'),\n", - " ('derelict', 'in deplorable condition'),\n", - " ('tumble-down', 'in deplorable condition')]},\n", + " ('bedraggled', 'in deplorable condition'),\n", + " ('broken-down', 'in deplorable condition'),\n", + " ('ramshackle', 'in deplorable condition')]},\n", " {'answer': 'dim',\n", " 'hint': 'synonyms for dim',\n", " 'clues': [('dimmed', 'made dim or less bright'),\n", - " ('faint', 'lacking clarity or distinctness'),\n", - " ('wispy', 'lacking clarity or distinctness'),\n", - " ('dull',\n", + " ('obtuse',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('bleak', 'offering little or no hope; ; ; - J.M.Synge'),\n", + " ('subdued', 'lacking in light; not bright or harsh'),\n", + " ('wispy', 'lacking clarity or distinctness'),\n", + " ('faint', 'lacking clarity or distinctness'),\n", " ('dumb',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('obtuse',\n", + " ('bleak', 'offering little or no hope; ; ; - J.M.Synge'),\n", + " ('shadowy', 'lacking clarity or distinctness'),\n", + " ('dull',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", + " ('black', 'offering little or no hope; ; ; - J.M.Synge'),\n", " ('dense',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('subdued', 'lacking in light; not bright or harsh'),\n", " ('vague', 'lacking clarity or distinctness'),\n", - " ('shadowy', 'lacking clarity or distinctness'),\n", - " ('black', 'offering little or no hope; ; ; - J.M.Synge'),\n", " ('slow',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray')]},\n", " {'answer': 'dim-sighted',\n", " 'hint': 'synonyms for dim-sighted',\n", - " 'clues': [('near-blind', 'having greatly reduced vision'),\n", - " ('purblind', 'having greatly reduced vision'),\n", + " 'clues': [('purblind', 'having greatly reduced vision'),\n", " ('visually impaired', 'having greatly reduced vision'),\n", " ('visually challenged', 'having greatly reduced vision'),\n", + " ('near-blind', 'having greatly reduced vision'),\n", " ('sand-blind', 'having greatly reduced vision')]},\n", " {'answer': 'diminished',\n", " 'hint': 'synonyms for diminished',\n", - " 'clues': [('small', 'made to seem smaller or less (especially in worth)'),\n", + " 'clues': [('weakened', 'impaired by diminution'),\n", + " ('lessened', 'impaired by diminution'),\n", " ('vitiated', 'impaired by diminution'),\n", - " ('weakened', 'impaired by diminution'),\n", - " ('atrophied',\n", + " ('wasted',\n", " '(of an organ or body part) diminished in size or strength as a result of disease or injury or lack of use'),\n", + " ('small', 'made to seem smaller or less (especially in worth)'),\n", " ('belittled', 'made to seem smaller or less (especially in worth)'),\n", - " ('lessened', 'impaired by diminution'),\n", - " ('wasted',\n", + " ('atrophied',\n", " '(of an organ or body part) diminished in size or strength as a result of disease or injury or lack of use')]},\n", " {'answer': 'diminutive',\n", " 'hint': 'synonyms for diminutive',\n", - " 'clues': [('lilliputian', 'very small'),\n", + " 'clues': [('petite', 'very small'),\n", " ('midget', 'very small'),\n", - " ('flyspeck', 'very small'),\n", - " ('petite', 'very small'),\n", " ('tiny', 'very small'),\n", - " ('bantam', 'very small')]},\n", + " ('bantam', 'very small'),\n", + " ('lilliputian', 'very small'),\n", + " ('flyspeck', 'very small')]},\n", " {'answer': 'dingy',\n", " 'hint': 'synonyms for dingy',\n", - " 'clues': [('drab', 'causing dejection'),\n", - " ('gloomy', 'causing dejection'),\n", - " ('blue', 'causing dejection'),\n", - " ('grungy', 'thickly covered with ingrained dirt or soot'),\n", - " ('grimy', 'thickly covered with ingrained dirt or soot'),\n", - " ('dark', 'causing dejection'),\n", - " ('dirty',\n", + " 'clues': [('dirty',\n", " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", - " ('begrimed', 'thickly covered with ingrained dirt or soot'),\n", " ('disconsolate', 'causing dejection'),\n", - " ('raunchy', 'thickly covered with ingrained dirt or soot'),\n", - " ('grubby', 'thickly covered with ingrained dirt or soot'),\n", - " ('dismal', 'causing dejection'),\n", + " ('grim', 'causing dejection'),\n", + " ('sorry', 'causing dejection'),\n", + " ('begrimed', 'thickly covered with ingrained dirt or soot'),\n", " ('muddy',\n", " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", - " ('sorry', 'causing dejection'),\n", + " ('dismal', 'causing dejection'),\n", + " ('gloomy', 'causing dejection'),\n", " ('dreary', 'causing dejection'),\n", " ('muddied',\n", - " '(of color) discolored by impurities; not bright and clear; is often used in combination')]},\n", + " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", + " ('grungy', 'thickly covered with ingrained dirt or soot'),\n", + " ('raunchy', 'thickly covered with ingrained dirt or soot'),\n", + " ('dark', 'causing dejection'),\n", + " ('blue', 'causing dejection'),\n", + " ('drab', 'causing dejection'),\n", + " ('grubby', 'thickly covered with ingrained dirt or soot')]},\n", " {'answer': 'dire',\n", " 'hint': 'synonyms for dire',\n", - " 'clues': [('dread', 'causing fear or dread or terror'),\n", - " ('horrendous', 'causing fear or dread or terror'),\n", - " ('fearful', 'causing fear or dread or terror'),\n", + " 'clues': [('fearful', 'causing fear or dread or terror'),\n", + " ('terrible', 'causing fear or dread or terror'),\n", " ('direful', 'causing fear or dread or terror'),\n", + " ('dread', 'causing fear or dread or terror'),\n", + " ('frightening', 'causing fear or dread or terror'),\n", + " ('fearsome', 'causing fear or dread or terror'),\n", " ('dreaded', 'causing fear or dread or terror'),\n", - " ('horrific', 'causing fear or dread or terror'),\n", " ('dreadful', 'causing fear or dread or terror'),\n", - " ('fearsome', 'causing fear or dread or terror'),\n", - " ('awful', 'causing fear or dread or terror'),\n", - " ('terrible', 'causing fear or dread or terror'),\n", - " ('frightening', 'causing fear or dread or terror'),\n", + " ('horrific', 'causing fear or dread or terror'),\n", " ('desperate',\n", - " 'fraught with extreme danger; nearly hopeless; ; - G.C.Marshall')]},\n", + " 'fraught with extreme danger; nearly hopeless; ; - G.C.Marshall'),\n", + " ('awful', 'causing fear or dread or terror'),\n", + " ('horrendous', 'causing fear or dread or terror')]},\n", " {'answer': 'directionless',\n", " 'hint': 'synonyms for directionless',\n", - " 'clues': [('adrift', 'aimlessly drifting'),\n", - " ('afloat', 'aimlessly drifting'),\n", - " ('undirected', 'aimlessly drifting'),\n", + " 'clues': [('afloat', 'aimlessly drifting'),\n", " ('aimless', 'aimlessly drifting'),\n", + " ('rudderless', 'aimlessly drifting'),\n", + " ('adrift', 'aimlessly drifting'),\n", " ('planless', 'aimlessly drifting'),\n", - " ('rudderless', 'aimlessly drifting')]},\n", + " ('undirected', 'aimlessly drifting')]},\n", " {'answer': 'direful',\n", " 'hint': 'synonyms for direful',\n", - " 'clues': [('dread', 'causing fear or dread or terror'),\n", - " ('horrendous', 'causing fear or dread or terror'),\n", - " ('fearful', 'causing fear or dread or terror'),\n", - " ('dreaded', 'causing fear or dread or terror'),\n", - " ('horrific', 'causing fear or dread or terror'),\n", - " ('dreadful', 'causing fear or dread or terror'),\n", - " ('awful', 'causing fear or dread or terror'),\n", + " 'clues': [('fearful', 'causing fear or dread or terror'),\n", " ('terrible', 'causing fear or dread or terror'),\n", " ('dire', 'causing fear or dread or terror'),\n", + " ('dread', 'causing fear or dread or terror'),\n", " ('frightening', 'causing fear or dread or terror'),\n", - " ('fearsome', 'causing fear or dread or terror')]},\n", + " ('fearsome', 'causing fear or dread or terror'),\n", + " ('dreaded', 'causing fear or dread or terror'),\n", + " ('dreadful', 'causing fear or dread or terror'),\n", + " ('horrific', 'causing fear or dread or terror'),\n", + " ('awful', 'causing fear or dread or terror'),\n", + " ('horrendous', 'causing fear or dread or terror')]},\n", " {'answer': 'dirty',\n", " 'hint': 'synonyms for dirty',\n", - " 'clues': [('unsporting', 'violating accepted standards or rules'),\n", - " ('lousy', 'vile; despicable'),\n", - " ('cheating', 'violating accepted standards or rules'),\n", - " ('foul', 'violating accepted standards or rules'),\n", - " ('muddy',\n", - " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", - " ('contaminating',\n", - " 'spreading pollution or contamination; especially radioactive contamination'),\n", + " 'clues': [('unsportsmanlike', 'violating accepted standards or rules'),\n", + " ('foul', '(of a manuscript) defaced with changes'),\n", " ('sordid', 'unethical or dishonest'),\n", " ('pestiferous', 'contaminated with infecting organisms; ; - Jane Austen'),\n", - " ('unclean', 'soiled or likely to soil with dirt or grime'),\n", + " ('contaminating',\n", + " 'spreading pollution or contamination; especially radioactive contamination'),\n", " ('dingy',\n", " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", - " ('unsportsmanlike', 'violating accepted standards or rules'),\n", + " ('lousy', 'vile; despicable'),\n", " ('marked-up', '(of a manuscript) defaced with changes'),\n", - " ('soiled', 'soiled or likely to soil with dirt or grime'),\n", - " ('filthy', 'vile; despicable'),\n", - " ('ill-gotten', 'obtained illegally or by improper means'),\n", " ('muddied',\n", - " '(of color) discolored by impurities; not bright and clear; is often used in combination')]},\n", + " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", + " ('unsporting', 'violating accepted standards or rules'),\n", + " ('ill-gotten', 'obtained illegally or by improper means'),\n", + " ('filthy', 'vile; despicable'),\n", + " ('muddy',\n", + " '(of color) discolored by impurities; not bright and clear; is often used in combination'),\n", + " ('unclean', 'soiled or likely to soil with dirt or grime'),\n", + " ('cheating', 'violating accepted standards or rules'),\n", + " ('soiled', 'soiled or likely to soil with dirt or grime')]},\n", " {'answer': 'disappointed',\n", " 'hint': 'synonyms for disappointed',\n", - " 'clues': [('thwarted', 'disappointingly unsuccessful'),\n", - " ('frustrated', 'disappointingly unsuccessful'),\n", + " 'clues': [('foiled', 'disappointingly unsuccessful'),\n", + " ('defeated', 'disappointingly unsuccessful'),\n", " ('discomfited', 'disappointingly unsuccessful'),\n", - " ('foiled', 'disappointingly unsuccessful'),\n", - " ('defeated', 'disappointingly unsuccessful')]},\n", + " ('thwarted', 'disappointingly unsuccessful'),\n", + " ('frustrated', 'disappointingly unsuccessful')]},\n", " {'answer': 'disastrous',\n", " 'hint': 'synonyms for disastrous',\n", " 'clues': [('fateful',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", + " ('black',\n", + " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", " ('fatal',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", " ('calamitous',\n", - " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur'),\n", - " ('black',\n", " '(of events) having extremely unfortunate or dire consequences; bringing ruin; ; ; ; - Charles Darwin; - Douglas MacArthur')]},\n", " {'answer': 'discharged',\n", " 'hint': 'synonyms for discharged',\n", - " 'clues': [('fired', 'having lost your job'),\n", + " 'clues': [('pink-slipped', 'having lost your job'),\n", + " ('fired', 'having lost your job'),\n", " ('dismissed', 'having lost your job'),\n", - " ('pink-slipped', 'having lost your job'),\n", " ('laid-off', 'having lost your job')]},\n", " {'answer': 'discomfited',\n", " 'hint': 'synonyms for discomfited',\n", - " 'clues': [('disappointed', 'disappointingly unsuccessful'),\n", + " 'clues': [('foiled', 'disappointingly unsuccessful'),\n", + " ('disappointed', 'disappointingly unsuccessful'),\n", + " ('defeated', 'disappointingly unsuccessful'),\n", " ('thwarted', 'disappointingly unsuccessful'),\n", - " ('frustrated', 'disappointingly unsuccessful'),\n", - " ('foiled', 'disappointingly unsuccessful'),\n", - " ('defeated', 'disappointingly unsuccessful')]},\n", + " ('frustrated', 'disappointingly unsuccessful')]},\n", " {'answer': 'disconnected',\n", " 'hint': 'synonyms for disconnected',\n", - " 'clues': [('unconnected', 'lacking orderly continuity'),\n", - " ('disordered', 'lacking orderly continuity'),\n", - " ('illogical', 'lacking orderly continuity'),\n", - " ('disunited',\n", + " 'clues': [('disunited',\n", " 'having been divided; having the unity destroyed; -Samuel Lubell; - E.B.White'),\n", + " ('abrupt', 'marked by sudden changes in subject and sharp transitions'),\n", + " ('confused', 'lacking orderly continuity'),\n", + " ('staccato',\n", + " '(music) marked by or composed of disconnected parts or sounds; cut short crisply'),\n", + " ('illogical', 'lacking orderly continuity'),\n", + " ('unconnected', 'lacking orderly continuity'),\n", + " ('disjointed', 'lacking orderly continuity'),\n", + " ('garbled', 'lacking orderly continuity'),\n", " ('fragmented',\n", " 'having been divided; having the unity destroyed; -Samuel Lubell; - E.B.White'),\n", " ('split',\n", " 'having been divided; having the unity destroyed; -Samuel Lubell; - E.B.White'),\n", " ('scattered', 'lacking orderly continuity'),\n", - " ('garbled', 'lacking orderly continuity'),\n", - " ('staccato',\n", - " '(music) marked by or composed of disconnected parts or sounds; cut short crisply'),\n", - " ('disjointed', 'lacking orderly continuity'),\n", - " ('confused', 'lacking orderly continuity'),\n", - " ('abrupt', 'marked by sudden changes in subject and sharp transitions')]},\n", + " ('disordered', 'lacking orderly continuity')]},\n", " {'answer': 'disconsolate',\n", " 'hint': 'synonyms for disconsolate',\n", - " 'clues': [('drab', 'causing dejection'),\n", - " ('dismal', 'causing dejection'),\n", + " 'clues': [('dismal', 'causing dejection'),\n", " ('gloomy', 'causing dejection'),\n", - " ('blue', 'causing dejection'),\n", - " ('grim', 'causing dejection'),\n", - " ('sorry', 'causing dejection'),\n", " ('inconsolable', 'sad beyond comforting; incapable of being consoled'),\n", " ('dreary', 'causing dejection'),\n", + " ('grim', 'causing dejection'),\n", + " ('sorry', 'causing dejection'),\n", " ('dingy', 'causing dejection'),\n", - " ('dark', 'causing dejection')]},\n", + " ('dark', 'causing dejection'),\n", + " ('blue', 'causing dejection'),\n", + " ('drab', 'causing dejection')]},\n", " {'answer': 'discredited',\n", " 'hint': 'synonyms for discredited',\n", " 'clues': [('disgraced', 'suffering shame'),\n", - " ('dishonored', 'suffering shame'),\n", " ('damaged', 'being unjustly brought into disrepute'),\n", + " ('dishonored', 'suffering shame'),\n", " ('shamed', 'suffering shame')]},\n", " {'answer': 'discrepant',\n", " 'hint': 'synonyms for discrepant',\n", " 'clues': [('inconsistent', 'not in agreement'),\n", " ('dissonant', 'not in accord'),\n", - " ('at variance', 'not in accord'),\n", - " ('incompatible', 'not compatible with other facts')]},\n", + " ('incompatible', 'not compatible with other facts'),\n", + " ('at variance', 'not in accord')]},\n", " {'answer': 'discriminating',\n", " 'hint': 'synonyms for discriminating',\n", - " 'clues': [('penetrating',\n", + " 'clues': [('penetrative',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('piercing',\n", + " ('acute',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('incisive',\n", + " ('knifelike',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", " ('sharp',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('penetrative',\n", + " ('penetrating',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('acute',\n", + " ('keen',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('knifelike',\n", + " ('incisive',\n", " 'having or demonstrating ability to recognize or draw fine distinctions'),\n", - " ('keen',\n", + " ('piercing',\n", " 'having or demonstrating ability to recognize or draw fine distinctions')]},\n", " {'answer': 'discriminatory',\n", " 'hint': 'synonyms for discriminatory',\n", - " 'clues': [('discriminative', 'capable of making fine distinctions'),\n", - " ('preferential', 'manifesting partiality'),\n", + " 'clues': [('preferential', 'manifesting partiality'),\n", + " ('discriminative', 'capable of making fine distinctions'),\n", + " ('invidious', 'containing or implying a slight or showing prejudice'),\n", " ('prejudiced',\n", - " 'being biased or having a belief or attitude formed beforehand'),\n", - " ('invidious', 'containing or implying a slight or showing prejudice')]},\n", + " 'being biased or having a belief or attitude formed beforehand')]},\n", " {'answer': 'discursive',\n", " 'hint': 'synonyms for discursive',\n", - " 'clues': [('excursive',\n", - " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n", - " ('dianoetic',\n", + " 'clues': [('dianoetic',\n", " 'proceeding to a conclusion by reason or argument rather than intuition'),\n", " ('digressive',\n", " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n", " ('rambling',\n", + " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects'),\n", + " ('excursive',\n", " '(of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects')]},\n", " {'answer': 'disdainful',\n", " 'hint': 'synonyms for disdainful',\n", - " 'clues': [('insulting', 'expressing extreme contempt'),\n", - " ('contemptuous', 'expressing extreme contempt'),\n", - " ('scornful', 'expressing extreme contempt'),\n", + " 'clues': [('contemptuous', 'expressing extreme contempt'),\n", + " ('haughty',\n", + " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", " ('lordly',\n", " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", - " ('sniffy',\n", + " ('insulting', 'expressing extreme contempt'),\n", + " ('prideful',\n", " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", - " ('supercilious',\n", + " ('swaggering',\n", " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", - " ('haughty',\n", + " ('sniffy',\n", " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", - " ('swaggering',\n", + " ('supercilious',\n", " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", " ('imperious',\n", " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", - " ('prideful',\n", - " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", " ('overbearing',\n", - " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer')]},\n", + " 'having or showing arrogant superiority to and disdain of those one views as unworthy; ; ; ; ; ; ; - W.L.Shirer'),\n", + " ('scornful', 'expressing extreme contempt')]},\n", " {'answer': 'disgraceful',\n", " 'hint': 'synonyms for disgraceful',\n", " 'clues': [('shocking',\n", " 'giving offense to moral sensibilities and injurious to reputation; ; - Thackeray'),\n", - " ('black',\n", - " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", - " ('scandalous',\n", - " 'giving offense to moral sensibilities and injurious to reputation; ; - Thackeray'),\n", " ('ignominious',\n", " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", " ('shameful',\n", - " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", - " ('opprobrious',\n", + " 'giving offense to moral sensibilities and injurious to reputation; ; - Thackeray'),\n", + " ('black',\n", " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", " ('inglorious',\n", + " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson'),\n", + " ('scandalous',\n", + " 'giving offense to moral sensibilities and injurious to reputation; ; - Thackeray'),\n", + " ('opprobrious',\n", " '(used of conduct or character) deserving or bringing disgrace or shame; - Rachel Carson')]},\n", " {'answer': 'disgusted',\n", " 'hint': 'synonyms for disgusted',\n", - " 'clues': [('sick', 'having a strong distaste from surfeit'),\n", + " 'clues': [('tired of', 'having a strong distaste from surfeit'),\n", + " ('sick', 'having a strong distaste from surfeit'),\n", " ('fed up', 'having a strong distaste from surfeit'),\n", - " ('tired of', 'having a strong distaste from surfeit'),\n", " ('sick of', 'having a strong distaste from surfeit')]},\n", " {'answer': 'disgustful',\n", " 'hint': 'synonyms for disgustful',\n", " 'clues': [('foul', 'highly offensive; arousing aversion or disgust'),\n", - " ('repellant', 'highly offensive; arousing aversion or disgust'),\n", + " ('distasteful', 'highly offensive; arousing aversion or disgust'),\n", + " ('loathly', 'highly offensive; arousing aversion or disgust'),\n", + " ('revolting', 'highly offensive; arousing aversion or disgust'),\n", + " ('wicked', 'highly offensive; arousing aversion or disgust'),\n", " ('disgusting', 'highly offensive; arousing aversion or disgust'),\n", " ('skanky', 'highly offensive; arousing aversion or disgust'),\n", - " ('repelling', 'highly offensive; arousing aversion or disgust'),\n", - " ('wicked', 'highly offensive; arousing aversion or disgust'),\n", - " ('distasteful', 'highly offensive; arousing aversion or disgust'),\n", - " ('loathsome', 'highly offensive; arousing aversion or disgust'),\n", " ('yucky', 'highly offensive; arousing aversion or disgust'),\n", - " ('revolting', 'highly offensive; arousing aversion or disgust'),\n", - " ('loathly', 'highly offensive; arousing aversion or disgust')]},\n", + " ('repellant', 'highly offensive; arousing aversion or disgust'),\n", + " ('repelling', 'highly offensive; arousing aversion or disgust'),\n", + " ('loathsome', 'highly offensive; arousing aversion or disgust')]},\n", " {'answer': 'disgusting',\n", " 'hint': 'synonyms for disgusting',\n", " 'clues': [('foul', 'highly offensive; arousing aversion or disgust'),\n", - " ('repellant', 'highly offensive; arousing aversion or disgust'),\n", - " ('disgustful', 'highly offensive; arousing aversion or disgust'),\n", - " ('skanky', 'highly offensive; arousing aversion or disgust'),\n", - " ('repelling', 'highly offensive; arousing aversion or disgust'),\n", - " ('wicked', 'highly offensive; arousing aversion or disgust'),\n", " ('distasteful', 'highly offensive; arousing aversion or disgust'),\n", - " ('loathsome', 'highly offensive; arousing aversion or disgust'),\n", - " ('yucky', 'highly offensive; arousing aversion or disgust'),\n", + " ('loathly', 'highly offensive; arousing aversion or disgust'),\n", " ('revolting', 'highly offensive; arousing aversion or disgust'),\n", - " ('loathly', 'highly offensive; arousing aversion or disgust')]},\n", + " ('wicked', 'highly offensive; arousing aversion or disgust'),\n", + " ('skanky', 'highly offensive; arousing aversion or disgust'),\n", + " ('yucky', 'highly offensive; arousing aversion or disgust'),\n", + " ('disgustful', 'highly offensive; arousing aversion or disgust'),\n", + " ('repellant', 'highly offensive; arousing aversion or disgust'),\n", + " ('repelling', 'highly offensive; arousing aversion or disgust'),\n", + " ('loathsome', 'highly offensive; arousing aversion or disgust')]},\n", " {'answer': 'disheveled',\n", " 'hint': 'synonyms for disheveled',\n", - " 'clues': [('tousled',\n", + " 'clues': [('rumpled',\n", " 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", - " ('rumpled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", + " ('tousled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", " ('dishevelled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", " ('frowzled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers')]},\n", " {'answer': 'dishevelled',\n", " 'hint': 'synonyms for dishevelled',\n", - " 'clues': [('tousled',\n", + " 'clues': [('rumpled',\n", " 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", - " ('rumpled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", " ('disheveled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", + " ('tousled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers'),\n", " ('frowzled', 'in disarray; extremely disorderly; ; ; ; ; - Al Spiers')]},\n", " {'answer': 'dishonest',\n", " 'hint': 'synonyms for dishonest',\n", - " 'clues': [('purchasable', 'capable of being corrupted'),\n", - " ('corruptible', 'capable of being corrupted'),\n", - " ('venal', 'capable of being corrupted'),\n", - " ('bribable', 'capable of being corrupted'),\n", + " 'clues': [('bribable', 'capable of being corrupted'),\n", + " ('purchasable', 'capable of being corrupted'),\n", " ('dishonorable',\n", - " 'deceptive or fraudulent; disposed to cheat or defraud or deceive')]},\n", + " 'deceptive or fraudulent; disposed to cheat or defraud or deceive'),\n", + " ('venal', 'capable of being corrupted'),\n", + " ('corruptible', 'capable of being corrupted')]},\n", " {'answer': 'disjointed',\n", " 'hint': 'synonyms for disjointed',\n", - " 'clues': [('unconnected', 'lacking orderly continuity'),\n", - " ('disordered', 'lacking orderly continuity'),\n", - " ('illogical', 'lacking orderly continuity'),\n", - " ('separated', 'separated at the joint'),\n", + " 'clues': [('confused', 'lacking orderly continuity'),\n", " ('disconnected', 'lacking orderly continuity'),\n", - " ('scattered', 'lacking orderly continuity'),\n", + " ('illogical', 'lacking orderly continuity'),\n", + " ('unconnected', 'lacking orderly continuity'),\n", " ('garbled', 'lacking orderly continuity'),\n", - " ('dislocated', 'separated at the joint'),\n", - " ('confused', 'lacking orderly continuity')]},\n", + " ('scattered', 'lacking orderly continuity'),\n", + " ('separated', 'separated at the joint'),\n", + " ('disordered', 'lacking orderly continuity'),\n", + " ('dislocated', 'separated at the joint')]},\n", " {'answer': 'dismal',\n", " 'hint': 'synonyms for dismal',\n", - " 'clues': [('drab', 'causing dejection'),\n", + " 'clues': [('disconsolate', 'causing dejection'),\n", " ('gloomy', 'causing dejection'),\n", - " ('blue', 'causing dejection'),\n", + " ('dreary', 'causing dejection'),\n", " ('grim', 'causing dejection'),\n", " ('sorry', 'causing dejection'),\n", - " ('dreary', 'causing dejection'),\n", - " ('disconsolate', 'causing dejection'),\n", " ('dingy', 'causing dejection'),\n", - " ('dark', 'causing dejection')]},\n", + " ('dark', 'causing dejection'),\n", + " ('blue', 'causing dejection'),\n", + " ('drab', 'causing dejection')]},\n", " {'answer': 'dismissed',\n", " 'hint': 'synonyms for dismissed',\n", " 'clues': [('fired', 'having lost your job'),\n", - " ('pink-slipped', 'having lost your job'),\n", " ('discharged', 'having lost your job'),\n", + " ('pink-slipped', 'having lost your job'),\n", " ('laid-off', 'having lost your job')]},\n", " {'answer': 'disordered',\n", " 'hint': 'synonyms for disordered',\n", " 'clues': [('confused', 'lacking orderly continuity'),\n", - " ('unconnected', 'lacking orderly continuity'),\n", " ('upset', 'thrown into a state of disarray or confusion'),\n", - " ('illogical', 'lacking orderly continuity'),\n", - " ('unordered', 'not arranged in order'),\n", " ('disconnected', 'lacking orderly continuity'),\n", - " ('scattered', 'lacking orderly continuity'),\n", - " ('garbled', 'lacking orderly continuity'),\n", + " ('illogical', 'lacking orderly continuity'),\n", + " ('unconnected', 'lacking orderly continuity'),\n", " ('disjointed', 'lacking orderly continuity'),\n", - " ('broken', 'thrown into a state of disarray or confusion')]},\n", + " ('garbled', 'lacking orderly continuity'),\n", + " ('unordered', 'not arranged in order'),\n", + " ('broken', 'thrown into a state of disarray or confusion'),\n", + " ('scattered', 'lacking orderly continuity')]},\n", " {'answer': 'disorderly',\n", " 'hint': 'synonyms for disorderly',\n", - " 'clues': [('topsy-turvy', 'in utter disorder'),\n", - " ('hugger-mugger', 'in utter disorder'),\n", + " 'clues': [('chaotic',\n", + " 'completely unordered and unpredictable and confusing'),\n", " ('jumbled', 'in utter disorder'),\n", " ('higgledy-piggledy', 'in utter disorder'),\n", - " ('chaotic', 'completely unordered and unpredictable and confusing')]},\n", + " ('topsy-turvy', 'in utter disorder'),\n", + " ('hugger-mugger', 'in utter disorder')]},\n", " {'answer': 'disoriented',\n", " 'hint': 'synonyms for disoriented',\n", " 'clues': [('lost',\n", " 'having lost your bearings; confused as to time or place or personal identity'),\n", - " ('anomic', 'socially disoriented'),\n", " ('confused',\n", " 'having lost your bearings; confused as to time or place or personal identity'),\n", + " ('anomic', 'socially disoriented'),\n", " ('alienated', 'socially disoriented')]},\n", " {'answer': 'dispirited',\n", " 'hint': 'synonyms for dispirited',\n", - " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n", - " ('listless', 'marked by low spirits; showing no enthusiasm'),\n", + " 'clues': [('low', 'filled with melancholy and despondency'),\n", " ('downhearted', 'filled with melancholy and despondency'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", + " ('gloomy', 'filled with melancholy and despondency'),\n", + " ('grim', 'filled with melancholy and despondency'),\n", + " ('down', 'filled with melancholy and despondency'),\n", + " ('listless', 'marked by low spirits; showing no enthusiasm'),\n", " ('down in the mouth', 'filled with melancholy and despondency'),\n", " ('depressed', 'filled with melancholy and despondency'),\n", " ('downcast', 'filled with melancholy and despondency'),\n", - " ('blue', 'filled with melancholy and despondency'),\n", - " ('low', 'filled with melancholy and despondency'),\n", - " ('gloomy', 'filled with melancholy and despondency'),\n", - " ('grim', 'filled with melancholy and despondency'),\n", - " ('down', 'filled with melancholy and despondency')]},\n", + " ('blue', 'filled with melancholy and despondency')]},\n", " {'answer': 'disposed',\n", " 'hint': 'synonyms for disposed',\n", - " 'clues': [('apt', \"(usually followed by `to') naturally disposed toward\"),\n", - " ('given', \"(usually followed by `to') naturally disposed toward\"),\n", - " ('fain', 'having made preparations'),\n", + " 'clues': [('fain', 'having made preparations'),\n", + " ('inclined', 'having made preparations'),\n", " ('minded', \"(usually followed by `to') naturally disposed toward\"),\n", " ('tending', \"(usually followed by `to') naturally disposed toward\"),\n", - " ('inclined', 'having made preparations'),\n", - " ('prepared', 'having made preparations')]},\n", + " ('prepared', 'having made preparations'),\n", + " ('apt', \"(usually followed by `to') naturally disposed toward\"),\n", + " ('given', \"(usually followed by `to') naturally disposed toward\")]},\n", " {'answer': 'disputatious',\n", " 'hint': 'synonyms for disputatious',\n", - " 'clues': [('combative',\n", - " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('disputative',\n", + " 'clues': [('disputative',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('contentious',\n", + " ('combative',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", " ('litigious',\n", + " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", + " ('contentious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n", " {'answer': 'disputative',\n", " 'hint': 'synonyms for disputative',\n", - " 'clues': [('combative',\n", + " 'clues': [('disputatious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('contentious',\n", + " ('combative',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", " ('litigious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits'),\n", - " ('disputatious',\n", + " ('contentious',\n", " 'inclined or showing an inclination to dispute or disagree, even to engage in law suits')]},\n", " {'answer': 'disquieted',\n", " 'hint': 'synonyms for disquieted',\n", - " 'clues': [('distressed',\n", + " 'clues': [('upset',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", " ('disturbed',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('worried',\n", + " ('distressed',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('upset',\n", + " ('worried',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief')]},\n", " {'answer': 'disruptive',\n", " 'hint': 'synonyms for disruptive',\n", - " 'clues': [('riotous',\n", + " 'clues': [('troubled',\n", " 'characterized by unrest or disorder or insubordination'),\n", - " ('tumultuous', 'characterized by unrest or disorder or insubordination'),\n", + " ('riotous', 'characterized by unrest or disorder or insubordination'),\n", " ('turbulent', 'characterized by unrest or disorder or insubordination'),\n", - " ('troubled', 'characterized by unrest or disorder or insubordination')]},\n", + " ('tumultuous',\n", + " 'characterized by unrest or disorder or insubordination')]},\n", " {'answer': 'dissipated',\n", " 'hint': 'synonyms for dissipated',\n", - " 'clues': [('betting',\n", + " 'clues': [('card-playing',\n", " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n", - " ('libertine', 'unrestrained by convention or morality'),\n", + " ('riotous', 'unrestrained by convention or morality'),\n", " ('sporting',\n", " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n", - " ('riotous', 'unrestrained by convention or morality'),\n", - " ('dissolute', 'unrestrained by convention or morality'),\n", " ('degenerate', 'unrestrained by convention or morality'),\n", - " ('degraded', 'unrestrained by convention or morality'),\n", - " ('profligate', 'unrestrained by convention or morality'),\n", - " ('card-playing',\n", - " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n", " ('fast', 'unrestrained by convention or morality'),\n", - " ('debauched', 'unrestrained by convention or morality')]},\n", + " ('debauched', 'unrestrained by convention or morality'),\n", + " ('libertine', 'unrestrained by convention or morality'),\n", + " ('dissolute', 'unrestrained by convention or morality'),\n", + " ('betting',\n", + " 'preoccupied with the pursuit of pleasure and especially games of chance'),\n", + " ('degraded', 'unrestrained by convention or morality'),\n", + " ('profligate', 'unrestrained by convention or morality')]},\n", " {'answer': 'dissolute',\n", " 'hint': 'synonyms for dissolute',\n", - " 'clues': [('libertine', 'unrestrained by convention or morality'),\n", - " ('riotous', 'unrestrained by convention or morality'),\n", + " 'clues': [('riotous', 'unrestrained by convention or morality'),\n", " ('degenerate', 'unrestrained by convention or morality'),\n", - " ('degraded', 'unrestrained by convention or morality'),\n", - " ('profligate', 'unrestrained by convention or morality'),\n", " ('dissipated', 'unrestrained by convention or morality'),\n", " ('fast', 'unrestrained by convention or morality'),\n", - " ('debauched', 'unrestrained by convention or morality')]},\n", + " ('debauched', 'unrestrained by convention or morality'),\n", + " ('libertine', 'unrestrained by convention or morality'),\n", + " ('degraded', 'unrestrained by convention or morality'),\n", + " ('profligate', 'unrestrained by convention or morality')]},\n", " {'answer': 'dissonant',\n", " 'hint': 'synonyms for dissonant',\n", - " 'clues': [('inharmonic', 'lacking in harmony'),\n", - " ('discordant', 'lacking in harmony'),\n", - " ('discrepant', 'not in accord'),\n", + " 'clues': [('discordant', 'lacking in harmony'),\n", + " ('inharmonic', 'lacking in harmony'),\n", " ('disharmonious', 'lacking in harmony'),\n", " ('at variance', 'not in accord'),\n", " ('unresolved',\n", - " 'characterized by musical dissonance; harmonically unresolved')]},\n", + " 'characterized by musical dissonance; harmonically unresolved'),\n", + " ('discrepant', 'not in accord')]},\n", " {'answer': 'distant',\n", " 'hint': 'synonyms for distant',\n", - " 'clues': [('removed', 'separate or apart in time'),\n", - " ('remote', 'far apart in relevance or relationship or kinship'),\n", - " ('aloof', 'remote in manner'),\n", - " ('upstage', 'remote in manner')]},\n", + " 'clues': [('remote', 'separate or apart in time'),\n", + " ('removed', 'separate or apart in time'),\n", + " ('upstage', 'remote in manner'),\n", + " ('aloof', 'remote in manner')]},\n", " {'answer': 'distasteful',\n", " 'hint': 'synonyms for distasteful',\n", " 'clues': [('foul', 'highly offensive; arousing aversion or disgust'),\n", - " ('repellant', 'highly offensive; arousing aversion or disgust'),\n", - " ('disgustful', 'highly offensive; arousing aversion or disgust'),\n", " ('unsavory', 'not pleasing in odor or taste'),\n", + " ('loathly', 'highly offensive; arousing aversion or disgust'),\n", + " ('revolting', 'highly offensive; arousing aversion or disgust'),\n", + " ('wicked', 'highly offensive; arousing aversion or disgust'),\n", + " ('repellent', 'highly offensive; arousing aversion or disgust'),\n", " ('disgusting', 'highly offensive; arousing aversion or disgust'),\n", " ('skanky', 'highly offensive; arousing aversion or disgust'),\n", + " ('disgustful', 'highly offensive; arousing aversion or disgust'),\n", " ('repelling', 'highly offensive; arousing aversion or disgust'),\n", - " ('wicked', 'highly offensive; arousing aversion or disgust'),\n", " ('loathsome', 'highly offensive; arousing aversion or disgust'),\n", - " ('yucky', 'highly offensive; arousing aversion or disgust'),\n", - " ('revolting', 'highly offensive; arousing aversion or disgust'),\n", - " ('loathly', 'highly offensive; arousing aversion or disgust')]},\n", + " ('yucky', 'highly offensive; arousing aversion or disgust')]},\n", " {'answer': 'distinct',\n", " 'hint': 'synonyms for distinct',\n", - " 'clues': [('trenchant', 'clearly or sharply defined to the mind'),\n", + " 'clues': [('clear-cut', 'clearly or sharply defined to the mind'),\n", + " ('trenchant', 'clearly or sharply defined to the mind'),\n", + " ('discrete', 'constituting a separate entity or part'),\n", " ('distinguishable',\n", " \"(often followed by `from') not alike; different in nature or quality\"),\n", - " ('discrete', 'constituting a separate entity or part'),\n", - " ('clear-cut', 'clearly or sharply defined to the mind'),\n", " ('decided', 'recognizable; marked')]},\n", " {'answer': 'distorted',\n", " 'hint': 'synonyms for distorted',\n", - " 'clues': [('misshapen', 'so badly formed or out of shape as to be ugly'),\n", + " 'clues': [('malformed', 'so badly formed or out of shape as to be ugly'),\n", " ('perverted', 'having an intended meaning altered or misrepresented'),\n", - " ('deformed', 'so badly formed or out of shape as to be ugly'),\n", " ('misrepresented',\n", " 'having an intended meaning altered or misrepresented'),\n", + " ('deformed', 'so badly formed or out of shape as to be ugly'),\n", + " ('misshapen', 'so badly formed or out of shape as to be ugly'),\n", " ('twisted', 'having an intended meaning altered or misrepresented'),\n", - " ('ill-shapen', 'so badly formed or out of shape as to be ugly'),\n", - " ('malformed', 'so badly formed or out of shape as to be ugly')]},\n", + " ('ill-shapen', 'so badly formed or out of shape as to be ugly')]},\n", " {'answer': 'distressed',\n", " 'hint': 'synonyms for distressed',\n", - " 'clues': [('dysphoric', 'generalized feeling of distress'),\n", - " ('worried',\n", - " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('upset',\n", - " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", + " 'clues': [('hard-pressed',\n", + " 'facing or experiencing financial trouble or difficulty'),\n", + " ('stressed', 'suffering severe physical strain or distress'),\n", " ('unhappy', 'generalized feeling of distress'),\n", + " ('hard put', 'facing or experiencing financial trouble or difficulty'),\n", " ('in a bad way',\n", " 'facing or experiencing financial trouble or difficulty'),\n", + " ('disquieted',\n", + " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", " ('disturbed',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('disquieted',\n", + " ('worried',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('hard-pressed',\n", - " 'facing or experiencing financial trouble or difficulty'),\n", - " ('hard put', 'facing or experiencing financial trouble or difficulty'),\n", - " ('stressed', 'suffering severe physical strain or distress')]},\n", + " ('upset',\n", + " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", + " ('dysphoric', 'generalized feeling of distress')]},\n", " {'answer': 'distressful',\n", " 'hint': 'synonyms for distressful',\n", - " 'clues': [('perturbing', 'causing distress or worry or anxiety'),\n", + " 'clues': [('worrisome', 'causing distress or worry or anxiety'),\n", " ('distressing', 'causing distress or worry or anxiety'),\n", - " ('worrisome', 'causing distress or worry or anxiety'),\n", " ('troubling', 'causing distress or worry or anxiety'),\n", " ('disturbing', 'causing distress or worry or anxiety'),\n", - " ('worrying', 'causing distress or worry or anxiety')]},\n", + " ('worrying', 'causing distress or worry or anxiety'),\n", + " ('perturbing', 'causing distress or worry or anxiety')]},\n", " {'answer': 'distressing',\n", " 'hint': 'synonyms for distressing',\n", - " 'clues': [('deplorable', 'bad; unfortunate'),\n", - " ('sad', 'bad; unfortunate'),\n", - " ('lamentable', 'bad; unfortunate'),\n", - " ('troubling', 'causing distress or worry or anxiety'),\n", + " 'clues': [('sad', 'bad; unfortunate'),\n", " ('disturbing', 'causing distress or worry or anxiety'),\n", - " ('distressful', 'causing distress or worry or anxiety'),\n", " ('pitiful', 'bad; unfortunate'),\n", " ('perturbing', 'causing distress or worry or anxiety'),\n", + " ('deplorable', 'bad; unfortunate'),\n", + " ('distressful', 'causing distress or worry or anxiety'),\n", " ('sorry', 'bad; unfortunate'),\n", " ('worrisome', 'causing distress or worry or anxiety'),\n", + " ('lamentable', 'bad; unfortunate'),\n", + " ('troubling', 'causing distress or worry or anxiety'),\n", " ('worrying', 'causing distress or worry or anxiety')]},\n", " {'answer': 'disturbed',\n", " 'hint': 'synonyms for disturbed',\n", - " 'clues': [('unhinged', 'affected with madness or insanity'),\n", - " ('brainsick', 'affected with madness or insanity'),\n", - " ('worried',\n", - " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('mad', 'affected with madness or insanity'),\n", - " ('unbalanced', 'affected with madness or insanity'),\n", + " 'clues': [('unbalanced', 'affected with madness or insanity'),\n", + " ('sick', 'affected with madness or insanity'),\n", " ('maladjusted',\n", " 'emotionally unstable and having difficulty coping with personal relationships'),\n", " ('crazy', 'affected with madness or insanity'),\n", + " ('unhinged', 'affected with madness or insanity'),\n", + " ('brainsick', 'affected with madness or insanity'),\n", " ('disquieted',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", " ('demented', 'affected with madness or insanity'),\n", - " ('distressed',\n", + " ('worried',\n", " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", - " ('sick', 'affected with madness or insanity'),\n", " ('upset',\n", - " 'afflicted with or marked by anxious uneasiness or trouble or grief')]},\n", + " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", + " ('distressed',\n", + " 'afflicted with or marked by anxious uneasiness or trouble or grief'),\n", + " ('mad', 'affected with madness or insanity')]},\n", " {'answer': 'disturbing',\n", " 'hint': 'synonyms for disturbing',\n", " 'clues': [('distressful', 'causing distress or worry or anxiety'),\n", - " ('perturbing', 'causing distress or worry or anxiety'),\n", - " ('distressing', 'causing distress or worry or anxiety'),\n", " ('worrisome', 'causing distress or worry or anxiety'),\n", + " ('distressing', 'causing distress or worry or anxiety'),\n", " ('troubling', 'causing distress or worry or anxiety'),\n", - " ('worrying', 'causing distress or worry or anxiety')]},\n", + " ('worrying', 'causing distress or worry or anxiety'),\n", + " ('perturbing', 'causing distress or worry or anxiety')]},\n", " {'answer': 'divided',\n", " 'hint': 'synonyms for divided',\n", - " 'clues': [('divided up',\n", + " 'clues': [('shared',\n", " 'distributed in portions (often equal) on the basis of a plan or purpose'),\n", " ('shared out',\n", " 'distributed in portions (often equal) on the basis of a plan or purpose'),\n", - " ('shared',\n", + " ('divided up',\n", " 'distributed in portions (often equal) on the basis of a plan or purpose'),\n", " ('dual-lane',\n", " 'having a median strip or island between lanes of traffic moving in opposite directions')]},\n", @@ -44289,1522 +44334,1523 @@ " 'hint': 'synonyms for divinatory',\n", " 'clues': [('vatic',\n", " 'resembling or characteristic of a prophet or prophecy'),\n", + " ('supposed', 'based primarily on surmise rather than adequate evidence'),\n", " ('conjectural',\n", " 'based primarily on surmise rather than adequate evidence'),\n", - " ('hypothetic',\n", + " ('mantic', 'resembling or characteristic of a prophet or prophecy'),\n", + " ('supposititious',\n", " 'based primarily on surmise rather than adequate evidence'),\n", " ('suppositional',\n", " 'based primarily on surmise rather than adequate evidence'),\n", - " ('sibylline', 'resembling or characteristic of a prophet or prophecy'),\n", - " ('supposititious',\n", - " 'based primarily on surmise rather than adequate evidence'),\n", - " ('mantic', 'resembling or characteristic of a prophet or prophecy'),\n", " ('vatical', 'resembling or characteristic of a prophet or prophecy'),\n", - " ('supposed', 'based primarily on surmise rather than adequate evidence'),\n", + " ('hypothetical',\n", + " 'based primarily on surmise rather than adequate evidence'),\n", + " ('sibylline', 'resembling or characteristic of a prophet or prophecy'),\n", " ('sibyllic', 'resembling or characteristic of a prophet or prophecy')]},\n", " {'answer': 'divine',\n", " 'hint': 'synonyms for divine',\n", " 'clues': [('godlike',\n", - " 'appropriate to or befitting a god; ; ; -R.H.Roveref'),\n", + " 'being or having the nature of a god; -J.G.Frazier; ; ; -J.G.Saxe'),\n", + " ('godly', 'emanating from God; ; ; -Saturday Review'),\n", " ('elysian',\n", " 'being of such surpassing excellence as to suggest inspiration by the gods'),\n", " ('inspired',\n", " 'being of such surpassing excellence as to suggest inspiration by the gods'),\n", - " ('providential', 'resulting from divine providence'),\n", - " ('godly', 'emanating from God; ; ; -Saturday Review')]},\n", + " ('providential', 'resulting from divine providence')]},\n", " {'answer': 'dizzy',\n", " 'hint': 'synonyms for dizzy',\n", - " 'clues': [('woozy',\n", - " 'having or causing a whirling sensation; liable to falling'),\n", - " ('lightheaded', 'lacking seriousness; given to frivolity'),\n", - " ('giddy', 'having or causing a whirling sensation; liable to falling'),\n", - " ('airheaded', 'lacking seriousness; given to frivolity'),\n", + " 'clues': [('light-headed', 'lacking seriousness; given to frivolity'),\n", " ('featherbrained', 'lacking seriousness; given to frivolity'),\n", + " ('airheaded', 'lacking seriousness; given to frivolity'),\n", + " ('giddy', 'having or causing a whirling sensation; liable to falling'),\n", + " ('silly', 'lacking seriousness; given to frivolity'),\n", " ('empty-headed', 'lacking seriousness; given to frivolity'),\n", + " ('woozy', 'having or causing a whirling sensation; liable to falling'),\n", " ('vertiginous',\n", - " 'having or causing a whirling sensation; liable to falling'),\n", - " ('silly', 'lacking seriousness; given to frivolity')]},\n", + " 'having or causing a whirling sensation; liable to falling')]},\n", " {'answer': 'doable',\n", " 'hint': 'synonyms for doable',\n", - " 'clues': [('realizable',\n", + " 'clues': [('accomplishable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", - " ('achievable',\n", + " ('realizable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", - " ('accomplishable',\n", + " ('achievable',\n", " 'capable of existing or taking place or proving true; possible to do'),\n", " ('manageable',\n", " 'capable of existing or taking place or proving true; possible to do')]},\n", " {'answer': 'dodgy',\n", " 'hint': 'synonyms for dodgy',\n", - " 'clues': [('tricky', 'marked by skill in deception'),\n", - " ('knavish', 'marked by skill in deception'),\n", - " ('dicey',\n", + " 'clues': [('dicey',\n", " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n", + " ('cunning', 'marked by skill in deception'),\n", " ('sly', 'marked by skill in deception'),\n", - " ('slick', 'marked by skill in deception'),\n", - " ('wily', 'marked by skill in deception'),\n", + " ('tricksy', 'marked by skill in deception'),\n", " ('chancy',\n", " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n", - " ('foxy', 'marked by skill in deception'),\n", " ('chanceful',\n", " 'of uncertain outcome; especially fraught with risk; - New Yorker'),\n", - " ('guileful', 'marked by skill in deception'),\n", - " ('cunning', 'marked by skill in deception'),\n", - " ('crafty', 'marked by skill in deception')]},\n", + " ('crafty', 'marked by skill in deception'),\n", + " ('foxy', 'marked by skill in deception'),\n", + " ('slick', 'marked by skill in deception'),\n", + " ('knavish', 'marked by skill in deception'),\n", + " ('wily', 'marked by skill in deception'),\n", + " ('guileful', 'marked by skill in deception')]},\n", " {'answer': 'dog-tired',\n", " 'hint': 'synonyms for dog-tired',\n", - " 'clues': [('fatigued',\n", + " 'clues': [('worn out',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n", - " ('fagged',\n", + " ('played out',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n", - " ('worn out',\n", + " ('washed-out',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n", " ('spent',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n", " ('exhausted',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n", - " ('washed-out',\n", + " ('fatigued',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted'),\n", - " ('played out',\n", + " ('fagged',\n", " 'drained of energy or effectiveness; extremely tired; completely exhausted')]},\n", " {'answer': 'dogged',\n", " 'hint': 'synonyms for dogged',\n", - " 'clues': [('tenacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('dour', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", + " 'clues': [('persistent', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", + " ('tenacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", + " ('unyielding', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", " ('pertinacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('persistent', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('unyielding', 'stubbornly unyielding; ; ; ; - T.S.Eliot')]},\n", + " ('dour', 'stubbornly unyielding; ; ; ; - T.S.Eliot')]},\n", " {'answer': 'doled_out',\n", " 'hint': 'synonyms for doled out',\n", " 'clues': [('dealt out', 'given out in portions'),\n", - " ('parceled out', 'given out in portions'),\n", + " ('apportioned', 'given out in portions'),\n", " ('meted out', 'given out in portions'),\n", - " ('apportioned', 'given out in portions')]},\n", + " ('parceled out', 'given out in portions')]},\n", " {'answer': 'dolled_up',\n", " 'hint': 'synonyms for dolled up',\n", - " 'clues': [('dressed to the nines', 'dressed in fancy or formal clothing'),\n", - " ('spruced up', 'dressed in fancy or formal clothing'),\n", + " 'clues': [('spiffed up', 'dressed in fancy or formal clothing'),\n", " ('dressed-up', 'dressed in fancy or formal clothing'),\n", + " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", + " ('spruced up', 'dressed in fancy or formal clothing'),\n", " ('togged up', 'dressed in fancy or formal clothing'),\n", " ('dressed', 'dressed in fancy or formal clothing'),\n", - " ('dressed to kill', 'dressed in fancy or formal clothing'),\n", - " ('spiffed up', 'dressed in fancy or formal clothing')]},\n", + " ('dressed to kill', 'dressed in fancy or formal clothing')]},\n", " {'answer': 'dolorous',\n", " 'hint': 'synonyms for dolorous',\n", - " 'clues': [('dolourous', 'showing sorrow'),\n", + " 'clues': [('weeping', 'showing sorrow'),\n", + " ('dolourous', 'showing sorrow'),\n", " ('tearful', 'showing sorrow'),\n", - " ('lachrymose', 'showing sorrow'),\n", - " ('weeping', 'showing sorrow')]},\n", + " ('lachrymose', 'showing sorrow')]},\n", " {'answer': 'dolourous',\n", " 'hint': 'synonyms for dolourous',\n", - " 'clues': [('tearful', 'showing sorrow'),\n", - " ('lachrymose', 'showing sorrow'),\n", + " 'clues': [('weeping', 'showing sorrow'),\n", " ('dolorous', 'showing sorrow'),\n", - " ('weeping', 'showing sorrow')]},\n", + " ('tearful', 'showing sorrow'),\n", + " ('lachrymose', 'showing sorrow')]},\n", " {'answer': 'dominant',\n", " 'hint': 'synonyms for dominant',\n", - " 'clues': [('rife', 'most frequent or common'),\n", - " ('prevailing', 'most frequent or common'),\n", + " 'clues': [('prevailing', 'most frequent or common'),\n", " ('prevalent', 'most frequent or common'),\n", - " ('predominant', 'most frequent or common')]},\n", + " ('predominant', 'most frequent or common'),\n", + " ('rife', 'most frequent or common')]},\n", " {'answer': 'dominating',\n", " 'hint': 'synonyms for dominating',\n", - " 'clues': [('ascendant', 'most powerful or important or influential'),\n", - " ('overlooking', 'used of a height or viewpoint'),\n", - " ('commanding', 'used of a height or viewpoint'),\n", - " ('bossy',\n", - " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('autocratic',\n", - " 'offensively self-assured or given to exercising usually unwarranted power'),\n", - " ('high-and-mighty',\n", + " 'clues': [('high-and-mighty',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", + " ('ascendent', 'most powerful or important or influential'),\n", + " ('commanding', 'used of a height or viewpoint'),\n", + " ('overlooking', 'used of a height or viewpoint'),\n", " ('magisterial',\n", " 'offensively self-assured or given to exercising usually unwarranted power'),\n", " ('peremptory',\n", + " 'offensively self-assured or given to exercising usually unwarranted power'),\n", + " ('autocratic',\n", + " 'offensively self-assured or given to exercising usually unwarranted power'),\n", + " ('bossy',\n", " 'offensively self-assured or given to exercising usually unwarranted power')]},\n", " {'answer': 'done_for',\n", " 'hint': 'synonyms for done for',\n", - " 'clues': [('gone', 'destroyed or killed'),\n", - " ('undone', 'doomed to extinction'),\n", + " 'clues': [('sunk', 'doomed to extinction'),\n", + " ('kaput', 'destroyed or killed'),\n", + " ('gone', 'destroyed or killed'),\n", " ('ruined', 'doomed to extinction'),\n", - " ('washed-up', 'doomed to extinction'),\n", - " ('sunk', 'doomed to extinction'),\n", - " ('kaput', 'destroyed or killed')]},\n", + " ('undone', 'doomed to extinction'),\n", + " ('washed-up', 'doomed to extinction')]},\n", " {'answer': 'doomed',\n", " 'hint': 'synonyms for doomed',\n", - " 'clues': [('ill-omened',\n", + " 'clues': [('unlucky',\n", " 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n", - " ('unsaved', 'in danger of the eternal punishment of Hell'),\n", - " ('fated', \"(usually followed by `to') determined by tragic fate\"),\n", - " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n", - " ('cursed', 'in danger of the eternal punishment of Hell'),\n", - " ('unlucky', 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n", - " ('ill-fated', 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n", " ('damned', 'in danger of the eternal punishment of Hell'),\n", + " ('ill-fated', 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n", + " ('ill-omened',\n", + " 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n", + " ('unredeemed', 'in danger of the eternal punishment of Hell'),\n", + " ('unsaved', 'in danger of the eternal punishment of Hell'),\n", " ('ill-starred',\n", - " 'marked by or promising bad fortune; ; ; ; - W.H.Prescott')]},\n", + " 'marked by or promising bad fortune; ; ; ; - W.H.Prescott'),\n", + " ('fated', \"(usually followed by `to') determined by tragic fate\"),\n", + " ('cursed', 'in danger of the eternal punishment of Hell')]},\n", " {'answer': 'dopey',\n", " 'hint': 'synonyms for dopey',\n", " 'clues': [('goosy', 'having or revealing stupidity'),\n", - " ('foolish', 'having or revealing stupidity'),\n", - " ('anserine', 'having or revealing stupidity'),\n", " ('dopy', 'having or revealing stupidity'),\n", - " ('gooselike', 'having or revealing stupidity'),\n", - " ('jerky', 'having or revealing stupidity')]},\n", + " ('jerky', 'having or revealing stupidity'),\n", + " ('anserine', 'having or revealing stupidity'),\n", + " ('foolish', 'having or revealing stupidity'),\n", + " ('gooselike', 'having or revealing stupidity')]},\n", " {'answer': 'dopy',\n", " 'hint': 'synonyms for dopy',\n", " 'clues': [('goosy', 'having or revealing stupidity'),\n", - " ('foolish', 'having or revealing stupidity'),\n", - " ('anserine', 'having or revealing stupidity'),\n", " ('dopey', 'having or revealing stupidity'),\n", - " ('gooselike', 'having or revealing stupidity'),\n", - " ('jerky', 'having or revealing stupidity')]},\n", + " ('jerky', 'having or revealing stupidity'),\n", + " ('anserine', 'having or revealing stupidity'),\n", + " ('foolish', 'having or revealing stupidity'),\n", + " ('gooselike', 'having or revealing stupidity')]},\n", " {'answer': 'dormant',\n", " 'hint': 'synonyms for dormant',\n", - " 'clues': [('inactive', '(of e.g. volcanos) not erupting and not extinct'),\n", - " ('abeyant', 'inactive but capable of becoming active'),\n", + " 'clues': [('abeyant', 'inactive but capable of becoming active'),\n", " ('sleeping', 'lying with head on paws as if sleeping'),\n", " ('torpid', 'in a condition of biological rest or suspended animation'),\n", " ('hibernating',\n", - " 'in a condition of biological rest or suspended animation')]},\n", + " 'in a condition of biological rest or suspended animation'),\n", + " ('inactive', '(of e.g. volcanos) not erupting and not extinct')]},\n", " {'answer': 'dotted',\n", " 'hint': 'synonyms for dotted',\n", - " 'clues': [('dashed', 'having gaps or spaces'),\n", - " ('specked', 'having a pattern of dots'),\n", - " ('flecked', 'having a pattern of dots'),\n", + " 'clues': [('flecked', 'having a pattern of dots'),\n", + " ('dashed', 'having gaps or spaces'),\n", + " ('speckled', 'having a pattern of dots'),\n", " ('stippled', 'having a pattern of dots')]},\n", " {'answer': 'dotty',\n", " 'hint': 'synonyms for dotty',\n", - " 'clues': [('wild', 'intensely enthusiastic about or preoccupied with'),\n", - " ('crackers', 'informal or slang terms for mentally irregular'),\n", - " ('nuts', 'informal or slang terms for mentally irregular'),\n", - " ('loony', 'informal or slang terms for mentally irregular'),\n", - " ('crazy', 'intensely enthusiastic about or preoccupied with'),\n", - " ('batty', 'informal or slang terms for mentally irregular'),\n", - " ('cracked', 'informal or slang terms for mentally irregular'),\n", - " ('balmy', 'informal or slang terms for mentally irregular'),\n", - " ('bats', 'informal or slang terms for mentally irregular'),\n", - " ('barmy', 'informal or slang terms for mentally irregular'),\n", - " ('wacky', 'informal or slang terms for mentally irregular'),\n", - " ('gaga', 'intensely enthusiastic about or preoccupied with'),\n", - " ('daft', 'informal or slang terms for mentally irregular'),\n", + " 'clues': [('round the bend',\n", + " 'informal or slang terms for mentally irregular'),\n", " ('loco', 'informal or slang terms for mentally irregular'),\n", + " ('balmy', 'informal or slang terms for mentally irregular'),\n", " ('bonkers', 'informal or slang terms for mentally irregular'),\n", - " ('nutty', 'informal or slang terms for mentally irregular'),\n", - " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('loony', 'informal or slang terms for mentally irregular'),\n", + " ('barmy', 'informal or slang terms for mentally irregular'),\n", " ('buggy', 'informal or slang terms for mentally irregular'),\n", + " ('nutty', 'informal or slang terms for mentally irregular'),\n", " ('kookie', 'informal or slang terms for mentally irregular'),\n", + " ('gaga', 'intensely enthusiastic about or preoccupied with'),\n", + " ('daft', 'informal or slang terms for mentally irregular'),\n", " ('fruity', 'informal or slang terms for mentally irregular'),\n", - " ('round the bend', 'informal or slang terms for mentally irregular'),\n", + " ('haywire', 'informal or slang terms for mentally irregular'),\n", + " ('bats', 'informal or slang terms for mentally irregular'),\n", + " ('nuts', 'informal or slang terms for mentally irregular'),\n", + " ('crackers', 'informal or slang terms for mentally irregular'),\n", " ('kooky', 'informal or slang terms for mentally irregular'),\n", - " ('loopy', 'informal or slang terms for mentally irregular')]},\n", + " ('crazy', 'intensely enthusiastic about or preoccupied with'),\n", + " ('wild', 'intensely enthusiastic about or preoccupied with'),\n", + " ('loopy', 'informal or slang terms for mentally irregular'),\n", + " ('batty', 'informal or slang terms for mentally irregular'),\n", + " ('whacky', 'informal or slang terms for mentally irregular'),\n", + " ('cracked', 'informal or slang terms for mentally irregular')]},\n", " {'answer': 'double',\n", " 'hint': 'synonyms for double',\n", - " 'clues': [('doubled', 'twice as great or many'),\n", - " ('threefold',\n", + " 'clues': [('duple',\n", + " 'consisting of or involving two parts or components usually in pairs'),\n", + " ('two-fold',\n", " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", - " ('twofold',\n", + " ('threefold',\n", " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", - " ('bivalent',\n", - " 'used of homologous chromosomes associated in pairs in synapsis'),\n", " ('dual',\n", " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", + " ('forked', 'having two meanings with intent to deceive'),\n", " ('treble',\n", " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", - " ('duple',\n", - " 'consisting of or involving two parts or components usually in pairs'),\n", - " ('forked', 'having two meanings with intent to deceive')]},\n", + " ('doubled', 'twice as great or many'),\n", + " ('bivalent',\n", + " 'used of homologous chromosomes associated in pairs in synapsis')]},\n", " {'answer': 'double-dealing',\n", " 'hint': 'synonyms for double-dealing',\n", - " 'clues': [('ambidextrous',\n", + " 'clues': [('double-tongued',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-tongued',\n", - " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('deceitful',\n", + " ('ambidextrous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('double-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", + " ('deceitful',\n", + " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('duplicitous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('two-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n", " {'answer': 'double-dyed',\n", " 'hint': 'synonyms for double-dyed',\n", - " 'clues': [('sodding',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('pure',\n", + " 'clues': [('pure',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('stark',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('utter',\n", + " ('unadulterated',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('consummate',\n", + " ('arrant',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('complete',\n", + " ('thoroughgoing',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('perfect',\n", + " ('utter',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('everlasting',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('staring',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('thoroughgoing',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('arrant',\n", + " ('stark',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('gross',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('unadulterated',\n", + " ('consummate',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('sodding',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('complete',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('perfect',\n", " 'without qualification; used informally as (often pejorative) intensifiers')]},\n", " {'answer': 'double-faced',\n", " 'hint': 'synonyms for double-faced',\n", - " 'clues': [('two-faced',\n", + " 'clues': [('double-tongued',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('ambidextrous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-tongued',\n", + " ('double-dealing',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('deceitful',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('duplicitous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-dealing',\n", + " ('two-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n", " {'answer': 'double-tongued',\n", " 'hint': 'synonyms for double-tongued',\n", - " 'clues': [('two-faced',\n", - " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('ambidextrous',\n", + " 'clues': [('ambidextrous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('deceitful',\n", + " ('double-dealing',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('double-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", + " ('deceitful',\n", + " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('duplicitous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-dealing',\n", + " ('two-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n", " {'answer': 'doubtful',\n", " 'hint': 'synonyms for doubtful',\n", - " 'clues': [('tentative', 'unsettled in mind or opinion'),\n", - " ('dubious', 'open to doubt or suspicion; ; ; ; - Karen Horney'),\n", - " ('in question', 'open to doubt or suspicion; ; ; ; - Karen Horney'),\n", - " ('dubitable', 'open to doubt or suspicion; ; ; ; - Karen Horney')]},\n", + " 'clues': [('dubious', 'open to doubt or suspicion; ; ; ; - Karen Horney'),\n", + " ('dubitable', 'open to doubt or suspicion; ; ; ; - Karen Horney'),\n", + " ('tentative', 'unsettled in mind or opinion'),\n", + " ('in question', 'open to doubt or suspicion; ; ; ; - Karen Horney')]},\n", " {'answer': 'doughnut-shaped',\n", " 'hint': 'synonyms for doughnut-shaped',\n", - " 'clues': [('annulated', 'shaped like a ring'),\n", + " 'clues': [('annulate', 'shaped like a ring'),\n", " ('ring-shaped', 'shaped like a ring'),\n", + " ('ringed', 'shaped like a ring'),\n", " ('annular', 'shaped like a ring'),\n", - " ('circinate', 'shaped like a ring'),\n", - " ('ringed', 'shaped like a ring')]},\n", + " ('circinate', 'shaped like a ring')]},\n", " {'answer': 'dour',\n", " 'hint': 'synonyms for dour',\n", " 'clues': [('persistent', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('unyielding', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('forbidding',\n", - " 'harshly uninviting or formidable in manner or appearance; ; ; ; - J.M.Barrie'),\n", - " ('tenacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('moody', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('morose', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('dogged', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", " ('grim',\n", " 'harshly uninviting or formidable in manner or appearance; ; ; ; - J.M.Barrie'),\n", - " ('sour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('pertinacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", - " ('dogged', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", + " ('morose', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('tenacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", + " ('dark', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", " ('sullen', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('pertinacious', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", " ('glowering', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('saturnine', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", " ('glum', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", - " ('dark', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven')]},\n", + " ('unyielding', 'stubbornly unyielding; ; ; ; - T.S.Eliot'),\n", + " ('forbidding',\n", + " 'harshly uninviting or formidable in manner or appearance; ; ; ; - J.M.Barrie'),\n", + " ('sour', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('saturnine', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven'),\n", + " ('moody', 'showing a brooding ill humor; ; ; ; ; ; - Bruce Bliven')]},\n", " {'answer': 'down',\n", " 'hint': 'synonyms for down',\n", - " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n", + " 'clues': [('low', 'filled with melancholy and despondency'),\n", " ('downhearted', 'filled with melancholy and despondency'),\n", - " ('down in the mouth', 'filled with melancholy and despondency'),\n", - " ('depressed', 'lower than previously'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", " ('down pat', 'understood perfectly'),\n", + " ('gloomy', 'filled with melancholy and despondency'),\n", " ('downward', 'extending or moving from a higher to a lower place'),\n", - " ('downcast', 'filled with melancholy and despondency'),\n", - " ('blue', 'filled with melancholy and despondency'),\n", - " ('low', 'filled with melancholy and despondency'),\n", " ('dispirited', 'filled with melancholy and despondency'),\n", - " ('gloomy', 'filled with melancholy and despondency'),\n", " ('grim', 'filled with melancholy and despondency'),\n", - " ('mastered', 'understood perfectly')]},\n", + " ('mastered', 'understood perfectly'),\n", + " ('down in the mouth', 'filled with melancholy and despondency'),\n", + " ('depressed', 'lower than previously'),\n", + " ('downcast', 'filled with melancholy and despondency'),\n", + " ('blue', 'filled with melancholy and despondency')]},\n", " {'answer': 'down_in_the_mouth',\n", " 'hint': 'synonyms for down in the mouth',\n", - " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n", + " 'clues': [('low', 'filled with melancholy and despondency'),\n", " ('downhearted', 'filled with melancholy and despondency'),\n", - " ('depressed', 'filled with melancholy and despondency'),\n", - " ('downcast', 'filled with melancholy and despondency'),\n", - " ('grim', 'filled with melancholy and despondency'),\n", - " ('low', 'filled with melancholy and despondency'),\n", - " ('dispirited', 'filled with melancholy and despondency'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", " ('gloomy', 'filled with melancholy and despondency'),\n", - " ('blue', 'filled with melancholy and despondency'),\n", - " ('down', 'filled with melancholy and despondency')]},\n", + " ('dispirited', 'filled with melancholy and despondency'),\n", + " ('grim', 'filled with melancholy and despondency'),\n", + " ('down', 'filled with melancholy and despondency'),\n", + " ('depressed', 'filled with melancholy and despondency'),\n", + " ('downcast', 'filled with melancholy and despondency'),\n", + " ('blue', 'filled with melancholy and despondency')]},\n", " {'answer': 'downcast',\n", " 'hint': 'synonyms for downcast',\n", - " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n", + " 'clues': [('low', 'filled with melancholy and despondency'),\n", " ('downhearted', 'filled with melancholy and despondency'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", + " ('gloomy', 'filled with melancholy and despondency'),\n", + " ('dispirited', 'filled with melancholy and despondency'),\n", + " ('grim', 'filled with melancholy and despondency'),\n", + " ('down', 'filled with melancholy and despondency'),\n", " ('down in the mouth', 'filled with melancholy and despondency'),\n", " ('depressed', 'filled with melancholy and despondency'),\n", - " ('grim', 'filled with melancholy and despondency'),\n", - " ('low', 'filled with melancholy and despondency'),\n", - " ('dispirited', 'filled with melancholy and despondency'),\n", - " ('gloomy', 'filled with melancholy and despondency'),\n", - " ('blue', 'filled with melancholy and despondency'),\n", - " ('down', 'filled with melancholy and despondency')]},\n", + " ('blue', 'filled with melancholy and despondency')]},\n", " {'answer': 'downhearted',\n", " 'hint': 'synonyms for downhearted',\n", - " 'clues': [('low-spirited', 'filled with melancholy and despondency'),\n", + " 'clues': [('low', 'filled with melancholy and despondency'),\n", + " ('low-spirited', 'filled with melancholy and despondency'),\n", + " ('gloomy', 'filled with melancholy and despondency'),\n", + " ('dispirited', 'filled with melancholy and despondency'),\n", + " ('grim', 'filled with melancholy and despondency'),\n", + " ('down', 'filled with melancholy and despondency'),\n", " ('down in the mouth', 'filled with melancholy and despondency'),\n", " ('depressed', 'filled with melancholy and despondency'),\n", " ('downcast', 'filled with melancholy and despondency'),\n", - " ('grim', 'filled with melancholy and despondency'),\n", - " ('low', 'filled with melancholy and despondency'),\n", - " ('dispirited', 'filled with melancholy and despondency'),\n", - " ('gloomy', 'filled with melancholy and despondency'),\n", - " ('blue', 'filled with melancholy and despondency'),\n", - " ('down', 'filled with melancholy and despondency')]},\n", + " ('blue', 'filled with melancholy and despondency')]},\n", " {'answer': 'downright',\n", " 'hint': 'synonyms for downright',\n", - " 'clues': [('out-and-out',\n", + " 'clues': [('sheer',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", - " ('right-down',\n", + " ('absolute',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", - " ('sheer',\n", + " ('out-and-out',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", " ('rank',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers'),\n", - " ('absolute',\n", + " ('right-down',\n", " 'complete and without restriction or qualification; sometimes used informally as intensifiers')]},\n", " {'answer': 'downy',\n", " 'hint': 'synonyms for downy',\n", - " 'clues': [('fluffy', 'like down or as soft as down'),\n", + " 'clues': [('puberulent', 'covered with fine soft hairs or down'),\n", " ('flossy', 'like down or as soft as down'),\n", + " ('sericeous', 'covered with fine soft hairs or down'),\n", + " ('fluffy', 'like down or as soft as down'),\n", " ('pubescent', 'covered with fine soft hairs or down'),\n", - " ('puberulent', 'covered with fine soft hairs or down'),\n", - " ('downlike', 'like down or as soft as down'),\n", - " ('sericeous', 'covered with fine soft hairs or down')]},\n", + " ('downlike', 'like down or as soft as down')]},\n", " {'answer': 'drab',\n", " 'hint': 'synonyms for drab',\n", - " 'clues': [('sober', 'lacking brightness or color; dull'),\n", + " 'clues': [('disconsolate', 'causing dejection'),\n", + " ('somber', 'lacking brightness or color; dull'),\n", + " ('dreary', 'lacking in liveliness or charm or surprise'),\n", " ('dismal', 'causing dejection'),\n", " ('gloomy', 'causing dejection'),\n", - " ('olive-drab', 'of a light brownish green color'),\n", - " ('blue', 'causing dejection'),\n", " ('grim', 'causing dejection'),\n", + " ('blue', 'causing dejection'),\n", " ('sorry', 'causing dejection'),\n", - " ('dark', 'causing dejection'),\n", - " ('sombre', 'lacking brightness or color; dull'),\n", - " ('dreary', 'causing dejection'),\n", " ('dingy', 'causing dejection'),\n", - " ('disconsolate', 'causing dejection')]},\n", + " ('olive-drab', 'of a light brownish green color'),\n", + " ('dark', 'causing dejection'),\n", + " ('sombre', 'lacking brightness or color; dull')]},\n", " {'answer': 'draped',\n", " 'hint': 'synonyms for draped',\n", - " 'clues': [('clothed',\n", + " 'clues': [('cloaked',\n", " 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('mantled', 'covered with or as if with clothes or a wrap or cloak'),\n", + " ('clothed', 'covered with or as if with clothes or a wrap or cloak'),\n", " ('wrapped', 'covered with or as if with clothes or a wrap or cloak'),\n", - " ('cloaked', 'covered with or as if with clothes or a wrap or cloak')]},\n", + " ('mantled', 'covered with or as if with clothes or a wrap or cloak')]},\n", " {'answer': 'drawn',\n", " 'hint': 'synonyms for drawn',\n", - " 'clues': [('haggard',\n", + " 'clues': [('careworn',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n", - " ('careworn',\n", + " ('worn',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n", - " ('raddled',\n", + " ('haggard',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens'),\n", - " ('worn',\n", + " ('raddled',\n", " 'showing the wearing effects of overwork or care or suffering; ; ; ; - Charles Dickens')]},\n", " {'answer': 'drawn-out',\n", " 'hint': 'synonyms for drawn-out',\n", - " 'clues': [('extended',\n", + " 'clues': [('protracted',\n", " 'relatively long in duration; tediously protracted'),\n", - " ('lengthy', 'relatively long in duration; tediously protracted'),\n", + " ('extended', 'relatively long in duration; tediously protracted'),\n", " ('prolonged', 'relatively long in duration; tediously protracted'),\n", - " ('protracted', 'relatively long in duration; tediously protracted')]},\n", + " ('lengthy', 'relatively long in duration; tediously protracted')]},\n", " {'answer': 'dread',\n", " 'hint': 'synonyms for dread',\n", - " 'clues': [('horrendous', 'causing fear or dread or terror'),\n", - " ('fearful', 'causing fear or dread or terror'),\n", + " 'clues': [('fearful', 'causing fear or dread or terror'),\n", + " ('terrible', 'causing fear or dread or terror'),\n", + " ('dire', 'causing fear or dread or terror'),\n", " ('direful', 'causing fear or dread or terror'),\n", + " ('frightening', 'causing fear or dread or terror'),\n", + " ('fearsome', 'causing fear or dread or terror'),\n", " ('dreaded', 'causing fear or dread or terror'),\n", - " ('horrific', 'causing fear or dread or terror'),\n", " ('dreadful', 'causing fear or dread or terror'),\n", + " ('horrific', 'causing fear or dread or terror'),\n", " ('awful', 'causing fear or dread or terror'),\n", - " ('terrible', 'causing fear or dread or terror'),\n", - " ('dire', 'causing fear or dread or terror'),\n", - " ('frightening', 'causing fear or dread or terror'),\n", - " ('fearsome', 'causing fear or dread or terror')]},\n", + " ('horrendous', 'causing fear or dread or terror')]},\n", " {'answer': 'dreaded',\n", " 'hint': 'synonyms for dreaded',\n", - " 'clues': [('dread', 'causing fear or dread or terror'),\n", - " ('horrendous', 'causing fear or dread or terror'),\n", - " ('fearful', 'causing fear or dread or terror'),\n", - " ('direful', 'causing fear or dread or terror'),\n", - " ('horrific', 'causing fear or dread or terror'),\n", - " ('dreadful', 'causing fear or dread or terror'),\n", - " ('awful', 'causing fear or dread or terror'),\n", + " 'clues': [('fearful', 'causing fear or dread or terror'),\n", " ('terrible', 'causing fear or dread or terror'),\n", " ('dire', 'causing fear or dread or terror'),\n", + " ('direful', 'causing fear or dread or terror'),\n", + " ('dread', 'causing fear or dread or terror'),\n", " ('frightening', 'causing fear or dread or terror'),\n", - " ('fearsome', 'causing fear or dread or terror')]},\n", + " ('fearsome', 'causing fear or dread or terror'),\n", + " ('dreadful', 'causing fear or dread or terror'),\n", + " ('horrific', 'causing fear or dread or terror'),\n", + " ('awful', 'causing fear or dread or terror'),\n", + " ('horrendous', 'causing fear or dread or terror')]},\n", " {'answer': 'dreadful',\n", " 'hint': 'synonyms for dreadful',\n", - " 'clues': [('dread', 'causing fear or dread or terror'),\n", - " ('horrendous', 'causing fear or dread or terror'),\n", - " ('fearful', 'causing fear or dread or terror'),\n", - " ('atrocious', 'exceptionally bad or displeasing'),\n", - " ('painful', 'exceptionally bad or displeasing'),\n", - " ('direful', 'causing fear or dread or terror'),\n", - " ('dreaded', 'causing fear or dread or terror'),\n", - " ('horrific', 'causing fear or dread or terror'),\n", + " 'clues': [('fearful', 'causing fear or dread or terror'),\n", + " ('terrible', 'causing fear or dread or terror'),\n", + " ('dire', 'causing fear or dread or terror'),\n", " ('unspeakable', 'exceptionally bad or displeasing'),\n", + " ('direful', 'causing fear or dread or terror'),\n", " ('awful', 'exceptionally bad or displeasing'),\n", - " ('terrible', 'exceptionally bad or displeasing'),\n", " ('abominable', 'exceptionally bad or displeasing'),\n", - " ('dire', 'causing fear or dread or terror'),\n", + " ('dread', 'causing fear or dread or terror'),\n", " ('frightening', 'causing fear or dread or terror'),\n", - " ('fearsome', 'causing fear or dread or terror')]},\n", + " ('fearsome', 'causing fear or dread or terror'),\n", + " ('dreaded', 'causing fear or dread or terror'),\n", + " ('painful', 'exceptionally bad or displeasing'),\n", + " ('horrific', 'causing fear or dread or terror'),\n", + " ('atrocious', 'exceptionally bad or displeasing'),\n", + " ('horrendous', 'causing fear or dread or terror')]},\n", " {'answer': 'dreamy',\n", " 'hint': 'synonyms for dreamy',\n", - " 'clues': [('moony', 'dreamy in mood or nature'),\n", - " ('lackadaisical', 'lacking spirit or liveliness'),\n", + " 'clues': [('lackadaisical', 'lacking spirit or liveliness'),\n", " ('woolgathering', 'dreamy in mood or nature'),\n", + " ('languorous', 'lacking spirit or liveliness'),\n", " ('languid', 'lacking spirit or liveliness'),\n", - " ('languorous', 'lacking spirit or liveliness')]},\n", + " ('moony', 'dreamy in mood or nature')]},\n", " {'answer': 'drear',\n", " 'hint': 'synonyms for drear',\n", - " 'clues': [('drab', 'causing dejection'),\n", + " 'clues': [('disconsolate', 'causing dejection'),\n", " ('dismal', 'causing dejection'),\n", " ('gloomy', 'causing dejection'),\n", - " ('blue', 'causing dejection'),\n", + " ('dreary', 'causing dejection'),\n", " ('grim', 'causing dejection'),\n", " ('sorry', 'causing dejection'),\n", - " ('dreary', 'causing dejection'),\n", - " ('disconsolate', 'causing dejection'),\n", " ('dingy', 'causing dejection'),\n", - " ('dark', 'causing dejection')]},\n", + " ('dark', 'causing dejection'),\n", + " ('blue', 'causing dejection'),\n", + " ('drab', 'causing dejection')]},\n", " {'answer': 'dreary',\n", " 'hint': 'synonyms for dreary',\n", - " 'clues': [('drab', 'causing dejection'),\n", + " 'clues': [('disconsolate', 'causing dejection'),\n", " ('dismal', 'causing dejection'),\n", " ('gloomy', 'causing dejection'),\n", - " ('blue', 'causing dejection'),\n", " ('grim', 'causing dejection'),\n", - " ('disconsolate', 'causing dejection'),\n", " ('sorry', 'causing dejection'),\n", - " ('dark', 'causing dejection'),\n", + " ('dingy', 'causing dejection'),\n", " ('drear', 'causing dejection'),\n", - " ('dingy', 'causing dejection')]},\n", + " ('dark', 'causing dejection'),\n", + " ('blue', 'causing dejection'),\n", + " ('drab', 'lacking in liveliness or charm or surprise')]},\n", " {'answer': 'dressed',\n", " 'hint': 'synonyms for dressed',\n", - " 'clues': [('polished', '(of lumber or stone) to trim and smooth'),\n", + " 'clues': [('garmented',\n", + " 'dressed or clothed especially in fine attire; often used in combination'),\n", " ('dolled up', 'dressed in fancy or formal clothing'),\n", - " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", " ('spruced up', 'dressed in fancy or formal clothing'),\n", - " ('garmented',\n", - " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('togged up', 'dressed in fancy or formal clothing'),\n", - " ('garbed',\n", + " ('attired',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('robed',\n", + " ('habilimented',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", + " ('polished', '(of lumber or stone) to trim and smooth'),\n", " ('appareled',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('attired',\n", + " ('dressed to kill', 'dressed in fancy or formal clothing'),\n", + " ('dressed-up', 'dressed in fancy or formal clothing'),\n", + " ('garbed',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('habilimented',\n", + " ('robed',\n", " 'dressed or clothed especially in fine attire; often used in combination'),\n", - " ('dressed-up', 'dressed in fancy or formal clothing'),\n", - " ('dressed to kill', 'dressed in fancy or formal clothing'),\n", + " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", + " ('togged up', 'dressed in fancy or formal clothing'),\n", " ('spiffed up', 'dressed in fancy or formal clothing')]},\n", " {'answer': 'dressed-up',\n", " 'hint': 'synonyms for dressed-up',\n", - " 'clues': [('dolled up', 'dressed in fancy or formal clothing'),\n", - " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", + " 'clues': [('spiffed up', 'dressed in fancy or formal clothing'),\n", + " ('dolled up', 'dressed in fancy or formal clothing'),\n", " ('spruced up', 'dressed in fancy or formal clothing'),\n", " ('togged up', 'dressed in fancy or formal clothing'),\n", + " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", " ('dressed', 'dressed in fancy or formal clothing'),\n", - " ('dressed to kill', 'dressed in fancy or formal clothing'),\n", - " ('spiffed up', 'dressed in fancy or formal clothing')]},\n", + " ('dressed to kill', 'dressed in fancy or formal clothing')]},\n", " {'answer': 'dressed_to_kill',\n", " 'hint': 'synonyms for dressed to kill',\n", - " 'clues': [('dolled up', 'dressed in fancy or formal clothing'),\n", - " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", + " 'clues': [('dressed-up', 'dressed in fancy or formal clothing'),\n", + " ('dolled up', 'dressed in fancy or formal clothing'),\n", " ('spruced up', 'dressed in fancy or formal clothing'),\n", - " ('dressed-up', 'dressed in fancy or formal clothing'),\n", " ('togged up', 'dressed in fancy or formal clothing'),\n", + " ('dressed to the nines', 'dressed in fancy or formal clothing'),\n", " ('dressed', 'dressed in fancy or formal clothing'),\n", " ('spiffed up', 'dressed in fancy or formal clothing')]},\n", " {'answer': 'dressed_to_the_nines',\n", " 'hint': 'synonyms for dressed to the nines',\n", - " 'clues': [('dolled up', 'dressed in fancy or formal clothing'),\n", - " ('spruced up', 'dressed in fancy or formal clothing'),\n", + " 'clues': [('spiffed up', 'dressed in fancy or formal clothing'),\n", " ('dressed-up', 'dressed in fancy or formal clothing'),\n", + " ('dolled up', 'dressed in fancy or formal clothing'),\n", + " ('spruced up', 'dressed in fancy or formal clothing'),\n", " ('togged up', 'dressed in fancy or formal clothing'),\n", " ('dressed', 'dressed in fancy or formal clothing'),\n", - " ('dressed to kill', 'dressed in fancy or formal clothing'),\n", - " ('spiffed up', 'dressed in fancy or formal clothing')]},\n", + " ('dressed to kill', 'dressed in fancy or formal clothing')]},\n", " {'answer': 'dried-up',\n", " 'hint': 'synonyms for dried-up',\n", - " 'clues': [('sear',\n", - " '(used especially of vegetation) having lost all moisture'),\n", - " ('sere', '(used especially of vegetation) having lost all moisture'),\n", - " ('shrivelled',\n", + " 'clues': [('shrivelled',\n", " '(used especially of vegetation) having lost all moisture'),\n", - " ('withered',\n", - " '(used especially of vegetation) having lost all moisture')]},\n", + " ('withered', '(used especially of vegetation) having lost all moisture'),\n", + " ('sear', '(used especially of vegetation) having lost all moisture'),\n", + " ('sere', '(used especially of vegetation) having lost all moisture')]},\n", " {'answer': 'drifting',\n", " 'hint': 'synonyms for drifting',\n", - " 'clues': [('floating',\n", + " 'clues': [('vagrant',\n", " 'continually changing especially as from one abode or occupation to another'),\n", - " ('vagabond',\n", + " ('floating',\n", " 'continually changing especially as from one abode or occupation to another'),\n", - " ('vagrant',\n", + " ('vagabond',\n", " 'continually changing especially as from one abode or occupation to another'),\n", " ('aimless',\n", " 'continually changing especially as from one abode or occupation to another')]},\n", " {'answer': 'drippy',\n", " 'hint': 'synonyms for drippy',\n", - " 'clues': [('soupy', 'effusively or insincerely emotional'),\n", + " 'clues': [('mawkish', 'effusively or insincerely emotional'),\n", " ('slushy', 'effusively or insincerely emotional'),\n", - " ('bathetic', 'effusively or insincerely emotional'),\n", - " ('mawkish', 'effusively or insincerely emotional'),\n", - " ('mushy', 'effusively or insincerely emotional'),\n", - " ('sentimental', 'effusively or insincerely emotional'),\n", + " ('kitschy', 'effusively or insincerely emotional'),\n", " ('hokey', 'effusively or insincerely emotional'),\n", - " ('soppy', 'effusively or insincerely emotional'),\n", - " ('schmalzy', 'effusively or insincerely emotional'),\n", + " ('schmaltzy', 'effusively or insincerely emotional'),\n", " ('maudlin', 'effusively or insincerely emotional'),\n", + " ('sentimental', 'effusively or insincerely emotional'),\n", + " ('bathetic', 'effusively or insincerely emotional'),\n", + " ('soupy', 'effusively or insincerely emotional'),\n", " ('drizzly', 'wet with light rain'),\n", - " ('kitschy', 'effusively or insincerely emotional')]},\n", + " ('mushy', 'effusively or insincerely emotional'),\n", + " ('soppy', 'effusively or insincerely emotional')]},\n", " {'answer': 'driven',\n", " 'hint': 'synonyms for driven',\n", - " 'clues': [('goaded', 'compelled forcibly by an outside agency'),\n", - " ('compulsive', 'strongly motivated to succeed'),\n", + " 'clues': [('compulsive', 'strongly motivated to succeed'),\n", + " ('goaded', 'compelled forcibly by an outside agency'),\n", " ('impelled', 'urged or forced to action through moral pressure'),\n", " ('determined', 'strongly motivated to succeed')]},\n", " {'answer': 'drooping',\n", " 'hint': 'synonyms for drooping',\n", - " 'clues': [('droopy', 'hanging down (as from exhaustion or weakness)'),\n", - " ('pendulous', 'having branches or flower heads that bend downward'),\n", - " ('weeping', 'having branches or flower heads that bend downward'),\n", - " ('nodding', 'having branches or flower heads that bend downward'),\n", + " 'clues': [('nodding',\n", + " 'having branches or flower heads that bend downward'),\n", " ('sagging', 'hanging down (as from exhaustion or weakness)'),\n", + " ('pendulous', 'having branches or flower heads that bend downward'),\n", + " ('flagging', 'weak from exhaustion'),\n", " ('cernuous', 'having branches or flower heads that bend downward'),\n", - " ('flagging', 'weak from exhaustion')]},\n", + " ('weeping', 'having branches or flower heads that bend downward'),\n", + " ('droopy', 'hanging down (as from exhaustion or weakness)')]},\n", " {'answer': 'drowsy',\n", " 'hint': 'synonyms for drowsy',\n", - " 'clues': [('yawning', 'showing lack of attention or boredom'),\n", + " 'clues': [('dozy', 'half asleep'),\n", " ('oscitant', 'showing lack of attention or boredom'),\n", " ('drowsing', 'half asleep'),\n", - " ('dozy', 'half asleep')]},\n", + " ('yawning', 'showing lack of attention or boredom')]},\n", " {'answer': 'dry',\n", " 'hint': 'synonyms for dry',\n", - " 'clues': [('ironical', 'humorously sarcastic or mocking'),\n", - " ('wry', 'humorously sarcastic or mocking'),\n", + " 'clues': [('wry', 'humorously sarcastic or mocking'),\n", + " ('teetotal', 'practicing complete abstinence from alcoholic beverages'),\n", + " ('ironic', 'humorously sarcastic or mocking'),\n", " ('juiceless',\n", - " 'lacking interest or stimulation; dull and lifeless; ; ; - John Mason Brown'),\n", - " ('teetotal', 'practicing complete abstinence from alcoholic beverages')]},\n", + " 'lacking interest or stimulation; dull and lifeless; ; ; - John Mason Brown')]},\n", " {'answer': 'dual',\n", " 'hint': 'synonyms for dual',\n", - " 'clues': [('double',\n", + " 'clues': [('duple',\n", " 'consisting of or involving two parts or components usually in pairs'),\n", + " ('two-fold',\n", + " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", " ('threefold',\n", " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", - " ('twofold',\n", + " ('double',\n", " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", " ('treble',\n", - " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison'),\n", - " ('duple',\n", - " 'consisting of or involving two parts or components usually in pairs')]},\n", + " 'having more than one decidedly dissimilar aspects or qualities; ; - R.W.Emerson; -Frederick Harrison')]},\n", " {'answer': 'ductile',\n", " 'hint': 'synonyms for ductile',\n", - " 'clues': [('malleable', 'capable of being shaped or bent or drawn out'),\n", - " ('tractile', 'capable of being shaped or bent or drawn out'),\n", - " ('tensile', 'capable of being shaped or bent or drawn out'),\n", + " 'clues': [('pliant', 'capable of being shaped or bent or drawn out'),\n", " ('pliable', 'capable of being shaped or bent or drawn out'),\n", - " ('pliant', 'capable of being shaped or bent or drawn out')]},\n", + " ('malleable', 'easily influenced'),\n", + " ('tractile', 'capable of being shaped or bent or drawn out'),\n", + " ('tensile', 'capable of being shaped or bent or drawn out')]},\n", " {'answer': 'dulcet',\n", " 'hint': 'synonyms for dulcet',\n", - " 'clues': [('mellisonant', 'pleasing to the ear'),\n", - " ('sweet', 'pleasing to the ear'),\n", - " ('honeyed', 'pleasing to the ear'),\n", - " ('mellifluous', 'pleasing to the ear')]},\n", + " 'clues': [('sweet', 'pleasing to the ear'),\n", + " ('mellifluous', 'pleasing to the ear'),\n", + " ('mellisonant', 'pleasing to the ear'),\n", + " ('honeyed', 'pleasing to the ear')]},\n", " {'answer': 'dull',\n", " 'hint': 'synonyms for dull',\n", - " 'clues': [('dim',\n", - " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('softened', 'being or made softer or less loud or clear'),\n", - " ('slow',\n", + " 'clues': [('irksome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('tiresome',\n", + " ('muted', 'being or made softer or less loud or clear'),\n", + " ('deadening',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", " ('obtuse',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", " ('leaden', 'darkened with overcast'),\n", - " ('sluggish', '(of business) not active or brisk'),\n", - " ('ho-hum',\n", - " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('deadening',\n", - " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", - " ('thudding',\n", - " 'not clear and resonant; sounding as if striking with or against something relatively soft'),\n", - " ('irksome',\n", - " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", + " ('muffled', 'being or made softer or less loud or clear'),\n", " ('dumb',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('muted', 'being or made softer or less loud or clear'),\n", - " ('muffled', 'being or made softer or less loud or clear'),\n", - " ('wearisome',\n", + " ('softened', 'being or made softer or less loud or clear'),\n", + " ('tedious',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", " ('dense',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('tedious',\n", + " ('thudding',\n", + " 'not clear and resonant; sounding as if striking with or against something relatively soft'),\n", + " ('slow',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", " ('boring',\n", + " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", + " ('ho-hum',\n", + " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", + " ('sluggish', '(of business) not active or brisk'),\n", + " ('dim',\n", + " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", + " ('tiresome',\n", + " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain'),\n", + " ('wearisome',\n", " 'so lacking in interest as to cause mental weariness; ; ; ; ; ; - Edmund Burke; ; - Mark Twain')]},\n", " {'answer': 'dumb',\n", " 'hint': 'synonyms for dumb',\n", - " 'clues': [('dim',\n", + " 'clues': [('dull',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", " ('dense',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('mute', 'unable to speak because of hereditary deafness'),\n", - " ('speechless', 'temporarily incapable of speaking'),\n", - " ('dull',\n", + " ('silent', 'unable to speak because of hereditary deafness'),\n", + " ('obtuse',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('slow',\n", + " ('dim',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('obtuse',\n", + " ('speechless', 'temporarily incapable of speaking'),\n", + " ('slow',\n", " 'slow to learn or understand; lacking intellectual acuity; ; ; - Thackeray'),\n", - " ('silent', 'unable to speak because of hereditary deafness')]},\n", + " ('mute', 'unable to speak because of hereditary deafness')]},\n", " {'answer': 'dumbfounded',\n", " 'hint': 'synonyms for dumbfounded',\n", - " 'clues': [('dumbstricken',\n", + " 'clues': [('flabbergasted',\n", " 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbstruck', 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbstricken', 'as if struck dumb with astonishment and surprise'),\n", " ('dumfounded', 'as if struck dumb with astonishment and surprise'),\n", - " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n", " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n", - " ('flabbergasted', 'as if struck dumb with astonishment and surprise'),\n", - " ('dumbstruck', 'as if struck dumb with astonishment and surprise')]},\n", + " ('thunderstruck', 'as if struck dumb with astonishment and surprise')]},\n", " {'answer': 'dumbstricken',\n", " 'hint': 'synonyms for dumbstricken',\n", - " 'clues': [('dumfounded',\n", + " 'clues': [('flabbergasted',\n", " 'as if struck dumb with astonishment and surprise'),\n", - " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbstruck', 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbfounded', 'as if struck dumb with astonishment and surprise'),\n", " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n", - " ('flabbergasted', 'as if struck dumb with astonishment and surprise'),\n", - " ('dumbstruck', 'as if struck dumb with astonishment and surprise')]},\n", + " ('thunderstruck', 'as if struck dumb with astonishment and surprise')]},\n", " {'answer': 'dumbstruck',\n", " 'hint': 'synonyms for dumbstruck',\n", - " 'clues': [('dumbstricken',\n", + " 'clues': [('flabbergasted',\n", " 'as if struck dumb with astonishment and surprise'),\n", - " ('dumfounded', 'as if struck dumb with astonishment and surprise'),\n", - " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbstricken', 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbfounded', 'as if struck dumb with astonishment and surprise'),\n", " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n", - " ('flabbergasted', 'as if struck dumb with astonishment and surprise')]},\n", + " ('thunderstruck', 'as if struck dumb with astonishment and surprise')]},\n", " {'answer': 'dumfounded',\n", " 'hint': 'synonyms for dumfounded',\n", - " 'clues': [('dumbstricken',\n", + " 'clues': [('flabbergasted',\n", " 'as if struck dumb with astonishment and surprise'),\n", - " ('thunderstruck', 'as if struck dumb with astonishment and surprise'),\n", + " ('dumbstruck', 'as if struck dumb with astonishment and surprise'),\n", " ('dumbfounded', 'as if struck dumb with astonishment and surprise'),\n", " ('stupefied', 'as if struck dumb with astonishment and surprise'),\n", - " ('flabbergasted', 'as if struck dumb with astonishment and surprise'),\n", - " ('dumbstruck', 'as if struck dumb with astonishment and surprise')]},\n", + " ('dumbstricken', 'as if struck dumb with astonishment and surprise'),\n", + " ('thunderstruck', 'as if struck dumb with astonishment and surprise')]},\n", " {'answer': 'dumpy',\n", " 'hint': 'synonyms for dumpy',\n", - " 'clues': [('low-set',\n", + " 'clues': [('podgy', 'short and plump'),\n", + " ('squat',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", " ('chunky',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", + " ('tubby', 'short and plump'),\n", + " ('low-set',\n", + " 'short and thick; as e.g. having short legs and heavy musculature'),\n", " ('squatty',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", - " ('podgy', 'short and plump'),\n", + " ('pudgy', 'short and plump'),\n", " ('stumpy',\n", " 'short and thick; as e.g. having short legs and heavy musculature'),\n", - " ('squat',\n", - " 'short and thick; as e.g. having short legs and heavy musculature'),\n", - " ('pudgy', 'short and plump'),\n", - " ('tubby', 'short and plump'),\n", " ('roly-poly', 'short and plump')]},\n", " {'answer': 'duncical',\n", " 'hint': 'synonyms for duncical',\n", - " 'clues': [('fatheaded', '(used informally) stupid'),\n", + " 'clues': [('thick', '(used informally) stupid'),\n", + " ('fatheaded', '(used informally) stupid'),\n", + " ('wooden-headed', '(used informally) stupid'),\n", " ('thickheaded', '(used informally) stupid'),\n", - " ('thick', '(used informally) stupid'),\n", - " ('thick-skulled', '(used informally) stupid'),\n", " ('blockheaded', '(used informally) stupid'),\n", - " ('duncish', '(used informally) stupid'),\n", " ('loggerheaded', '(used informally) stupid'),\n", + " ('thick-skulled', '(used informally) stupid'),\n", " ('boneheaded', '(used informally) stupid'),\n", - " ('wooden-headed', '(used informally) stupid')]},\n", + " ('duncish', '(used informally) stupid')]},\n", " {'answer': 'duncish',\n", " 'hint': 'synonyms for duncish',\n", - " 'clues': [('fatheaded', '(used informally) stupid'),\n", + " 'clues': [('thick', '(used informally) stupid'),\n", + " ('fatheaded', '(used informally) stupid'),\n", + " ('wooden-headed', '(used informally) stupid'),\n", " ('duncical', '(used informally) stupid'),\n", " ('thickheaded', '(used informally) stupid'),\n", - " ('thick', '(used informally) stupid'),\n", - " ('thick-skulled', '(used informally) stupid'),\n", " ('blockheaded', '(used informally) stupid'),\n", - " ('wooden-headed', '(used informally) stupid'),\n", " ('loggerheaded', '(used informally) stupid'),\n", + " ('thick-skulled', '(used informally) stupid'),\n", " ('boneheaded', '(used informally) stupid')]},\n", " {'answer': 'duplicitous',\n", " 'hint': 'synonyms for duplicitous',\n", - " 'clues': [('two-faced',\n", + " 'clues': [('double-tongued',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('ambidextrous',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-tongued',\n", - " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('deceitful',\n", + " ('double-dealing',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", " ('double-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", - " ('double-dealing',\n", + " ('deceitful',\n", + " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray'),\n", + " ('two-faced',\n", " 'marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; - Israel Zangwill; ; - W.M.Thackeray')]},\n", " {'answer': 'durable',\n", " 'hint': 'synonyms for durable',\n", - " 'clues': [('indestructible', 'very long lasting'),\n", + " 'clues': [('long-lived', 'existing for a long time'),\n", " ('perdurable', 'very long lasting'),\n", " ('long-wearing', 'capable of withstanding wear and tear and decay'),\n", - " ('long-lived', 'existing for a long time'),\n", " ('long-lasting', 'existing for a long time'),\n", " ('lasting', 'existing for a long time'),\n", - " ('undestroyable', 'very long lasting')]},\n", + " ('undestroyable', 'very long lasting'),\n", + " ('indestructible', 'very long lasting')]},\n", " {'answer': 'dusky',\n", " 'hint': 'synonyms for dusky',\n", - " 'clues': [('twilight', 'lighted by or as if by twilight; -Henry Fielding'),\n", + " 'clues': [('twilit', 'lighted by or as if by twilight; -Henry Fielding'),\n", " ('swarthy', 'naturally having skin of a dark color'),\n", - " ('swart', 'naturally having skin of a dark color'),\n", - " ('dark-skinned', 'naturally having skin of a dark color')]},\n", + " ('dark-skinned', 'naturally having skin of a dark color'),\n", + " ('swart', 'naturally having skin of a dark color')]},\n", " {'answer': 'dusty',\n", " 'hint': 'synonyms for dusty',\n", - " 'clues': [('moth-eaten',\n", - " 'lacking originality or spontaneity; no longer new'),\n", - " ('dust-covered', 'covered with a layer of dust'),\n", + " 'clues': [('cold', 'lacking originality or spontaneity; no longer new'),\n", + " ('moth-eaten', 'lacking originality or spontaneity; no longer new'),\n", " ('stale', 'lacking originality or spontaneity; no longer new'),\n", - " ('cold', 'lacking originality or spontaneity; no longer new')]},\n", + " ('dust-covered', 'covered with a layer of dust')]},\n", " {'answer': 'earlier',\n", " 'hint': 'synonyms for earlier',\n", - " 'clues': [('early',\n", - " 'at or near the beginning of a period of time or course of events or before the usual or expected time'),\n", - " ('other', 'belonging to the distant past'),\n", - " ('earliest',\n", + " 'clues': [('earliest',\n", " \"(comparative and superlative of `early') more early than; most early\"),\n", - " ('former', 'belonging to the distant past')]},\n", + " ('early',\n", + " 'at or near the beginning of a period of time or course of events or before the usual or expected time'),\n", + " ('former', 'belonging to the distant past'),\n", + " ('other', 'belonging to the distant past')]},\n", " {'answer': 'earliest',\n", " 'hint': 'synonyms for earliest',\n", " 'clues': [('early',\n", - " 'at or near the beginning of a period of time or course of events or before the usual or expected time'),\n", - " ('other', 'belonging to the distant past'),\n", + " 'of an early stage in the development of a language or literature'),\n", " ('earlier',\n", " \"(comparative and superlative of `early') more early than; most early\"),\n", - " ('former', 'belonging to the distant past')]},\n", + " ('former', 'belonging to the distant past'),\n", + " ('other', 'belonging to the distant past')]},\n", " {'answer': 'earnest',\n", " 'hint': 'synonyms for earnest',\n", - " 'clues': [('dear', 'earnest'),\n", - " ('heartfelt', 'earnest'),\n", - " ('businesslike', 'not distracted by anything unrelated to the goal'),\n", + " 'clues': [('businesslike',\n", + " 'not distracted by anything unrelated to the goal'),\n", " ('solemn',\n", " 'characterized by a firm and humorless belief in the validity of your opinions'),\n", - " ('devout', 'earnest'),\n", " ('sincere',\n", - " 'characterized by a firm and humorless belief in the validity of your opinions')]},\n", + " 'characterized by a firm and humorless belief in the validity of your opinions'),\n", + " ('dear', 'earnest'),\n", + " ('heartfelt', 'earnest'),\n", + " ('devout', 'earnest')]},\n", " {'answer': 'earthy',\n", " 'hint': 'synonyms for earthy',\n", - " 'clues': [('crude', 'conspicuously and tastelessly indecent'),\n", + " 'clues': [('vulgar', 'conspicuously and tastelessly indecent'),\n", " ('down-to-earth', 'sensible and practical'),\n", - " ('vulgar', 'conspicuously and tastelessly indecent'),\n", + " ('crude', 'conspicuously and tastelessly indecent'),\n", " ('gross', 'conspicuously and tastelessly indecent')]},\n", " {'answer': 'easy',\n", " 'hint': 'synonyms for easy',\n", - " 'clues': [('promiscuous', 'casual and unrestrained in sexual behavior'),\n", - " ('comfortable',\n", - " 'in fortunate circumstances financially; moderately rich'),\n", + " 'clues': [('leisurely', 'not hurried or forced'),\n", + " ('soft', 'having little impact'),\n", " ('well-heeled',\n", " 'in fortunate circumstances financially; moderately rich'),\n", - " ('leisurely', 'not hurried or forced'),\n", - " ('prosperous', 'in fortunate circumstances financially; moderately rich'),\n", - " ('easygoing', 'not hurried or forced'),\n", - " ('light', 'casual and unrestrained in sexual behavior'),\n", " ('sluttish', 'casual and unrestrained in sexual behavior'),\n", - " ('gentle', 'having little impact'),\n", - " ('well-to-do', 'in fortunate circumstances financially; moderately rich'),\n", - " ('well-off', 'in fortunate circumstances financially; moderately rich'),\n", - " ('wanton', 'casual and unrestrained in sexual behavior'),\n", - " ('soft', 'having little impact'),\n", - " ('loose', 'casual and unrestrained in sexual behavior'),\n", + " ('light', 'casual and unrestrained in sexual behavior'),\n", " ('well-situated',\n", " 'in fortunate circumstances financially; moderately rich'),\n", - " ('well-fixed',\n", - " 'in fortunate circumstances financially; moderately rich')]},\n", + " ('loose', 'casual and unrestrained in sexual behavior'),\n", + " ('promiscuous', 'casual and unrestrained in sexual behavior'),\n", + " ('well-fixed', 'in fortunate circumstances financially; moderately rich'),\n", + " ('prosperous', 'in fortunate circumstances financially; moderately rich'),\n", + " ('comfortable',\n", + " 'in fortunate circumstances financially; moderately rich'),\n", + " ('wanton', 'casual and unrestrained in sexual behavior'),\n", + " ('well-to-do', 'in fortunate circumstances financially; moderately rich'),\n", + " ('easygoing', 'not hurried or forced'),\n", + " ('gentle', 'marked by moderate steepness'),\n", + " ('well-off', 'in fortunate circumstances financially; moderately rich')]},\n", " {'answer': 'easygoing',\n", " 'hint': 'synonyms for easygoing',\n", - " 'clues': [('cushy',\n", - " 'not burdensome or demanding; borne or done easily and without hardship'),\n", + " 'clues': [('leisurely', 'not hurried or forced'),\n", " ('easy', 'not hurried or forced'),\n", - " ('soft',\n", + " ('cushy',\n", " 'not burdensome or demanding; borne or done easily and without hardship'),\n", - " ('leisurely', 'not hurried or forced')]},\n", + " ('soft',\n", + " 'not burdensome or demanding; borne or done easily and without hardship')]},\n", " {'answer': 'eccentric',\n", " 'hint': 'synonyms for eccentric',\n", - " 'clues': [('nonconcentric', 'not having a common center; not concentric'),\n", - " ('outlandish', 'conspicuously or grossly unconventional or unusual'),\n", + " 'clues': [('bizarre',\n", + " 'conspicuously or grossly unconventional or unusual'),\n", + " ('freakish', 'conspicuously or grossly unconventional or unusual'),\n", " ('freaky', 'conspicuously or grossly unconventional or unusual'),\n", " ('outre', 'conspicuously or grossly unconventional or unusual'),\n", - " ('flaky', 'conspicuously or grossly unconventional or unusual'),\n", + " ('flakey', 'conspicuously or grossly unconventional or unusual'),\n", + " ('outlandish', 'conspicuously or grossly unconventional or unusual'),\n", + " ('nonconcentric', 'not having a common center; not concentric'),\n", " ('gonzo', 'conspicuously or grossly unconventional or unusual'),\n", - " ('bizarre', 'conspicuously or grossly unconventional or unusual'),\n", - " ('freakish', 'conspicuously or grossly unconventional or unusual'),\n", " ('off-the-wall', 'conspicuously or grossly unconventional or unusual')]},\n", " {'answer': 'economical',\n", " 'hint': 'synonyms for economical',\n", - " 'clues': [('stinting', 'avoiding waste'),\n", - " ('economic',\n", - " 'using the minimum of time or resources necessary for effectiveness'),\n", + " 'clues': [('frugal', 'avoiding waste'),\n", " ('sparing', 'avoiding waste'),\n", " ('scotch', 'avoiding waste'),\n", - " ('frugal', 'avoiding waste')]},\n", + " ('stinting', 'avoiding waste'),\n", + " ('economic',\n", + " 'using the minimum of time or resources necessary for effectiveness')]},\n", " {'answer': 'ecstatic',\n", " 'hint': 'synonyms for ecstatic',\n", - " 'clues': [('rhapsodic', 'feeling great rapture or delight'),\n", - " ('rapt', 'feeling great rapture or delight'),\n", + " 'clues': [('enraptured', 'feeling great rapture or delight'),\n", + " ('rhapsodic', 'feeling great rapture or delight'),\n", " ('rapturous', 'feeling great rapture or delight'),\n", - " ('enraptured', 'feeling great rapture or delight')]},\n", + " ('rapt', 'feeling great rapture or delight')]},\n", " {'answer': 'ecumenical',\n", " 'hint': 'synonyms for ecumenical',\n", " 'clues': [('oecumenic',\n", " 'concerned with promoting unity among churches or religions'),\n", - " ('world-wide',\n", - " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", " ('cosmopolitan',\n", " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", " ('general',\n", " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", " ('universal',\n", + " 'of worldwide scope or applicability; ; - Christopher Morley'),\n", + " ('world-wide',\n", " 'of worldwide scope or applicability; ; - Christopher Morley')]},\n", " {'answer': 'edacious',\n", " 'hint': 'synonyms for edacious',\n", - " 'clues': [('ravening', 'devouring or craving food in great quantities'),\n", + " 'clues': [('ravenous', 'devouring or craving food in great quantities'),\n", " ('voracious', 'devouring or craving food in great quantities'),\n", " ('wolfish', 'devouring or craving food in great quantities'),\n", - " ('esurient', 'devouring or craving food in great quantities'),\n", " ('rapacious', 'devouring or craving food in great quantities'),\n", - " ('ravenous', 'devouring or craving food in great quantities')]},\n", + " ('esurient', 'devouring or craving food in great quantities'),\n", + " ('ravening', 'devouring or craving food in great quantities')]},\n", " {'answer': 'edgy',\n", " 'hint': 'synonyms for edgy',\n", - " 'clues': [('highly strung', 'being in a tense state'),\n", - " ('overstrung', 'being in a tense state'),\n", + " 'clues': [('jumpy', 'being in a tense state'),\n", " ('uptight', 'being in a tense state'),\n", - " ('jumpy', 'being in a tense state'),\n", - " ('nervy', 'being in a tense state'),\n", " ('restive', 'being in a tense state'),\n", - " ('jittery', 'being in a tense state'),\n", - " ('high-strung', 'being in a tense state')]},\n", + " ('overstrung', 'being in a tense state'),\n", + " ('high-strung', 'being in a tense state'),\n", + " ('highly strung', 'being in a tense state'),\n", + " ('nervy', 'being in a tense state'),\n", + " ('jittery', 'being in a tense state')]},\n", " {'answer': 'effective',\n", " 'hint': 'synonyms for effective',\n", - " 'clues': [('efficient',\n", - " 'able to accomplish a purpose; functioning effectively; -G.B.Shaw'),\n", + " 'clues': [('efficacious',\n", + " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n", " ('in force', 'exerting force or influence'),\n", + " ('efficient',\n", + " 'able to accomplish a purpose; functioning effectively; -G.B.Shaw'),\n", + " ('in effect', 'exerting force or influence'),\n", " ('good', 'exerting force or influence'),\n", - " ('efficacious',\n", - " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n", " ('effectual',\n", - " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n", - " ('in effect', 'exerting force or influence')]},\n", + " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford')]},\n", " {'answer': 'effectual',\n", " 'hint': 'synonyms for effectual',\n", - " 'clues': [('effective',\n", + " 'clues': [('sound', 'having legal efficacy or force'),\n", + " ('efficacious',\n", " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford'),\n", - " ('sound', 'having legal efficacy or force'),\n", " ('legal', 'having legal efficacy or force'),\n", - " ('efficacious',\n", + " ('effective',\n", " 'producing or capable of producing an intended result or having a striking effect; -LewisMumford')]},\n", " {'answer': 'effeminate',\n", " 'hint': 'synonyms for effeminate',\n", - " 'clues': [('epicene', 'having unsuitable feminine qualities'),\n", + " 'clues': [('sissified', 'having unsuitable feminine qualities'),\n", " ('cissy', 'having unsuitable feminine qualities'),\n", " ('emasculate', 'having unsuitable feminine qualities'),\n", " ('sissy', 'having unsuitable feminine qualities'),\n", - " ('sissified', 'having unsuitable feminine qualities'),\n", + " ('epicene', 'having unsuitable feminine qualities'),\n", " ('sissyish', 'having unsuitable feminine qualities')]},\n", " {'answer': 'effervescent',\n", " 'hint': 'synonyms for effervescent',\n", - " 'clues': [('sparkly', 'marked by high spirits or excitement'),\n", - " ('bubbling', 'marked by high spirits or excitement'),\n", + " 'clues': [('frothy', 'marked by high spirits or excitement'),\n", " ('scintillating', 'marked by high spirits or excitement'),\n", - " ('frothy', 'marked by high spirits or excitement'),\n", + " ('bubbling', 'marked by high spirits or excitement'),\n", + " ('sparkly', 'marked by high spirits or excitement'),\n", " ('sparkling',\n", " 'used of wines and waters; charged naturally or artificially with carbon dioxide')]},\n", " {'answer': 'effervescing',\n", " 'hint': 'synonyms for effervescing',\n", - " 'clues': [('frothy',\n", + " 'clues': [('foamy',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('bubbly',\n", + " ('foaming',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('spumy',\n", + " ('bubbling',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('foamy',\n", + " ('spumy',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('foaming',\n", + " ('frothy',\n", " 'emitting or filled with bubbles as from carbonation or fermentation'),\n", - " ('bubbling',\n", + " ('bubbly',\n", " 'emitting or filled with bubbles as from carbonation or fermentation')]},\n", " {'answer': 'effulgent',\n", " 'hint': 'synonyms for effulgent',\n", - " 'clues': [('beaming', 'radiating or as if radiating light'),\n", + " 'clues': [('radiant', 'radiating or as if radiating light'),\n", " ('beamy', 'radiating or as if radiating light'),\n", - " ('radiant', 'radiating or as if radiating light'),\n", - " ('refulgent', 'radiating or as if radiating light')]},\n", + " ('refulgent', 'radiating or as if radiating light'),\n", + " ('beaming', 'radiating or as if radiating light')]},\n", " {'answer': 'effusive',\n", " 'hint': 'synonyms for effusive',\n", - " 'clues': [('gushing', 'extravagantly demonstrative'),\n", + " 'clues': [('burbly', 'uttered with unrestrained enthusiasm'),\n", + " ('gushing', 'uttered with unrestrained enthusiasm'),\n", " ('gushy', 'extravagantly demonstrative'),\n", - " ('burbling', 'uttered with unrestrained enthusiasm'),\n", - " ('burbly', 'uttered with unrestrained enthusiasm')]},\n", + " ('burbling', 'uttered with unrestrained enthusiasm')]},\n", " {'answer': 'egg-shaped',\n", " 'hint': 'synonyms for egg-shaped',\n", - " 'clues': [('oval', 'rounded like an egg'),\n", - " ('prolate', 'rounded like an egg'),\n", - " ('elliptical', 'rounded like an egg'),\n", - " ('ovate', 'rounded like an egg'),\n", - " ('ovoid', 'rounded like an egg'),\n", + " 'clues': [('ovate', 'rounded like an egg'),\n", + " ('oval-shaped', 'rounded like an egg'),\n", " ('oviform', 'rounded like an egg'),\n", - " ('oval-shaped', 'rounded like an egg')]},\n", + " ('elliptic', 'rounded like an egg'),\n", + " ('ovoid', 'rounded like an egg'),\n", + " ('prolate', 'rounded like an egg'),\n", + " ('oval', 'rounded like an egg')]},\n", " {'answer': 'egotistic',\n", " 'hint': 'synonyms for egotistic',\n", - " 'clues': [('swollen-headed',\n", - " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('self-conceited',\n", + " 'clues': [('narcissistic',\n", + " 'characteristic of those having an inflated idea of their own importance'),\n", + " ('swollen',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", " ('egotistical',\n", - " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", + " 'characteristic of those having an inflated idea of their own importance'),\n", " ('vain',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('narcissistic',\n", - " 'characteristic of those having an inflated idea of their own importance'),\n", + " ('conceited',\n", + " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", + " ('swollen-headed',\n", + " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", " ('self-loving',\n", " 'characteristic of those having an inflated idea of their own importance'),\n", - " ('swollen',\n", - " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('conceited',\n", + " ('self-conceited',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance')]},\n", " {'answer': 'egotistical',\n", " 'hint': 'synonyms for egotistical',\n", - " 'clues': [('swollen-headed',\n", + " 'clues': [('narcissistic',\n", + " 'characteristic of those having an inflated idea of their own importance'),\n", + " ('egotistic',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('self-conceited',\n", + " ('swollen',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('egotistic',\n", - " 'characteristic of those having an inflated idea of their own importance'),\n", - " ('narcissistic',\n", - " 'characteristic of those having an inflated idea of their own importance'),\n", - " ('self-loving',\n", - " 'characteristic of those having an inflated idea of their own importance'),\n", " ('vain',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", - " ('swollen',\n", + " ('swollen-headed',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", " ('conceited',\n", + " 'characteristic of false pride; having an exaggerated sense of self-importance'),\n", + " ('self-loving',\n", + " 'characteristic of those having an inflated idea of their own importance'),\n", + " ('self-conceited',\n", " 'characteristic of false pride; having an exaggerated sense of self-importance')]},\n", " {'answer': 'egregious',\n", " 'hint': 'synonyms for egregious',\n", - " 'clues': [('crying',\n", + " 'clues': [('glaring',\n", " 'conspicuously and outrageously bad or reprehensible'),\n", " ('rank', 'conspicuously and outrageously bad or reprehensible'),\n", - " ('glaring', 'conspicuously and outrageously bad or reprehensible'),\n", - " ('flagrant', 'conspicuously and outrageously bad or reprehensible'),\n", - " ('gross', 'conspicuously and outrageously bad or reprehensible')]},\n", + " ('crying', 'conspicuously and outrageously bad or reprehensible'),\n", + " ('gross', 'conspicuously and outrageously bad or reprehensible'),\n", + " ('flagrant', 'conspicuously and outrageously bad or reprehensible')]},\n", " {'answer': 'elementary',\n", " 'hint': 'synonyms for elementary',\n", " 'clues': [('primary', 'of or being the essential or basic part'),\n", " ('simple', 'easy and not involved or complicated'),\n", + " ('elemental', 'of or being the essential or basic part'),\n", " ('unproblematic', 'easy and not involved or complicated'),\n", - " ('uncomplicated', 'easy and not involved or complicated'),\n", - " ('elemental', 'of or being the essential or basic part')]},\n", + " ('uncomplicated', 'easy and not involved or complicated')]},\n", " {'answer': 'elevated',\n", " 'hint': 'synonyms for elevated',\n", - " 'clues': [('exalted',\n", + " 'clues': [('grand',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('noble-minded',\n", + " ('sublime',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('rarefied',\n", + " ('rarified',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", " ('high-flown',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('raised', 'increased in amount or degree'),\n", - " ('high-minded',\n", - " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('grand',\n", + " ('exalted',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('sublime',\n", + " ('noble-minded',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", " ('lofty',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", + " ('raised', 'increased in amount or degree'),\n", + " ('high-minded',\n", + " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", " ('idealistic',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks')]},\n", " {'answer': 'elfin',\n", " 'hint': 'synonyms for elfin',\n", " 'clues': [('elfish', 'usually good-naturedly mischievous'),\n", " ('elvish', 'usually good-naturedly mischievous'),\n", - " ('elflike', 'small and delicate'),\n", " ('fey',\n", - " 'suggestive of an elf in strangeness and otherworldliness; ; - John Mason Brown')]},\n", + " 'suggestive of an elf in strangeness and otherworldliness; ; - John Mason Brown'),\n", + " ('elflike', 'small and delicate')]},\n", " {'answer': 'elliptic',\n", " 'hint': 'synonyms for elliptic',\n", - " 'clues': [('oval', 'rounded like an egg'),\n", + " 'clues': [('ovate', 'rounded like an egg'),\n", + " ('oval-shaped', 'rounded like an egg'),\n", + " ('oviform', 'rounded like an egg'),\n", + " ('elliptical',\n", + " 'characterized by extreme economy of expression or omission of superfluous elements; ; - H.O.Taylor'),\n", + " ('ovoid', 'rounded like an egg'),\n", " ('prolate', 'rounded like an egg'),\n", " ('egg-shaped', 'rounded like an egg'),\n", - " ('elliptical', 'rounded like an egg'),\n", - " ('ovate', 'rounded like an egg'),\n", - " ('ovoid', 'rounded like an egg'),\n", - " ('oviform', 'rounded like an egg'),\n", - " ('oval-shaped', 'rounded like an egg')]},\n", + " ('oval', 'rounded like an egg')]},\n", " {'answer': 'elliptical',\n", " 'hint': 'synonyms for elliptical',\n", - " 'clues': [('oval', 'rounded like an egg'),\n", - " ('prolate', 'rounded like an egg'),\n", - " ('egg-shaped', 'rounded like an egg'),\n", + " 'clues': [('ovate', 'rounded like an egg'),\n", + " ('oval-shaped', 'rounded like an egg'),\n", + " ('oviform', 'rounded like an egg'),\n", " ('elliptic',\n", " 'characterized by extreme economy of expression or omission of superfluous elements; ; - H.O.Taylor'),\n", - " ('ovate', 'rounded like an egg'),\n", " ('ovoid', 'rounded like an egg'),\n", - " ('oviform', 'rounded like an egg'),\n", - " ('oval-shaped', 'rounded like an egg')]},\n", + " ('prolate', 'rounded like an egg'),\n", + " ('egg-shaped', 'rounded like an egg'),\n", + " ('oval', 'rounded like an egg')]},\n", " {'answer': 'elongated',\n", " 'hint': 'synonyms for elongated',\n", - " 'clues': [('lengthened', 'drawn out or made longer spatially'),\n", - " ('prolonged', 'drawn out or made longer spatially'),\n", + " 'clues': [('elongate',\n", + " 'having notably more length than width; being long and slender'),\n", + " ('lengthened', 'drawn out or made longer spatially'),\n", " ('extended', 'drawn out or made longer spatially'),\n", - " ('elongate',\n", - " 'having notably more length than width; being long and slender')]},\n", + " ('prolonged', 'drawn out or made longer spatially')]},\n", " {'answer': 'eloquent',\n", " 'hint': 'synonyms for eloquent',\n", - " 'clues': [('silver', 'expressing yourself readily, clearly, effectively'),\n", + " 'clues': [('fluent', 'expressing yourself readily, clearly, effectively'),\n", " ('silver-tongued', 'expressing yourself readily, clearly, effectively'),\n", - " ('fluent', 'expressing yourself readily, clearly, effectively'),\n", + " ('smooth-spoken', 'expressing yourself readily, clearly, effectively'),\n", " ('facile', 'expressing yourself readily, clearly, effectively'),\n", - " ('smooth-spoken', 'expressing yourself readily, clearly, effectively')]},\n", + " ('silver', 'expressing yourself readily, clearly, effectively')]},\n", " {'answer': 'elusive',\n", " 'hint': 'synonyms for elusive',\n", - " 'clues': [('subtle',\n", - " 'difficult to detect or grasp by the mind or analyze'),\n", - " ('baffling',\n", - " 'making great mental demands; hard to comprehend or solve or believe'),\n", - " ('tough',\n", + " 'clues': [('baffling',\n", " 'making great mental demands; hard to comprehend or solve or believe'),\n", - " ('problematic',\n", + " ('problematical',\n", " 'making great mental demands; hard to comprehend or solve or believe'),\n", " ('knotty',\n", + " 'making great mental demands; hard to comprehend or solve or believe'),\n", + " ('subtle', 'difficult to detect or grasp by the mind or analyze'),\n", + " ('tough',\n", " 'making great mental demands; hard to comprehend or solve or believe')]},\n", " {'answer': 'emaciated',\n", " 'hint': 'synonyms for emaciated',\n", - " 'clues': [('skeletal',\n", - " 'very thin especially from disease or hunger or cold'),\n", - " ('gaunt', 'very thin especially from disease or hunger or cold'),\n", + " 'clues': [('gaunt', 'very thin especially from disease or hunger or cold'),\n", + " ('cadaverous', 'very thin especially from disease or hunger or cold'),\n", " ('pinched', 'very thin especially from disease or hunger or cold'),\n", " ('bony', 'very thin especially from disease or hunger or cold'),\n", " ('wasted', 'very thin especially from disease or hunger or cold'),\n", - " ('cadaverous', 'very thin especially from disease or hunger or cold'),\n", - " ('haggard', 'very thin especially from disease or hunger or cold')]},\n", + " ('haggard', 'very thin especially from disease or hunger or cold'),\n", + " ('skeletal', 'very thin especially from disease or hunger or cold')]},\n", " {'answer': 'emasculate',\n", " 'hint': 'synonyms for emasculate',\n", - " 'clues': [('epicene', 'having unsuitable feminine qualities'),\n", - " ('effeminate', 'having unsuitable feminine qualities'),\n", + " 'clues': [('effeminate', 'having unsuitable feminine qualities'),\n", + " ('sissified', 'having unsuitable feminine qualities'),\n", " ('cissy', 'having unsuitable feminine qualities'),\n", " ('sissy', 'having unsuitable feminine qualities'),\n", - " ('sissified', 'having unsuitable feminine qualities'),\n", + " ('epicene', 'having unsuitable feminine qualities'),\n", " ('sissyish', 'having unsuitable feminine qualities')]},\n", " {'answer': 'embarrassed',\n", " 'hint': 'synonyms for embarrassed',\n", - " 'clues': [('chagrined',\n", + " 'clues': [('abashed',\n", " 'feeling or caused to feel uneasy and self-conscious'),\n", " ('humiliated',\n", " 'made to feel uncomfortable because of shame or wounded pride'),\n", - " ('abashed', 'feeling or caused to feel uneasy and self-conscious'),\n", " ('mortified',\n", - " 'made to feel uncomfortable because of shame or wounded pride')]},\n", + " 'made to feel uncomfortable because of shame or wounded pride'),\n", + " ('chagrined', 'feeling or caused to feel uneasy and self-conscious')]},\n", " {'answer': 'embarrassing',\n", " 'hint': 'synonyms for embarrassing',\n", - " 'clues': [('sticky',\n", - " 'hard to deal with; especially causing pain or embarrassment'),\n", - " ('unenviable',\n", + " 'clues': [('unenviable',\n", " 'hard to deal with; especially causing pain or embarrassment'),\n", " ('awkward',\n", " 'hard to deal with; especially causing pain or embarrassment'),\n", - " ('mortifying', 'causing to feel shame or chagrin or vexation')]},\n", + " ('mortifying', 'causing to feel shame or chagrin or vexation'),\n", + " ('sticky',\n", + " 'hard to deal with; especially causing pain or embarrassment')]},\n", " {'answer': 'emblematic',\n", " 'hint': 'synonyms for emblematic',\n", - " 'clues': [('emblematical',\n", + " 'clues': [('symbolic',\n", " 'serving as a visible symbol for something abstract'),\n", - " ('symbolical', 'serving as a visible symbol for something abstract'),\n", - " ('typic', 'being or serving as an illustration of a type'),\n", - " ('exemplary', 'being or serving as an illustration of a type')]},\n", + " ('emblematical', 'serving as a visible symbol for something abstract'),\n", + " ('exemplary', 'being or serving as an illustration of a type'),\n", + " ('typic', 'being or serving as an illustration of a type')]},\n", " {'answer': 'embodied',\n", " 'hint': 'synonyms for embodied',\n", - " 'clues': [('bodied',\n", + " 'clues': [('corporal',\n", " 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('corporal', 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('incarnate', 'possessing or existing in bodily form; - Shakespeare'),\n", - " ('corporate', 'possessing or existing in bodily form; - Shakespeare')]},\n", + " ('bodied', 'possessing or existing in bodily form; - Shakespeare'),\n", + " ('corporate', 'possessing or existing in bodily form; - Shakespeare'),\n", + " ('incarnate', 'possessing or existing in bodily form; - Shakespeare')]},\n", " {'answer': 'eminent',\n", " 'hint': 'synonyms for eminent',\n", - " 'clues': [('lofty',\n", + " 'clues': [('soaring',\n", " 'of imposing height; especially standing out above others'),\n", - " ('soaring', 'of imposing height; especially standing out above others'),\n", - " ('towering', 'of imposing height; especially standing out above others'),\n", - " ('high', 'standing above others in quality or position')]},\n", + " ('high', 'standing above others in quality or position'),\n", + " ('lofty', 'of imposing height; especially standing out above others'),\n", + " ('towering',\n", + " 'of imposing height; especially standing out above others')]},\n", " {'answer': 'empty-headed',\n", " 'hint': 'synonyms for empty-headed',\n", - " 'clues': [('airheaded', 'lacking seriousness; given to frivolity'),\n", + " 'clues': [('dizzy', 'lacking seriousness; given to frivolity'),\n", + " ('light-headed', 'lacking seriousness; given to frivolity'),\n", + " ('silly', 'lacking seriousness; given to frivolity'),\n", " ('giddy', 'lacking seriousness; given to frivolity'),\n", - " ('dizzy', 'lacking seriousness; given to frivolity'),\n", - " ('lightheaded', 'lacking seriousness; given to frivolity'),\n", - " ('featherbrained', 'lacking seriousness; given to frivolity'),\n", - " ('silly', 'lacking seriousness; given to frivolity')]},\n", + " ('airheaded', 'lacking seriousness; given to frivolity'),\n", + " ('featherbrained', 'lacking seriousness; given to frivolity')]},\n", " {'answer': 'enamored',\n", " 'hint': 'synonyms for enamored',\n", - " 'clues': [('smitten', 'marked by foolish or unreasoning fondness'),\n", + " 'clues': [('taken with', 'marked by foolish or unreasoning fondness'),\n", " ('in love', 'marked by foolish or unreasoning fondness'),\n", + " ('potty', 'marked by foolish or unreasoning fondness'),\n", " ('soft on', 'marked by foolish or unreasoning fondness'),\n", " ('infatuated', 'marked by foolish or unreasoning fondness'),\n", - " ('potty', 'marked by foolish or unreasoning fondness'),\n", - " ('taken with', 'marked by foolish or unreasoning fondness')]},\n", + " ('smitten', 'marked by foolish or unreasoning fondness')]},\n", " {'answer': 'enceinte',\n", " 'hint': 'synonyms for enceinte',\n", - " 'clues': [('gravid', 'in an advanced stage of pregnancy'),\n", - " ('expectant', 'in an advanced stage of pregnancy'),\n", + " 'clues': [('great', 'in an advanced stage of pregnancy'),\n", + " ('large', 'in an advanced stage of pregnancy'),\n", " ('with child', 'in an advanced stage of pregnancy'),\n", - " ('great', 'in an advanced stage of pregnancy'),\n", - " ('big', 'in an advanced stage of pregnancy'),\n", " ('heavy', 'in an advanced stage of pregnancy'),\n", - " ('large', 'in an advanced stage of pregnancy')]},\n", + " ('expectant', 'in an advanced stage of pregnancy'),\n", + " ('gravid', 'in an advanced stage of pregnancy'),\n", + " ('big', 'in an advanced stage of pregnancy')]},\n", " {'answer': 'enchanting',\n", " 'hint': 'synonyms for enchanting',\n", - " 'clues': [('captivating', 'capturing interest as if by a spell'),\n", - " ('bewitching', 'capturing interest as if by a spell'),\n", + " 'clues': [('bewitching', 'capturing interest as if by a spell'),\n", " ('fascinating', 'capturing interest as if by a spell'),\n", - " ('enthralling', 'capturing interest as if by a spell'),\n", - " ('entrancing', 'capturing interest as if by a spell')]},\n", + " ('entrancing', 'capturing interest as if by a spell'),\n", + " ('captivating', 'capturing interest as if by a spell'),\n", + " ('enthralling', 'capturing interest as if by a spell')]},\n", " {'answer': 'encompassing',\n", " 'hint': 'synonyms for encompassing',\n", " 'clues': [('wide', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('surrounding', 'closely encircling'),\n", " ('extensive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('circumferent', 'closely encircling'),\n", - " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", " ('blanket', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", - " ('all-encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner')]},\n", + " ('panoptic', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('across-the-board', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('broad', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-embracing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-inclusive', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('all-encompassing', 'broad in scope or content; ; ; ; ; - T.G.Winner'),\n", + " ('surrounding', 'closely encircling')]},\n", " {'answer': 'ended',\n", " 'hint': 'synonyms for ended',\n", - " 'clues': [('concluded', 'having come or been brought to a conclusion'),\n", + " 'clues': [('complete', 'having come or been brought to a conclusion'),\n", " ('over', 'having come or been brought to a conclusion'),\n", - " ('complete', 'having come or been brought to a conclusion'),\n", " ('terminated', 'having come or been brought to a conclusion'),\n", - " ('all over', 'having come or been brought to a conclusion')]},\n", + " ('all over', 'having come or been brought to a conclusion'),\n", + " ('concluded', 'having come or been brought to a conclusion')]},\n", " {'answer': 'endemic',\n", " 'hint': 'synonyms for endemic',\n", - " 'clues': [('indigenous', 'originating where it is found'),\n", + " 'clues': [('autochthonal', 'originating where it is found'),\n", + " ('indigenous', 'originating where it is found'),\n", " ('autochthonous', 'originating where it is found'),\n", - " ('endemical',\n", - " 'of or relating to a disease (or anything resembling a disease) constantly present to greater or lesser extent in a particular locality'),\n", " ('autochthonic', 'originating where it is found'),\n", - " ('autochthonal', 'originating where it is found')]},\n", + " ('endemical',\n", + " 'of or relating to a disease (or anything resembling a disease) constantly present to greater or lesser extent in a particular locality')]},\n", " {'answer': 'endless',\n", " 'hint': 'synonyms for endless',\n", - " 'clues': [('dateless', 'having no known beginning and presumably no end'),\n", + " 'clues': [('sempiternal',\n", + " 'having no known beginning and presumably no end'),\n", + " ('dateless', 'having no known beginning and presumably no end'),\n", " ('interminable', 'tiresomely long; seemingly without end'),\n", - " ('sempiternal', 'having no known beginning and presumably no end'),\n", " ('eternal', 'tiresomely long; seemingly without end')]},\n", " {'answer': 'engaged',\n", " 'hint': 'synonyms for engaged',\n", - " 'clues': [('in use',\n", + " 'clues': [('busy',\n", + " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n", + " ('in use',\n", " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n", " ('booked', 'reserved in advance'),\n", + " ('set-aside', 'reserved in advance'),\n", " ('meshed',\n", " '(used of toothed parts or gears) interlocked and interacting'),\n", " ('intermeshed',\n", " '(used of toothed parts or gears) interlocked and interacting'),\n", - " ('busy',\n", - " \"(of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line)\"),\n", - " ('occupied', 'having ones attention or mind or energy engaged'),\n", - " ('set-aside', 'reserved in advance')]},\n", + " ('occupied', 'having ones attention or mind or energy engaged')]},\n", " {'answer': 'engraved',\n", " 'hint': 'synonyms for engraved',\n", - " 'clues': [('graven', 'cut or impressed into a surface'),\n", - " ('inscribed', 'cut or impressed into a surface'),\n", - " ('etched', 'cut or impressed into a surface'),\n", - " ('incised', 'cut or impressed into a surface')]},\n", + " 'clues': [('inscribed', 'cut or impressed into a surface'),\n", + " ('graven', 'cut or impressed into a surface'),\n", + " ('incised', 'cut or impressed into a surface'),\n", + " ('etched', 'cut or impressed into a surface')]},\n", " {'answer': 'engrossed',\n", " 'hint': 'synonyms for engrossed',\n", " 'clues': [('captive',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", - " ('wrapped',\n", - " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", " ('intent',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", " ('absorbed',\n", + " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", + " ('enwrapped',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n", " {'answer': 'engrossing',\n", " 'hint': 'synonyms for engrossing',\n", - " 'clues': [('gripping', 'capable of arousing and holding the attention'),\n", + " 'clues': [('fascinating', 'capable of arousing and holding the attention'),\n", + " ('gripping', 'capable of arousing and holding the attention'),\n", " ('absorbing', 'capable of arousing and holding the attention'),\n", - " ('riveting', 'capable of arousing and holding the attention'),\n", - " ('fascinating', 'capable of arousing and holding the attention')]},\n", + " ('riveting', 'capable of arousing and holding the attention')]},\n", " {'answer': 'enlarged',\n", " 'hint': 'synonyms for enlarged',\n", - " 'clues': [('hypertrophied',\n", + " 'clues': [('blown-up', 'as of a photograph; made larger'),\n", + " ('hypertrophied',\n", " '(of an organ or body part) excessively enlarged as a result of increased size in the constituent cells'),\n", - " ('exaggerated', 'enlarged to an abnormal degree'),\n", - " ('blown-up', 'as of a photograph; made larger'),\n", - " ('magnified', 'enlarged to an abnormal degree')]},\n", + " ('magnified', 'enlarged to an abnormal degree'),\n", + " ('exaggerated', 'enlarged to an abnormal degree')]},\n", " {'answer': 'enraged',\n", " 'hint': 'synonyms for enraged',\n", - " 'clues': [('infuriated', 'marked by extreme anger'),\n", - " ('furious', 'marked by extreme anger'),\n", + " 'clues': [('maddened', 'marked by extreme anger'),\n", " ('angered', 'marked by extreme anger'),\n", - " ('maddened', 'marked by extreme anger')]},\n", + " ('infuriated', 'marked by extreme anger'),\n", + " ('furious', 'marked by extreme anger')]},\n", " {'answer': 'enraptured',\n", " 'hint': 'synonyms for enraptured',\n", " 'clues': [('rhapsodic', 'feeling great rapture or delight'),\n", - " ('ecstatic', 'feeling great rapture or delight'),\n", " ('rapturous', 'feeling great rapture or delight'),\n", - " ('rapt', 'feeling great rapture or delight')]},\n", + " ('rapt', 'feeling great rapture or delight'),\n", + " ('ecstatic', 'feeling great rapture or delight')]},\n", " {'answer': 'ensuant',\n", " 'hint': 'synonyms for ensuant',\n", - " 'clues': [('resultant', 'following or accompanying as a consequence'),\n", - " ('sequent', 'following or accompanying as a consequence'),\n", - " ('consequent', 'following or accompanying as a consequence'),\n", + " 'clues': [('consequent', 'following or accompanying as a consequence'),\n", + " ('attendant', 'following or accompanying as a consequence'),\n", " ('concomitant', 'following or accompanying as a consequence'),\n", - " ('incidental', 'following or accompanying as a consequence'),\n", + " ('resultant', 'following or accompanying as a consequence'),\n", " ('accompanying', 'following or accompanying as a consequence'),\n", - " ('attendant', 'following or accompanying as a consequence')]},\n", + " ('incidental', 'following or accompanying as a consequence'),\n", + " ('sequent', 'following or accompanying as a consequence')]},\n", " {'answer': 'enthralled',\n", " 'hint': 'synonyms for enthralled',\n", - " 'clues': [('entranced', 'filled with wonder and delight'),\n", + " 'clues': [('charmed', 'filled with wonder and delight'),\n", + " ('entranced', 'filled with wonder and delight'),\n", " ('beguiled', 'filled with wonder and delight'),\n", " ('delighted', 'filled with wonder and delight'),\n", - " ('captivated', 'filled with wonder and delight'),\n", - " ('charmed', 'filled with wonder and delight')]},\n", + " ('captivated', 'filled with wonder and delight')]},\n", " {'answer': 'enthralling',\n", " 'hint': 'synonyms for enthralling',\n", - " 'clues': [('captivating', 'capturing interest as if by a spell'),\n", + " 'clues': [('bewitching', 'capturing interest as if by a spell'),\n", " ('enchanting', 'capturing interest as if by a spell'),\n", - " ('bewitching', 'capturing interest as if by a spell'),\n", " ('fascinating', 'capturing interest as if by a spell'),\n", - " ('entrancing', 'capturing interest as if by a spell')]},\n", + " ('entrancing', 'capturing interest as if by a spell'),\n", + " ('captivating', 'capturing interest as if by a spell')]},\n", " {'answer': 'entire',\n", " 'hint': 'synonyms for entire',\n", - " 'clues': [('integral',\n", + " 'clues': [('intact',\n", " 'constituting the undiminished entirety; lacking nothing essential especially not damaged; - Bacon'),\n", - " ('intact', '(used of domestic animals) sexually competent'),\n", + " ('total', 'constituting the full quantity or extent; complete'),\n", " ('full', 'constituting the full quantity or extent; complete'),\n", - " ('total', 'constituting the full quantity or extent; complete')]},\n", + " ('integral',\n", + " 'constituting the undiminished entirety; lacking nothing essential especially not damaged; - Bacon')]},\n", " {'answer': 'entranced',\n", " 'hint': 'synonyms for entranced',\n", - " 'clues': [('beguiled', 'filled with wonder and delight'),\n", + " 'clues': [('charmed', 'filled with wonder and delight'),\n", " ('enthralled', 'filled with wonder and delight'),\n", + " ('beguiled', 'filled with wonder and delight'),\n", " ('delighted', 'filled with wonder and delight'),\n", - " ('captivated', 'filled with wonder and delight'),\n", - " ('charmed', 'filled with wonder and delight')]},\n", + " ('captivated', 'filled with wonder and delight')]},\n", " {'answer': 'entrancing',\n", " 'hint': 'synonyms for entrancing',\n", - " 'clues': [('captivating', 'capturing interest as if by a spell'),\n", + " 'clues': [('bewitching', 'capturing interest as if by a spell'),\n", " ('enchanting', 'capturing interest as if by a spell'),\n", - " ('bewitching', 'capturing interest as if by a spell'),\n", " ('fascinating', 'capturing interest as if by a spell'),\n", + " ('captivating', 'capturing interest as if by a spell'),\n", " ('enthralling', 'capturing interest as if by a spell')]},\n", " {'answer': 'enwrapped',\n", " 'hint': 'synonyms for enwrapped',\n", - " 'clues': [('captive',\n", + " 'clues': [('engrossed',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", - " ('wrapped',\n", + " ('captive',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", " ('intent',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", " ('absorbed',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare'),\n", - " ('engrossed',\n", + " ('wrapped',\n", " 'giving or marked by complete attention to; ; ; - Walter de la Mare')]},\n", " {'answer': 'eonian',\n", " 'hint': 'synonyms for eonian',\n", - " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n", - " ('everlasting', 'continuing forever or indefinitely'),\n", + " 'clues': [('everlasting', 'continuing forever or indefinitely'),\n", " ('unending', 'continuing forever or indefinitely'),\n", - " ('aeonian', 'of or relating to a geological eon (longer than an era)'),\n", - " ('eternal', 'continuing forever or indefinitely'),\n", " ('unceasing', 'continuing forever or indefinitely'),\n", - " ('ageless', 'continuing forever or indefinitely')]},\n", + " ('perpetual', 'continuing forever or indefinitely'),\n", + " ('aeonian', 'of or relating to a geological eon (longer than an era)'),\n", + " ('ageless', 'continuing forever or indefinitely'),\n", + " ('eternal', 'continuing forever or indefinitely')]},\n", " {'answer': 'ephemeral',\n", " 'hint': 'synonyms for ephemeral',\n", - " 'clues': [('passing', 'lasting a very short time'),\n", + " 'clues': [('transient', 'lasting a very short time'),\n", + " ('short-lived', 'lasting a very short time'),\n", " ('fugacious', 'lasting a very short time'),\n", - " ('transitory', 'lasting a very short time'),\n", - " ('transient', 'lasting a very short time'),\n", - " ('short-lived', 'lasting a very short time')]},\n", + " ('passing', 'lasting a very short time'),\n", + " ('transitory', 'lasting a very short time')]},\n", " {'answer': 'epicene',\n", " 'hint': 'synonyms for epicene',\n", - " 'clues': [('sissyish', 'having unsuitable feminine qualities'),\n", - " ('effeminate', 'having unsuitable feminine qualities'),\n", - " ('cissy', 'having unsuitable feminine qualities'),\n", + " 'clues': [('effeminate', 'having unsuitable feminine qualities'),\n", + " ('sissified', 'having unsuitable feminine qualities'),\n", + " ('bisexual', 'having an ambiguous sexual identity'),\n", " ('emasculate', 'having unsuitable feminine qualities'),\n", " ('sissy', 'having unsuitable feminine qualities'),\n", - " ('sissified', 'having unsuitable feminine qualities'),\n", - " ('bisexual', 'having an ambiguous sexual identity')]},\n", + " ('cissy', 'having unsuitable feminine qualities'),\n", + " ('sissyish', 'having unsuitable feminine qualities')]},\n", " {'answer': 'epicurean',\n", " 'hint': 'synonyms for epicurean',\n", - " 'clues': [('hedonic', 'devoted to pleasure'),\n", - " ('voluptuous',\n", - " 'displaying luxury and furnishing gratification to the senses'),\n", - " ('luxurious',\n", + " 'clues': [('sybaritic',\n", " 'displaying luxury and furnishing gratification to the senses'),\n", + " ('hedonistic', 'devoted to pleasure'),\n", " ('luxuriant',\n", " 'displaying luxury and furnishing gratification to the senses'),\n", - " ('sybaritic',\n", - " 'displaying luxury and furnishing gratification to the senses'),\n", " ('voluptuary',\n", " 'displaying luxury and furnishing gratification to the senses'),\n", - " ('hedonistic', 'devoted to pleasure')]},\n", + " ('luxurious',\n", + " 'displaying luxury and furnishing gratification to the senses'),\n", + " ('voluptuous',\n", + " 'displaying luxury and furnishing gratification to the senses'),\n", + " ('hedonic', 'devoted to pleasure')]},\n", " {'answer': 'equanimous',\n", " 'hint': 'synonyms for equanimous',\n", " 'clues': [('collected', 'in full control of your faculties'),\n", + " ('poised', 'in full control of your faculties'),\n", " ('self-contained', 'in full control of your faculties'),\n", " ('self-possessed', 'in full control of your faculties'),\n", - " ('poised', 'in full control of your faculties'),\n", " ('self-collected', 'in full control of your faculties')]},\n", " {'answer': 'equipped',\n", " 'hint': 'synonyms for equipped',\n", " 'clues': [('fitted out', 'prepared with proper equipment'),\n", - " ('weaponed', 'carrying weapons'),\n", + " ('equipt',\n", + " 'provided or fitted out with what is necessary or useful or appropriate'),\n", " ('furnished',\n", " 'provided with whatever is necessary for a purpose (as furniture or equipment or authority)'),\n", - " ('equipt',\n", - " 'provided or fitted out with what is necessary or useful or appropriate')]},\n", + " ('weaponed', 'carrying weapons')]},\n", " {'answer': 'erose',\n", " 'hint': 'synonyms for erose',\n", - " 'clues': [('jagged',\n", + " 'clues': [('toothed',\n", " 'having an irregularly notched or toothed margin as though gnawed'),\n", " ('jaggy',\n", " 'having an irregularly notched or toothed margin as though gnawed'),\n", - " ('toothed',\n", - " 'having an irregularly notched or toothed margin as though gnawed'),\n", " ('notched',\n", + " 'having an irregularly notched or toothed margin as though gnawed'),\n", + " ('jagged',\n", " 'having an irregularly notched or toothed margin as though gnawed')]},\n", " {'answer': 'erosive',\n", " 'hint': 'synonyms for erosive',\n", - " 'clues': [('mordant',\n", + " 'clues': [('caustic',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", " ('corrosive',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", - " ('vitriolic',\n", + " ('mordant',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action'),\n", - " ('caustic',\n", + " ('vitriolic',\n", " 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action')]},\n", " {'answer': 'erratic',\n", " 'hint': 'synonyms for erratic',\n", - " 'clues': [('quicksilver', 'liable to sudden unpredictable change'),\n", - " ('fickle', 'liable to sudden unpredictable change'),\n", + " 'clues': [('fickle', 'liable to sudden unpredictable change'),\n", + " ('quicksilver', 'liable to sudden unpredictable change'),\n", + " ('mercurial', 'liable to sudden unpredictable change'),\n", " ('temperamental',\n", " 'likely to perform unpredictably; ; ; - Osbert Lancaster'),\n", - " ('mercurial', 'liable to sudden unpredictable change'),\n", - " ('wandering', 'having no fixed course'),\n", - " ('planetary', 'having no fixed course')]},\n", + " ('planetary', 'having no fixed course'),\n", + " ('wandering', 'having no fixed course')]},\n", " {'answer': 'erstwhile',\n", " 'hint': 'synonyms for erstwhile',\n", - " 'clues': [('former', 'belonging to some prior time'),\n", - " ('old', 'belonging to some prior time'),\n", - " ('quondam', 'belonging to some prior time'),\n", + " 'clues': [('quondam', 'belonging to some prior time'),\n", + " ('former', 'belonging to some prior time'),\n", + " ('one-time', 'belonging to some prior time'),\n", " ('sometime', 'belonging to some prior time'),\n", - " ('onetime', 'belonging to some prior time')]},\n", + " ('old', 'belonging to some prior time')]},\n", " {'answer': 'essential',\n", " 'hint': 'synonyms for essential',\n", - " 'clues': [('substantive',\n", + " 'clues': [('of the essence', 'of the greatest importance'),\n", + " ('substantive',\n", " 'defining rights and duties as opposed to giving the rules by which rights and duties are established'),\n", - " ('of the essence', 'of the greatest importance'),\n", - " ('all important', 'of the greatest importance'),\n", " ('indispensable', 'absolutely necessary; vitally necessary'),\n", - " ('crucial', 'of the greatest importance')]},\n", + " ('crucial', 'of the greatest importance'),\n", + " ('all-important', 'of the greatest importance')]},\n", " {'answer': 'established',\n", " 'hint': 'synonyms for established',\n", - " 'clues': [('naturalized',\n", - " 'introduced from another region and persisting without cultivation'),\n", - " ('effected', 'settled securely and unconditionally'),\n", + " 'clues': [('effected', 'settled securely and unconditionally'),\n", " ('accomplished', 'settled securely and unconditionally'),\n", + " ('naturalized',\n", + " 'introduced from another region and persisting without cultivation'),\n", + " ('conventional', 'conforming with accepted standards'),\n", " ('constituted',\n", - " 'brought about or set up or accepted; especially long established'),\n", - " ('conventional', 'conforming with accepted standards')]},\n", + " 'brought about or set up or accepted; especially long established')]},\n", " {'answer': 'estimable',\n", " 'hint': 'synonyms for estimable',\n", - " 'clues': [('good', 'deserving of esteem and respect'),\n", - " ('honorable', 'deserving of esteem and respect'),\n", + " 'clues': [('honorable', 'deserving of esteem and respect'),\n", + " ('computable', 'may be computed or estimated'),\n", " ('respectable', 'deserving of esteem and respect'),\n", - " ('computable', 'may be computed or estimated')]},\n", + " ('good', 'deserving of esteem and respect')]},\n", " {'answer': 'esurient',\n", " 'hint': 'synonyms for esurient',\n", - " 'clues': [('ravening', 'devouring or craving food in great quantities'),\n", + " 'clues': [('famished', 'extremely hungry'),\n", + " ('ravenous', 'devouring or craving food in great quantities'),\n", " ('voracious', 'devouring or craving food in great quantities'),\n", " ('wolfish', 'devouring or craving food in great quantities'),\n", + " ('rapacious', 'devouring or craving food in great quantities'),\n", + " ('starved', 'extremely hungry'),\n", + " ('ravening', 'devouring or craving food in great quantities'),\n", " ('devouring',\n", " \"(often followed by `for') ardently or excessively desirous\"),\n", - " ('famished', 'extremely hungry'),\n", - " ('rapacious', 'devouring or craving food in great quantities'),\n", - " ('sharp-set', 'extremely hungry'),\n", - " ('ravenous', 'devouring or craving food in great quantities'),\n", + " ('greedy', \"(often followed by `for') ardently or excessively desirous\"),\n", " ('avid', \"(often followed by `for') ardently or excessively desirous\"),\n", - " ('starved', 'extremely hungry'),\n", - " ('edacious', 'devouring or craving food in great quantities'),\n", - " ('greedy',\n", - " \"(often followed by `for') ardently or excessively desirous\")]},\n", + " ('sharp-set', 'extremely hungry'),\n", + " ('edacious', 'devouring or craving food in great quantities')]},\n", " {'answer': 'etched',\n", " 'hint': 'synonyms for etched',\n", - " 'clues': [('graven', 'cut or impressed into a surface'),\n", - " ('inscribed', 'cut or impressed into a surface'),\n", - " ('engraved', 'cut or impressed into a surface'),\n", - " ('incised', 'cut or impressed into a surface')]},\n", + " 'clues': [('inscribed', 'cut or impressed into a surface'),\n", + " ('graven', 'cut or impressed into a surface'),\n", + " ('incised', 'cut or impressed into a surface'),\n", + " ('engraved', 'cut or impressed into a surface')]},\n", " {'answer': 'eternal',\n", " 'hint': 'synonyms for eternal',\n", - " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n", - " ('everlasting', 'continuing forever or indefinitely'),\n", - " ('interminable', 'tiresomely long; seemingly without end'),\n", - " ('unending', 'continuing forever or indefinitely'),\n", + " 'clues': [('interminable', 'tiresomely long; seemingly without end'),\n", " ('eonian', 'continuing forever or indefinitely'),\n", + " ('endless', 'tiresomely long; seemingly without end'),\n", + " ('unending', 'continuing forever or indefinitely'),\n", " ('unceasing', 'continuing forever or indefinitely'),\n", - " ('ageless', 'continuing forever or indefinitely'),\n", - " ('endless', 'tiresomely long; seemingly without end')]},\n", + " ('perpetual', 'continuing forever or indefinitely'),\n", + " ('everlasting', 'continuing forever or indefinitely'),\n", + " ('ageless', 'continuing forever or indefinitely')]},\n", " {'answer': 'ethereal',\n", " 'hint': 'synonyms for ethereal',\n", - " 'clues': [('airy',\n", + " 'clues': [('gossamer', 'characterized by unusual lightness and delicacy'),\n", + " ('supernal', 'of heaven or the spirit'),\n", + " ('aeriform',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", " ('celestial', 'of heaven or the spirit'),\n", - " ('gossamer', 'characterized by unusual lightness and delicacy'),\n", - " ('aery',\n", - " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", " ('aerial',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('aeriform',\n", + " ('airy',\n", " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle'),\n", - " ('supernal', 'of heaven or the spirit')]},\n", + " ('aery',\n", + " 'characterized by lightness and insubstantiality; as impalpable or intangible as air; - Thomas Carlyle')]},\n", " {'answer': 'ethnic',\n", " 'hint': 'synonyms for ethnic',\n", - " 'clues': [('ethnical',\n", + " 'clues': [('cultural',\n", + " 'denoting or deriving from or distinctive of the ways of living built up by a group of people; - J.F.Kennedy'),\n", + " ('ethnical',\n", " 'denoting or deriving from or distinctive of the ways of living built up by a group of people; - J.F.Kennedy'),\n", - " ('pagan',\n", - " 'not acknowledging the God of Christianity and Judaism and Islam'),\n", " ('heathenish',\n", " 'not acknowledging the God of Christianity and Judaism and Islam'),\n", - " ('cultural',\n", - " 'denoting or deriving from or distinctive of the ways of living built up by a group of people; - J.F.Kennedy'),\n", " ('heathen',\n", + " 'not acknowledging the God of Christianity and Judaism and Islam'),\n", + " ('pagan',\n", " 'not acknowledging the God of Christianity and Judaism and Islam')]},\n", " {'answer': 'even',\n", " 'hint': 'synonyms for even',\n", @@ -45815,135 +45861,135 @@ " 'equal in degree or extent or amount; or equally matched or balanced')]},\n", " {'answer': 'everlasting',\n", " 'hint': 'synonyms for everlasting',\n", - " 'clues': [('perpetual', 'continuing forever or indefinitely'),\n", - " ('sodding',\n", + " 'clues': [('double-dyed',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('pure',\n", + " ('arrant',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('utter',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('consummate',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('thoroughgoing',\n", - " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('arrant',\n", + " ('unending', 'continuing forever or indefinitely'),\n", + " ('stark',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('eonian', 'continuing forever or indefinitely'),\n", - " ('gross',\n", + " ('pure',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('stark',\n", + " ('unadulterated',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('unending', 'continuing forever or indefinitely'),\n", - " ('complete',\n", + " ('consummate',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", " ('perfect',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('eonian', 'continuing forever or indefinitely'),\n", + " ('thoroughgoing',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('unceasing', 'continuing forever or indefinitely'),\n", " ('staring',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('double-dyed',\n", + " ('perpetual', 'continuing forever or indefinitely'),\n", + " ('ageless', 'continuing forever or indefinitely'),\n", + " ('gross',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('unadulterated',\n", + " ('sodding',\n", " 'without qualification; used informally as (often pejorative) intensifiers'),\n", - " ('eternal', 'continuing forever or indefinitely'),\n", - " ('unceasing', 'continuing forever or indefinitely'),\n", - " ('ageless', 'continuing forever or indefinitely')]},\n", + " ('complete',\n", + " 'without qualification; used informally as (often pejorative) intensifiers'),\n", + " ('eternal', 'continuing forever or indefinitely')]},\n", " {'answer': 'everyday',\n", " 'hint': 'synonyms for everyday',\n", - " 'clues': [('mundane',\n", + " 'clues': [('daily', 'appropriate for ordinary or routine occasions'),\n", + " ('quotidian',\n", " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n", " ('routine',\n", " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n", - " ('daily', 'appropriate for ordinary or routine occasions'),\n", - " ('quotidian',\n", - " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n", - " ('workaday',\n", + " ('casual', 'appropriate for ordinary or routine occasions'),\n", + " ('mundane',\n", " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n", " ('unremarkable',\n", " 'found in the ordinary course of events; ; ; - Anita Diamant'),\n", - " ('casual', 'appropriate for ordinary or routine occasions')]},\n", + " ('workaday',\n", + " 'found in the ordinary course of events; ; ; - Anita Diamant')]},\n", " {'answer': 'evident',\n", " 'hint': 'synonyms for evident',\n", " 'clues': [('patent',\n", " 'clearly revealed to the mind or the senses or judgment'),\n", " ('discernible', 'capable of being seen or noticed'),\n", + " ('apparent', 'clearly revealed to the mind or the senses or judgment'),\n", " ('unmistakable',\n", " 'clearly revealed to the mind or the senses or judgment'),\n", - " ('apparent', 'clearly revealed to the mind or the senses or judgment'),\n", + " ('plain', 'clearly revealed to the mind or the senses or judgment'),\n", " ('manifest', 'clearly revealed to the mind or the senses or judgment'),\n", - " ('observable', 'capable of being seen or noticed'),\n", - " ('plain', 'clearly revealed to the mind or the senses or judgment')]},\n", + " ('observable', 'capable of being seen or noticed')]},\n", " {'answer': 'evil',\n", " 'hint': 'synonyms for evil',\n", - " 'clues': [('malevolent', 'having or exerting a malignant influence'),\n", - " ('vicious', 'having the nature of vice'),\n", + " 'clues': [('vicious', 'having the nature of vice'),\n", + " ('malefic', 'having or exerting a malignant influence'),\n", " ('malign', 'having or exerting a malignant influence'),\n", - " ('malefic', 'having or exerting a malignant influence')]},\n", + " ('malevolent', 'having or exerting a malignant influence')]},\n", " {'answer': 'evocative',\n", " 'hint': 'synonyms for evocative',\n", - " 'clues': [('reminiscent', 'serving to bring to mind; - Wilder Hobson'),\n", - " ('redolent', 'serving to bring to mind; - Wilder Hobson'),\n", + " 'clues': [('resonant', 'serving to bring to mind; - Wilder Hobson'),\n", " ('remindful', 'serving to bring to mind; - Wilder Hobson'),\n", - " ('resonant', 'serving to bring to mind; - Wilder Hobson')]},\n", + " ('redolent', 'serving to bring to mind; - Wilder Hobson'),\n", + " ('reminiscent', 'serving to bring to mind; - Wilder Hobson')]},\n", " {'answer': 'ex',\n", " 'hint': 'synonyms for ex',\n", - " 'clues': [('passe', 'out of fashion'),\n", - " ('antique', 'out of fashion'),\n", + " 'clues': [('antique', 'out of fashion'),\n", + " ('outmoded', 'out of fashion'),\n", + " ('passee', 'out of fashion'),\n", " ('demode', 'out of fashion'),\n", - " ('old-hat', 'out of fashion'),\n", " ('old-fashioned', 'out of fashion'),\n", - " ('outmoded', 'out of fashion')]},\n", + " ('old-hat', 'out of fashion')]},\n", " {'answer': 'exacting',\n", " 'hint': 'synonyms for exacting',\n", - " 'clues': [('strict', 'severe and unremitting in making demands'),\n", + " 'clues': [('stern', 'severe and unremitting in making demands'),\n", " ('fastidious',\n", " 'having complicated nutritional requirements; especially growing only in special artificial cultures'),\n", " ('exigent', 'requiring precise accuracy'),\n", - " ('stern', 'severe and unremitting in making demands')]},\n", + " ('strict', 'severe and unremitting in making demands')]},\n", " {'answer': 'exaggerated',\n", " 'hint': 'synonyms for exaggerated',\n", - " 'clues': [('enlarged', 'enlarged to an abnormal degree'),\n", - " ('overstated', 'represented as greater than is true or reasonable'),\n", + " 'clues': [('magnified', 'enlarged to an abnormal degree'),\n", " ('overdone', 'represented as greater than is true or reasonable'),\n", - " ('magnified', 'enlarged to an abnormal degree')]},\n", + " ('enlarged', 'enlarged to an abnormal degree'),\n", + " ('overstated', 'represented as greater than is true or reasonable')]},\n", " {'answer': 'exalted',\n", " 'hint': 'synonyms for exalted',\n", - " 'clues': [('elevated',\n", - " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('noble-minded',\n", + " 'clues': [('grand',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('rarefied',\n", + " ('sublime',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('high-flown',\n", + " ('elevated',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('high-minded',\n", + " ('rarified',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('grand',\n", + " ('high-flown',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", - " ('sublime',\n", + " ('noble-minded',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", " ('lofty',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", + " ('high-minded',\n", + " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks'),\n", " ('idealistic',\n", " 'of high moral or intellectual value; elevated in nature or style; ; - Oliver Franks')]},\n", " {'answer': 'exasperating',\n", " 'hint': 'synonyms for exasperating',\n", - " 'clues': [('maddening', 'extremely annoying or displeasing'),\n", - " ('infuriating', 'extremely annoying or displeasing'),\n", - " ('aggravating', 'making worse'),\n", + " 'clues': [('infuriating', 'extremely annoying or displeasing'),\n", " ('exacerbating', 'making worse'),\n", - " ('vexing', 'extremely annoying or displeasing')]},\n", + " ('vexing', 'extremely annoying or displeasing'),\n", + " ('maddening', 'extremely annoying or displeasing'),\n", + " ('aggravating', 'making worse')]},\n", " {'answer': 'exceeding',\n", " 'hint': 'synonyms for exceeding',\n", " 'clues': [('exceptional',\n", " 'far beyond what is usual in magnitude or degree'),\n", " ('prodigious', 'far beyond what is usual in magnitude or degree'),\n", - " ('olympian', 'far beyond what is usual in magnitude or degree'),\n", - " ('surpassing', 'far beyond what is usual in magnitude or degree')]},\n", + " ('surpassing', 'far beyond what is usual in magnitude or degree'),\n", + " ('olympian', 'far beyond what is usual in magnitude or degree')]},\n", " ...],\n", " 'portion': 0}]" ] }, - "execution_count": 95, + "execution_count": 30, "metadata": {}, "output_type": "execute_result" } @@ -45962,7 +46008,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 11, "id": "091e0422-99be-4b20-a20d-17ac296990b6", "metadata": {}, "outputs": [ @@ -45972,7 +46018,7 @@ "[['accost', 'address']]" ] }, - "execution_count": 81, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } @@ -46022,7 +46068,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.5" + "version": "3.11.6" } }, "nbformat": 4, -- cgit v1.2.3