From 19bfee3bd57e9e39343787e19ba79881f1399bf6 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Thu, 9 Oct 2014 21:39:36 +0100 Subject: [PATCH] Now added slides --- .gitignore | 45 + Untitled0.ipynb | 3340 +++++++++++++++++++++++++++++++++++ adaptive.csv | 10 + adaptive_excluded.csv | 1001 +++++++++++ adaptive_included.csv | 1001 +++++++++++ adaptive_pattern.csv | 1001 +++++++++++ fixed_alphabetical.csv | 1001 +++++++++++ fixed_order.csv | 1001 +++++++++++ hangman-logging.ipynb | 3772 ++++++++++++++++++++++++++++++++++++++++ programming.html | 448 +++++ 10 files changed, 12620 insertions(+) create mode 100644 .gitignore create mode 100644 Untitled0.ipynb create mode 100644 adaptive.csv create mode 100644 adaptive_excluded.csv create mode 100644 adaptive_included.csv create mode 100644 adaptive_pattern.csv create mode 100644 fixed_alphabetical.csv create mode 100644 fixed_order.csv create mode 100644 hangman-logging.ipynb create mode 100644 programming.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0546add --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +*.py[cod] + +# C extensions +*.so + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 +__pycache__ + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox +nosetests.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# IPython +.ipynb* + +# Sublime text +*.sublime-workspace + +# Logs +*.log diff --git a/Untitled0.ipynb b/Untitled0.ipynb new file mode 100644 index 0000000..992afac --- /dev/null +++ b/Untitled0.ipynb @@ -0,0 +1,3340 @@ +{ + "metadata": { + "name": "", + "signature": "sha256:a4f2510e4612d8ec6693f09edf9acc836f64b1078feac9000ff71e3ea775ee2f" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "code", + "collapsed": false, + "input": [ + "members = ['Freddie', 'Brian', 'Roger', 'John']\n", + "tour_lineup = members\n", + "tour_lineup[0] = 'Paul'\n", + "print(tour_lineup)\n", + "print(members)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "['Paul', 'Brian', 'Roger', 'John']\n", + "['Paul', 'Brian', 'Roger', 'John']\n" + ] + } + ], + "prompt_number": 1 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "members[1:2]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 3, + "text": [ + "['Brian']" + ] + } + ], + "prompt_number": 3 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "members = ['Freddie', 'Brian', 'Roger', 'John']\n", + "tour_lineup = members\n", + "tour_lineup == members" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 8, + "text": [ + "True" + ] + } + ], + "prompt_number": 8 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "tour_lineup = members[:]\n", + "tour_lineup == members" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 6, + "text": [ + "True" + ] + } + ], + "prompt_number": 6 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "tour_lineup is members" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 9, + "text": [ + "True" + ] + } + ], + "prompt_number": 9 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "[(a, b, int((a**2 + b**2)**0.5)) \n", + " for a in range(1, 20) \n", + " for b in range(a, 20) \n", + " if int((a**2 + b**2)**0.5) == (a**2 + b**2)**0.5]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 18, + "text": [ + "[(3, 4, 5), (5, 12, 13), (6, 8, 10), (8, 15, 17), (9, 12, 15), (12, 16, 20)]" + ] + } + ], + "prompt_number": 18 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "GRID_STRING = \"\"\"08 02 22 97 38 15 00 40 00 75 04 05 07 78 52 12 50 77 91 08\n", + "49 49 99 40 17 81 18 57 60 87 17 40 98 43 69 48 04 56 62 00\n", + "81 49 31 73 55 79 14 29 93 71 40 67 53 88 30 03 49 13 36 65\n", + "52 70 95 23 04 60 11 42 69 24 68 56 01 32 56 71 37 02 36 91\n", + "22 31 16 71 51 67 63 89 41 92 36 54 22 40 40 28 66 33 13 80\n", + "24 47 32 60 99 03 45 02 44 75 33 53 78 36 84 20 35 17 12 50\n", + "32 98 81 28 64 23 67 10 26 38 40 67 59 54 70 66 18 38 64 70\n", + "67 26 20 68 02 62 12 20 95 63 94 39 63 08 40 91 66 49 94 21\n", + "24 55 58 05 66 73 99 26 97 17 78 78 96 83 14 88 34 89 63 72\n", + "21 36 23 09 75 00 76 44 20 45 35 14 00 61 33 97 34 31 33 95\n", + "78 17 53 28 22 75 31 67 15 94 03 80 04 62 16 14 09 53 56 92\n", + "16 39 05 42 96 35 31 47 55 58 88 24 00 17 54 24 36 29 85 57\n", + "86 56 00 48 35 71 89 07 05 44 44 37 44 60 21 58 51 54 17 58\n", + "19 80 81 68 05 94 47 69 28 73 92 13 86 52 17 77 04 89 55 40\n", + "04 52 08 83 97 35 99 16 07 97 57 32 16 26 26 79 33 27 98 66\n", + "88 36 68 87 57 62 20 72 03 46 33 67 46 55 12 32 63 93 53 69\n", + "04 42 16 73 38 25 39 11 24 94 72 18 08 46 29 32 40 62 76 36\n", + "20 69 36 41 72 30 23 88 34 62 99 69 82 67 59 85 74 04 36 16\n", + "20 73 35 29 78 31 90 01 74 31 49 71 48 86 81 16 23 57 05 54\n", + "01 70 54 71 83 51 54 69 16 92 33 48 61 43 52 01 89 19 67 48\"\"\"\n", + "ROWS = COLUMNS = 20" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 22 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "grid_nums = [int(n) for n in GRID_STRING.split()]\n", + "grid_nums" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 21, + "text": [ + "[8,\n", + " 2,\n", + " 22,\n", + " 97,\n", + " 38,\n", + " 15,\n", + " 0,\n", + " 40,\n", + " 0,\n", + " 75,\n", + " 4,\n", + " 5,\n", + " 7,\n", + " 78,\n", + " 52,\n", + " 12,\n", + " 50,\n", + " 77,\n", + " 91,\n", + " 8,\n", + " 49,\n", + " 49,\n", + " 99,\n", + " 40,\n", + " 17,\n", + " 81,\n", + " 18,\n", + " 57,\n", + " 60,\n", + " 87,\n", + " 17,\n", + " 40,\n", + " 98,\n", + " 43,\n", + " 69,\n", + " 48,\n", + " 4,\n", + " 56,\n", + " 62,\n", + " 0,\n", + " 81,\n", + " 49,\n", + " 31,\n", + " 73,\n", + " 55,\n", + " 79,\n", + " 14,\n", + " 29,\n", + " 93,\n", + " 71,\n", + " 40,\n", + " 67,\n", + " 53,\n", + " 88,\n", + " 30,\n", + " 3,\n", + " 49,\n", + " 13,\n", + " 36,\n", + " 65,\n", + " 52,\n", + " 70,\n", + " 95,\n", + " 23,\n", + " 4,\n", + " 60,\n", + " 11,\n", + " 42,\n", + " 69,\n", + " 24,\n", + " 68,\n", + " 56,\n", + " 1,\n", + " 32,\n", + " 56,\n", + " 71,\n", + " 37,\n", + " 2,\n", + " 36,\n", + " 91,\n", + " 22,\n", + " 31,\n", + " 16,\n", + " 71,\n", + " 51,\n", + " 67,\n", + " 63,\n", + " 89,\n", + " 41,\n", + " 92,\n", + " 36,\n", + " 54,\n", + " 22,\n", + " 40,\n", + " 40,\n", + " 28,\n", + " 66,\n", + " 33,\n", + " 13,\n", + " 80,\n", + " 24,\n", + " 47,\n", + " 32,\n", + " 60,\n", + " 99,\n", + " 3,\n", + " 45,\n", + " 2,\n", + " 44,\n", + " 75,\n", + " 33,\n", + " 53,\n", + " 78,\n", + " 36,\n", + " 84,\n", + " 20,\n", + " 35,\n", + " 17,\n", + " 12,\n", + " 50,\n", + " 32,\n", + " 98,\n", + " 81,\n", + " 28,\n", + " 64,\n", + " 23,\n", + " 67,\n", + " 10,\n", + " 26,\n", + " 38,\n", + " 40,\n", + " 67,\n", + " 59,\n", + " 54,\n", + " 70,\n", + " 66,\n", + " 18,\n", + " 38,\n", + " 64,\n", + " 70,\n", + " 67,\n", + " 26,\n", + " 20,\n", + " 68,\n", + " 2,\n", + " 62,\n", + " 12,\n", + " 20,\n", + " 95,\n", + " 63,\n", + " 94,\n", + " 39,\n", + " 63,\n", + " 8,\n", + " 40,\n", + " 91,\n", + " 66,\n", + " 49,\n", + " 94,\n", + " 21,\n", + " 24,\n", + " 55,\n", + " 58,\n", + " 5,\n", + " 66,\n", + " 73,\n", + " 99,\n", + " 26,\n", + " 97,\n", + " 17,\n", + " 78,\n", + " 78,\n", + " 96,\n", + " 83,\n", + " 14,\n", + " 88,\n", + " 34,\n", + " 89,\n", + " 63,\n", + " 72,\n", + " 21,\n", + " 36,\n", + " 23,\n", + " 9,\n", + " 75,\n", + " 0,\n", + " 76,\n", + " 44,\n", + " 20,\n", + " 45,\n", + " 35,\n", + " 14,\n", + " 0,\n", + " 61,\n", + " 33,\n", + " 97,\n", + " 34,\n", + " 31,\n", + " 33,\n", + " 95,\n", + " 78,\n", + " 17,\n", + " 53,\n", + " 28,\n", + " 22,\n", + " 75,\n", + " 31,\n", + " 67,\n", + " 15,\n", + " 94,\n", + " 3,\n", + " 80,\n", + " 4,\n", + " 62,\n", + " 16,\n", + " 14,\n", + " 9,\n", + " 53,\n", + " 56,\n", + " 92,\n", + " 16,\n", + " 39,\n", + " 5,\n", + " 42,\n", + " 96,\n", + " 35,\n", + " 31,\n", + " 47,\n", + " 55,\n", + " 58,\n", + " 88,\n", + " 24,\n", + " 0,\n", + " 17,\n", + " 54,\n", + " 24,\n", + " 36,\n", + " 29,\n", + " 85,\n", + " 57,\n", + " 86,\n", + " 56,\n", + " 0,\n", + " 48,\n", + " 35,\n", + " 71,\n", + " 89,\n", + " 7,\n", + " 5,\n", + " 44,\n", + " 44,\n", + " 37,\n", + " 44,\n", + " 60,\n", + " 21,\n", + " 58,\n", + " 51,\n", + " 54,\n", + " 17,\n", + " 58,\n", + " 19,\n", + " 80,\n", + " 81,\n", + " 68,\n", + " 5,\n", + " 94,\n", + " 47,\n", + " 69,\n", + " 28,\n", + " 73,\n", + " 92,\n", + " 13,\n", + " 86,\n", + " 52,\n", + " 17,\n", + " 77,\n", + " 4,\n", + " 89,\n", + " 55,\n", + " 40,\n", + " 4,\n", + " 52,\n", + " 8,\n", + " 83,\n", + " 97,\n", + " 35,\n", + " 99,\n", + " 16,\n", + " 7,\n", + " 97,\n", + " 57,\n", + " 32,\n", + " 16,\n", + " 26,\n", + " 26,\n", + " 79,\n", + " 33,\n", + " 27,\n", + " 98,\n", + " 66,\n", + " 88,\n", + " 36,\n", + " 68,\n", + " 87,\n", + " 57,\n", + " 62,\n", + " 20,\n", + " 72,\n", + " 3,\n", + " 46,\n", + " 33,\n", + " 67,\n", + " 46,\n", + " 55,\n", + " 12,\n", + " 32,\n", + " 63,\n", + " 93,\n", + " 53,\n", + " 69,\n", + " 4,\n", + " 42,\n", + " 16,\n", + " 73,\n", + " 38,\n", + " 25,\n", + " 39,\n", + " 11,\n", + " 24,\n", + " 94,\n", + " 72,\n", + " 18,\n", + " 8,\n", + " 46,\n", + " 29,\n", + " 32,\n", + " 40,\n", + " 62,\n", + " 76,\n", + " 36,\n", + " 20,\n", + " 69,\n", + " 36,\n", + " 41,\n", + " 72,\n", + " 30,\n", + " 23,\n", + " 88,\n", + " 34,\n", + " 62,\n", + " 99,\n", + " 69,\n", + " 82,\n", + " 67,\n", + " 59,\n", + " 85,\n", + " 74,\n", + " 4,\n", + " 36,\n", + " 16,\n", + " 20,\n", + " 73,\n", + " 35,\n", + " 29,\n", + " 78,\n", + " 31,\n", + " 90,\n", + " 1,\n", + " 74,\n", + " 31,\n", + " 49,\n", + " 71,\n", + " 48,\n", + " 86,\n", + " 81,\n", + " 16,\n", + " 23,\n", + " 57,\n", + " 5,\n", + " 54,\n", + " 1,\n", + " 70,\n", + " 54,\n", + " 71,\n", + " 83,\n", + " 51,\n", + " 54,\n", + " 69,\n", + " 16,\n", + " 92,\n", + " 33,\n", + " 48,\n", + " 61,\n", + " 43,\n", + " 52,\n", + " 1,\n", + " 89,\n", + " 19,\n", + " 67,\n", + " 48]" + ] + } + ], + "prompt_number": 21 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g1 = []\n", + "for rowstart in range(0, ROWS * COLUMNS, COLUMNS):\n", + " g1.append(grid_nums[rowstart:rowstart+COLUMNS])\n", + "g1" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 24, + "text": [ + "[[8, 2, 22, 97, 38, 15, 0, 40, 0, 75, 4, 5, 7, 78, 52, 12, 50, 77, 91, 8],\n", + " [49,\n", + " 49,\n", + " 99,\n", + " 40,\n", + " 17,\n", + " 81,\n", + " 18,\n", + " 57,\n", + " 60,\n", + " 87,\n", + " 17,\n", + " 40,\n", + " 98,\n", + " 43,\n", + " 69,\n", + " 48,\n", + " 4,\n", + " 56,\n", + " 62,\n", + " 0],\n", + " [81,\n", + " 49,\n", + " 31,\n", + " 73,\n", + " 55,\n", + " 79,\n", + " 14,\n", + " 29,\n", + " 93,\n", + " 71,\n", + " 40,\n", + " 67,\n", + " 53,\n", + " 88,\n", + " 30,\n", + " 3,\n", + " 49,\n", + " 13,\n", + " 36,\n", + " 65],\n", + " [52, 70, 95, 23, 4, 60, 11, 42, 69, 24, 68, 56, 1, 32, 56, 71, 37, 2, 36, 91],\n", + " [22,\n", + " 31,\n", + " 16,\n", + " 71,\n", + " 51,\n", + " 67,\n", + " 63,\n", + " 89,\n", + " 41,\n", + " 92,\n", + " 36,\n", + " 54,\n", + " 22,\n", + " 40,\n", + " 40,\n", + " 28,\n", + " 66,\n", + " 33,\n", + " 13,\n", + " 80],\n", + " [24,\n", + " 47,\n", + " 32,\n", + " 60,\n", + " 99,\n", + " 3,\n", + " 45,\n", + " 2,\n", + " 44,\n", + " 75,\n", + " 33,\n", + " 53,\n", + " 78,\n", + " 36,\n", + " 84,\n", + " 20,\n", + " 35,\n", + " 17,\n", + " 12,\n", + " 50],\n", + " [32,\n", + " 98,\n", + " 81,\n", + " 28,\n", + " 64,\n", + " 23,\n", + " 67,\n", + " 10,\n", + " 26,\n", + " 38,\n", + " 40,\n", + " 67,\n", + " 59,\n", + " 54,\n", + " 70,\n", + " 66,\n", + " 18,\n", + " 38,\n", + " 64,\n", + " 70],\n", + " [67,\n", + " 26,\n", + " 20,\n", + " 68,\n", + " 2,\n", + " 62,\n", + " 12,\n", + " 20,\n", + " 95,\n", + " 63,\n", + " 94,\n", + " 39,\n", + " 63,\n", + " 8,\n", + " 40,\n", + " 91,\n", + " 66,\n", + " 49,\n", + " 94,\n", + " 21],\n", + " [24,\n", + " 55,\n", + " 58,\n", + " 5,\n", + " 66,\n", + " 73,\n", + " 99,\n", + " 26,\n", + " 97,\n", + " 17,\n", + " 78,\n", + " 78,\n", + " 96,\n", + " 83,\n", + " 14,\n", + " 88,\n", + " 34,\n", + " 89,\n", + " 63,\n", + " 72],\n", + " [21, 36, 23, 9, 75, 0, 76, 44, 20, 45, 35, 14, 0, 61, 33, 97, 34, 31, 33, 95],\n", + " [78, 17, 53, 28, 22, 75, 31, 67, 15, 94, 3, 80, 4, 62, 16, 14, 9, 53, 56, 92],\n", + " [16,\n", + " 39,\n", + " 5,\n", + " 42,\n", + " 96,\n", + " 35,\n", + " 31,\n", + " 47,\n", + " 55,\n", + " 58,\n", + " 88,\n", + " 24,\n", + " 0,\n", + " 17,\n", + " 54,\n", + " 24,\n", + " 36,\n", + " 29,\n", + " 85,\n", + " 57],\n", + " [86, 56, 0, 48, 35, 71, 89, 7, 5, 44, 44, 37, 44, 60, 21, 58, 51, 54, 17, 58],\n", + " [19,\n", + " 80,\n", + " 81,\n", + " 68,\n", + " 5,\n", + " 94,\n", + " 47,\n", + " 69,\n", + " 28,\n", + " 73,\n", + " 92,\n", + " 13,\n", + " 86,\n", + " 52,\n", + " 17,\n", + " 77,\n", + " 4,\n", + " 89,\n", + " 55,\n", + " 40],\n", + " [4, 52, 8, 83, 97, 35, 99, 16, 7, 97, 57, 32, 16, 26, 26, 79, 33, 27, 98, 66],\n", + " [88,\n", + " 36,\n", + " 68,\n", + " 87,\n", + " 57,\n", + " 62,\n", + " 20,\n", + " 72,\n", + " 3,\n", + " 46,\n", + " 33,\n", + " 67,\n", + " 46,\n", + " 55,\n", + " 12,\n", + " 32,\n", + " 63,\n", + " 93,\n", + " 53,\n", + " 69],\n", + " [4,\n", + " 42,\n", + " 16,\n", + " 73,\n", + " 38,\n", + " 25,\n", + " 39,\n", + " 11,\n", + " 24,\n", + " 94,\n", + " 72,\n", + " 18,\n", + " 8,\n", + " 46,\n", + " 29,\n", + " 32,\n", + " 40,\n", + " 62,\n", + " 76,\n", + " 36],\n", + " [20,\n", + " 69,\n", + " 36,\n", + " 41,\n", + " 72,\n", + " 30,\n", + " 23,\n", + " 88,\n", + " 34,\n", + " 62,\n", + " 99,\n", + " 69,\n", + " 82,\n", + " 67,\n", + " 59,\n", + " 85,\n", + " 74,\n", + " 4,\n", + " 36,\n", + " 16],\n", + " [20,\n", + " 73,\n", + " 35,\n", + " 29,\n", + " 78,\n", + " 31,\n", + " 90,\n", + " 1,\n", + " 74,\n", + " 31,\n", + " 49,\n", + " 71,\n", + " 48,\n", + " 86,\n", + " 81,\n", + " 16,\n", + " 23,\n", + " 57,\n", + " 5,\n", + " 54],\n", + " [1,\n", + " 70,\n", + " 54,\n", + " 71,\n", + " 83,\n", + " 51,\n", + " 54,\n", + " 69,\n", + " 16,\n", + " 92,\n", + " 33,\n", + " 48,\n", + " 61,\n", + " 43,\n", + " 52,\n", + " 1,\n", + " 89,\n", + " 19,\n", + " 67,\n", + " 48]]" + ] + } + ], + "prompt_number": 24 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g2 = {}\n", + "for x in range(COLUMNS):\n", + " for y in range(ROWS):\n", + " g2[(x, y)] = grid_nums[x + y * COLUMNS]\n", + "g2" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 30, + "text": [ + "{(7, 3): 42,\n", + " (6, 9): 76,\n", + " (17, 11): 29,\n", + " (19, 19): 48,\n", + " (16, 6): 18,\n", + " (7, 12): 7,\n", + " (19, 4): 80,\n", + " (18, 4): 13,\n", + " (18, 19): 67,\n", + " (8, 5): 44,\n", + " (10, 8): 78,\n", + " (9, 0): 75,\n", + " (11, 5): 53,\n", + " (10, 7): 94,\n", + " (14, 18): 81,\n", + " (12, 6): 59,\n", + " (10, 18): 49,\n", + " (0, 17): 20,\n", + " (15, 11): 24,\n", + " (14, 1): 69,\n", + " (13, 7): 8,\n", + " (12, 17): 82,\n", + " (0, 4): 22,\n", + " (15, 4): 28,\n", + " (1, 1): 49,\n", + " (4, 10): 22,\n", + " (3, 2): 73,\n", + " (2, 6): 81,\n", + " (5, 11): 35,\n", + " (4, 5): 99,\n", + " (6, 0): 0,\n", + " (4, 16): 38,\n", + " (7, 5): 2,\n", + " (19, 13): 40,\n", + " (7, 0): 40,\n", + " (16, 19): 89,\n", + " (17, 7): 49,\n", + " (18, 10): 56,\n", + " (17, 18): 57,\n", + " (16, 8): 34,\n", + " (8, 12): 5,\n", + " (9, 9): 45,\n", + " (10, 14): 57,\n", + " (8, 18): 74,\n", + " (11, 15): 67,\n", + " (9, 19): 92,\n", + " (15, 16): 32,\n", + " (14, 8): 14,\n", + " (13, 0): 78,\n", + " (12, 8): 96,\n", + " (11, 16): 18,\n", + " (15, 13): 77,\n", + " (13, 13): 52,\n", + " (2, 18): 35,\n", + " (0, 14): 4,\n", + " (3, 11): 42,\n", + " (2, 1): 99,\n", + " (1, 15): 36,\n", + " (4, 12): 35,\n", + " (2, 12): 0,\n", + " (5, 1): 81,\n", + " (3, 17): 41,\n", + " (16, 7): 66,\n", + " (6, 14): 99,\n", + " (19, 18): 54,\n", + " (17, 6): 38,\n", + " (7, 15): 72,\n", + " (19, 7): 21,\n", + " (18, 5): 12,\n", + " (7, 1): 57,\n", + " (18, 16): 76,\n", + " (8, 6): 26,\n", + " (10, 9): 35,\n", + " (9, 7): 63,\n", + " (11, 4): 54,\n", + " (10, 4): 36,\n", + " (14, 19): 52,\n", + " (12, 7): 63,\n", + " (11, 9): 14,\n", + " (10, 19): 33,\n", + " (0, 18): 20,\n", + " (15, 10): 14,\n", + " (14, 6): 70,\n", + " (13, 6): 54,\n", + " (12, 18): 48,\n", + " (1, 19): 70,\n", + " (0, 5): 24,\n", + " (15, 7): 91,\n", + " (13, 19): 43,\n", + " (1, 0): 2,\n", + " (0, 8): 24,\n", + " (4, 11): 96,\n", + " (3, 5): 60,\n", + " (2, 7): 20,\n", + " (5, 10): 75,\n", + " (4, 6): 64,\n", + " (6, 1): 18,\n", + " (5, 7): 62,\n", + " (4, 17): 72,\n", + " (16, 1): 4,\n", + " (19, 12): 58,\n", + " (17, 12): 54,\n", + " (7, 17): 88,\n", + " (19, 1): 0,\n", + " (18, 11): 85,\n", + " (7, 6): 10,\n", + " (8, 13): 28,\n", + " (9, 8): 17,\n", + " (8, 0): 0,\n", + " (10, 15): 33,\n", + " (8, 19): 16,\n", + " (11, 14): 32,\n", + " (9, 18): 31,\n", + " (15, 19): 1,\n", + " (14, 9): 33,\n", + " (12, 9): 0,\n", + " (11, 19): 48,\n", + " (15, 12): 58,\n", + " (13, 12): 60,\n", + " (2, 19): 54,\n", + " (0, 15): 88,\n", + " (3, 10): 28,\n", + " (1, 14): 52,\n", + " (4, 13): 5,\n", + " (2, 13): 81,\n", + " (5, 0): 15,\n", + " (3, 16): 73,\n", + " (6, 15): 20,\n", + " (16, 9): 34,\n", + " (16, 10): 9,\n", + " (7, 14): 16,\n", + " (6, 18): 90,\n", + " (19, 6): 70,\n", + " (18, 2): 36,\n", + " (17, 10): 53,\n", + " (18, 17): 36,\n", + " (16, 2): 49,\n", + " (8, 7): 95,\n", + " (9, 6): 38,\n", + " (11, 7): 39,\n", + " (10, 5): 33,\n", + " (14, 16): 29,\n", + " (12, 0): 7,\n", + " (11, 8): 78,\n", + " (10, 16): 72,\n", + " (0, 19): 1,\n", + " (14, 7): 40,\n", + " (13, 5): 36,\n", + " (12, 19): 61,\n", + " (1, 18): 73,\n", + " (0, 6): 32,\n", + " (15, 6): 66,\n", + " (13, 18): 86,\n", + " (1, 7): 26,\n", + " (0, 9): 21,\n", + " (3, 4): 71,\n", + " (2, 4): 16,\n", + " (5, 9): 0,\n", + " (4, 7): 2,\n", + " (6, 6): 67,\n", + " (5, 6): 23,\n", + " (4, 18): 78,\n", + " (7, 7): 20,\n", + " (5, 19): 51,\n", + " (19, 15): 69,\n", + " (17, 3): 2,\n", + " (7, 16): 11,\n", + " (19, 0): 8,\n", + " (18, 8): 63,\n", + " (17, 16): 62,\n", + " (7, 4): 89,\n", + " (9, 15): 46,\n", + " (8, 1): 60,\n", + " (10, 12): 44,\n", + " (11, 1): 40,\n", + " (9, 17): 62,\n", + " (15, 18): 16,\n", + " (14, 14): 26,\n", + " (12, 10): 4,\n", + " (11, 18): 71,\n", + " (15, 15): 32,\n", + " (13, 11): 17,\n", + " (2, 16): 16,\n", + " (0, 0): 8,\n", + " (8, 14): 7,\n", + " (1, 13): 80,\n", + " (4, 14): 97,\n", + " (2, 10): 53,\n", + " (5, 15): 62,\n", + " (3, 19): 71,\n", + " (6, 12): 89,\n", + " (17, 4): 33,\n", + " (16, 12): 51,\n", + " (6, 19): 54,\n", + " (19, 9): 95,\n", + " (18, 3): 36,\n", + " (17, 9): 31,\n", + " (18, 14): 98,\n", + " (17, 17): 4,\n", + " (16, 0): 50,\n", + " (16, 15): 63,\n", + " (9, 5): 75,\n", + " (11, 6): 67,\n", + " (10, 2): 40,\n", + " (14, 17): 59,\n", + " (12, 1): 98,\n", + " (11, 11): 24,\n", + " (10, 17): 99,\n", + " (14, 4): 40,\n", + " (13, 4): 40,\n", + " (12, 12): 44,\n", + " (1, 17): 69,\n", + " (0, 7): 67,\n", + " (15, 1): 48,\n", + " (13, 17): 67,\n", + " (1, 6): 98,\n", + " (0, 10): 78,\n", + " (17, 13): 89,\n", + " (3, 7): 68,\n", + " (2, 5): 32,\n", + " (1, 11): 39,\n", + " (5, 8): 73,\n", + " (4, 0): 38,\n", + " (6, 7): 12,\n", + " (5, 5): 3,\n", + " (4, 19): 83,\n", + " (16, 3): 37,\n", + " (6, 10): 31,\n", + " (5, 18): 31,\n", + " (19, 14): 66,\n", + " (17, 2): 13,\n", + " (7, 19): 69,\n", + " (19, 3): 91,\n", + " (18, 9): 33,\n", + " (8, 15): 3,\n", + " (9, 14): 97,\n", + " (8, 2): 93,\n", + " (10, 13): 92,\n", + " (9, 3): 24,\n", + " (11, 0): 5,\n", + " (9, 16): 94,\n", + " (14, 15): 12,\n", + " (12, 11): 0,\n", + " (15, 14): 79,\n", + " (14, 2): 30,\n", + " (13, 10): 62,\n", + " (2, 17): 36,\n", + " (0, 1): 49,\n", + " (3, 12): 48,\n", + " (1, 12): 56,\n", + " (4, 15): 57,\n", + " (3, 1): 40,\n", + " (2, 11): 5,\n", + " (5, 14): 35,\n", + " (3, 18): 29,\n", + " (6, 13): 47,\n", + " (7, 8): 26,\n", + " (6, 16): 39,\n", + " (19, 8): 72,\n", + " (18, 0): 91,\n", + " (17, 8): 89,\n", + " (16, 16): 40,\n", + " (18, 15): 53,\n", + " (8, 9): 20,\n", + " (9, 4): 92,\n", + " (7, 11): 47,\n", + " (10, 3): 68,\n", + " (12, 2): 53,\n", + " (11, 10): 80,\n", + " (14, 5): 84,\n", + " (13, 3): 32,\n", + " (12, 13): 86,\n", + " (1, 16): 42,\n", + " (3, 13): 68,\n", + " (15, 0): 12,\n", + " (13, 16): 46,\n", + " (1, 5): 47,\n", + " (0, 11): 16,\n", + " (3, 6): 28,\n", + " (2, 2): 31,\n", + " (1, 10): 17,\n", + " (4, 1): 17,\n", + " (6, 4): 63,\n", + " (5, 4): 67,\n", + " (16, 4): 66,\n", + " (6, 11): 31,\n", + " (5, 17): 30,\n", + " (19, 17): 16,\n", + " (17, 1): 56,\n", + " (7, 18): 1,\n", + " (19, 2): 65,\n", + " (18, 6): 64,\n", + " (9, 13): 73,\n", + " (8, 3): 69,\n", + " (10, 10): 3,\n", + " (9, 2): 71,\n", + " (16, 13): 4,\n", + " (11, 3): 56,\n", + " (14, 12): 21,\n", + " (12, 4): 22,\n", + " (15, 9): 97,\n", + " (14, 3): 56,\n", + " (13, 9): 61,\n", + " (0, 2): 81,\n", + " (3, 15): 87,\n", + " (1, 3): 70,\n", + " (4, 8): 66,\n", + " (3, 0): 97,\n", + " (2, 8): 58,\n", + " (5, 13): 94,\n", + " (6, 2): 14,\n", + " (16, 14): 33,\n", + " (6, 17): 23,\n", + " (19, 11): 57,\n", + " (18, 1): 62,\n", + " (17, 15): 93,\n", + " (16, 17): 74,\n", + " (18, 12): 17,\n", + " (8, 10): 15,\n", + " (9, 11): 58,\n", + " (10, 0): 4,\n", + " (8, 16): 24,\n", + " (12, 3): 1,\n", + " (11, 13): 13,\n", + " (14, 10): 16,\n", + " (13, 2): 88,\n", + " (12, 14): 16,\n", + " (15, 3): 71,\n", + " (13, 15): 55,\n", + " (1, 4): 31,\n", + " (0, 12): 86,\n", + " (3, 9): 9,\n", + " (2, 3): 95,\n", + " (1, 9): 36,\n", + " (4, 2): 55,\n", + " (2, 14): 8,\n", + " (6, 5): 45,\n", + " (5, 3): 60,\n", + " (16, 5): 35,\n", + " (6, 8): 99,\n", + " (5, 16): 25,\n", + " (19, 16): 36,\n", + " (17, 0): 77,\n", + " (7, 13): 69,\n", + " (19, 5): 50,\n", + " (18, 7): 94,\n", + " (7, 9): 44,\n", + " (18, 18): 5,\n", + " (9, 12): 44,\n", + " (8, 4): 41,\n", + " (10, 11): 88,\n", + " (9, 1): 87,\n", + " (17, 5): 17,\n", + " (11, 2): 67,\n", + " (10, 6): 40,\n", + " (16, 11): 36,\n", + " (14, 13): 17,\n", + " (12, 5): 78,\n", + " (0, 16): 4,\n", + " (15, 8): 88,\n", + " (14, 0): 52,\n", + " (13, 8): 83,\n", + " (12, 16): 8,\n", + " (0, 3): 52,\n", + " (15, 5): 20,\n", + " (3, 14): 83,\n", + " (1, 2): 49,\n", + " (4, 9): 75,\n", + " (3, 3): 23,\n", + " (2, 9): 23,\n", + " (5, 12): 71,\n", + " (4, 4): 51,\n", + " (6, 3): 11,\n", + " (8, 8): 97,\n", + " (7, 2): 29,\n", + " (7, 10): 67,\n", + " (19, 10): 92,\n", + " (17, 14): 27,\n", + " (16, 18): 23,\n", + " (18, 13): 55,\n", + " (17, 19): 19,\n", + " (8, 11): 55,\n", + " (9, 10): 94,\n", + " (10, 1): 17,\n", + " (8, 17): 34,\n", + " (11, 12): 37,\n", + " (15, 17): 85,\n", + " (14, 11): 54,\n", + " (13, 1): 43,\n", + " (12, 15): 46,\n", + " (11, 17): 69,\n", + " (15, 2): 3,\n", + " (13, 14): 26,\n", + " (0, 13): 19,\n", + " (3, 8): 5,\n", + " (2, 0): 22,\n", + " (1, 8): 55,\n", + " (4, 3): 4,\n", + " (2, 15): 68,\n", + " (5, 2): 79}" + ] + } + ], + "prompt_number": 30 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g2[(2, 2)]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 35, + "text": [ + "31" + ] + } + ], + "prompt_number": 35 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g3 = [grid_nums[row * COLUMNS:(row+1) * COLUMNS] for row in range(ROWS)]\n", + "g3" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 27, + "text": [ + "[[8, 2, 22, 97, 38, 15, 0, 40, 0, 75, 4, 5, 7, 78, 52, 12, 50, 77, 91, 8],\n", + " [49,\n", + " 49,\n", + " 99,\n", + " 40,\n", + " 17,\n", + " 81,\n", + " 18,\n", + " 57,\n", + " 60,\n", + " 87,\n", + " 17,\n", + " 40,\n", + " 98,\n", + " 43,\n", + " 69,\n", + " 48,\n", + " 4,\n", + " 56,\n", + " 62,\n", + " 0],\n", + " [81,\n", + " 49,\n", + " 31,\n", + " 73,\n", + " 55,\n", + " 79,\n", + " 14,\n", + " 29,\n", + " 93,\n", + " 71,\n", + " 40,\n", + " 67,\n", + " 53,\n", + " 88,\n", + " 30,\n", + " 3,\n", + " 49,\n", + " 13,\n", + " 36,\n", + " 65],\n", + " [52, 70, 95, 23, 4, 60, 11, 42, 69, 24, 68, 56, 1, 32, 56, 71, 37, 2, 36, 91],\n", + " [22,\n", + " 31,\n", + " 16,\n", + " 71,\n", + " 51,\n", + " 67,\n", + " 63,\n", + " 89,\n", + " 41,\n", + " 92,\n", + " 36,\n", + " 54,\n", + " 22,\n", + " 40,\n", + " 40,\n", + " 28,\n", + " 66,\n", + " 33,\n", + " 13,\n", + " 80],\n", + " [24,\n", + " 47,\n", + " 32,\n", + " 60,\n", + " 99,\n", + " 3,\n", + " 45,\n", + " 2,\n", + " 44,\n", + " 75,\n", + " 33,\n", + " 53,\n", + " 78,\n", + " 36,\n", + " 84,\n", + " 20,\n", + " 35,\n", + " 17,\n", + " 12,\n", + " 50],\n", + " [32,\n", + " 98,\n", + " 81,\n", + " 28,\n", + " 64,\n", + " 23,\n", + " 67,\n", + " 10,\n", + " 26,\n", + " 38,\n", + " 40,\n", + " 67,\n", + " 59,\n", + " 54,\n", + " 70,\n", + " 66,\n", + " 18,\n", + " 38,\n", + " 64,\n", + " 70],\n", + " [67,\n", + " 26,\n", + " 20,\n", + " 68,\n", + " 2,\n", + " 62,\n", + " 12,\n", + " 20,\n", + " 95,\n", + " 63,\n", + " 94,\n", + " 39,\n", + " 63,\n", + " 8,\n", + " 40,\n", + " 91,\n", + " 66,\n", + " 49,\n", + " 94,\n", + " 21],\n", + " [24,\n", + " 55,\n", + " 58,\n", + " 5,\n", + " 66,\n", + " 73,\n", + " 99,\n", + " 26,\n", + " 97,\n", + " 17,\n", + " 78,\n", + " 78,\n", + " 96,\n", + " 83,\n", + " 14,\n", + " 88,\n", + " 34,\n", + " 89,\n", + " 63,\n", + " 72],\n", + " [21, 36, 23, 9, 75, 0, 76, 44, 20, 45, 35, 14, 0, 61, 33, 97, 34, 31, 33, 95],\n", + " [78, 17, 53, 28, 22, 75, 31, 67, 15, 94, 3, 80, 4, 62, 16, 14, 9, 53, 56, 92],\n", + " [16,\n", + " 39,\n", + " 5,\n", + " 42,\n", + " 96,\n", + " 35,\n", + " 31,\n", + " 47,\n", + " 55,\n", + " 58,\n", + " 88,\n", + " 24,\n", + " 0,\n", + " 17,\n", + " 54,\n", + " 24,\n", + " 36,\n", + " 29,\n", + " 85,\n", + " 57],\n", + " [86, 56, 0, 48, 35, 71, 89, 7, 5, 44, 44, 37, 44, 60, 21, 58, 51, 54, 17, 58],\n", + " [19,\n", + " 80,\n", + " 81,\n", + " 68,\n", + " 5,\n", + " 94,\n", + " 47,\n", + " 69,\n", + " 28,\n", + " 73,\n", + " 92,\n", + " 13,\n", + " 86,\n", + " 52,\n", + " 17,\n", + " 77,\n", + " 4,\n", + " 89,\n", + " 55,\n", + " 40],\n", + " [4, 52, 8, 83, 97, 35, 99, 16, 7, 97, 57, 32, 16, 26, 26, 79, 33, 27, 98, 66],\n", + " [88,\n", + " 36,\n", + " 68,\n", + " 87,\n", + " 57,\n", + " 62,\n", + " 20,\n", + " 72,\n", + " 3,\n", + " 46,\n", + " 33,\n", + " 67,\n", + " 46,\n", + " 55,\n", + " 12,\n", + " 32,\n", + " 63,\n", + " 93,\n", + " 53,\n", + " 69],\n", + " [4,\n", + " 42,\n", + " 16,\n", + " 73,\n", + " 38,\n", + " 25,\n", + " 39,\n", + " 11,\n", + " 24,\n", + " 94,\n", + " 72,\n", + " 18,\n", + " 8,\n", + " 46,\n", + " 29,\n", + " 32,\n", + " 40,\n", + " 62,\n", + " 76,\n", + " 36],\n", + " [20,\n", + " 69,\n", + " 36,\n", + " 41,\n", + " 72,\n", + " 30,\n", + " 23,\n", + " 88,\n", + " 34,\n", + " 62,\n", + " 99,\n", + " 69,\n", + " 82,\n", + " 67,\n", + " 59,\n", + " 85,\n", + " 74,\n", + " 4,\n", + " 36,\n", + " 16],\n", + " [20,\n", + " 73,\n", + " 35,\n", + " 29,\n", + " 78,\n", + " 31,\n", + " 90,\n", + " 1,\n", + " 74,\n", + " 31,\n", + " 49,\n", + " 71,\n", + " 48,\n", + " 86,\n", + " 81,\n", + " 16,\n", + " 23,\n", + " 57,\n", + " 5,\n", + " 54],\n", + " [1,\n", + " 70,\n", + " 54,\n", + " 71,\n", + " 83,\n", + " 51,\n", + " 54,\n", + " 69,\n", + " 16,\n", + " 92,\n", + " 33,\n", + " 48,\n", + " 61,\n", + " 43,\n", + " 52,\n", + " 1,\n", + " 89,\n", + " 19,\n", + " 67,\n", + " 48]]" + ] + } + ], + "prompt_number": 27 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g4 = {(x, y): grid_nums[x + y * COLUMNS] \n", + " for x in range(COLUMNS) \n", + " for y in range(ROWS)}\n", + "g4" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 63, + "text": [ + "{(7, 3): 42,\n", + " (6, 9): 76,\n", + " (17, 11): 29,\n", + " (19, 19): 48,\n", + " (16, 6): 18,\n", + " (7, 12): 7,\n", + " (19, 4): 80,\n", + " (18, 4): 13,\n", + " (18, 19): 67,\n", + " (8, 5): 44,\n", + " (10, 8): 78,\n", + " (9, 0): 75,\n", + " (11, 5): 53,\n", + " (10, 7): 94,\n", + " (14, 18): 81,\n", + " (12, 6): 59,\n", + " (10, 18): 49,\n", + " (0, 17): 20,\n", + " (15, 11): 24,\n", + " (14, 1): 69,\n", + " (13, 7): 8,\n", + " (12, 17): 82,\n", + " (0, 4): 22,\n", + " (15, 4): 28,\n", + " (1, 1): 49,\n", + " (4, 10): 22,\n", + " (3, 2): 73,\n", + " (2, 6): 81,\n", + " (5, 11): 35,\n", + " (4, 5): 99,\n", + " (6, 0): 0,\n", + " (4, 16): 38,\n", + " (7, 5): 2,\n", + " (19, 13): 40,\n", + " (7, 0): 40,\n", + " (16, 19): 89,\n", + " (17, 7): 49,\n", + " (18, 10): 56,\n", + " (17, 18): 57,\n", + " (16, 8): 34,\n", + " (8, 12): 5,\n", + " (9, 9): 45,\n", + " (10, 14): 57,\n", + " (8, 18): 74,\n", + " (11, 15): 67,\n", + " (9, 19): 92,\n", + " (15, 16): 32,\n", + " (14, 8): 14,\n", + " (13, 0): 78,\n", + " (12, 8): 96,\n", + " (11, 16): 18,\n", + " (15, 13): 77,\n", + " (13, 13): 52,\n", + " (2, 18): 35,\n", + " (0, 14): 4,\n", + " (3, 11): 42,\n", + " (2, 1): 99,\n", + " (1, 15): 36,\n", + " (4, 12): 35,\n", + " (2, 12): 0,\n", + " (5, 1): 81,\n", + " (3, 17): 41,\n", + " (16, 7): 66,\n", + " (6, 14): 99,\n", + " (19, 18): 54,\n", + " (17, 6): 38,\n", + " (7, 15): 72,\n", + " (19, 7): 21,\n", + " (18, 5): 12,\n", + " (7, 1): 57,\n", + " (18, 16): 76,\n", + " (8, 6): 26,\n", + " (10, 9): 35,\n", + " (9, 7): 63,\n", + " (11, 4): 54,\n", + " (10, 4): 36,\n", + " (14, 19): 52,\n", + " (12, 7): 63,\n", + " (11, 9): 14,\n", + " (10, 19): 33,\n", + " (0, 18): 20,\n", + " (15, 10): 14,\n", + " (14, 6): 70,\n", + " (13, 6): 54,\n", + " (12, 18): 48,\n", + " (1, 19): 70,\n", + " (0, 5): 24,\n", + " (15, 7): 91,\n", + " (13, 19): 43,\n", + " (1, 0): 2,\n", + " (0, 8): 24,\n", + " (4, 11): 96,\n", + " (3, 5): 60,\n", + " (2, 7): 20,\n", + " (5, 10): 75,\n", + " (4, 6): 64,\n", + " (6, 1): 18,\n", + " (5, 7): 62,\n", + " (4, 17): 72,\n", + " (16, 1): 4,\n", + " (19, 12): 58,\n", + " (17, 12): 54,\n", + " (7, 17): 88,\n", + " (19, 1): 0,\n", + " (18, 11): 85,\n", + " (7, 6): 10,\n", + " (8, 13): 28,\n", + " (9, 8): 17,\n", + " (8, 0): 0,\n", + " (10, 15): 33,\n", + " (8, 19): 16,\n", + " (11, 14): 32,\n", + " (9, 18): 31,\n", + " (15, 19): 1,\n", + " (14, 9): 33,\n", + " (12, 9): 0,\n", + " (11, 19): 48,\n", + " (15, 12): 58,\n", + " (13, 12): 60,\n", + " (2, 19): 54,\n", + " (0, 15): 88,\n", + " (3, 10): 28,\n", + " (1, 14): 52,\n", + " (4, 13): 5,\n", + " (2, 13): 81,\n", + " (5, 0): 15,\n", + " (3, 16): 73,\n", + " (6, 15): 20,\n", + " (16, 9): 34,\n", + " (16, 10): 9,\n", + " (7, 14): 16,\n", + " (6, 18): 90,\n", + " (19, 6): 70,\n", + " (18, 2): 36,\n", + " (17, 10): 53,\n", + " (18, 17): 36,\n", + " (16, 2): 49,\n", + " (8, 7): 95,\n", + " (9, 6): 38,\n", + " (11, 7): 39,\n", + " (10, 5): 33,\n", + " (14, 16): 29,\n", + " (12, 0): 7,\n", + " (11, 8): 78,\n", + " (10, 16): 72,\n", + " (0, 19): 1,\n", + " (14, 7): 40,\n", + " (13, 5): 36,\n", + " (12, 19): 61,\n", + " (1, 18): 73,\n", + " (0, 6): 32,\n", + " (15, 6): 66,\n", + " (13, 18): 86,\n", + " (1, 7): 26,\n", + " (0, 9): 21,\n", + " (3, 4): 71,\n", + " (2, 4): 16,\n", + " (5, 9): 0,\n", + " (4, 7): 2,\n", + " (6, 6): 67,\n", + " (5, 6): 23,\n", + " (4, 18): 78,\n", + " (7, 7): 20,\n", + " (5, 19): 51,\n", + " (19, 15): 69,\n", + " (17, 3): 2,\n", + " (7, 16): 11,\n", + " (19, 0): 8,\n", + " (18, 8): 63,\n", + " (17, 16): 62,\n", + " (7, 4): 89,\n", + " (9, 15): 46,\n", + " (8, 1): 60,\n", + " (10, 12): 44,\n", + " (11, 1): 40,\n", + " (9, 17): 62,\n", + " (15, 18): 16,\n", + " (14, 14): 26,\n", + " (12, 10): 4,\n", + " (11, 18): 71,\n", + " (15, 15): 32,\n", + " (13, 11): 17,\n", + " (2, 16): 16,\n", + " (0, 0): 8,\n", + " (8, 14): 7,\n", + " (1, 13): 80,\n", + " (4, 14): 97,\n", + " (2, 10): 53,\n", + " (5, 15): 62,\n", + " (3, 19): 71,\n", + " (6, 12): 89,\n", + " (17, 4): 33,\n", + " (16, 12): 51,\n", + " (6, 19): 54,\n", + " (19, 9): 95,\n", + " (18, 3): 36,\n", + " (17, 9): 31,\n", + " (18, 14): 98,\n", + " (17, 17): 4,\n", + " (16, 0): 50,\n", + " (16, 15): 63,\n", + " (9, 5): 75,\n", + " (11, 6): 67,\n", + " (10, 2): 40,\n", + " (14, 17): 59,\n", + " (12, 1): 98,\n", + " (11, 11): 24,\n", + " (10, 17): 99,\n", + " (14, 4): 40,\n", + " (13, 4): 40,\n", + " (12, 12): 44,\n", + " (1, 17): 69,\n", + " (0, 7): 67,\n", + " (15, 1): 48,\n", + " (13, 17): 67,\n", + " (1, 6): 98,\n", + " (0, 10): 78,\n", + " (17, 13): 89,\n", + " (3, 7): 68,\n", + " (2, 5): 32,\n", + " (1, 11): 39,\n", + " (5, 8): 73,\n", + " (4, 0): 38,\n", + " (6, 7): 12,\n", + " (5, 5): 3,\n", + " (4, 19): 83,\n", + " (16, 3): 37,\n", + " (6, 10): 31,\n", + " (5, 18): 31,\n", + " (19, 14): 66,\n", + " (17, 2): 13,\n", + " (7, 19): 69,\n", + " (19, 3): 91,\n", + " (18, 9): 33,\n", + " (8, 15): 3,\n", + " (9, 14): 97,\n", + " (8, 2): 93,\n", + " (10, 13): 92,\n", + " (9, 3): 24,\n", + " (11, 0): 5,\n", + " (9, 16): 94,\n", + " (14, 15): 12,\n", + " (12, 11): 0,\n", + " (15, 14): 79,\n", + " (14, 2): 30,\n", + " (13, 10): 62,\n", + " (2, 17): 36,\n", + " (0, 1): 49,\n", + " (3, 12): 48,\n", + " (1, 12): 56,\n", + " (4, 15): 57,\n", + " (3, 1): 40,\n", + " (2, 11): 5,\n", + " (5, 14): 35,\n", + " (3, 18): 29,\n", + " (6, 13): 47,\n", + " (7, 8): 26,\n", + " (6, 16): 39,\n", + " (19, 8): 72,\n", + " (18, 0): 91,\n", + " (17, 8): 89,\n", + " (16, 16): 40,\n", + " (18, 15): 53,\n", + " (8, 9): 20,\n", + " (9, 4): 92,\n", + " (7, 11): 47,\n", + " (10, 3): 68,\n", + " (12, 2): 53,\n", + " (11, 10): 80,\n", + " (14, 5): 84,\n", + " (13, 3): 32,\n", + " (12, 13): 86,\n", + " (1, 16): 42,\n", + " (3, 13): 68,\n", + " (15, 0): 12,\n", + " (13, 16): 46,\n", + " (1, 5): 47,\n", + " (0, 11): 16,\n", + " (3, 6): 28,\n", + " (2, 2): 31,\n", + " (1, 10): 17,\n", + " (4, 1): 17,\n", + " (6, 4): 63,\n", + " (5, 4): 67,\n", + " (16, 4): 66,\n", + " (6, 11): 31,\n", + " (5, 17): 30,\n", + " (19, 17): 16,\n", + " (17, 1): 56,\n", + " (7, 18): 1,\n", + " (19, 2): 65,\n", + " (18, 6): 64,\n", + " (9, 13): 73,\n", + " (8, 3): 69,\n", + " (10, 10): 3,\n", + " (9, 2): 71,\n", + " (16, 13): 4,\n", + " (11, 3): 56,\n", + " (14, 12): 21,\n", + " (12, 4): 22,\n", + " (15, 9): 97,\n", + " (14, 3): 56,\n", + " (13, 9): 61,\n", + " (0, 2): 81,\n", + " (3, 15): 87,\n", + " (1, 3): 70,\n", + " (4, 8): 66,\n", + " (3, 0): 97,\n", + " (2, 8): 58,\n", + " (5, 13): 94,\n", + " (6, 2): 14,\n", + " (16, 14): 33,\n", + " (6, 17): 23,\n", + " (19, 11): 57,\n", + " (18, 1): 62,\n", + " (17, 15): 93,\n", + " (16, 17): 74,\n", + " (18, 12): 17,\n", + " (8, 10): 15,\n", + " (9, 11): 58,\n", + " (10, 0): 4,\n", + " (8, 16): 24,\n", + " (12, 3): 1,\n", + " (11, 13): 13,\n", + " (14, 10): 16,\n", + " (13, 2): 88,\n", + " (12, 14): 16,\n", + " (15, 3): 71,\n", + " (13, 15): 55,\n", + " (1, 4): 31,\n", + " (0, 12): 86,\n", + " (3, 9): 9,\n", + " (2, 3): 95,\n", + " (1, 9): 36,\n", + " (4, 2): 55,\n", + " (2, 14): 8,\n", + " (6, 5): 45,\n", + " (5, 3): 60,\n", + " (16, 5): 35,\n", + " (6, 8): 99,\n", + " (5, 16): 25,\n", + " (19, 16): 36,\n", + " (17, 0): 77,\n", + " (7, 13): 69,\n", + " (19, 5): 50,\n", + " (18, 7): 94,\n", + " (7, 9): 44,\n", + " (18, 18): 5,\n", + " (9, 12): 44,\n", + " (8, 4): 41,\n", + " (10, 11): 88,\n", + " (9, 1): 87,\n", + " (17, 5): 17,\n", + " (11, 2): 67,\n", + " (10, 6): 40,\n", + " (16, 11): 36,\n", + " (14, 13): 17,\n", + " (12, 5): 78,\n", + " (0, 16): 4,\n", + " (15, 8): 88,\n", + " (14, 0): 52,\n", + " (13, 8): 83,\n", + " (12, 16): 8,\n", + " (0, 3): 52,\n", + " (15, 5): 20,\n", + " (3, 14): 83,\n", + " (1, 2): 49,\n", + " (4, 9): 75,\n", + " (3, 3): 23,\n", + " (2, 9): 23,\n", + " (5, 12): 71,\n", + " (4, 4): 51,\n", + " (6, 3): 11,\n", + " (8, 8): 97,\n", + " (7, 2): 29,\n", + " (7, 10): 67,\n", + " (19, 10): 92,\n", + " (17, 14): 27,\n", + " (16, 18): 23,\n", + " (18, 13): 55,\n", + " (17, 19): 19,\n", + " (8, 11): 55,\n", + " (9, 10): 94,\n", + " (10, 1): 17,\n", + " (8, 17): 34,\n", + " (11, 12): 37,\n", + " (15, 17): 85,\n", + " (14, 11): 54,\n", + " (13, 1): 43,\n", + " (12, 15): 46,\n", + " (11, 17): 69,\n", + " (15, 2): 3,\n", + " (13, 14): 26,\n", + " (0, 13): 19,\n", + " (3, 8): 5,\n", + " (2, 0): 22,\n", + " (1, 8): 55,\n", + " (4, 3): 4,\n", + " (2, 15): 68,\n", + " (5, 2): 79}" + ] + } + ], + "prompt_number": 63 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g4s = {(x, y): int(GRID_STRING[(x + y * COLUMNS) * 3:(x + y * COLUMNS) * 3 + 2]) \n", + " for x in range(COLUMNS) \n", + " for y in range(ROWS)}\n", + "g4s" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 65, + "text": [ + "{(7, 3): 42,\n", + " (6, 9): 76,\n", + " (17, 11): 29,\n", + " (19, 19): 48,\n", + " (16, 6): 18,\n", + " (7, 12): 7,\n", + " (19, 4): 80,\n", + " (18, 4): 13,\n", + " (18, 19): 67,\n", + " (8, 5): 44,\n", + " (10, 8): 78,\n", + " (9, 0): 75,\n", + " (11, 5): 53,\n", + " (10, 7): 94,\n", + " (14, 18): 81,\n", + " (12, 6): 59,\n", + " (10, 18): 49,\n", + " (0, 17): 20,\n", + " (15, 11): 24,\n", + " (14, 1): 69,\n", + " (13, 7): 8,\n", + " (12, 17): 82,\n", + " (0, 4): 22,\n", + " (15, 4): 28,\n", + " (1, 1): 49,\n", + " (4, 10): 22,\n", + " (3, 2): 73,\n", + " (2, 6): 81,\n", + " (5, 11): 35,\n", + " (4, 5): 99,\n", + " (6, 0): 0,\n", + " (4, 16): 38,\n", + " (7, 5): 2,\n", + " (19, 13): 40,\n", + " (7, 0): 40,\n", + " (16, 19): 89,\n", + " (17, 7): 49,\n", + " (18, 10): 56,\n", + " (17, 18): 57,\n", + " (16, 8): 34,\n", + " (8, 12): 5,\n", + " (9, 9): 45,\n", + " (10, 14): 57,\n", + " (8, 18): 74,\n", + " (11, 15): 67,\n", + " (9, 19): 92,\n", + " (15, 16): 32,\n", + " (14, 8): 14,\n", + " (13, 0): 78,\n", + " (12, 8): 96,\n", + " (11, 16): 18,\n", + " (15, 13): 77,\n", + " (13, 13): 52,\n", + " (2, 18): 35,\n", + " (0, 14): 4,\n", + " (3, 11): 42,\n", + " (2, 1): 99,\n", + " (1, 15): 36,\n", + " (4, 12): 35,\n", + " (2, 12): 0,\n", + " (5, 1): 81,\n", + " (3, 17): 41,\n", + " (16, 7): 66,\n", + " (6, 14): 99,\n", + " (19, 18): 54,\n", + " (17, 6): 38,\n", + " (7, 15): 72,\n", + " (19, 7): 21,\n", + " (18, 5): 12,\n", + " (7, 1): 57,\n", + " (18, 16): 76,\n", + " (8, 6): 26,\n", + " (10, 9): 35,\n", + " (9, 7): 63,\n", + " (11, 4): 54,\n", + " (10, 4): 36,\n", + " (14, 19): 52,\n", + " (12, 7): 63,\n", + " (11, 9): 14,\n", + " (10, 19): 33,\n", + " (0, 18): 20,\n", + " (15, 10): 14,\n", + " (14, 6): 70,\n", + " (13, 6): 54,\n", + " (12, 18): 48,\n", + " (1, 19): 70,\n", + " (0, 5): 24,\n", + " (15, 7): 91,\n", + " (13, 19): 43,\n", + " (1, 0): 2,\n", + " (0, 8): 24,\n", + " (4, 11): 96,\n", + " (3, 5): 60,\n", + " (2, 7): 20,\n", + " (5, 10): 75,\n", + " (4, 6): 64,\n", + " (6, 1): 18,\n", + " (5, 7): 62,\n", + " (4, 17): 72,\n", + " (16, 1): 4,\n", + " (19, 12): 58,\n", + " (17, 12): 54,\n", + " (7, 17): 88,\n", + " (19, 1): 0,\n", + " (18, 11): 85,\n", + " (7, 6): 10,\n", + " (8, 13): 28,\n", + " (9, 8): 17,\n", + " (8, 0): 0,\n", + " (10, 15): 33,\n", + " (8, 19): 16,\n", + " (11, 14): 32,\n", + " (9, 18): 31,\n", + " (15, 19): 1,\n", + " (14, 9): 33,\n", + " (12, 9): 0,\n", + " (11, 19): 48,\n", + " (15, 12): 58,\n", + " (13, 12): 60,\n", + " (2, 19): 54,\n", + " (0, 15): 88,\n", + " (3, 10): 28,\n", + " (1, 14): 52,\n", + " (4, 13): 5,\n", + " (2, 13): 81,\n", + " (5, 0): 15,\n", + " (3, 16): 73,\n", + " (6, 15): 20,\n", + " (16, 9): 34,\n", + " (16, 10): 9,\n", + " (7, 14): 16,\n", + " (6, 18): 90,\n", + " (19, 6): 70,\n", + " (18, 2): 36,\n", + " (17, 10): 53,\n", + " (18, 17): 36,\n", + " (16, 2): 49,\n", + " (8, 7): 95,\n", + " (9, 6): 38,\n", + " (11, 7): 39,\n", + " (10, 5): 33,\n", + " (14, 16): 29,\n", + " (12, 0): 7,\n", + " (11, 8): 78,\n", + " (10, 16): 72,\n", + " (0, 19): 1,\n", + " (14, 7): 40,\n", + " (13, 5): 36,\n", + " (12, 19): 61,\n", + " (1, 18): 73,\n", + " (0, 6): 32,\n", + " (15, 6): 66,\n", + " (13, 18): 86,\n", + " (1, 7): 26,\n", + " (0, 9): 21,\n", + " (3, 4): 71,\n", + " (2, 4): 16,\n", + " (5, 9): 0,\n", + " (4, 7): 2,\n", + " (6, 6): 67,\n", + " (5, 6): 23,\n", + " (4, 18): 78,\n", + " (7, 7): 20,\n", + " (5, 19): 51,\n", + " (19, 15): 69,\n", + " (17, 3): 2,\n", + " (7, 16): 11,\n", + " (19, 0): 8,\n", + " (18, 8): 63,\n", + " (17, 16): 62,\n", + " (7, 4): 89,\n", + " (9, 15): 46,\n", + " (8, 1): 60,\n", + " (10, 12): 44,\n", + " (11, 1): 40,\n", + " (9, 17): 62,\n", + " (15, 18): 16,\n", + " (14, 14): 26,\n", + " (12, 10): 4,\n", + " (11, 18): 71,\n", + " (15, 15): 32,\n", + " (13, 11): 17,\n", + " (2, 16): 16,\n", + " (0, 0): 8,\n", + " (8, 14): 7,\n", + " (1, 13): 80,\n", + " (4, 14): 97,\n", + " (2, 10): 53,\n", + " (5, 15): 62,\n", + " (3, 19): 71,\n", + " (6, 12): 89,\n", + " (17, 4): 33,\n", + " (16, 12): 51,\n", + " (6, 19): 54,\n", + " (19, 9): 95,\n", + " (18, 3): 36,\n", + " (17, 9): 31,\n", + " (18, 14): 98,\n", + " (17, 17): 4,\n", + " (16, 0): 50,\n", + " (16, 15): 63,\n", + " (9, 5): 75,\n", + " (11, 6): 67,\n", + " (10, 2): 40,\n", + " (14, 17): 59,\n", + " (12, 1): 98,\n", + " (11, 11): 24,\n", + " (10, 17): 99,\n", + " (14, 4): 40,\n", + " (13, 4): 40,\n", + " (12, 12): 44,\n", + " (1, 17): 69,\n", + " (0, 7): 67,\n", + " (15, 1): 48,\n", + " (13, 17): 67,\n", + " (1, 6): 98,\n", + " (0, 10): 78,\n", + " (17, 13): 89,\n", + " (3, 7): 68,\n", + " (2, 5): 32,\n", + " (1, 11): 39,\n", + " (5, 8): 73,\n", + " (4, 0): 38,\n", + " (6, 7): 12,\n", + " (5, 5): 3,\n", + " (4, 19): 83,\n", + " (16, 3): 37,\n", + " (6, 10): 31,\n", + " (5, 18): 31,\n", + " (19, 14): 66,\n", + " (17, 2): 13,\n", + " (7, 19): 69,\n", + " (19, 3): 91,\n", + " (18, 9): 33,\n", + " (8, 15): 3,\n", + " (9, 14): 97,\n", + " (8, 2): 93,\n", + " (10, 13): 92,\n", + " (9, 3): 24,\n", + " (11, 0): 5,\n", + " (9, 16): 94,\n", + " (14, 15): 12,\n", + " (12, 11): 0,\n", + " (15, 14): 79,\n", + " (14, 2): 30,\n", + " (13, 10): 62,\n", + " (2, 17): 36,\n", + " (0, 1): 49,\n", + " (3, 12): 48,\n", + " (1, 12): 56,\n", + " (4, 15): 57,\n", + " (3, 1): 40,\n", + " (2, 11): 5,\n", + " (5, 14): 35,\n", + " (3, 18): 29,\n", + " (6, 13): 47,\n", + " (7, 8): 26,\n", + " (6, 16): 39,\n", + " (19, 8): 72,\n", + " (18, 0): 91,\n", + " (17, 8): 89,\n", + " (16, 16): 40,\n", + " (18, 15): 53,\n", + " (8, 9): 20,\n", + " (9, 4): 92,\n", + " (7, 11): 47,\n", + " (10, 3): 68,\n", + " (12, 2): 53,\n", + " (11, 10): 80,\n", + " (14, 5): 84,\n", + " (13, 3): 32,\n", + " (12, 13): 86,\n", + " (1, 16): 42,\n", + " (3, 13): 68,\n", + " (15, 0): 12,\n", + " (13, 16): 46,\n", + " (1, 5): 47,\n", + " (0, 11): 16,\n", + " (3, 6): 28,\n", + " (2, 2): 31,\n", + " (1, 10): 17,\n", + " (4, 1): 17,\n", + " (6, 4): 63,\n", + " (5, 4): 67,\n", + " (16, 4): 66,\n", + " (6, 11): 31,\n", + " (5, 17): 30,\n", + " (19, 17): 16,\n", + " (17, 1): 56,\n", + " (7, 18): 1,\n", + " (19, 2): 65,\n", + " (18, 6): 64,\n", + " (9, 13): 73,\n", + " (8, 3): 69,\n", + " (10, 10): 3,\n", + " (9, 2): 71,\n", + " (16, 13): 4,\n", + " (11, 3): 56,\n", + " (14, 12): 21,\n", + " (12, 4): 22,\n", + " (15, 9): 97,\n", + " (14, 3): 56,\n", + " (13, 9): 61,\n", + " (0, 2): 81,\n", + " (3, 15): 87,\n", + " (1, 3): 70,\n", + " (4, 8): 66,\n", + " (3, 0): 97,\n", + " (2, 8): 58,\n", + " (5, 13): 94,\n", + " (6, 2): 14,\n", + " (16, 14): 33,\n", + " (6, 17): 23,\n", + " (19, 11): 57,\n", + " (18, 1): 62,\n", + " (17, 15): 93,\n", + " (16, 17): 74,\n", + " (18, 12): 17,\n", + " (8, 10): 15,\n", + " (9, 11): 58,\n", + " (10, 0): 4,\n", + " (8, 16): 24,\n", + " (12, 3): 1,\n", + " (11, 13): 13,\n", + " (14, 10): 16,\n", + " (13, 2): 88,\n", + " (12, 14): 16,\n", + " (15, 3): 71,\n", + " (13, 15): 55,\n", + " (1, 4): 31,\n", + " (0, 12): 86,\n", + " (3, 9): 9,\n", + " (2, 3): 95,\n", + " (1, 9): 36,\n", + " (4, 2): 55,\n", + " (2, 14): 8,\n", + " (6, 5): 45,\n", + " (5, 3): 60,\n", + " (16, 5): 35,\n", + " (6, 8): 99,\n", + " (5, 16): 25,\n", + " (19, 16): 36,\n", + " (17, 0): 77,\n", + " (7, 13): 69,\n", + " (19, 5): 50,\n", + " (18, 7): 94,\n", + " (7, 9): 44,\n", + " (18, 18): 5,\n", + " (9, 12): 44,\n", + " (8, 4): 41,\n", + " (10, 11): 88,\n", + " (9, 1): 87,\n", + " (17, 5): 17,\n", + " (11, 2): 67,\n", + " (10, 6): 40,\n", + " (16, 11): 36,\n", + " (14, 13): 17,\n", + " (12, 5): 78,\n", + " (0, 16): 4,\n", + " (15, 8): 88,\n", + " (14, 0): 52,\n", + " (13, 8): 83,\n", + " (12, 16): 8,\n", + " (0, 3): 52,\n", + " (15, 5): 20,\n", + " (3, 14): 83,\n", + " (1, 2): 49,\n", + " (4, 9): 75,\n", + " (3, 3): 23,\n", + " (2, 9): 23,\n", + " (5, 12): 71,\n", + " (4, 4): 51,\n", + " (6, 3): 11,\n", + " (8, 8): 97,\n", + " (7, 2): 29,\n", + " (7, 10): 67,\n", + " (19, 10): 92,\n", + " (17, 14): 27,\n", + " (16, 18): 23,\n", + " (18, 13): 55,\n", + " (17, 19): 19,\n", + " (8, 11): 55,\n", + " (9, 10): 94,\n", + " (10, 1): 17,\n", + " (8, 17): 34,\n", + " (11, 12): 37,\n", + " (15, 17): 85,\n", + " (14, 11): 54,\n", + " (13, 1): 43,\n", + " (12, 15): 46,\n", + " (11, 17): 69,\n", + " (15, 2): 3,\n", + " (13, 14): 26,\n", + " (0, 13): 19,\n", + " (3, 8): 5,\n", + " (2, 0): 22,\n", + " (1, 8): 55,\n", + " (4, 3): 4,\n", + " (2, 15): 68,\n", + " (5, 2): 79}" + ] + } + ], + "prompt_number": 65 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g2 == g4 == g4s" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 66, + "text": [ + "True" + ] + } + ], + "prompt_number": 66 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "d = {}\n", + "d[99]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "99", + "output_type": "pyerr", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m\n\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[0md\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;33m{\u001b[0m\u001b[1;33m}\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 2\u001b[1;33m \u001b[0md\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m99\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;31mKeyError\u001b[0m: 99" + ] + } + ], + "prompt_number": 67 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import collections\n", + "d = collections.defaultdict(int)\n", + "d[99]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 69, + "text": [ + "0" + ] + } + ], + "prompt_number": 69 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import string\n", + "collections.Counter(l for l in open('sherlock-holmes.txt').read()\n", + " if l in string.ascii_letters)" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 71, + "text": [ + "Counter({'e': 52876, 't': 37842, 'a': 34376, 'o': 33200, 'n': 28378, 'h': 27803, 's': 26432, 'i': 26366, 'r': 24304, 'd': 18349, 'l': 16854, 'u': 13070, 'm': 11055, 'w': 10508, 'c': 10172, 'y': 8976, 'f': 8785, 'g': 7733, 'p': 6652, 'b': 5883, 'v': 4367, 'I': 3774, 'k': 3465, 'H': 1244, 'T': 1139, 'S': 762, 'A': 761, 'W': 758, 'M': 732, 'x': 541, 'B': 479, 'Y': 455, 'q': 406, 'j': 338, 'C': 327, 'O': 312, 'N': 304, 'L': 291, 'E': 235, 'D': 214, 'R': 204, 'F': 190, 'P': 183, 'G': 154, 'z': 147, 'J': 114, 'V': 85, 'K': 78, 'U': 46, 'Q': 20, 'X': 8, 'Z': 2})" + ] + } + ], + "prompt_number": 71 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "[(a, b, c) \n", + " for a in range(1, 21) \n", + " for b in range(a, 21)\n", + " for c in range(b, 21)\n", + " if a**2 + b**2 == c**2]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 74, + "text": [ + "[(3, 4, 5), (5, 12, 13), (6, 8, 10), (8, 15, 17), (9, 12, 15), (12, 16, 20)]" + ] + } + ], + "prompt_number": 74 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g1" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 75, + "text": [ + "[[8, 2, 22, 97, 38, 15, 0, 40, 0, 75, 4, 5, 7, 78, 52, 12, 50, 77, 91, 8],\n", + " [49,\n", + " 49,\n", + " 99,\n", + " 40,\n", + " 17,\n", + " 81,\n", + " 18,\n", + " 57,\n", + " 60,\n", + " 87,\n", + " 17,\n", + " 40,\n", + " 98,\n", + " 43,\n", + " 69,\n", + " 48,\n", + " 4,\n", + " 56,\n", + " 62,\n", + " 0],\n", + " [81,\n", + " 49,\n", + " 31,\n", + " 73,\n", + " 55,\n", + " 79,\n", + " 14,\n", + " 29,\n", + " 93,\n", + " 71,\n", + " 40,\n", + " 67,\n", + " 53,\n", + " 88,\n", + " 30,\n", + " 3,\n", + " 49,\n", + " 13,\n", + " 36,\n", + " 65],\n", + " [52, 70, 95, 23, 4, 60, 11, 42, 69, 24, 68, 56, 1, 32, 56, 71, 37, 2, 36, 91],\n", + " [22,\n", + " 31,\n", + " 16,\n", + " 71,\n", + " 51,\n", + " 67,\n", + " 63,\n", + " 89,\n", + " 41,\n", + " 92,\n", + " 36,\n", + " 54,\n", + " 22,\n", + " 40,\n", + " 40,\n", + " 28,\n", + " 66,\n", + " 33,\n", + " 13,\n", + " 80],\n", + " [24,\n", + " 47,\n", + " 32,\n", + " 60,\n", + " 99,\n", + " 3,\n", + " 45,\n", + " 2,\n", + " 44,\n", + " 75,\n", + " 33,\n", + " 53,\n", + " 78,\n", + " 36,\n", + " 84,\n", + " 20,\n", + " 35,\n", + " 17,\n", + " 12,\n", + " 50],\n", + " [32,\n", + " 98,\n", + " 81,\n", + " 28,\n", + " 64,\n", + " 23,\n", + " 67,\n", + " 10,\n", + " 26,\n", + " 38,\n", + " 40,\n", + " 67,\n", + " 59,\n", + " 54,\n", + " 70,\n", + " 66,\n", + " 18,\n", + " 38,\n", + " 64,\n", + " 70],\n", + " [67,\n", + " 26,\n", + " 20,\n", + " 68,\n", + " 2,\n", + " 62,\n", + " 12,\n", + " 20,\n", + " 95,\n", + " 63,\n", + " 94,\n", + " 39,\n", + " 63,\n", + " 8,\n", + " 40,\n", + " 91,\n", + " 66,\n", + " 49,\n", + " 94,\n", + " 21],\n", + " [24,\n", + " 55,\n", + " 58,\n", + " 5,\n", + " 66,\n", + " 73,\n", + " 99,\n", + " 26,\n", + " 97,\n", + " 17,\n", + " 78,\n", + " 78,\n", + " 96,\n", + " 83,\n", + " 14,\n", + " 88,\n", + " 34,\n", + " 89,\n", + " 63,\n", + " 72],\n", + " [21, 36, 23, 9, 75, 0, 76, 44, 20, 45, 35, 14, 0, 61, 33, 97, 34, 31, 33, 95],\n", + " [78, 17, 53, 28, 22, 75, 31, 67, 15, 94, 3, 80, 4, 62, 16, 14, 9, 53, 56, 92],\n", + " [16,\n", + " 39,\n", + " 5,\n", + " 42,\n", + " 96,\n", + " 35,\n", + " 31,\n", + " 47,\n", + " 55,\n", + " 58,\n", + " 88,\n", + " 24,\n", + " 0,\n", + " 17,\n", + " 54,\n", + " 24,\n", + " 36,\n", + " 29,\n", + " 85,\n", + " 57],\n", + " [86, 56, 0, 48, 35, 71, 89, 7, 5, 44, 44, 37, 44, 60, 21, 58, 51, 54, 17, 58],\n", + " [19,\n", + " 80,\n", + " 81,\n", + " 68,\n", + " 5,\n", + " 94,\n", + " 47,\n", + " 69,\n", + " 28,\n", + " 73,\n", + " 92,\n", + " 13,\n", + " 86,\n", + " 52,\n", + " 17,\n", + " 77,\n", + " 4,\n", + " 89,\n", + " 55,\n", + " 40],\n", + " [4, 52, 8, 83, 97, 35, 99, 16, 7, 97, 57, 32, 16, 26, 26, 79, 33, 27, 98, 66],\n", + " [88,\n", + " 36,\n", + " 68,\n", + " 87,\n", + " 57,\n", + " 62,\n", + " 20,\n", + " 72,\n", + " 3,\n", + " 46,\n", + " 33,\n", + " 67,\n", + " 46,\n", + " 55,\n", + " 12,\n", + " 32,\n", + " 63,\n", + " 93,\n", + " 53,\n", + " 69],\n", + " [4,\n", + " 42,\n", + " 16,\n", + " 73,\n", + " 38,\n", + " 25,\n", + " 39,\n", + " 11,\n", + " 24,\n", + " 94,\n", + " 72,\n", + " 18,\n", + " 8,\n", + " 46,\n", + " 29,\n", + " 32,\n", + " 40,\n", + " 62,\n", + " 76,\n", + " 36],\n", + " [20,\n", + " 69,\n", + " 36,\n", + " 41,\n", + " 72,\n", + " 30,\n", + " 23,\n", + " 88,\n", + " 34,\n", + " 62,\n", + " 99,\n", + " 69,\n", + " 82,\n", + " 67,\n", + " 59,\n", + " 85,\n", + " 74,\n", + " 4,\n", + " 36,\n", + " 16],\n", + " [20,\n", + " 73,\n", + " 35,\n", + " 29,\n", + " 78,\n", + " 31,\n", + " 90,\n", + " 1,\n", + " 74,\n", + " 31,\n", + " 49,\n", + " 71,\n", + " 48,\n", + " 86,\n", + " 81,\n", + " 16,\n", + " 23,\n", + " 57,\n", + " 5,\n", + " 54],\n", + " [1,\n", + " 70,\n", + " 54,\n", + " 71,\n", + " 83,\n", + " 51,\n", + " 54,\n", + " 69,\n", + " 16,\n", + " 92,\n", + " 33,\n", + " 48,\n", + " 61,\n", + " 43,\n", + " 52,\n", + " 1,\n", + " 89,\n", + " 19,\n", + " 67,\n", + " 48]]" + ] + } + ], + "prompt_number": 75 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "[n for row in g1 for n in row]" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 76, + "text": [ + "[8,\n", + " 2,\n", + " 22,\n", + " 97,\n", + " 38,\n", + " 15,\n", + " 0,\n", + " 40,\n", + " 0,\n", + " 75,\n", + " 4,\n", + " 5,\n", + " 7,\n", + " 78,\n", + " 52,\n", + " 12,\n", + " 50,\n", + " 77,\n", + " 91,\n", + " 8,\n", + " 49,\n", + " 49,\n", + " 99,\n", + " 40,\n", + " 17,\n", + " 81,\n", + " 18,\n", + " 57,\n", + " 60,\n", + " 87,\n", + " 17,\n", + " 40,\n", + " 98,\n", + " 43,\n", + " 69,\n", + " 48,\n", + " 4,\n", + " 56,\n", + " 62,\n", + " 0,\n", + " 81,\n", + " 49,\n", + " 31,\n", + " 73,\n", + " 55,\n", + " 79,\n", + " 14,\n", + " 29,\n", + " 93,\n", + " 71,\n", + " 40,\n", + " 67,\n", + " 53,\n", + " 88,\n", + " 30,\n", + " 3,\n", + " 49,\n", + " 13,\n", + " 36,\n", + " 65,\n", + " 52,\n", + " 70,\n", + " 95,\n", + " 23,\n", + " 4,\n", + " 60,\n", + " 11,\n", + " 42,\n", + " 69,\n", + " 24,\n", + " 68,\n", + " 56,\n", + " 1,\n", + " 32,\n", + " 56,\n", + " 71,\n", + " 37,\n", + " 2,\n", + " 36,\n", + " 91,\n", + " 22,\n", + " 31,\n", + " 16,\n", + " 71,\n", + " 51,\n", + " 67,\n", + " 63,\n", + " 89,\n", + " 41,\n", + " 92,\n", + " 36,\n", + " 54,\n", + " 22,\n", + " 40,\n", + " 40,\n", + " 28,\n", + " 66,\n", + " 33,\n", + " 13,\n", + " 80,\n", + " 24,\n", + " 47,\n", + " 32,\n", + " 60,\n", + " 99,\n", + " 3,\n", + " 45,\n", + " 2,\n", + " 44,\n", + " 75,\n", + " 33,\n", + " 53,\n", + " 78,\n", + " 36,\n", + " 84,\n", + " 20,\n", + " 35,\n", + " 17,\n", + " 12,\n", + " 50,\n", + " 32,\n", + " 98,\n", + " 81,\n", + " 28,\n", + " 64,\n", + " 23,\n", + " 67,\n", + " 10,\n", + " 26,\n", + " 38,\n", + " 40,\n", + " 67,\n", + " 59,\n", + " 54,\n", + " 70,\n", + " 66,\n", + " 18,\n", + " 38,\n", + " 64,\n", + " 70,\n", + " 67,\n", + " 26,\n", + " 20,\n", + " 68,\n", + " 2,\n", + " 62,\n", + " 12,\n", + " 20,\n", + " 95,\n", + " 63,\n", + " 94,\n", + " 39,\n", + " 63,\n", + " 8,\n", + " 40,\n", + " 91,\n", + " 66,\n", + " 49,\n", + " 94,\n", + " 21,\n", + " 24,\n", + " 55,\n", + " 58,\n", + " 5,\n", + " 66,\n", + " 73,\n", + " 99,\n", + " 26,\n", + " 97,\n", + " 17,\n", + " 78,\n", + " 78,\n", + " 96,\n", + " 83,\n", + " 14,\n", + " 88,\n", + " 34,\n", + " 89,\n", + " 63,\n", + " 72,\n", + " 21,\n", + " 36,\n", + " 23,\n", + " 9,\n", + " 75,\n", + " 0,\n", + " 76,\n", + " 44,\n", + " 20,\n", + " 45,\n", + " 35,\n", + " 14,\n", + " 0,\n", + " 61,\n", + " 33,\n", + " 97,\n", + " 34,\n", + " 31,\n", + " 33,\n", + " 95,\n", + " 78,\n", + " 17,\n", + " 53,\n", + " 28,\n", + " 22,\n", + " 75,\n", + " 31,\n", + " 67,\n", + " 15,\n", + " 94,\n", + " 3,\n", + " 80,\n", + " 4,\n", + " 62,\n", + " 16,\n", + " 14,\n", + " 9,\n", + " 53,\n", + " 56,\n", + " 92,\n", + " 16,\n", + " 39,\n", + " 5,\n", + " 42,\n", + " 96,\n", + " 35,\n", + " 31,\n", + " 47,\n", + " 55,\n", + " 58,\n", + " 88,\n", + " 24,\n", + " 0,\n", + " 17,\n", + " 54,\n", + " 24,\n", + " 36,\n", + " 29,\n", + " 85,\n", + " 57,\n", + " 86,\n", + " 56,\n", + " 0,\n", + " 48,\n", + " 35,\n", + " 71,\n", + " 89,\n", + " 7,\n", + " 5,\n", + " 44,\n", + " 44,\n", + " 37,\n", + " 44,\n", + " 60,\n", + " 21,\n", + " 58,\n", + " 51,\n", + " 54,\n", + " 17,\n", + " 58,\n", + " 19,\n", + " 80,\n", + " 81,\n", + " 68,\n", + " 5,\n", + " 94,\n", + " 47,\n", + " 69,\n", + " 28,\n", + " 73,\n", + " 92,\n", + " 13,\n", + " 86,\n", + " 52,\n", + " 17,\n", + " 77,\n", + " 4,\n", + " 89,\n", + " 55,\n", + " 40,\n", + " 4,\n", + " 52,\n", + " 8,\n", + " 83,\n", + " 97,\n", + " 35,\n", + " 99,\n", + " 16,\n", + " 7,\n", + " 97,\n", + " 57,\n", + " 32,\n", + " 16,\n", + " 26,\n", + " 26,\n", + " 79,\n", + " 33,\n", + " 27,\n", + " 98,\n", + " 66,\n", + " 88,\n", + " 36,\n", + " 68,\n", + " 87,\n", + " 57,\n", + " 62,\n", + " 20,\n", + " 72,\n", + " 3,\n", + " 46,\n", + " 33,\n", + " 67,\n", + " 46,\n", + " 55,\n", + " 12,\n", + " 32,\n", + " 63,\n", + " 93,\n", + " 53,\n", + " 69,\n", + " 4,\n", + " 42,\n", + " 16,\n", + " 73,\n", + " 38,\n", + " 25,\n", + " 39,\n", + " 11,\n", + " 24,\n", + " 94,\n", + " 72,\n", + " 18,\n", + " 8,\n", + " 46,\n", + " 29,\n", + " 32,\n", + " 40,\n", + " 62,\n", + " 76,\n", + " 36,\n", + " 20,\n", + " 69,\n", + " 36,\n", + " 41,\n", + " 72,\n", + " 30,\n", + " 23,\n", + " 88,\n", + " 34,\n", + " 62,\n", + " 99,\n", + " 69,\n", + " 82,\n", + " 67,\n", + " 59,\n", + " 85,\n", + " 74,\n", + " 4,\n", + " 36,\n", + " 16,\n", + " 20,\n", + " 73,\n", + " 35,\n", + " 29,\n", + " 78,\n", + " 31,\n", + " 90,\n", + " 1,\n", + " 74,\n", + " 31,\n", + " 49,\n", + " 71,\n", + " 48,\n", + " 86,\n", + " 81,\n", + " 16,\n", + " 23,\n", + " 57,\n", + " 5,\n", + " 54,\n", + " 1,\n", + " 70,\n", + " 54,\n", + " 71,\n", + " 83,\n", + " 51,\n", + " 54,\n", + " 69,\n", + " 16,\n", + " 92,\n", + " 33,\n", + " 48,\n", + " 61,\n", + " 43,\n", + " 52,\n", + " 1,\n", + " 89,\n", + " 19,\n", + " 67,\n", + " 48]" + ] + } + ], + "prompt_number": 76 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/adaptive.csv b/adaptive.csv new file mode 100644 index 0000000..1d8cc25 --- /dev/null +++ b/adaptive.csv @@ -0,0 +1,10 @@ +fluctuations,"['f', 'l', 'u', 'c', 't', 'u', 'a', 't', 'i', 'o', 'n', 's']","['e', 'r', 'd', 'g', 'p', 'm', 'h', 'b', 'y']",1,True +pertinent,"['p', 'e', 'r', 't', 'i', 'n', 'e', 'n', 't']","['s', 'a', 'o', 'l', 'c', 'd', 'u', 'g']",2,True +banshees,"['_', 'a', 'n', 's', '_', 'e', 'e', 's']","['i', 'r', 't', 'o', 'l', 'c', 'd', 'u', 'g', 'p']",0,False +expediter,"['e', '_', 'p', 'e', 'd', 'i', 't', 'e', 'r']","['s', 'a', 'n', 'o', 'l', 'c', 'u', 'g', 'm', 'h']",0,False +slumlords,"['s', 'l', 'u', 'm', 'l', 'o', 'r', 'd', 's']","['e', 'i', 'a', 'n', 't', 'c', 'g', 'p']",2,True +treasurers,"['t', 'r', 'e', 'a', 's', 'u', 'r', 'e', 'r', 's']","['i', 'n', 'o', 'l', 'c', 'd']",4,True +tithes,"['t', 'i', 't', '_', 'e', 's']","['a', 'r', 'n', 'o', 'l', 'c', 'd', 'u', 'g', 'p']",0,False +fabrics,"['_', 'a', '_', 'r', 'i', 'c', 's']","['e', 'n', 't', 'o', 'l', 'd', 'u', 'g', 'p', 'm']",0,False +liberalise,"['l', 'i', '_', 'e', 'r', 'a', 'l', 'i', 's', 'e']","['n', 't', 'o', 'c', 'd', 'u', 'g', 'p', 'm', 'h']",0,False +emitting,"['e', 'm', 'i', 't', 't', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'l', 'c', 'd', 'u', 'p']",1,True diff --git a/adaptive_excluded.csv b/adaptive_excluded.csv new file mode 100644 index 0000000..dd03cca --- /dev/null +++ b/adaptive_excluded.csv @@ -0,0 +1,1001 @@ +target,discovered,wrong letters,number of hits,lives remaining,game won +translates,"['t', 'r', 'a', 'n', 's', 'l', 'a', 't', 'e', 's']","['i', 'o', 'd', 'u']",10,6,True +aspire,"['a', 's', 'p', 'i', 'r', 'e']","['n', 't', 'l', 'o', 'd', 'c']",6,4,True +junket,"['_', 'u', 'n', '_', 'e', 't']","['s', 'i', 'a', 'o', 'r', 'd', 'l', 'h', 'p', 'b']",4,0,False +giveaway,"['_', 'i', '_', 'e', 'a', '_', 'a', '_']","['s', 'n', 'r', 'l', 'd', 't', 'o', 'c', 'p', 'm']",4,0,False +quite,"['_', 'u', 'i', 't', 'e']","['s', 'n', 'r', 'l', 'd', 'a', 'o', 'h', 'p', 'm']",4,0,False +immersed,"['i', 'm', 'm', 'e', 'r', 's', 'e', 'd']","['a', 'o', 'n', 't', 'l', 'u', 'p', 'c']",8,2,True +invest,"['i', 'n', '_', 'e', 's', 't']","['a', 'o', 'r', 'l', 'd', 'u', 'g', 'h', 'p', 'c']",5,0,False +gerrymanders,"['g', 'e', 'r', 'r', '_', 'm', 'a', 'n', 'd', 'e', 'r', 's']","['i', 'o', 't', 'l', 'u', 'c', 'p', 'h', 'b', 'w']",11,0,False +guesswork,"['_', 'u', 'e', 's', 's', '_', 'o', 'r', '_']","['i', 'a', 't', 'd', 'l', 'n', 'p', 'c', 'b', 'm']",6,0,False +kicker,"['_', 'i', 'c', '_', 'e', 'r']","['s', 'n', 'a', 'o', 'l', 'd', 't', 'u', 'p', 'h']",4,0,False +autonomous,"['a', 'u', 't', 'o', 'n', 'o', 'm', 'o', 'u', 's']","['e', 'i', 'r', 'l', 'c', 'h']",10,4,True +undecided,"['u', 'n', 'd', 'e', 'c', 'i', 'd', 'e', 'd']","['s', 'a', 'r', 'o', 'l', 't', 'g']",9,3,True +counterfeiting,"['c', 'o', 'u', 'n', 't', 'e', 'r', 'f', 'e', 'i', 't', 'i', 'n', 'g']","['s', 'a', 'd', 'l', 'p', 'h', 'm']",14,3,True +lifeguards,"['l', 'i', 'f', 'e', 'g', 'u', 'a', 'r', 'd', 's']","['n', 't', 'o', 'c', 'p', 'b', 'm']",10,3,True +connecter,"['c', 'o', 'n', 'n', 'e', 'c', 't', 'e', 'r']","['s', 'i', 'a', 'd', 'l', 'u']",9,4,True +pizzicato,"['p', 'i', '_', '_', 'i', 'c', 'a', 't', 'o']","['e', 's', 'n', 'l', 'r', 'h', 'm', 'd', 'y', 'b']",7,0,False +propulsive,"['p', 'r', 'o', 'p', 'u', 'l', 's', 'i', '_', 'e']","['a', 'n', 't', 'd', 'c', 'm', 'b', 'f', 'h', 'g']",9,0,False +comically,"['c', 'o', 'm', 'i', 'c', 'a', 'l', 'l', 'y']","['e', 's', 'n', 'r', 't']",9,5,True +parables,"['p', 'a', 'r', 'a', 'b', 'l', 'e', 's']","['i', 'o', 't', 'd', 'u', 'c', 'n', 'y']",8,2,True +overcompensation,"['o', 'v', 'e', 'r', 'c', 'o', 'm', 'p', 'e', 'n', 's', 'a', 't', 'i', 'o', 'n']","['l', 'd', 'g', 'u', 'h', 'b', 'f']",16,3,True +onyx,"['o', 'n', 'y', '_']","['e', 'i', 'a', 's', 'u', 'r', 'l', 't', 'c', 'b']",3,0,False +tiredness,"['t', 'i', 'r', 'e', 'd', 'n', 'e', 's', 's']","['a', 'o', 'l']",9,7,True +entrepreneur,"['e', 'n', 't', 'r', 'e', 'p', 'r', 'e', 'n', 'e', 'u', 'r']","['s', 'i', 'a', 'o', 'd', 'l']",12,4,True +phonologists,"['p', 'h', 'o', 'n', 'o', 'l', 'o', 'g', 'i', 's', 't', 's']","['e', 'a', 'u', 'r', 'c']",12,5,True +nonprofessional,"['n', 'o', 'n', 'p', 'r', 'o', 'f', 'e', 's', 's', 'i', 'o', 'n', 'a', 'l']","['t', 'd', 'c', 'g', 'u', 'm', 'b', 'h']",15,2,True +hoot,"['h', 'o', 'o', 't']","['e', 'i', 'a', 's', 'u', 'r', 'l', 'n', 'y']",4,1,True +dissuading,"['d', 'i', 's', 's', 'u', 'a', 'd', 'i', 'n', 'g']","['e', 'o', 't', 'l', 'r', 'c', 'm', 'p']",10,2,True +hearings,"['h', 'e', 'a', 'r', 'i', 'n', 'g', 's']","['t', 'l', 'o', 'd', 'c', 'p', 'u', 'm']",8,2,True +perfectionism,"['p', 'e', 'r', 'f', 'e', 'c', 't', 'i', 'o', 'n', 'i', 's', 'm']","['a', 'l', 'd', 'u', 'g', 'h']",13,4,True +explosive,"['e', '_', 'p', 'l', 'o', 's', 'i', '_', 'e']","['a', 'n', 'r', 't', 'd', 'u', 'c', 'b', 'h', 'm']",7,0,False +catechised,"['c', 'a', 't', 'e', 'c', 'h', 'i', 's', 'e', 'd']","['r', 'n', 'l', 'o', 'u']",10,5,True +negatives,"['n', 'e', 'g', 'a', 't', 'i', '_', 'e', 's']","['r', 'l', 'o', 'd', 'c', 'u', 'h', 'm', 'p', 'b']",8,0,False +loftily,"['l', 'o', '_', 't', 'i', 'l', 'y']","['e', 'a', 's', 'n', 'r', 'u', 'c', 'd', 'p', 'b']",6,0,False +bigotry,"['_', 'i', '_', 'o', 't', 'r', 'y']","['e', 'a', 's', 'n', 'l', 'u', 'c', 'd', 'p', 'h']",5,0,False +disillusions,"['d', 'i', 's', 'i', 'l', 'l', 'u', 's', 'i', 'o', 'n', 's']","['e', 'a', 't', 'g', 'r', 'c', 'p']",12,3,True +emblazoned,"['e', 'm', 'b', 'l', 'a', '_', 'o', 'n', 'e', 'd']","['s', 'i', 'r', 't', 'c', 'u', 'y', 'g', 'p', 'w']",9,0,False +payees,"['p', 'a', 'y', 'e', 'e', 's']","['i', 'r', 'o', 'l', 't', 'd', 'n', 'u', 'c']",6,1,True +bleaching,"['b', 'l', 'e', 'a', 'c', 'h', 'i', 'n', 'g']","['s', 'r', 't', 'd', 'o', 'u', 'p', 'm', 'y']",9,1,True +phonograph,"['_', '_', 'o', 'n', 'o', '_', 'r', 'a', '_', '_']","['e', 'i', 's', 'l', 't', 'u', 'c', 'd', 'm', 'y']",5,0,False +ashamed,"['a', 's', 'h', 'a', 'm', 'e', 'd']","['i', 'r', 'o', 'l', 't', 'n', 'u', 'c', 'p']",7,1,True +nymphomaniac,"['n', 'y', 'm', 'p', 'h', 'o', 'm', 'a', 'n', 'i', 'a', 'c']","['e', 's', 'l', 'r', 't', 'g', 'd']",12,3,True +skylines,"['s', '_', '_', 'l', 'i', 'n', 'e', 's']","['a', 'o', 'r', 't', 'd', 'u', 'g', 'c', 'p', 'm']",6,0,False +tampon,"['t', 'a', 'm', '_', 'o', 'n']","['e', 'i', 's', 'r', 'l', 'u', 'c', 'y', 'd', 'h']",5,0,False +blueprints,"['b', 'l', 'u', 'e', 'p', 'r', 'i', 'n', 't', 's']","['a', 'o', 'd', 'g', 'c', 'm', 'f', 'h']",10,2,True +auger,"['a', 'u', '_', 'e', 'r']","['s', 'i', 'o', 'd', 'l', 't', 'n', 'c', 'p', 'b']",4,0,False +solicitors,"['s', 'o', 'l', 'i', 'c', 'i', 't', 'o', 'r', 's']","['e', 'a', 'n', 'u']",10,6,True +croziers,"['c', 'r', 'o', '_', 'i', 'e', 'r', 's']","['a', 'n', 't', 'l', 'd', 'p', 'u', 'h', 'b', 'm']",7,0,False +ocelot,"['o', '_', 'e', 'l', 'o', 't']","['s', 'i', 'a', 'r', 'd', 'n', 'u', 'y', 'p', 'b']",5,0,False +reproach,"['r', 'e', 'p', 'r', 'o', 'a', 'c', 'h']","['s', 'i', 'd', 't', 'l', 'n', 'm', 'b']",8,2,True +decrescendo,"['d', 'e', 'c', 'r', 'e', 's', 'c', 'e', 'n', 'd', 'o']","['i', 'a', 'u', 't', 'l']",11,5,True +permed,"['p', 'e', 'r', '_', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 't', 'l', 'n', 'y', 'c']",5,0,False +directives,"['d', 'i', 'r', 'e', 'c', 't', 'i', 'v', 'e', 's']","['a', 'o', 'n', 'l', 'u', 'p', 'h', 'm', 'f']",10,1,True +dusky,"['_', 'u', 's', '_', 'y']","['e', 'i', 'a', 'o', 'l', 'r', 't', 'm', 'n', 'p']",3,0,False +wastrels,"['_', 'a', 's', 't', 'r', 'e', 'l', 's']","['i', 'o', 'd', 'u', 'n', 'c', 'p', 'b', 'h', 'm']",7,0,False +meteor,"['_', 'e', 't', 'e', 'o', 'r']","['s', 'i', 'a', 'd', 'l', 'n', 'u', 'p', 'h', 'b']",5,0,False +defiant,"['d', 'e', '_', 'i', 'a', 'n', 't']","['s', 'r', 'l', 'o', 'g', 'c', 'm', 'p', 'u', 'h']",6,0,False +powerboats,"['p', 'o', 'w', 'e', 'r', 'b', 'o', 'a', 't', 's']","['i', 'l', 'n', 'd', 'c', 'u', 'h', 'm', 'g']",10,1,True +derelict,"['d', 'e', 'r', 'e', 'l', 'i', 'c', 't']","['s', 'n', 'a', 'o', 'u', 'p']",8,4,True +tightwad,"['t', 'i', '_', '_', 't', '_', 'a', '_']","['e', 's', 'n', 'o', 'l', 'r', 'c', 'u', 'y', 'm']",4,0,False +inhumanly,"['i', 'n', '_', 'u', 'm', 'a', 'n', 'l', 'y']","['e', 's', 'o', 'g', 't', 'r', 'c', 'd', 'p', 'f']",8,0,False +ballpark,"['_', 'a', 'l', 'l', '_', 'a', 'r', '_']","['e', 'i', 'o', 's', 'u', 'y', 't', 'n', 'c', 'm']",5,0,False +lobster,"['l', 'o', 'b', 's', 't', 'e', 'r']","['i', 'a', 'u', 'd', 'n', 'p', 'c', 'h']",7,2,True +wowed,"['_', 'o', '_', 'e', 'd']","['s', 'i', 'a', 'r', 'l', 'n', 't', 'u', 'p', 'b']",3,0,False +utilises,"['u', 't', 'i', 'l', 'i', 's', 'e', 's']","['a', 'o', 'n', 'r', 'd']",8,5,True +cottontails,"['c', 'o', 't', 't', 'o', 'n', 't', 'a', 'i', 'l', 's']","['e', 'r', 'g']",11,7,True +astonishing,"['a', 's', 't', 'o', 'n', 'i', 's', 'h', 'i', 'n', 'g']","['e', 'l', 'r', 'c', 'u', 'm', 'p']",11,3,True +bandiest,"['b', 'a', 'n', 'd', 'i', 'e', 's', 't']","['r', 'l', 'o', 'c', 'g', 'u', 'm', 'p', 'h']",8,1,True +subsist,"['s', 'u', '_', 's', 'i', 's', 't']","['e', 'a', 'o', 'n', 'l', 'r', 'h', 'm', 'p', 'c']",6,0,False +refuelled,"['r', 'e', '_', 'u', 'e', 'l', 'l', 'e', 'd']","['s', 'i', 'a', 'o', 't', 'n', 'b', 'p', 'c', 'g']",8,0,False +egalitarians,"['e', 'g', 'a', 'l', 'i', 't', 'a', 'r', 'i', 'a', 'n', 's']","['o', 'd', 'c']",12,7,True +farming,"['_', 'a', 'r', 'm', 'i', 'n', 'g']","['e', 's', 'o', 'l', 't', 'u', 'c', 'd', 'p', 'y']",6,0,False +parity,"['p', 'a', 'r', 'i', 't', 'y']","['e', 's', 'n', 'o', 'l', 'c', 'u', 'd']",6,2,True +epigram,"['e', 'p', 'i', 'g', 'r', 'a', 'm']","['s', 'n', 'l', 't', 'd', 'o', 'c', 'u']",7,2,True +gravitation,"['g', 'r', 'a', '_', 'i', 't', 'a', 't', 'i', 'o', 'n']","['e', 's', 'l', 'c', 'u', 'd', 'p', 'm', 'b', 'f']",10,0,False +hint,"['h', 'i', 'n', 't']","['e', 'a', 'o', 's', 'g', 'u', 'l', 'y']",4,2,True +arcs,"['a', 'r', 'c', 's']","['e', 'i', 'o', 'u', 'l', 't', 'n', 'y']",4,2,True +exaggerations,"['e', '_', 'a', 'g', 'g', 'e', 'r', 'a', 't', 'i', 'o', 'n', 's']","['l', 'd', 'c', 'p', 'u', 'm', 'h', 'b', 'f', 'v']",12,0,False +barrenest,"['_', 'a', 'r', 'r', 'e', 'n', 'e', 's', 't']","['i', 'o', 'l', 'd', 'u', 'c', 'p', 'm', 'h', 'g']",8,0,False +finding,"['_', 'i', 'n', 'd', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 'l', 't', 'r', 'p', 'c']",6,0,False +mindlessly,"['m', 'i', 'n', 'd', 'l', 'e', 's', 's', 'l', '_']","['a', 'o', 'r', 't', 'u', 'g', 'c', 'p', 'w', 'f']",9,0,False +emphasises,"['e', 'm', 'p', 'h', 'a', 's', 'i', 's', 'e', 's']","['r', 'n', 'l', 't', 'd', 'o', 'c', 'u']",10,2,True +craggy,"['c', 'r', 'a', '_', '_', 'y']","['e', 'i', 'o', 's', 'u', 'l', 't', 'n', 'm', 'd']",4,0,False +trawlers,"['t', 'r', 'a', '_', 'l', 'e', 'r', 's']","['i', 'o', 'd', 'u', 'n', 'c', 'p', 'b', 'h', 'm']",7,0,False +emulsified,"['e', 'm', 'u', 'l', 's', 'i', 'f', 'i', 'e', 'd']","['a', 'o', 'n', 'r', 't', 'p', 'c', 'b']",10,2,True +perfected,"['p', 'e', 'r', '_', 'e', 'c', 't', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'l', 'n', 'y', 'h', 'm']",8,0,False +ye,"['_', 'e']","['s', 'i', 'a', 'o', 'u', 'r', 'd', 'l', 't', 'h']",1,0,False +nimblest,"['n', 'i', 'm', '_', 'l', 'e', 's', 't']","['a', 'o', 'r', 'd', 'u', 'g', 'c', 'p', 'h', 'f']",7,0,False +soporific,"['s', 'o', 'p', 'o', 'r', 'i', '_', 'i', 'c']","['e', 'a', 'n', 't', 'l', 'u', 'h', 'd', 'm', 'k']",8,0,False +patrician,"['_', 'a', 't', 'r', 'i', 'c', 'i', 'a', 'n']","['e', 's', 'o', 'l', 'g', 'u', 'y', 'h', 'm', 'd']",8,0,False +hulling,"['_', 'u', 'l', 'l', 'i', 'n', 'g']","['e', 'a', 'o', 's', 't', 'r', 'p', 'c', 'd', 'f']",6,0,False +wafting,"['_', 'a', '_', 't', 'i', 'n', 'g']","['e', 's', 'o', 'l', 'r', 'u', 'c', 'd', 'p', 'm']",5,0,False +scalloped,"['s', 'c', 'a', 'l', 'l', 'o', 'p', 'e', 'd']","['i', 'r', 't', 'n', 'u']",9,5,True +teetotal,"['t', 'e', 'e', 't', 'o', 't', 'a', 'l']","['s', 'i', 'r', 'd']",8,6,True +reelected,"['r', 'e', 'e', 'l', 'e', 'c', 't', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'n', 'p', 'y']",9,2,True +semiconductor,"['s', 'e', 'm', 'i', 'c', 'o', 'n', 'd', 'u', 'c', 't', 'o', 'r']","['a', 'l', 'p', 'g']",13,6,True +absenting,"['a', 'b', 's', 'e', 'n', 't', 'i', 'n', 'g']","['r', 'l', 'o', 'd', 'c', 'u', 'h', 'm', 'p']",9,1,True +hungover,"['_', 'u', 'n', 'g', 'o', '_', 'e', 'r']","['s', 'i', 'a', 'd', 't', 'l', 'c', 'p', 'b', 'm']",6,0,False +tansy,"['t', 'a', 'n', 's', 'y']","['e', 'i', 'o', 'u', 'r', 'l', 'h']",5,3,True +specifically,"['s', 'p', 'e', 'c', 'i', '_', 'i', 'c', 'a', 'l', 'l', 'y']","['r', 'n', 't', 'd', 'o', 'u', 'h', 'm', 'b', 'g']",11,0,False +quantifier,"['_', 'u', 'a', 'n', 't', 'i', 'f', 'i', 'e', 'r']","['s', 'l', 'o', 'd', 'g', 'c', 'p', 'm', 'b', 'h']",9,0,False +abaci,"['a', '_', 'a', 'c', 'i']","['e', 's', 'n', 'o', 'l', 'r', 't', 'm', 'y', 'u']",4,0,False +grandstand,"['_', 'r', 'a', 'n', 'd', 's', 't', 'a', 'n', 'd']","['e', 'i', 'o', 'u', 'l', 'c', 'y', 'p', 'h', 'm']",9,0,False +caroller,"['c', 'a', 'r', 'o', 'l', 'l', 'e', 'r']","['s', 'i', 'd', 't', 'n']",8,5,True +croons,"['c', 'r', 'o', 'o', 'n', 's']","['e', 'i', 'a', 'u', 't', 'l']",6,4,True +meetinghouse,"['m', 'e', 'e', 't', 'i', 'n', 'g', 'h', 'o', 'u', 's', 'e']","['a', 'r', 'l', 'd', 'c', 'p']",12,4,True +machete,"['_', 'a', 'c', 'h', 'e', 't', 'e']","['s', 'i', 'r', 'l', 'd', 'o', 'n', 'u', 'y', 'p']",6,0,False +evidences,"['e', '_', 'i', 'd', 'e', 'n', 'c', 'e', 's']","['a', 'o', 'r', 'l', 't', 'u', 'g', 'p', 'h', 'm']",8,0,False +bikes,"['_', 'i', '_', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'd', 'u', 'p', 'h']",3,0,False +instals,"['i', 'n', 's', 't', 'a', 'l', 's']","['e', 'o']",7,8,True +roadkill,"['r', 'o', 'a', 'd', '_', 'i', 'l', 'l']","['e', 's', 'n', 't', 'c', 'y', 'm', 'u', 'p', 'b']",7,0,False +superlatives,"['s', 'u', 'p', 'e', 'r', 'l', 'a', 't', 'i', '_', 'e', 's']","['n', 'o', 'd', 'c', 'm', 'b', 'h', 'f', 'g', 'y']",11,0,False +overcompensate,"['o', '_', 'e', 'r', 'c', 'o', 'm', 'p', 'e', 'n', 's', 'a', 't', 'e']","['i', 'l', 'd', 'u', 'h', 'g', 'b', 'y', 'k', 'f']",13,0,False +applicators,"['a', 'p', 'p', 'l', 'i', 'c', 'a', 't', 'o', 'r', 's']","['e', 'n', 'u']",11,7,True +millraces,"['m', 'i', 'l', 'l', 'r', 'a', 'c', 'e', 's']","['n', 't', 'o', 'd', 'u', 'p']",9,4,True +hyping,"['_', '_', 'p', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 'l', 't', 'r', 'd', 'c']",4,0,False +toastmaster,"['t', 'o', 'a', 's', 't', 'm', 'a', 's', 't', 'e', 'r']","['i', 'l', 'n', 'd', 'c', 'p', 'u', 'h', 'b']",11,1,True +subjective,"['s', 'u', '_', '_', 'e', '_', 't', 'i', '_', 'e']","['a', 'o', 'n', 'r', 'l', 'd', 'h', 'p', 'm', 'f']",6,0,False +intermissions,"['i', 'n', 't', 'e', 'r', 'm', 'i', 's', 's', 'i', 'o', 'n', 's']","['a', 'l', 'd', 'c', 'u', 'g', 'p', 'h']",13,2,True +salver,"['s', 'a', 'l', '_', 'e', 'r']","['i', 'o', 't', 'd', 'u', 'c', 'n', 'p', 'b', 'h']",5,0,False +hurl,"['_', 'u', 'r', 'l']","['e', 'i', 'a', 'o', 's', 'y', 't', 'c', 'b', 'm']",3,0,False +reserves,"['r', 'e', 's', 'e', 'r', '_', 'e', 's']","['i', 'a', 'o', 'u', 't', 'd', 'l', 'p', 'n', 'h']",7,0,False +hairpieces,"['h', 'a', 'i', 'r', 'p', 'i', 'e', 'c', 'e', 's']","['n', 't', 'l', 'o', 'd', 'u']",10,4,True +forefront,"['_', 'o', 'r', 'e', '_', 'r', 'o', 'n', 't']","['s', 'i', 'a', 'd', 'l', 'u', 'c', 'p', 'm', 'b']",7,0,False +contusion,"['c', 'o', 'n', 't', 'u', 's', 'i', 'o', 'n']","['e', 'a', 'g', 'l', 'r']",9,5,True +sleeve,"['s', 'l', 'e', 'e', '_', 'e']","['i', 'a', 'o', 'u', 'r', 't', 'd', 'h', 'n', 'p']",5,0,False +instrumenting,"['i', 'n', 's', 't', 'r', 'u', 'm', 'e', 'n', 't', 'i', 'n', 'g']","['a', 'o', 'l', 'd', 'c', 'p', 'h']",13,3,True +dual,"['_', 'u', 'a', 'l']","['e', 'i', 'o', 's', 'r', 'n', 'y', 't', 'm', 'c']",3,0,False +sheriffs,"['s', 'h', 'e', 'r', 'i', 'f', 'f', 's']","['a', 'o', 'n', 't', 'l', 'd', 'u', 'p', 'c']",8,1,True +begat,"['_', 'e', '_', 'a', 't']","['s', 'i', 'r', 'l', 'd', 'o', 'n', 'u', 'h', 'p']",3,0,False +cuttlefish,"['c', 'u', 't', 't', 'l', 'e', 'f', 'i', 's', 'h']","['a', 'o', 'n', 'r', 'd', 'p', 'm']",10,3,True +refutations,"['r', 'e', 'f', 'u', 't', 'a', 't', 'i', 'o', 'n', 's']","['l', 'd', 'c', 'g', 'p', 'm', 'b', 'h']",11,2,True +dynamiting,"['d', 'y', 'n', 'a', 'm', 'i', 't', 'i', 'n', 'g']","['e', 's', 'o', 'l', 'r', 'u', 'c']",10,3,True +brainy,"['_', 'r', 'a', 'i', 'n', 'y']","['e', 's', 'o', 'l', 'g', 't', 'c', 'd', 'm', 'p']",5,0,False +revved,"['r', 'e', '_', '_', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 't', 'l', 'n', 'p', 'y']",4,0,False +defrosters,"['d', 'e', '_', 'r', 'o', 's', 't', 'e', 'r', 's']","['i', 'a', 'u', 'l', 'n', 'p', 'c', 'h', 'b', 'm']",9,0,False +guesting,"['g', 'u', 'e', 's', 't', 'i', 'n', 'g']","['a', 'o', 'r', 'l', 'd']",8,5,True +hoisted,"['h', 'o', 'i', 's', 't', 'e', 'd']","['a', 'n', 'r', 'l', 'u', 'c', 'p']",7,3,True +readiness,"['r', 'e', 'a', 'd', 'i', 'n', 'e', 's', 's']","['t', 'l', 'o']",9,7,True +kumquat,"['_', 'u', 'm', '_', 'u', 'a', 't']","['e', 'i', 'o', 's', 'l', 'r', 'n', 'y', 'h', 'p']",5,0,False +soup,"['s', 'o', 'u', '_']","['e', 'i', 'a', 'r', 'l', 't', 'n', 'c', 'm', 'b']",3,0,False +gods,"['_', 'o', '_', 's']","['e', 'i', 'a', 'u', 'r', 'l', 't', 'n', 'c', 'b']",2,0,False +drams,"['_', 'r', 'a', 'm', 's']","['e', 'i', 'o', 'u', 'l', 't', 'n', 'y', 'c', 'p']",4,0,False +spoilsports,"['s', 'p', 'o', 'i', 'l', 's', 'p', 'o', 'r', 't', 's']","['e', 'a', 'n', 'u', 'c', 'y', 'h']",11,3,True +cruising,"['c', 'r', 'u', 'i', 's', 'i', 'n', 'g']","['e', 'a', 'o', 't', 'l', 'p']",8,4,True +brushing,"['b', 'r', 'u', 's', '_', 'i', 'n', 'g']","['e', 'a', 'o', 't', 'l', 'p', 'c', 'd', 'm', 'f']",7,0,False +hen,"['h', 'e', 'n']","['s', 'i', 'a', 'o', 'u', 'r', 'd', 'l', 't']",3,1,True +scorn,"['s', 'c', 'o', 'r', 'n']","['e', 'i', 'a', 'u', 't', 'l']",5,4,True +wishful,"['_', 'i', 's', '_', '_', 'u', 'l']","['e', 'a', 'o', 'n', 't', 'r', 'p', 'c', 'y', 'm']",4,0,False +heavenliest,"['h', 'e', 'a', '_', 'e', 'n', 'l', 'i', 'e', 's', 't']","['r', 'o', 'd', 'g', 'c', 'u', 'm', 'p', 'b', 'f']",10,0,False +protracted,"['p', 'r', 'o', 't', 'r', 'a', 'c', 't', 'e', 'd']","['s', 'i', 'l', 'n']",10,6,True +leftest,"['l', 'e', '_', 't', 'e', 's', 't']","['i', 'a', 'o', 'u', 'r', 'd', 'n', 'p', 'h', 'y']",6,0,False +dismounts,"['d', 'i', 's', 'm', 'o', 'u', 'n', 't', 's']","['e', 'a', 'g', 'l', 'r', 'c', 'p']",9,3,True +sprats,"['s', 'p', 'r', 'a', 't', 's']","['e', 'i', 'o', 'u', 'l', 'n', 'c', 'y']",6,2,True +maggots,"['_', 'a', '_', '_', 'o', 't', 's']","['e', 'i', 'r', 'l', 'n', 'u', 'c', 'h', 'p', 'b']",4,0,False +authenticated,"['a', 'u', 't', 'h', 'e', 'n', 't', 'i', 'c', 'a', 't', 'e', 'd']","['s', 'r', 'l', 'o', 'g', 'm', 'p']",13,3,True +paediatrics,"['p', 'a', 'e', 'd', 'i', 'a', 't', 'r', 'i', 'c', 's']","['n', 'l', 'o', 'u']",11,6,True +net,"['n', 'e', 't']","['s', 'i', 'a', 'o', 'u', 'r', 'd', 'l']",3,2,True +stood,"['s', 't', 'o', 'o', '_']","['e', 'i', 'a', 'u', 'r', 'l', 'n', 'h', 'c', 'p']",4,0,False +burst,"['b', 'u', 'r', 's', 't']","['e', 'i', 'a', 'o', 'l', 'y', 'n', 'm', 'c']",5,1,True +junkier,"['_', 'u', 'n', '_', 'i', 'e', 'r']","['s', 'a', 'o', 't', 'd', 'l', 'g', 'c', 'p', 'f']",5,0,False +intrigue,"['i', 'n', 't', 'r', 'i', 'g', 'u', 'e']","['s', 'a', 'o', 'd', 'l']",8,5,True +anticlimaxes,"['a', 'n', 't', 'i', 'c', 'l', 'i', 'm', 'a', '_', 'e', 's']","['r', 'o', 'd', 'g', 'u', 'p', 'h', 'b', 'f', 'y']",11,0,False +harvest,"['h', 'a', 'r', '_', 'e', 's', 't']","['i', 'o', 'l', 'd', 'n', 'u', 'c', 'p', 'm', 'b']",6,0,False +synchronously,"['s', 'y', 'n', 'c', 'h', 'r', 'o', 'n', 'o', 'u', 's', 'l', 'y']","['e', 'i', 'a', 't', 'p', 'b', 'd', 'm']",13,2,True +wired,"['_', 'i', 'r', 'e', 'd']","['s', 'n', 'a', 'o', 'l', 't', 'u', 'p', 'c', 'b']",4,0,False +dowsing,"['d', 'o', 'w', 's', 'i', 'n', 'g']","['e', 'a', 'u', 't', 'l', 'r', 'c', 'p', 'b']",7,1,True +bumpkin,"['_', 'u', 'm', '_', '_', 'i', 'n']","['e', 'a', 'o', 's', 'g', 'l', 't', 'c', 'y', 'd']",4,0,False +tabernacle,"['t', 'a', 'b', 'e', 'r', 'n', 'a', 'c', 'l', 'e']","['s', 'i', 'o', 'd', 'u', 'y', 'p', 'm', 'h']",10,1,True +bleary,"['b', 'l', 'e', 'a', 'r', 'y']","['s', 'i', 'o', 'd', 't', 'u', 'n', 'c']",6,2,True +schwa,"['s', '_', '_', '_', 'a']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'm']",2,0,False +dependents,"['d', 'e', 'p', 'e', 'n', 'd', 'e', 'n', 't', 's']","['i', 'a', 'o', 'u', 'r', 'l']",10,4,True +underpin,"['u', 'n', 'd', 'e', 'r', 'p', 'i', 'n']","['s', 'a', 'o', 't', 'l', 'g', 'c']",8,3,True +impeachment,"['i', 'm', 'p', 'e', 'a', 'c', 'h', 'm', 'e', 'n', 't']","['s', 'r', 'l', 'd', 'o', 'g', 'u']",11,3,True +syndrome,"['s', '_', 'n', 'd', 'r', 'o', '_', 'e']","['i', 'a', 'u', 't', 'l', 'c', 'p', 'b', 'w', 'g']",6,0,False +magical,"['m', 'a', '_', 'i', 'c', 'a', 'l']","['e', 's', 'n', 'o', 'r', 't', 'y', 'u', 'p', 'b']",6,0,False +discombobulates,"['d', 'i', 's', 'c', 'o', 'm', 'b', 'o', 'b', 'u', 'l', 'a', 't', 'e', 's']","['r', 'n', 'p', 'h']",15,6,True +shared,"['s', 'h', 'a', 'r', 'e', 'd']","['i', 'o', 't', 'l', 'n', 'u', 'c', 'p', 'g']",6,1,True +nocturne,"['n', 'o', 'c', 't', 'u', 'r', 'n', 'e']","['s', 'i', 'a', 'd', 'l']",8,5,True +meant,"['m', 'e', 'a', 'n', 't']","['s', 'i', 'r', 'l', 'd', 'o', 'u', 'c']",5,2,True +mutts,"['m', 'u', 't', 't', 's']","['e', 'i', 'a', 'o', 'l', 'r']",5,4,True +batty,"['_', 'a', 't', 't', 'y']","['e', 'i', 'o', 's', 'u', 'r', 'l', 'n', 'h', 'p']",4,0,False +subjugation,"['s', 'u', 'b', '_', 'u', 'g', 'a', 't', 'i', 'o', 'n']","['e', 'l', 'r', 'c', 'm', 'p', 'd', 'h', 'f', 'w']",10,0,False +coining,"['c', 'o', 'i', 'n', 'i', 'n', 'g']","['e', 'a', 's', 'l', 't', 'r', 'u']",7,3,True +souped,"['s', 'o', 'u', 'p', 'e', 'd']","['i', 'a', 'r', 'l', 't', 'n', 'c']",6,3,True +reforests,"['r', 'e', '_', 'o', 'r', 'e', 's', 't', 's']","['i', 'a', 'u', 'd', 'l', 'n', 'p', 'h', 'c', 'b']",8,0,False +pinwheeling,"['p', 'i', 'n', '_', '_', 'e', 'e', 'l', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'd', 't', 'u', 'c', 'y', 'b']",9,0,False +endures,"['e', 'n', 'd', 'u', 'r', 'e', 's']","['i', 'a', 'o', 't', 'l']",7,5,True +inebriation,"['i', 'n', 'e', 'b', 'r', 'i', 'a', 't', 'i', 'o', 'n']","['s', 'l', 'd', 'g', 'c', 'p', 'm']",11,3,True +underwriter,"['u', 'n', 'd', 'e', 'r', '_', 'r', 'i', 't', 'e', 'r']","['s', 'a', 'o', 'l', 'g', 'c', 'p', 'm', 'f', 'b']",10,0,False +blinkers,"['_', 'l', 'i', 'n', '_', 'e', 'r', 's']","['a', 'o', 't', 'd', 'u', 'g', 'p', 'c', 'f', 'm']",6,0,False +effective,"['e', '_', '_', 'e', '_', 't', 'i', '_', 'e']","['s', 'n', 'r', 'l', 'd', 'a', 'o', 'u', 'h', 'p']",5,0,False +curbing,"['c', 'u', 'r', 'b', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'l', 't', 'p', 'd', 'm']",7,1,True +auxiliary,"['a', 'u', '_', 'i', 'l', 'i', 'a', 'r', 'y']","['e', 's', 'n', 'o', 't', 'c', 'm', 'd', 'f', 'p']",8,0,False +cataloguers,"['c', 'a', 't', 'a', 'l', 'o', 'g', 'u', 'e', 'r', 's']","['i', 'n', 'd', 'p', 'h', 'b', 'm', 'f']",11,2,True +imitates,"['i', 'm', 'i', 't', 'a', 't', 'e', 's']","['r', 'n', 'l', 'o', 'd', 'c']",8,4,True +universal,"['u', 'n', 'i', '_', 'e', 'r', 's', 'a', 'l']","['t', 'o', 'd', 'g', 'c', 'p', 'm', 'b', 'f', 'h']",8,0,False +soared,"['s', 'o', 'a', 'r', 'e', 'd']","['i', 't', 'l']",6,7,True +reopening,"['r', 'e', 'o', 'p', 'e', 'n', 'i', 'n', 'g']","['s', 'a', 't', 'd', 'l', 'c']",9,4,True +abhors,"['a', '_', '_', 'o', 'r', 's']","['e', 'i', 't', 'l', 'n', 'u', 'c', 'd', 'm', 'p']",4,0,False +amazons,"['a', '_', 'a', '_', 'o', 'n', 's']","['e', 'i', 'r', 'l', 't', 'u', 'c', 'y', 'd', 'p']",5,0,False +populism,"['p', 'o', 'p', 'u', 'l', 'i', 's', 'm']","['e', 'a', 'n', 't', 'r', 'c', 'y']",8,3,True +muskrat,"['m', 'u', 's', '_', 'r', 'a', 't']","['e', 'i', 'o', 'l', 'n', 'c', 'y', 'p', 'h', 'b']",6,0,False +gathers,"['_', 'a', 't', 'h', 'e', 'r', 's']","['i', 'o', 'l', 'd', 'n', 'u', 'c', 'p', 'm', 'b']",6,0,False +crucifies,"['c', 'r', 'u', 'c', 'i', '_', 'i', 'e', 's']","['a', 'o', 'n', 't', 'l', 'd', 'p', 'h', 'm', 'b']",8,0,False +tendency,"['t', 'e', 'n', 'd', 'e', 'n', '_', 'y']","['s', 'i', 'a', 'o', 'u', 'r', 'l', 'p', 'h', 'w']",7,0,False +flowers,"['_', 'l', 'o', 'w', 'e', 'r', 's']","['i', 'a', 'u', 't', 'd', 'n', 'p', 'c', 'b', 'h']",6,0,False +autumn,"['a', 'u', 't', 'u', 'm', 'n']","['e', 'i', 'o', 's', 'l', 'r', 'y', 'h']",6,2,True +floater,"['_', 'l', 'o', 'a', 't', 'e', 'r']","['s', 'i', 'd', 'n', 'c', 'u', 'p', 'b', 'm', 'y']",6,0,False +assisted,"['a', 's', 's', 'i', 's', 't', 'e', 'd']","['r', 'n', 'l', 'o']",8,6,True +fern,"['_', 'e', 'r', 'n']","['s', 'i', 'a', 'o', 'u', 'd', 't', 'l', 'y', 'p']",3,0,False +blamelessly,"['b', 'l', 'a', 'm', 'e', 'l', 'e', 's', 's', 'l', 'y']","['i', 'r', 'o', 't', 'd', 'u', 'n', 'p', 'c']",11,1,True +barbarities,"['b', 'a', 'r', 'b', 'a', 'r', 'i', 't', 'i', 'e', 's']","['n', 'l', 'o', 'd', 'c', 'p', 'u', 'h', 'm']",11,1,True +mitigates,"['m', 'i', 't', 'i', 'g', 'a', 't', 'e', 's']","['r', 'n', 'l', 'o', 'd', 'c', 'u', 'h', 'p']",9,1,True +troop,"['t', 'r', 'o', 'o', '_']","['e', 'i', 'a', 's', 'u', 'l', 'n', 'y', 'c', 'w']",4,0,False +memorisation,"['m', 'e', 'm', 'o', 'r', 'i', 's', 'a', 't', 'i', 'o', 'n']","['l', 'd', 'c', 'g', 'p']",12,5,True +parsec,"['p', 'a', 'r', 's', 'e', 'c']","['i', 'o', 't', 'l', 'd', 'u', 'n']",6,3,True +biweekly,"['_', 'i', '_', 'e', 'e', '_', 'l', 'y']","['s', 'n', 'r', 'a', 'd', 'o', 't', 'u', 'p', 'c']",5,0,False +discomfort,"['d', 'i', 's', 'c', 'o', 'm', 'f', 'o', 'r', 't']","['e', 'a', 'n', 'l', 'u', 'h', 'p', 'y', 'b']",10,1,True +reinforcing,"['r', 'e', 'i', 'n', 'f', 'o', 'r', 'c', 'i', 'n', 'g']","['s', 'a', 't', 'd', 'l', 'u', 'p', 'b', 'm']",11,1,True +shrift,"['s', 'h', 'r', 'i', 'f', 't']","['e', 'a', 'o', 'n', 'u', 'l', 'c', 'p']",6,2,True +incinerates,"['i', 'n', 'c', 'i', 'n', 'e', 'r', 'a', 't', 'e', 's']","['o', 'l', 'd']",11,7,True +leitmotifs,"['l', 'e', 'i', 't', 'm', 'o', 't', 'i', 'f', 's']","['a', 'n', 'r', 'd', 'u', 'c', 'p', 'h', 'b']",10,1,True +amalgamation,"['a', 'm', 'a', 'l', 'g', 'a', 'm', 'a', 't', 'i', 'o', 'n']","['e', 's', 'r', 'c', 'u', 'y', 'd', 'p', 'b']",12,1,True +modestly,"['_', 'o', 'd', 'e', 's', 't', 'l', '_']","['i', 'a', 'r', 'u', 'n', 'p', 'c', 'b', 'h', 'w']",6,0,False +espousal,"['e', 's', 'p', 'o', 'u', 's', 'a', 'l']","['i', 'r', 't', 'd', 'n', 'c']",8,4,True +adipose,"['a', 'd', 'i', 'p', 'o', 's', 'e']","['r', 'n', 'l', 't', 'c', 'm']",7,4,True +anthologised,"['a', 'n', 't', 'h', 'o', 'l', 'o', 'g', 'i', 's', 'e', 'd']","['r', 'c', 'u', 'm', 'p', 'b']",12,4,True +coiffuring,"['c', 'o', 'i', 'f', 'f', 'u', 'r', 'i', 'n', 'g']","['e', 'a', 's', 'l', 't', 'd', 'p', 'm', 'b']",10,1,True +soliloquy,"['s', 'o', 'l', 'i', 'l', 'o', '_', 'u', 'y']","['e', 'a', 'n', 't', 'r', 'c', 'p', 'b', 'd', 'f']",8,0,False +explosion,"['e', '_', 'p', 'l', 'o', 's', 'i', 'o', 'n']","['a', 'r', 't', 'd', 'g', 'c', 'u', 'm', 'h', 'b']",8,0,False +mitres,"['m', 'i', 't', 'r', 'e', 's']","['a', 'o', 'n', 'l', 'd', 'u', 'p', 'h']",6,2,True +allures,"['a', 'l', 'l', 'u', 'r', 'e', 's']","['i', 'o', 't', 'd']",7,6,True +gantries,"['g', 'a', 'n', 't', 'r', 'i', 'e', 's']","['o', 'l', 'd', 'c']",8,6,True +bracing,"['b', 'r', 'a', 'c', 'i', 'n', 'g']","['e', 's', 'o', 'l', 't', 'u', 'd', 'p', 'm']",7,1,True +freighting,"['f', 'r', 'e', 'i', 'g', 'h', 't', 'i', 'n', 'g']","['s', 'a', 'o', 'd', 'l', 'u', 'p', 'c']",10,2,True +palavered,"['p', 'a', 'l', 'a', '_', 'e', 'r', 'e', 'd']","['s', 'i', 'o', 't', 'n', 'u', 'c', 'b', 'y', 'g']",8,0,False +scarfs,"['s', 'c', 'a', 'r', '_', 's']","['e', 'i', 'o', 'u', 'l', 't', 'n', 'y', 'm', 'h']",5,0,False +informed,"['i', 'n', '_', 'o', 'r', '_', 'e', 'd']","['s', 'a', 't', 'l', 'g', 'c', 'u', 'p', 'b', 'w']",6,0,False +richest,"['r', 'i', 'c', 'h', 'e', 's', 't']","['a', 'o', 'n', 'l', 'd', 'u', 'p']",7,3,True +plunderer,"['p', 'l', 'u', 'n', 'd', 'e', 'r', 'e', 'r']","['s', 'i', 'a', 'o', 't', 'c', 'b']",9,3,True +nibbling,"['n', 'i', '_', '_', 'l', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 't', 'r', 'y', 'c', 'd']",6,0,False +toasty,"['t', 'o', 'a', 's', 't', '_']","['e', 'i', 'r', 'l', 'n', 'u', 'c', 'h', 'p', 'b']",5,0,False +megahertz,"['_', 'e', '_', 'a', '_', 'e', 'r', 't', '_']","['s', 'i', 'o', 'd', 'l', 'n', 'c', 'u', 'p', 'b']",5,0,False +count,"['c', 'o', 'u', 'n', 't']","['e', 'i', 'a', 's', 'r', 'l']",5,4,True +monocle,"['_', 'o', 'n', 'o', 'c', 'l', 'e']","['s', 'i', 'a', 'r', 'd', 't', 'u', 'y', 'b', 'p']",6,0,False +redrafts,"['r', 'e', 'd', 'r', 'a', '_', 't', 's']","['i', 'o', 'l', 'n', 'u', 'c', 'p', 'h', 'g', 'b']",7,0,False +worriers,"['_', 'o', 'r', 'r', 'i', 'e', 'r', 's']","['a', 'n', 't', 'l', 'd', 'p', 'u', 'c', 'b', 'h']",7,0,False +cassinos,"['c', 'a', 's', 's', 'i', 'n', 'o', 's']","['e', 't', 'l', 'r', 'g']",8,5,True +congealed,"['c', 'o', 'n', 'g', 'e', 'a', 'l', 'e', 'd']","['s', 'i', 'r', 't', 'u', 'b', 'p', 'm']",9,2,True +literati,"['l', 'i', 't', 'e', 'r', 'a', 't', 'i']","['s', 'n']",8,8,True +brittlest,"['_', 'r', 'i', 't', 't', 'l', 'e', 's', 't']","['a', 'o', 'n', 'u', 'd', 'p', 'h', 'c', 'f', 'm']",8,0,False +bystander,"['b', '_', 's', 't', 'a', 'n', 'd', 'e', 'r']","['i', 'o', 'l', 'u', 'c', 'p', 'g', 'h', 'm', 'w']",8,0,False +lept,"['l', 'e', '_', 't']","['s', 'i', 'a', 'o', 'u', 'r', 'd', 'n', 'y', 'h']",3,0,False +treaty,"['t', 'r', 'e', 'a', 't', '_']","['s', 'i', 'o', 'd', 'l', 'n', 'c', 'u', 'p', 'b']",5,0,False +apprenticing,"['a', 'p', 'p', 'r', 'e', 'n', 't', 'i', 'c', 'i', 'n', 'g']","['s', 'l', 'o', 'd', 'u']",12,5,True +sarapes,"['s', 'a', 'r', 'a', 'p', 'e', 's']","['i', 'o', 't', 'l', 'd', 'u', 'n']",7,3,True +shuttles,"['s', 'h', 'u', 't', 't', 'l', 'e', 's']","['i', 'a', 'o', 'r', 'd', 'n', 'p']",8,3,True +marrieds,"['m', 'a', 'r', 'r', 'i', 'e', 'd', 's']","['n', 't', 'l', 'o', 'c', 'p']",8,4,True +irritability,"['i', 'r', 'r', 'i', 't', 'a', '_', 'i', 'l', 'i', 't', 'y']","['e', 's', 'n', 'o', 'c', 'u', 'd', 'p', 'm', 'f']",11,0,False +advisers,"['a', 'd', '_', 'i', 's', 'e', 'r', 's']","['n', 't', 'l', 'o', 'c', 'p', 'm', 'b', 'g', 'h']",7,0,False +sacristy,"['s', 'a', 'c', 'r', 'i', 's', 't', 'y']","['e', 'n', 'o', 'l', 'u', 'h', 'm']",8,3,True +avert,"['a', '_', 'e', 'r', 't']","['s', 'i', 'o', 'd', 'l', 'n', 'c', 'u', 'p', 'b']",4,0,False +solarium,"['s', 'o', 'l', 'a', 'r', 'i', 'u', 'm']","['e', 'n', 't', 'c']",8,6,True +friskily,"['_', 'r', 'i', 's', '_', 'i', 'l', 'y']","['e', 'a', 'o', 'n', 'u', 't', 'p', 'c', 'd', 'h']",6,0,False +grousing,"['g', 'r', 'o', 'u', 's', 'i', 'n', 'g']","['e', 'a', 't', 'l']",8,6,True +synonyms,"['s', 'y', 'n', 'o', 'n', 'y', '_', 's']","['e', 'i', 'a', 'u', 'r', 'l', 't', 'c', 'b', 'p']",7,0,False +skydivers,"['s', '_', '_', 'd', 'i', '_', 'e', 'r', 's']","['a', 'o', 'n', 't', 'l', 'u', 'p', 'c', 'm', 'f']",6,0,False +euphoria,"['e', '_', 'p', '_', 'o', 'r', 'i', 'a']","['s', 'n', 'l', 't', 'd', 'c', 'm', 'b', 'g', 'f']",6,0,False +triumphs,"['t', 'r', 'i', 'u', 'm', 'p', 'h', 's']","['e', 'a', 'o', 'n', 'l', 'c']",8,4,True +panoply,"['p', 'a', 'n', 'o', 'p', 'l', 'y']","['e', 'i', 's', 'r', 'u', 't', 'c', 'd', 'b']",7,1,True +sixteenths,"['s', 'i', '_', 't', 'e', 'e', 'n', 't', 'h', 's']","['a', 'o', 'r', 'l', 'd', 'u', 'g', 'c', 'p', 'm']",9,0,False +farrowed,"['_', 'a', 'r', 'r', 'o', '_', 'e', 'd']","['s', 'i', 't', 'l', 'n', 'c', 'm', 'b', 'p', 'g']",6,0,False +preoccupies,"['p', 'r', 'e', 'o', 'c', 'c', 'u', 'p', 'i', 'e', 's']","['a', 'n', 't', 'l', 'd']",11,5,True +crabbiness,"['c', 'r', 'a', 'b', 'b', 'i', 'n', 'e', 's', 's']","['t', 'l', 'o', 'd', 'g', 'p', 'u', 'h', 'm']",10,1,True +releasing,"['r', 'e', 'l', 'e', 'a', 's', 'i', 'n', 'g']","['t', 'o', 'd']",9,7,True +stoat,"['s', 't', 'o', 'a', 't']","['e', 'i', 'r', 'l']",5,6,True +renaissances,"['r', 'e', 'n', 'a', 'i', 's', 's', 'a', 'n', 'c', 'e', 's']","['t', 'l', 'o', 'd', 'g']",12,5,True +refectory,"['r', 'e', '_', 'e', '_', 't', 'o', 'r', '_']","['s', 'i', 'a', 'd', 'l', 'n', 'u', 'p', 'h', 'b']",6,0,False +gimpier,"['_', 'i', '_', 'p', 'i', 'e', 'r']","['s', 'n', 'a', 'o', 'l', 'd', 't', 'u', 'c', 'y']",5,0,False +boxcars,"['b', 'o', '_', 'c', 'a', 'r', 's']","['e', 'i', 't', 'l', 'n', 'u', 'm', 'd', 'p', 'h']",6,0,False +countermanding,"['c', 'o', 'u', 'n', 't', 'e', 'r', 'm', 'a', 'n', 'd', 'i', 'n', 'g']","['s', 'l', 'p']",14,7,True +haemorrhage,"['_', 'a', 'e', 'm', 'o', 'r', 'r', '_', 'a', 'g', 'e']","['s', 'i', 'd', 't', 'l', 'n', 'c', 'p', 'b', 'y']",9,0,False +birdhouses,"['b', 'i', 'r', 'd', 'h', 'o', 'u', 's', 'e', 's']","['a', 'n', 't', 'l', 'p', 'c', 'm', 'g']",10,2,True +unfailingly,"['u', 'n', 'f', 'a', 'i', 'l', 'i', 'n', 'g', 'l', 'y']","['e', 's', 'o', 't', 'r', 'c', 'm', 'd', 'p']",11,1,True +inputted,"['i', 'n', 'p', 'u', 't', 't', 'e', 'd']","['s', 'a', 'r', 'o', 'l', 'g', 'c']",8,3,True +brawnier,"['b', 'r', 'a', '_', 'n', 'i', 'e', 'r']","['s', 't', 'l', 'd', 'g', 'o', 'c', 'p', 'm', 'f']",7,0,False +exterminated,"['e', '_', 't', 'e', 'r', 'm', 'i', 'n', 'a', 't', 'e', 'd']","['s', 'l', 'o', 'g', 'c', 'u', 'p', 'b', 'h', 'f']",11,0,False +showy,"['s', '_', 'o', '_', '_']","['e', 'i', 'a', 'u', 'r', 'l', 't', 'n', 'c', 'b']",2,0,False +sereneness,"['s', 'e', 'r', 'e', 'n', 'e', 'n', 'e', 's', 's']","['i', 'a', 'o', 'u', 't', 'd', 'l', 'p']",10,2,True +sassafras,"['s', 'a', 's', 's', 'a', '_', 'r', 'a', 's']","['e', 'i', 'o', 'u', 'l', 't', 'n', 'y', 'c', 'm']",8,0,False +mi,"['_', 'i']","['e', 'a', 'o', 's', 'n', 'l', 'u', 't', 'r', 'y']",1,0,False +enthusing,"['e', 'n', 't', 'h', 'u', 's', 'i', 'n', 'g']","['a', 'o', 'r', 'l', 'd']",9,5,True +orientation,"['o', 'r', 'i', 'e', 'n', 't', 'a', 't', 'i', 'o', 'n']","['s', 'l']",11,8,True +sees,"['s', 'e', 'e', 's']",[],4,10,True +favourites,"['f', 'a', '_', 'o', 'u', 'r', 'i', 't', 'e', 's']","['n', 'l', 'd', 'c', 'p', 'h', 'm', 'b', 'g', 'w']",9,0,False +acceded,"['a', 'c', 'c', 'e', 'd', 'e', 'd']","['s', 'i', 'r', 'l', 'o', 't', 'n', 'u']",7,2,True +pickups,"['p', 'i', 'c', '_', 'u', 'p', 's']","['e', 'a', 'o', 'n', 'l', 't', 'r', 'm', 'h', 'd']",6,0,False +comedienne,"['c', 'o', 'm', 'e', 'd', 'i', 'e', 'n', 'n', 'e']","['s', 'a', 'r', 'l', 't', 'g', 'u', 'p']",10,2,True +oilfield,"['o', 'i', 'l', 'f', 'i', 'e', 'l', 'd']","['s', 'n', 'r', 'a', 't', 'c', 'b', 'p', 'g']",8,1,True +metered,"['_', 'e', 't', 'e', 'r', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'l', 'n', 'p', 'h', 'b']",6,0,False +busbies,"['_', 'u', 's', '_', 'i', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'd', 'p', 'h', 'm']",5,0,False +multimillionaire,"['m', 'u', 'l', 't', 'i', 'm', 'i', 'l', 'l', 'i', 'o', 'n', 'a', 'i', 'r', 'e']","['s', 'd', 'g', 'c', 'p']",16,5,True +domiciled,"['d', 'o', '_', 'i', 'c', 'i', 'l', 'e', 'd']","['s', 'n', 'r', 'a', 't', 'u', 'p', 'b', 'y', 'w']",8,0,False +perjury,"['p', 'e', 'r', '_', 'u', 'r', 'y']","['s', 'i', 'a', 'o', 'd', 'l', 't', 'n', 'm', 'b']",6,0,False +connote,"['c', 'o', 'n', 'n', 'o', 't', 'e']","['s', 'i', 'a', 'r', 'd', 'l', 'u']",7,3,True +wights,"['_', 'i', '_', 'h', 't', 's']","['e', 'a', 'o', 'n', 'u', 'l', 'r', 'c', 'p', 'f']",4,0,False +caboose,"['c', 'a', 'b', 'o', 'o', 's', 'e']","['i', 'r', 'l', 't', 'd', 'n', 'p', 'h']",7,2,True +eyeful,"['e', 'y', 'e', '_', 'u', 'l']","['s', 'i', 'a', 'o', 'r', 'd', 't', 'n', 'p', 'b']",5,0,False +chimaera,"['c', 'h', 'i', 'm', 'a', 'e', 'r', 'a']","['s', 'n', 'l', 't', 'd', 'o', 'p', 'b']",8,2,True +backless,"['b', 'a', 'c', '_', 'l', 'e', 's', 's']","['i', 'r', 'o', 't', 'd', 'u', 'n', 'p', 'h', 'm']",7,0,False +brutalising,"['b', 'r', 'u', 't', 'a', 'l', 'i', 's', 'i', 'n', 'g']","['e', 'o', 'c', 'm', 'y', 'p', 'd', 'h']",11,2,True +twit,"['t', '_', 'i', 't']","['e', 'a', 'o', 's', 'n', 'l', 'u', 'r', 'h', 'y']",3,0,False +dolls,"['_', 'o', 'l', 'l', 's']","['e', 'i', 'a', 'u', 'r', 't', 'y', 'c', 'w', 'b']",4,0,False +kicky,"['_', 'i', '_', '_', 'y']","['e', 'a', 'o', 's', 'n', 'l', 'u', 't', 'r', 'p']",2,0,False +schoolbook,"['s', 'c', '_', 'o', 'o', 'l', 'b', 'o', 'o', '_']","['e', 'i', 'a', 'u', 'r', 't', 'y', 'n', 'p', 'd']",8,0,False +pedestals,"['p', 'e', 'd', 'e', 's', 't', 'a', 'l', 's']","['i', 'r', 'o', 'n', 'u', 'c']",9,4,True +nightingale,"['n', 'i', 'g', 'h', 't', 'i', 'n', 'g', 'a', 'l', 'e']","['s', 'r', 'o', 'd', 'c', 'u', 'm', 'p', 'b']",11,1,True +pelted,"['p', 'e', 'l', 't', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'r', 'n']",6,3,True +tattoo,"['t', 'a', 't', 't', 'o', 'o']","['e', 'i', 's', 'r', 'l', 'n']",6,4,True +intoxicates,"['i', 'n', 't', 'o', '_', 'i', 'c', 'a', 't', 'e', 's']","['r', 'l', 'd', 'g', 'm', 'p', 'u', 'h', 'b', 'f']",10,0,False +legume,"['l', 'e', '_', 'u', 'm', 'e']","['s', 'i', 'a', 'o', 'r', 'd', 't', 'n', 'y', 'p']",5,0,False +terraced,"['t', 'e', 'r', 'r', 'a', 'c', 'e', 'd']","['s', 'i', 'o', 'l', 'n']",8,5,True +treatment,"['t', 'r', 'e', 'a', 't', '_', 'e', 'n', 't']","['s', 'i', 'o', 'd', 'l', 'u', 'c', 'p', 'g', 'h']",8,0,False +buffeting,"['_', 'u', 'f', 'f', 'e', 't', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'l', 'd', 'h', 'p', 'm', 'c']",8,0,False +realists,"['r', 'e', 'a', 'l', 'i', 's', 't', 's']",['n'],8,9,True +substratum,"['s', 'u', 'b', 's', 't', 'r', 'a', 't', 'u', 'm']","['e', 'i', 'o', 'l', 'n', 'c', 'y', 'p', 'h']",10,1,True +bronchos,"['b', 'r', 'o', 'n', 'c', '_', 'o', 's']","['e', 'i', 'a', 'u', 't', 'l', 'p', 'd', 'm', 'w']",7,0,False +peritoneums,"['p', 'e', 'r', 'i', 't', 'o', 'n', 'e', 'u', 'm', 's']","['a', 'l', 'd', 'c', 'g']",11,5,True +genuflecting,"['g', 'e', 'n', 'u', 'f', 'l', 'e', 'c', 't', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'd', 'p', 'h']",12,3,True +diners,"['d', 'i', 'n', 'e', 'r', 's']","['a', 'o', 't', 'l']",6,6,True +bunching,"['_', 'u', 'n', '_', '_', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'l', 't', 'r', 'p', 'd', 'm']",5,0,False +clematis,"['c', 'l', 'e', 'm', 'a', 't', 'i', 's']","['r', 'n', 'o', 'd', 'u', 'h', 'p']",8,3,True +indemnify,"['i', 'n', 'd', 'e', '_', 'n', 'i', '_', '_']","['s', 'a', 'r', 'o', 'l', 't', 'g', 'u', 'c', 'p']",6,0,False +toadied,"['t', 'o', 'a', 'd', 'i', 'e', 'd']","['s', 'n', 'r', 'l']",7,6,True +carbons,"['c', 'a', 'r', 'b', 'o', 'n', 's']","['e', 'i', 't', 'l', 'u', 'd', 'm', 'p']",7,2,True +mescal,"['_', 'e', 's', 'c', 'a', 'l']","['i', 'r', 'o', 't', 'd', 'u', 'n', 'p', 'h', 'b']",5,0,False +extenuation,"['e', '_', 't', 'e', 'n', '_', 'a', 't', 'i', 'o', 'n']","['s', 'r', 'l', 'd', 'g', 'c', 'm', 'p', 'b', 'h']",9,0,False +adherent,"['a', 'd', '_', 'e', 'r', 'e', 'n', 't']","['s', 'i', 'o', 'l', 'u', 'c', 'p', 'g', 'm', 'b']",7,0,False +railed,"['r', 'a', 'i', 'l', 'e', 'd']","['s', 'n', 't']",6,7,True +decamp,"['d', 'e', 'c', 'a', 'm', 'p']","['s', 'i', 'r', 'l', 'o', 't', 'n', 'u', 'y']",6,1,True +spaceship,"['s', 'p', 'a', 'c', 'e', 's', 'h', 'i', 'p']","['r', 'n', 'l', 't', 'd', 'o']",9,4,True +callow,"['c', 'a', 'l', 'l', 'o', '_']","['e', 'i', 's', 'r', 'n', 't', 'y', 'u', 'm', 'p']",5,0,False +youthful,"['y', 'o', 'u', 't', '_', '_', 'u', 'l']","['e', 'i', 'a', 's', 'r', 'n', 'c', 'b', 'p', 'd']",6,0,False +reformat,"['r', 'e', '_', 'o', 'r', 'm', 'a', 't']","['s', 'i', 'd', 'l', 'n', 'c', 'p', 'b', 'h', 'g']",7,0,False +elbowed,"['e', 'l', 'b', 'o', '_', 'e', 'd']","['s', 'i', 'a', 'r', 'n', 'u', 't', 'p', 'c', 'g']",6,0,False +spend,"['s', 'p', 'e', 'n', 'd']","['i', 'a', 'o', 'u', 'r', 'l', 't']",5,3,True +crispier,"['c', 'r', 'i', 's', 'p', 'i', 'e', 'r']","['a', 'o', 'n', 't', 'l', 'd', 'u', 'h', 'm']",8,1,True +roadbeds,"['r', 'o', 'a', 'd', 'b', 'e', 'd', 's']","['i', 't', 'l', 'n', 'c', 'p', 'u']",8,3,True +saturated,"['s', 'a', 't', 'u', 'r', 'a', 't', 'e', 'd']","['i', 'o', 'l', 'n']",9,6,True +sturgeons,"['s', 't', 'u', 'r', 'g', 'e', 'o', 'n', 's']","['i', 'a', 'd', 'l', 'c', 'p', 'h', 'b', 'm']",9,1,True +ignominy,"['i', 'g', 'n', 'o', '_', 'i', 'n', '_']","['e', 'a', 's', 'l', 't', 'r', 'u', 'c', 'd', 'p']",6,0,False +lifesaver,"['l', 'i', '_', 'e', 's', 'a', '_', 'e', 'r']","['n', 't', 'o', 'd', 'c', 'p', 'u', 'b', 'm', 'h']",7,0,False +smokehouse,"['s', '_', 'o', '_', 'e', '_', 'o', 'u', 's', 'e']","['i', 'a', 'r', 'l', 't', 'd', 'n', 'c', 'p', 'b']",7,0,False +refreshers,"['r', 'e', '_', 'r', 'e', 's', 'h', 'e', 'r', 's']","['i', 'a', 'o', 'u', 't', 'd', 'l', 'p', 'n', 'c']",9,0,False +decontamination,"['d', 'e', 'c', 'o', 'n', 't', 'a', 'm', 'i', 'n', 'a', 't', 'i', 'o', 'n']","['s', 'r', 'l', 'g']",15,6,True +loudly,"['l', 'o', 'u', '_', 'l', 'y']","['e', 'i', 'a', 's', 'r', 't', 'n', 'p', 'b', 'c']",5,0,False +sissier,"['s', 'i', 's', 's', 'i', 'e', 'r']","['a', 'o', 'n']",7,7,True +lookalikes,"['l', 'o', 'o', '_', 'a', 'l', 'i', '_', 'e', 's']","['r', 'n', 't', 'd', 'c', 'p', 'b', 'm', 'h', 'g']",8,0,False +genial,"['g', 'e', 'n', 'i', 'a', 'l']","['s', 'r', 't', 'd']",6,6,True +gels,"['_', 'e', 'l', 's']","['i', 'a', 'o', 'u', 'r', 't', 'd', 'h', 'n', 'p']",3,0,False +aconites,"['a', 'c', 'o', 'n', 'i', 't', 'e', 's']","['r', 'l', 'd']",8,7,True +delved,"['d', 'e', 'l', '_', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'r', 't', 'n', 'p', 'w']",5,0,False +testimonials,"['t', 'e', 's', 't', 'i', 'm', 'o', 'n', 'i', 'a', 'l', 's']","['r', 'd', 'c', 'g', 'u', 'p']",12,4,True +heiress,"['h', 'e', 'i', 'r', 'e', 's', 's']","['a', 'o', 'n', 't', 'l', 'd', 'u', 'p']",7,2,True +initialising,"['i', 'n', 'i', 't', 'i', 'a', 'l', 'i', 's', 'i', 'n', 'g']","['e', 'o']",12,8,True +ridden,"['r', 'i', 'd', 'd', 'e', 'n']","['s', 'a', 'o', 't']",6,6,True +recessive,"['r', 'e', '_', 'e', 's', 's', 'i', '_', 'e']","['a', 'o', 'n', 't', 'l', 'd', 'u', 'p', 'h', 'm']",7,0,False +caliphate,"['c', 'a', 'l', 'i', 'p', 'h', 'a', 't', 'e']","['s', 'n', 'r', 'd', 'o', 'u', 'y']",9,3,True +toughen,"['t', 'o', 'u', '_', '_', 'e', 'n']","['s', 'i', 'a', 'r', 'd', 'l', 'c', 'p', 'b', 'm']",5,0,False +thumbscrew,"['t', 'h', 'u', 'm', 'b', 's', 'c', 'r', 'e', '_']","['i', 'a', 'o', 'l', 'd', 'n', 'p', 'y', 'f', 'g']",9,0,False +merits,"['m', 'e', 'r', 'i', 't', 's']","['a', 'o', 'n', 'l', 'd', 'u', 'p', 'h']",6,2,True +commanded,"['c', 'o', 'm', 'm', 'a', 'n', 'd', 'e', 'd']","['s', 'i', 'r', 'l', 't', 'u']",9,4,True +mustering,"['m', 'u', 's', 't', 'e', 'r', 'i', 'n', 'g']","['a', 'o', 'l', 'd', 'c', 'p', 'h']",9,3,True +electroplating,"['e', 'l', 'e', 'c', 't', 'r', 'o', 'p', 'l', 'a', 't', 'i', 'n', 'g']","['s', 'd', 'u']",14,7,True +idolising,"['i', 'd', 'o', 'l', 'i', 's', 'i', 'n', 'g']","['e', 'a', 'u', 't', 'r', 'c', 'p']",9,3,True +fiddlesticks,"['f', 'i', 'd', 'd', 'l', 'e', 's', 't', 'i', 'c', '_', 's']","['a', 'o', 'n', 'r', 'u', 'h', 'p', 'm', 'b', 'v']",11,0,False +crinklier,"['c', 'r', 'i', 'n', '_', 'l', 'i', 'e', 'r']","['s', 'a', 'o', 't', 'd', 'g', 'u', 'p', 'f', 'h']",8,0,False +pardoning,"['p', 'a', 'r', 'd', 'o', 'n', 'i', 'n', 'g']","['e', 's', 'l', 't', 'c', 'm', 'b']",9,3,True +unequivocal,"['_', 'n', 'e', '_', '_', 'i', '_', 'o', 'c', 'a', 'l']","['s', 'r', 't', 'd', 'g', 'm', 'p', 'b', 'y', 'h']",7,0,False +partition,"['p', 'a', 'r', 't', 'i', 't', 'i', 'o', 'n']","['e', 's', 'l', 'g', 'c', 'm', 'd']",9,3,True +toadstools,"['t', 'o', 'a', '_', 's', 't', 'o', 'o', 'l', 's']","['e', 'i', 'r', 'u', 'n', 'c', 'y', 'p', 'b', 'h']",9,0,False +grassy,"['_', 'r', 'a', 's', 's', 'y']","['e', 'i', 'o', 'u', 'l', 't', 'n', 'c', 'm', 'p']",5,0,False +belly,"['_', 'e', 'l', 'l', 'y']","['s', 'i', 'a', 'o', 'u', 'r', 'd', 't', 'n', 'p']",4,0,False +visages,"['_', 'i', 's', 'a', '_', 'e', 's']","['r', 'n', 'l', 't', 'd', 'o', 'c', 'p', 'm', 'h']",5,0,False +finances,"['_', 'i', 'n', 'a', 'n', 'c', 'e', 's']","['r', 't', 'l', 'o', 'd', 'g', 'h', 'p', 'm', 'u']",7,0,False +trusteeship,"['t', 'r', 'u', 's', 't', 'e', 'e', 's', 'h', 'i', 'p']","['a', 'o', 'n', 'l', 'd', 'c', 'm']",11,3,True +litchi,"['l', 'i', 't', 'c', 'h', 'i']","['e', 'a', 'o', 's', 'n', 'u', 'y', 'r']",6,2,True +deceptions,"['d', 'e', 'c', 'e', 'p', 't', 'i', 'o', 'n', 's']","['a', 'r', 'l', 'u', 'g']",10,5,True +adviser,"['a', 'd', '_', 'i', 's', 'e', 'r']","['n', 't', 'l', 'o', 'c', 'p', 'm', 'b', 'g', 'h']",6,0,False +outcries,"['o', 'u', 't', 'c', 'r', 'i', 'e', 's']","['a', 'n', 'l', 'd', 'p']",8,5,True +biographers,"['b', 'i', 'o', 'g', 'r', 'a', 'p', 'h', 'e', 'r', 's']","['n', 't', 'l', 'd', 'c', 'm', 'u']",11,3,True +sourly,"['s', 'o', 'u', 'r', 'l', '_']","['e', 'i', 'a', 't', 'n', 'c', 'p', 'b', 'd', 'm']",5,0,False +surcharging,"['s', 'u', 'r', 'c', 'h', 'a', 'r', 'g', 'i', 'n', 'g']","['e', 'o', 't', 'l', 'm', 'p', 'd']",11,3,True +privacy,"['p', 'r', 'i', '_', 'a', 'c', 'y']","['e', 's', 'n', 'o', 'l', 't', 'm', 'u', 'd', 'h']",6,0,False +gallivanting,"['g', 'a', 'l', 'l', 'i', '_', 'a', 'n', 't', 'i', 'n', 'g']","['e', 's', 'o', 'r', 'u', 'c', 'y', 'm', 'p', 'd']",11,0,False +confrontations,"['c', 'o', 'n', 'f', 'r', 'o', 'n', 't', 'a', 't', 'i', 'o', 'n', 's']","['e', 'l', 'g', 'u', 'm', 'p', 'd', 'h', 'b']",14,1,True +enjoyments,"['e', 'n', '_', 'o', '_', 'm', 'e', 'n', 't', 's']","['i', 'a', 'r', 'l', 'd', 'u', 'c', 'p', 'h', 'b']",8,0,False +unusually,"['u', 'n', 'u', 's', 'u', 'a', 'l', 'l', 'y']","['e', 'i', 'o', 'r', 't']",9,5,True +heftiest,"['h', 'e', 'f', 't', 'i', 'e', 's', 't']","['a', 'o', 'n', 'r', 'l', 'd', 'u', 'p', 'c']",8,1,True +carbides,"['c', 'a', 'r', 'b', 'i', 'd', 'e', 's']","['n', 't', 'l', 'o', 'p', 'u', 'h', 'm']",8,2,True +analgesic,"['a', 'n', 'a', 'l', 'g', 'e', 's', 'i', 'c']","['r', 't', 'o', 'd']",9,6,True +humanitarianism,"['h', 'u', 'm', 'a', 'n', 'i', 't', 'a', 'r', 'i', 'a', 'n', 'i', 's', 'm']","['e', 'o', 'l', 'g', 'c', 'p', 'd']",15,3,True +prosaic,"['p', 'r', 'o', 's', 'a', 'i', 'c']","['e', 'n', 'l', 't', 'm', 'h', 'd']",7,3,True +doe,"['d', 'o', 'e']","['s', 'i', 'a', 'r']",3,6,True +empathetic,"['e', 'm', 'p', 'a', 't', 'h', 'e', 't', 'i', 'c']","['s', 'n', 'r', 'l', 'd', 'o', 'u']",10,3,True +spryly,"['s', 'p', 'r', 'y', 'l', 'y']","['e', 'i', 'a', 'o', 'u', 'h', 't']",6,3,True +mortgagor,"['m', 'o', 'r', 't', '_', 'a', '_', 'o', 'r']","['e', 'i', 's', 'l', 'n', 'u', 'c', 'y', 'd', 'p']",7,0,False +discount,"['d', 'i', 's', 'c', 'o', 'u', 'n', 't']","['e', 'a', 'g', 'l', 'r', 'p', 'm']",8,3,True +shirrs,"['s', 'h', 'i', 'r', 'r', 's']","['e', 'a', 'o', 'n', 'u', 't', 'l', 'p', 'k']",6,1,True +loth,"['l', 'o', 't', '_']","['e', 'i', 'a', 's', 'u', 'r', 'y', 'n', 'c', 'b']",3,0,False +bulldogs,"['b', 'u', 'l', 'l', '_', 'o', '_', 's']","['e', 'i', 'a', 'r', 't', 'n', 'c', 'p', 'y', 'm']",6,0,False +gonna,"['_', 'o', 'n', 'n', 'a']","['e', 'i', 's', 'r', 'l', 't', 'u', 'y', 'm', 'c']",4,0,False +dioxin,"['d', 'i', 'o', '_', 'i', 'n']","['e', 'a', 's', 'g', 'l', 't', 'r', 'u', 'c', 'y']",5,0,False +smuttier,"['s', 'm', 'u', 't', 't', 'i', 'e', 'r']","['a', 'o', 'n', 'l', 'd', 'p', 'h']",8,3,True +chaste,"['c', 'h', 'a', 's', 't', 'e']","['i', 'r', 'o', 'l', 'n', 'd', 'u']",6,3,True +extinction,"['e', '_', 't', 'i', 'n', 'c', 't', 'i', 'o', 'n']","['s', 'a', 'r', 'l', 'd', 'g', 'p', 'm', 'h', 'u']",9,0,False +disallowing,"['d', 'i', 's', 'a', 'l', 'l', 'o', 'w', 'i', 'n', 'g']","['e', 't', 'r', 'c', 'u', 'p', 'm', 'b']",11,2,True +eclectically,"['e', 'c', 'l', 'e', 'c', 't', 'i', 'c', 'a', 'l', 'l', 'y']","['s', 'n', 'r', 'd', 'o', 'u']",12,4,True +marvellous,"['m', 'a', 'r', '_', 'e', 'l', 'l', 'o', 'u', 's']","['i', 't', 'd', 'n', 'c', 'p', 'b', 'g', 'h', 'f']",9,0,False +fireproofed,"['f', 'i', 'r', 'e', 'p', 'r', 'o', 'o', 'f', 'e', 'd']","['s', 'n', 'a', 'l', 't', 'c', 'm', 'g', 'b']",11,1,True +gradually,"['_', 'r', 'a', '_', 'u', 'a', 'l', 'l', 'y']","['e', 'i', 'o', 's', 'n', 't', 'm', 'c', 'b', 'p']",7,0,False +vamps,"['_', 'a', 'm', 'p', 's']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'c']",4,0,False +unbind,"['u', 'n', '_', 'i', 'n', '_']","['e', 'a', 'o', 's', 'g', 'l', 't', 'c', 'm', 'y']",4,0,False +superficial,"['s', 'u', 'p', 'e', 'r', 'f', 'i', 'c', 'i', 'a', 'l']","['n', 't', 'o', 'd', 'm', 'b', 'h']",11,3,True +used,"['u', 's', 'e', 'd']","['i', 'a', 'o', 'r', 'l', 't']",4,4,True +hopped,"['_', 'o', 'p', 'p', 'e', 'd']","['s', 'i', 'a', 'r', 'l', 'n', 't', 'u', 'c', 'b']",5,0,False +plus,"['p', 'l', 'u', 's']","['e', 'i', 'a', 'o', 'r', 'y', 't']",4,3,True +shiftiness,"['s', 'h', 'i', '_', 't', 'i', 'n', 'e', 's', 's']","['a', 'o', 'r', 'l', 'd', 'u', 'g', 'c', 'p', 'm']",9,0,False +clones,"['c', 'l', 'o', 'n', 'e', 's']","['i', 'a', 'r', 'u', 't', 'd']",6,4,True +workers,"['_', 'o', 'r', '_', 'e', 'r', 's']","['i', 'a', 'u', 't', 'd', 'l', 'n', 'p', 'c', 'b']",5,0,False +rusticity,"['r', 'u', 's', 't', 'i', 'c', 'i', 't', '_']","['e', 'a', 'o', 'n', 'l', 'h', 'p', 'm', 'f', 'd']",8,0,False +disposals,"['d', 'i', 's', 'p', 'o', 's', 'a', 'l', 's']","['e', 'n', 't', 'r', 'c', 'y', 'm', 'h']",9,2,True +archdioceses,"['a', 'r', 'c', 'h', 'd', 'i', 'o', 'c', 'e', 's', 'e', 's']","['n', 't', 'l', 'p', 'm', 'b']",12,4,True +tad,"['t', 'a', '_']","['e', 'i', 'o', 's', 'u', 'r', 'l', 'n', 'y', 'h']",2,0,False +syllabified,"['s', '_', 'l', 'l', 'a', 'b', 'i', '_', 'i', 'e', 'd']","['r', 'n', 't', 'o', 'c', 'u', 'p', 'm', 'g', 'h']",9,0,False +boozing,"['_', 'o', 'o', '_', 'i', 'n', 'g']","['e', 'a', 's', 'l', 't', 'r', 'u', 'c', 'd', 'p']",5,0,False +pronghorn,"['_', 'r', 'o', 'n', '_', '_', 'o', 'r', 'n']","['e', 'i', 'a', 's', 'u', 'l', 't', 'c', 'y', 'w']",6,0,False +esthetes,"['e', 's', 't', 'h', 'e', 't', 'e', 's']","['i', 'a', 'o', 'u', 'r', 'l', 'd', 'n', 'p']",8,1,True +pizzicati,"['_', 'i', '_', '_', 'i', 'c', 'a', 't', 'i']","['e', 's', 'n', 'o', 'l', 'r', 'u', 'y', 'h', 'm']",6,0,False +tumbril,"['t', 'u', 'm', '_', 'r', 'i', 'l']","['e', 'a', 'o', 's', 'n', 'y', 'c', 'f', 'g', 'p']",6,0,False +lipsticked,"['l', 'i', 'p', 's', 't', 'i', 'c', 'k', 'e', 'd']","['a', 'o', 'n', 'r', 'u', 'h', 'm', 'f', 'b']",10,1,True +leggin,"['l', 'e', 'g', 'g', 'i', 'n']","['s', 'a', 'r', 'o', 'd']",6,5,True +pedagog,"['p', 'e', 'd', 'a', 'g', 'o', 'g']","['s', 'i', 'r', 'l', 'n', 't', 'c', 'm', 'b']",7,1,True +exhibiting,"['e', '_', 'h', 'i', '_', 'i', 't', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'l', 'd', 'u', 'c', 'p', 'w']",8,0,False +sulphured,"['s', 'u', 'l', 'p', '_', 'u', 'r', 'e', 'd']","['i', 'a', 'o', 't', 'n', 'c', 'b', 'm', 'f', 'g']",8,0,False +unending,"['u', 'n', 'e', 'n', 'd', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'l', 't']",8,4,True +comestible,"['c', 'o', 'm', 'e', 's', 't', 'i', 'b', 'l', 'e']","['a', 'n', 'r', 'd', 'u', 'p', 'h']",10,3,True +pillory,"['p', 'i', 'l', 'l', 'o', 'r', 'y']","['e', 'a', 's', 'n', 't', 'u', 'c', 'd']",7,2,True +litigation,"['l', 'i', 't', 'i', 'g', 'a', 't', 'i', 'o', 'n']","['e', 's', 'r']",10,7,True +profound,"['_', 'r', 'o', '_', 'o', 'u', 'n', 'd']","['e', 'i', 'a', 's', 'l', 't', 'c', 'y', 'b', 'm']",6,0,False +tromp,"['t', 'r', 'o', '_', '_']","['e', 'i', 'a', 's', 'u', 'l', 'n', 'y', 'c', 'w']",3,0,False +terminator,"['t', 'e', 'r', 'm', 'i', 'n', 'a', 't', 'o', 'r']","['s', 'l', 'd', 'g', 'c', 'p']",10,4,True +sportsmanship,"['s', 'p', 'o', 'r', 't', 's', 'm', 'a', 'n', 's', 'h', 'i', 'p']","['e', 'l', 'g', 'c', 'u', 'd']",13,4,True +fourth,"['_', 'o', 'u', 'r', 't', 'h']","['e', 'i', 'a', 's', 'l', 'n', 'y', 'c', 'm', 'g']",5,0,False +unattractive,"['u', 'n', 'a', 't', 't', 'r', 'a', 'c', 't', 'i', '_', 'e']","['s', 'l', 'o', 'd', 'g', 'p', 'm', 'h', 'b', 'f']",11,0,False +grimes,"['_', 'r', 'i', 'm', 'e', 's']","['a', 'o', 'n', 't', 'l', 'd', 'u', 'p', 'h', 'f']",5,0,False +interfering,"['i', 'n', 't', 'e', 'r', 'f', 'e', 'r', 'i', 'n', 'g']","['s', 'a', 'o', 'd', 'l', 'u', 'p', 'h']",11,2,True +absently,"['a', 'b', 's', 'e', 'n', 't', 'l', '_']","['i', 'r', 'o', 'd', 'u', 'c', 'p', 'm', 'g', 'h']",7,0,False +hospitalisations,"['h', 'o', 's', 'p', 'i', 't', 'a', 'l', 'i', 's', 'a', 't', 'i', 'o', 'n', 's']","['e', 'r', 'g', 'c', 'u', 'm', 'y', 'd']",16,2,True +clam,"['c', 'l', 'a', 'm']","['e', 'i', 'o', 's', 'u', 'r', 'y', 'n', 't']",4,1,True +earwax,"['e', 'a', 'r', '_', 'a', '_']","['s', 'i', 'o', 'd', 'l', 't', 'n', 'u', 'c', 'p']",4,0,False +reclaimed,"['r', 'e', 'c', 'l', 'a', 'i', 'm', 'e', 'd']","['s', 'n', 't', 'o', 'u', 'p', 'b']",9,3,True +intimacy,"['i', 'n', 't', 'i', '_', 'a', 'c', 'y']","['e', 's', 'o', 'l', 'g', 'r', 'u', 'h', 'd', 'p']",7,0,False +counsels,"['c', 'o', 'u', 'n', 's', 'e', 'l', 's']","['i', 'a', 'r', 't', 'd']",8,5,True +turbot,"['t', 'u', 'r', '_', 'o', 't']","['e', 'i', 'a', 's', 'l', 'n', 'h', 'y', 'm', 'd']",5,0,False +yachtsman,"['y', 'a', 'c', 'h', 't', 's', 'm', 'a', 'n']","['e', 'i', 'o', 'u', 'r', 'l', 'p']",9,3,True +armourers,"['a', 'r', 'm', 'o', 'u', 'r', 'e', 'r', 's']","['i', 't', 'l', 'd', 'n', 'c', 'p', 'b']",9,2,True +lepers,"['l', 'e', 'p', 'e', 'r', 's']","['i', 'a', 'o', 'u', 't', 'd']",6,4,True +incomparably,"['i', 'n', 'c', 'o', 'm', 'p', 'a', 'r', 'a', 'b', 'l', 'y']","['e', 's', 't', 'g', 'd', 'u']",12,4,True +sluice,"['s', 'l', 'u', 'i', 'c', 'e']","['a', 'o', 'n', 'r', 't', 'd', 'p']",6,3,True +safeties,"['s', 'a', '_', 'e', 't', 'i', 'e', 's']","['r', 'n', 'l', 'o', 'd', 'c', 'm', 'h', 'p', 'u']",7,0,False +thwarts,"['t', '_', '_', 'a', 'r', 't', 's']","['e', 'i', 'o', 'u', 'l', 'n', 'c', 'y', 'p', 'm']",5,0,False +attend,"['a', 't', 't', 'e', 'n', 'd']","['s', 'i', 'r', 'l', 'o']",6,5,True +erupted,"['e', 'r', 'u', 'p', 't', 'e', 'd']","['s', 'i', 'a', 'o', 'l', 'n']",7,4,True +duckbills,"['_', 'u', 'c', '_', '_', 'i', 'l', 'l', 's']","['e', 'a', 'o', 'n', 't', 'r', 'p', 'y', 'h', 'm']",6,0,False +emblems,"['e', '_', '_', 'l', 'e', '_', 's']","['i', 'a', 'o', 'u', 'r', 't', 'd', 'h', 'n', 'p']",4,0,False +revellings,"['r', 'e', '_', 'e', 'l', 'l', 'i', 'n', 'g', 's']","['a', 'o', 't', 'd', 'u', 'p', 'c', 'f', 'm', 'w']",9,0,False +coda,"['c', 'o', '_', 'a']","['e', 'i', 's', 'r', 'l', 'n', 't', 'm', 'y', 'h']",3,0,False +reordered,"['r', 'e', 'o', 'r', 'd', 'e', 'r', 'e', 'd']","['s', 'i', 'a']",9,7,True +sweetness,"['s', '_', 'e', 'e', 't', 'n', 'e', 's', 's']","['i', 'a', 'o', 'u', 'r', 'l', 'd', 'h', 'p', 'y']",8,0,False +headdress,"['h', 'e', 'a', 'd', 'd', 'r', 'e', 's', 's']","['i', 'o', 't', 'l', 'n', 'u', 'c', 'p', 'g']",9,1,True +udders,"['u', 'd', 'd', 'e', 'r', 's']","['i', 'a', 'o', 't']",6,6,True +renumbers,"['r', 'e', 'n', 'u', 'm', 'b', 'e', 'r', 's']","['i', 'a', 'o', 't', 'd', 'l', 'c', 'p']",9,2,True +nostrum,"['n', 'o', 's', 't', 'r', 'u', 'm']","['e', 'i', 'a', 'l', 'c', 'h', 'p', 'b', 'd']",7,1,True +bucketfuls,"['b', 'u', '_', '_', 'e', 't', 'f', 'u', 'l', 's']","['i', 'a', 'o', 'r', 'd', 'n', 'p', 'h', 'm', 'y']",8,0,False +seismologists,"['s', 'e', 'i', 's', 'm', 'o', 'l', 'o', '_', 'i', 's', 't', 's']","['a', 'n', 'r', 'd', 'u', 'c', 'p', 'h', 'b', 'f']",12,0,False +chilis,"['c', '_', 'i', 'l', 'i', 's']","['e', 'a', 'o', 'n', 'u', 't', 'y', 'r', 'p', 'k']",5,0,False +quisling,"['_', 'u', 'i', 's', 'l', 'i', 'n', 'g']","['e', 'a', 'o', 't', 'r', 'p', 'c', 'd', 'f', 'm']",7,0,False +scandal,"['s', 'c', 'a', 'n', '_', 'a', 'l']","['e', 'i', 'o', 'u', 'r', 'y', 't', 'p', 'b', 'm']",6,0,False +stillborn,"['s', 't', 'i', 'l', 'l', 'b', 'o', 'r', 'n']","['e', 'a', 'u', 'g', 'c', 'p', 'd', 'h']",9,2,True +preparing,"['p', 'r', 'e', 'p', 'a', 'r', 'i', 'n', 'g']","['s', 't', 'l', 'd', 'o', 'c']",9,4,True +deluding,"['d', 'e', 'l', 'u', 'd', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 't']",8,5,True +protracting,"['p', 'r', 'o', 't', 'r', 'a', 'c', 't', 'i', 'n', 'g']","['e', 's', 'l', 'u', 'm', 'd']",11,4,True +dreary,"['d', 'r', 'e', 'a', 'r', '_']","['s', 'i', 'o', 'l', 't', 'n', 'u', 'c', 'p', 'b']",5,0,False +tsars,"['t', 's', 'a', 'r', 's']","['e', 'i', 'o', 'u', 'l']",5,5,True +sheepskins,"['s', 'h', 'e', 'e', 'p', 's', '_', 'i', 'n', 's']","['a', 'o', 'r', 'l', 't', 'd', 'u', 'g', 'c', 'm']",9,0,False +unperturbed,"['u', 'n', 'p', 'e', 'r', 't', 'u', 'r', 'b', 'e', 'd']","['s', 'i', 'a', 'o', 'l', 'c', 'm']",11,3,True +sites,"['s', 'i', 't', 'e', 's']","['a', 'o', 'n', 'r', 'l']",5,5,True +associating,"['a', 's', 's', 'o', 'c', 'i', 'a', 't', 'i', 'n', 'g']","['e', 'l', 'r']",11,7,True +pumpkins,"['p', 'u', 'm', 'p', '_', 'i', 'n', 's']","['e', 'a', 'o', 'g', 't', 'l', 'r', 'c', 'y', 'd']",7,0,False +nerdier,"['n', 'e', 'r', 'd', 'i', 'e', 'r']","['s', 'a', 'o', 't']",7,6,True +smugglers,"['s', '_', 'u', '_', '_', 'l', 'e', 'r', 's']","['i', 'a', 'o', 't', 'd', 'n', 'p', 'b', 'c', 'f']",6,0,False +angel,"['a', 'n', 'g', 'e', 'l']","['s', 'i', 'r', 'o', 'd', 't', 'u', 'c', 'y']",5,1,True +throatiest,"['t', 'h', 'r', 'o', 'a', 't', 'i', 'e', 's', 't']","['n', 'l', 'd', 'c', 'p', 'u']",10,4,True +rejoice,"['r', 'e', '_', 'o', 'i', 'c', 'e']","['s', 'n', 'a', 'l', 'd', 't', 'p', 'u', 'b', 'f']",6,0,False +aftertastes,"['a', '_', 't', 'e', 'r', 't', 'a', 's', 't', 'e', 's']","['i', 'o', 'l', 'd', 'n', 'u', 'c', 'p', 'h', 'g']",10,0,False +fooleries,"['_', 'o', 'o', 'l', 'e', 'r', 'i', 'e', 's']","['a', 'n', 't', 'd', 'u', 'p', 'c', 'b', 'h', 'g']",8,0,False +merely,"['_', 'e', 'r', 'e', 'l', 'y']","['s', 'i', 'a', 'o', 'u', 'd', 't', 'n', 'p', 'c']",5,0,False +solstices,"['s', 'o', 'l', 's', 't', 'i', 'c', 'e', 's']","['a', 'n', 'r', 'd', 'u']",9,5,True +oleomargarine,"['o', 'l', 'e', 'o', 'm', 'a', 'r', 'g', 'a', 'r', 'i', 'n', 'e']","['s', 't', 'd', 'c']",13,6,True +chisel,"['c', 'h', 'i', 's', 'e', 'l']","['a', 'o', 'n', 'r', 't', 'd', 'u', 'p']",6,2,True +prance,"['p', 'r', 'a', 'n', 'c', 'e']","['s', 'i', 'o', 'd', 'l', 't', 'u']",6,3,True +stratifies,"['s', 't', 'r', 'a', 't', 'i', '_', 'i', 'e', 's']","['n', 'l', 'o', 'd', 'c', 'p', 'u', 'h', 'm', 'b']",9,0,False +bog,"['_', 'o', '_']","['e', 'i', 'a', 's', 'u', 'r', 'l', 'n', 'y', 't']",1,0,False +participles,"['p', 'a', 'r', 't', 'i', 'c', 'i', 'p', 'l', 'e', 's']","['n', 'o', 'd', 'u']",11,6,True +quantify,"['_', 'u', 'a', 'n', 't', 'i', '_', 'y']","['e', 's', 'o', 'l', 'g', 'r', 'c', 'm', 'p', 'd']",6,0,False +kiddos,"['_', 'i', 'd', 'd', 'o', 's']","['e', 'a', 'n', 't', 'l', 'r', 'u', 'c', 'p', 'h']",5,0,False +nutshells,"['n', 'u', 't', 's', 'h', 'e', 'l', 'l', 's']","['i', 'a', 'o', 'r', 'd']",9,5,True +amongst,"['a', 'm', 'o', 'n', '_', 's', 't']","['e', 'i', 'r', 'l', 'u', 'c', 'h', 'y', 'b', 'p']",6,0,False +thriftiness,"['t', 'h', 'r', 'i', 'f', 't', 'i', 'n', 'e', 's', 's']","['a', 'o', 'l', 'd', 'u', 'g', 'c', 'p']",11,2,True +knowledgeable,"['_', 'n', 'o', 'w', 'l', 'e', 'd', 'g', 'e', 'a', 'b', 'l', 'e']","['s', 'i', 'r', 't', 'c', 'u', 'y', 'm', 'p', 'f']",12,0,False +visually,"['_', 'i', 's', 'u', 'a', 'l', 'l', 'y']","['e', 'n', 'o', 't', 'r', 'c', 'm', 'p', 'b', 'h']",7,0,False +rubbed,"['r', 'u', 'b', 'b', 'e', 'd']","['s', 'i', 'a', 'o', 'l', 't', 'n', 'p']",6,2,True +counterfeits,"['c', 'o', 'u', 'n', 't', 'e', 'r', 'f', 'e', 'i', 't', 's']","['a', 'l', 'd', 'p', 'g', 'm', 'h']",12,3,True +wastebasket,"['_', 'a', 's', 't', 'e', '_', 'a', 's', '_', 'e', 't']","['i', 'r', 'o', 'l', 'n', 'd', 'u', 'h', 'p', 'm']",8,0,False +hokey,"['_', 'o', '_', 'e', '_']","['s', 'i', 'a', 'r', 'd', 'l', 't', 'n', 'p', 'b']",2,0,False +touts,"['t', 'o', 'u', 't', 's']","['e', 'i', 'a', 'r', 'l']",5,5,True +neediest,"['n', 'e', 'e', 'd', 'i', 'e', 's', 't']","['a', 'o', 'r', 'l']",8,6,True +technocrats,"['t', 'e', 'c', 'h', 'n', 'o', 'c', 'r', 'a', 't', 's']","['i', 'l', 'd', 'u', 'p']",11,5,True +freeze,"['_', 'r', 'e', 'e', '_', 'e']","['s', 'i', 'a', 'o', 'u', 'd', 't', 'l', 'y', 'n']",4,0,False +uppercut,"['u', 'p', 'p', 'e', 'r', 'c', 'u', 't']","['s', 'i', 'a', 'o', 'd', 'l', 'n', 'y']",8,2,True +zucchini,"['_', 'u', 'c', 'c', '_', 'i', 'n', 'i']","['e', 'a', 'o', 's', 'g', 'l', 't', 'r', 'p', 'm']",6,0,False +occur,"['o', 'c', 'c', 'u', 'r']","['e', 'i', 'a', 's', 'l', 't', 'n', 'y']",5,2,True +frolicsome,"['f', 'r', 'o', 'l', 'i', 'c', 's', 'o', 'm', 'e']","['a', 'n', 't', 'd', 'u', 'p', 'h', 'b']",10,2,True +blastoff,"['b', 'l', 'a', 's', 't', 'o', '_', '_']","['e', 'i', 'r', 'u', 'n', 'c', 'y', 'p', 'm', 'h']",6,0,False +blistering,"['_', 'l', 'i', 's', 't', 'e', 'r', 'i', 'n', 'g']","['a', 'o', 'u', 'd', 'p', 'h', 'c', 'm', 'f', 'v']",9,0,False +unmanlier,"['u', 'n', 'm', 'a', 'n', 'l', 'i', 'e', 'r']","['s', 't', 'd', 'o', 'g', 'c']",9,4,True +kopeks,"['_', 'o', 'p', 'e', '_', 's']","['i', 'a', 'r', 'l', 't', 'd', 'n', 'u', 'c', 'b']",4,0,False +soiling,"['s', 'o', 'i', 'l', 'i', 'n', 'g']","['e', 'a', 'u', 't']",7,6,True +confiscates,"['c', 'o', 'n', 'f', 'i', 's', 'c', 'a', 't', 'e', 's']","['r', 'l', 'd', 'g', 'm', 'p', 'u', 'h', 'b']",11,1,True +prospectuses,"['p', 'r', 'o', 's', 'p', 'e', 'c', 't', 'u', 's', 'e', 's']","['i', 'a', 'd', 'l', 'n']",12,5,True +hobo,"['_', 'o', '_', 'o']","['e', 'i', 'a', 's', 'u', 'r', 'l', 'n', 'y', 't']",2,0,False +persons,"['p', 'e', 'r', 's', 'o', 'n', 's']","['i', 'a', 'u', 't', 'd', 'l', 'c']",7,3,True +contend,"['c', 'o', 'n', 't', 'e', 'n', 'd']","['s', 'i', 'a', 'r', 'l', 'u']",7,4,True +reassessing,"['r', 'e', 'a', 's', 's', 'e', 's', 's', 'i', 'n', 'g']","['t', 'l', 'o', 'd']",11,6,True +woos,"['_', 'o', 'o', 's']","['e', 'i', 'a', 'u', 'r', 'l', 't', 'n', 'c', 'b']",3,0,False +marihuana,"['m', 'a', 'r', 'i', '_', 'u', 'a', 'n', 'a']","['e', 's', 'o', 'l', 'g', 't', 'c', 'd', 'y', 'p']",8,0,False +renovations,"['r', 'e', 'n', 'o', '_', 'a', 't', 'i', 'o', 'n', 's']","['l', 'd', 'c', 'g', 'p', 'm', 'u', 'h', 'b', 'f']",10,0,False +crustacean,"['c', 'r', 'u', 's', 't', 'a', 'c', 'e', 'a', 'n']","['i', 'o', 'l', 'd']",10,6,True +bemoaning,"['b', 'e', 'm', 'o', 'a', 'n', 'i', 'n', 'g']","['s', 'r', 'l', 't', 'd', 'c', 'p']",9,3,True +diminutives,"['d', 'i', 'm', 'i', 'n', 'u', 't', 'i', '_', 'e', 's']","['a', 'o', 'r', 'l', 'g', 'c', 'p', 'f', 'h', 'b']",10,0,False +vultures,"['_', 'u', 'l', 't', 'u', 'r', 'e', 's']","['i', 'a', 'o', 'd', 'n', 'p', 'b', 'c', 'f', 'm']",7,0,False +obfuscation,"['o', 'b', 'f', 'u', 's', 'c', 'a', 't', 'i', 'o', 'n']","['e', 'l', 'r', 'g', 'm', 'h', 'd', 'p', 'k']",11,1,True +vendors,"['_', 'e', 'n', 'd', 'o', 'r', 's']","['i', 'a', 'u', 't', 'l', 'c', 'p', 'b', 'w', 'g']",6,0,False +undefined,"['u', 'n', 'd', 'e', '_', 'i', 'n', 'e', 'd']","['s', 'a', 'r', 'o', 'l', 't', 'g', 'c', 'p', 'm']",8,0,False +solace,"['s', 'o', 'l', 'a', 'c', 'e']","['i', 'r', 't', 'd', 'n']",6,5,True +interurban,"['i', 'n', 't', 'e', 'r', 'u', 'r', 'b', 'a', 'n']","['s', 'l', 'o', 'd', 'g', 'c', 'p', 'm']",10,2,True +vandalise,"['_', 'a', 'n', 'd', 'a', 'l', 'i', 's', 'e']","['r', 't', 'o', 'g', 'c', 'u', 'm', 'p', 'b', 'h']",8,0,False +hacking,"['_', 'a', 'c', '_', 'i', 'n', 'g']","['e', 's', 'o', 'l', 'r', 't', 'u', 'd', 'p', 'm']",5,0,False +flabbergast,"['_', 'l', 'a', 'b', 'b', 'e', 'r', 'g', 'a', 's', 't']","['i', 'o', 'd', 'u', 'n', 'c', 'p', 'h', 'm', 'y']",10,0,False +exuberance,"['e', '_', 'u', 'b', 'e', 'r', 'a', 'n', 'c', 'e']","['s', 'i', 'o', 'd', 'l', 't', 'm', 'p', 'g', 'y']",9,0,False +cloning,"['c', 'l', 'o', 'n', 'i', 'n', 'g']","['e', 'a', 's', 'u', 't', 'r']",7,4,True +legitimate,"['l', 'e', '_', 'i', 't', 'i', '_', 'a', 't', 'e']","['s', 'n', 'r', 'd', 'o', 'c', 'u', 'y', 'p', 'b']",8,0,False +preemptively,"['p', 'r', 'e', 'e', 'm', 'p', 't', 'i', '_', 'e', 'l', 'y']","['s', 'n', 'a', 'o', 'd', 'u', 'c', 'h', 'f', 'g']",11,0,False +mythologist,"['_', 'y', 't', 'h', 'o', 'l', 'o', '_', 'i', 's', 't']","['e', 'a', 'n', 'u', 'r', 'c', 'p', 'd', 'b', 'f']",9,0,False +wash,"['_', 'a', 's', '_']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'm']",2,0,False +scriptwriter,"['s', 'c', 'r', 'i', 'p', 't', '_', 'r', 'i', 't', 'e', 'r']","['a', 'o', 'n', 'l', 'd', 'u', 'h', 'm', 'f', 'k']",11,0,False +recruited,"['r', 'e', 'c', 'r', 'u', 'i', 't', 'e', 'd']","['s', 'n', 'a', 'o', 'l', 'p']",9,4,True +crater,"['c', 'r', 'a', 't', 'e', 'r']","['s', 'i', 'o', 'd', 'l', 'n']",6,4,True +rediscovering,"['r', 'e', 'd', 'i', 's', 'c', 'o', 'v', 'e', 'r', 'i', 'n', 'g']","['a', 't', 'l', 'u', 'p', 'm', 'h', 'b', 'f']",13,1,True +toothless,"['t', 'o', 'o', 't', 'h', 'l', 'e', 's', 's']","['i', 'a', 'r', 'u', 'd', 'n', 'p']",9,3,True +participator,"['p', 'a', 'r', 't', 'i', 'c', 'i', 'p', 'a', 't', 'o', 'r']","['e', 's', 'n', 'l', 'u', 'h', 'd', 'm']",12,2,True +lancet,"['l', 'a', 'n', 'c', 'e', 't']","['s', 'i', 'r', 'o', 'd', 'u']",6,4,True +inward,"['i', 'n', '_', 'a', 'r', 'd']","['e', 's', 'o', 'l', 'g', 't', 'c', 'm', 'y', 'u']",5,0,False +clamped,"['c', 'l', 'a', 'm', 'p', 'e', 'd']","['s', 'i', 'r', 'o', 't', 'n', 'u', 'b', 'y']",7,1,True +sudsy,"['s', 'u', '_', 's', 'y']","['e', 'i', 'a', 'o', 'l', 'r', 't', 'm', 'n', 'p']",4,0,False +polish,"['p', 'o', 'l', 'i', 's', '_']","['e', 'a', 'n', 't', 'u', 'r', 'c', 'y', 'd', 'w']",5,0,False +unrolled,"['u', 'n', 'r', 'o', 'l', 'l', 'e', 'd']","['s', 'i', 'a', 't']",8,6,True +postponements,"['p', 'o', 's', 't', 'p', 'o', 'n', 'e', 'm', 'e', 'n', 't', 's']","['i', 'a', 'r', 'l', 'd', 'u', 'c', 'h']",13,2,True +collates,"['c', 'o', 'l', 'l', 'a', 't', 'e', 's']","['i', 'r', 'n', 'd', 'u']",8,5,True +hiker,"['_', 'i', '_', 'e', 'r']","['s', 'n', 'a', 'o', 'l', 'd', 't', 'u', 'p', 'c']",3,0,False +fledgeling,"['_', 'l', 'e', 'd', 'g', 'e', 'l', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 't', 'u', 'c', 'p', 'b', 'w']",9,0,False +foresee,"['_', 'o', 'r', 'e', 's', 'e', 'e']","['i', 'a', 'u', 't', 'd', 'l', 'n', 'p', 'c', 'b']",6,0,False +cavillings,"['c', 'a', '_', 'i', 'l', 'l', 'i', 'n', 'g', 's']","['e', 'o', 't', 'r', 'u', 'p', 'm', 'd', 'h', 'k']",9,0,False +probationer,"['p', 'r', 'o', 'b', 'a', 't', 'i', 'o', 'n', 'e', 'r']","['s', 'l', 'd', 'g', 'c', 'm', 'u', 'h']",11,2,True +tallied,"['t', 'a', 'l', 'l', 'i', 'e', 'd']","['s', 'n', 'r']",7,7,True +fixes,"['_', 'i', '_', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'd', 'u', 'p', 'h']",3,0,False +rotor,"['r', 'o', 't', 'o', 'r']","['e', 'i', 'a', 's', 'u', 'l']",5,4,True +embryonic,"['e', 'm', 'b', 'r', '_', 'o', 'n', 'i', 'c']","['s', 'a', 't', 'd', 'l', 'g', 'p', 'u', 'h', 'f']",8,0,False +delicacy,"['d', 'e', 'l', 'i', 'c', 'a', 'c', 'y']","['s', 'n', 'r', 't', 'o', 'u', 'p', 'b', 'm']",8,1,True +osmotic,"['o', 's', 'm', 'o', 't', 'i', 'c']","['e', 'a', 'n', 'l', 'r', 'u', 'h']",7,3,True +soar,"['s', 'o', 'a', 'r']","['e', 'i']",4,8,True +squirms,"['s', '_', 'u', 'i', 'r', 'm', 's']","['e', 'a', 'o', 'n', 'l', 't', 'c', 'p', 'b', 'd']",6,0,False +grainier,"['g', 'r', 'a', 'i', 'n', 'i', 'e', 'r']","['s', 't', 'l', 'd']",8,6,True +bothers,"['b', 'o', 't', 'h', 'e', 'r', 's']","['i', 'a', 'u', 'd', 'l', 'n', 'p', 'c']",7,2,True +patrimony,"['p', 'a', 't', 'r', 'i', 'm', 'o', 'n', 'y']","['e', 's', 'l', 'g', 'c', 'u', 'd']",9,3,True +jounced,"['_', 'o', 'u', 'n', 'c', 'e', 'd']","['s', 'i', 'a', 'r', 'l', 't', 'p', 'b', 'm', 'h']",6,0,False +murderesses,"['m', 'u', 'r', 'd', 'e', 'r', 'e', 's', 's', 'e', 's']","['i', 'a', 'o', 't', 'l', 'n', 'p', 'c', 'b']",11,1,True +seascapes,"['s', 'e', 'a', 's', 'c', 'a', 'p', 'e', 's']","['i', 'r', 'o', 'l', 't', 'd', 'n', 'u']",9,2,True +suggestive,"['s', 'u', '_', '_', 'e', 's', 't', 'i', '_', 'e']","['a', 'o', 'n', 'r', 'l', 'd', 'h', 'p', 'm', 'f']",7,0,False +consult,"['c', 'o', 'n', 's', 'u', 'l', 't']","['e', 'i', 'a', 'r']",7,6,True +tablespoons,"['t', 'a', 'b', 'l', 'e', 's', 'p', 'o', 'o', 'n', 's']","['i', 'r', 'd', 'u', 'c', 'm', 'h']",11,3,True +encyclopaedia,"['e', 'n', 'c', 'y', 'c', 'l', 'o', 'p', 'a', 'e', 'd', 'i', 'a']","['s', 'r', 't', 'g', 'm', 'b', 'u', 'h']",13,2,True +insufferable,"['i', 'n', 's', 'u', 'f', 'f', 'e', 'r', 'a', 'b', 'l', 'e']","['t', 'o', 'd', 'g', 'c', 'p', 'm']",12,3,True +miniaturisation,"['m', 'i', 'n', 'i', 'a', 't', 'u', 'r', 'i', 's', 'a', 't', 'i', 'o', 'n']","['e', 'l', 'g', 'c']",15,6,True +kinked,"['_', 'i', 'n', '_', 'e', 'd']","['s', 'a', 'r', 'o', 'l', 't', 'g', 'u', 'c', 'p']",4,0,False +attracts,"['a', 't', 't', 'r', 'a', 'c', 't', 's']","['e', 'i', 'o', 'u', 'l', 'n']",8,4,True +passes,"['p', 'a', 's', 's', 'e', 's']","['i', 'r', 'o', 'l', 't', 'd', 'n', 'u']",6,2,True +deeps,"['d', 'e', 'e', 'p', 's']","['i', 'a', 'o', 'u', 'r', 'l', 't', 'n']",5,2,True +strummed,"['s', 't', 'r', 'u', 'm', 'm', 'e', 'd']","['i', 'a', 'o', 'l', 'n', 'p', 'c', 'b']",8,2,True +retirement,"['r', 'e', 't', 'i', 'r', 'e', '_', 'e', 'n', 't']","['s', 'a', 'o', 'd', 'l', 'g', 'u', 'c', 'p', 'h']",9,0,False +gingkoes,"['g', 'i', 'n', 'g', '_', 'o', 'e', 's']","['a', 'r', 'l', 't', 'd', 'c', 'p', 'u', 'b', 'm']",7,0,False +pennyweights,"['p', 'e', 'n', 'n', '_', 'w', 'e', 'i', 'g', 'h', 't', 's']","['a', 'o', 'r', 'l', 'd', 'u', 'c', 'm', 'f', 'k']",11,0,False +organised,"['o', 'r', 'g', 'a', 'n', 'i', 's', 'e', 'd']","['t', 'l', 'c']",9,7,True +kiosks,"['_', 'i', 'o', 's', '_', 's']","['e', 'a', 'n', 't', 'l', 'r', 'u', 'c', 'p', 'd']",4,0,False +workhorse,"['_', 'o', 'r', '_', '_', 'o', 'r', 's', 'e']","['i', 'a', 'u', 't', 'd', 'l', 'n', 'p', 'c', 'b']",6,0,False +symposium,"['s', 'y', 'm', 'p', 'o', 's', 'i', 'u', 'm']","['e', 'a', 'n', 't', 'l', 'r', 'c', 'h', 'd']",9,1,True +palsies,"['p', 'a', 'l', 's', 'i', 'e', 's']","['r', 'n', 't', 'd', 'o', 'c', 'u']",7,3,True +diverged,"['d', 'i', '_', 'e', 'r', '_', 'e', 'd']","['s', 'n', 'a', 'o', 'l', 't', 'u', 'p', 'c', 'b']",6,0,False +parrying,"['p', 'a', 'r', 'r', 'y', 'i', 'n', 'g']","['e', 's', 'o', 'l', 't', 'u', 'c', 'd', 'm']",8,1,True +sneer,"['s', 'n', 'e', 'e', 'r']","['i', 'a', 'o', 'u', 't', 'd', 'l', 'p']",5,2,True +us,"['u', 's']","['e', 'i', 'a', 'o']",2,6,True +teapots,"['t', 'e', 'a', 'p', 'o', 't', 's']","['i', 'r', 'l', 'n', 'd', 'c', 'u']",7,3,True +effort,"['e', '_', '_', 'o', 'r', 't']","['s', 'i', 'a', 'd', 'l', 'n', 'u', 'p', 'h', 'b']",4,0,False +fluffs,"['_', 'l', 'u', '_', '_', 's']","['e', 'i', 'a', 'o', 'r', 'y', 't', 'p', 'n', 'c']",3,0,False +depoliticising,"['d', 'e', 'p', 'o', 'l', 'i', 't', 'i', 'c', 'i', 's', 'i', 'n', 'g']","['a', 'r', 'u']",14,7,True +clobbered,"['c', 'l', 'o', 'b', 'b', 'e', 'r', 'e', 'd']","['s', 'i', 'a', 'u', 't', 'n', 'p']",9,3,True +drouthes,"['d', 'r', 'o', 'u', 't', 'h', 'e', 's']","['i', 'a', 'l', 'n', 'p', 'c']",8,4,True +incite,"['i', 'n', 'c', 'i', 't', 'e']","['s', 'a', 'r', 'o', 'l', 'd', 'g', 'u']",6,2,True +beepers,"['_', 'e', 'e', 'p', 'e', 'r', 's']","['i', 'a', 'o', 'u', 't', 'd', 'l', 'n', 'h', 'y']",6,0,False +muzzles,"['m', 'u', '_', '_', 'l', 'e', 's']","['i', 'a', 'o', 'r', 'd', 't', 'n', 'p', 'h', 'b']",5,0,False +aperitifs,"['a', 'p', 'e', 'r', 'i', 't', 'i', '_', 's']","['n', 'l', 'o', 'd', 'c', 'u', 'h', 'm', 'b', 'g']",8,0,False +placarded,"['p', 'l', 'a', 'c', 'a', 'r', 'd', 'e', 'd']","['s', 'i', 'o', 't', 'n', 'u', 'b']",9,3,True +finking,"['_', 'i', 'n', '_', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 'l', 't', 'r', 'p', 'd']",5,0,False +conservatives,"['c', 'o', 'n', 's', 'e', 'r', 'v', 'a', 't', 'i', 'v', 'e', 's']","['l', 'd', 'g', 'p', 'u', 'm', 'h', 'b', 'f']",13,1,True +phonetician,"['p', 'h', 'o', 'n', 'e', 't', 'i', 'c', 'i', 'a', 'n']","['s', 'r', 'l', 'd', 'g', 'm']",11,4,True +distantly,"['d', 'i', 's', 't', 'a', 'n', 't', 'l', 'y']","['e', 'o', 'g', 'r', 'u', 'c', 'm', 'p']",9,2,True +squeegees,"['s', '_', 'u', 'e', 'e', '_', 'e', 'e', 's']","['i', 'a', 'o', 'r', 'l', 't', 'd', 'n', 'p', 'h']",7,0,False +care,"['c', 'a', 'r', 'e']","['s', 'i', 'o', 'd', 'l', 't', 'n', 'u']",4,2,True +mottos,"['_', 'o', 't', 't', 'o', 's']","['e', 'i', 'a', 'u', 'r', 'l', 'n', 'h', 'c', 'p']",5,0,False +cancellations,"['c', 'a', 'n', 'c', 'e', 'l', 'l', 'a', 't', 'i', 'o', 'n', 's']","['r', 'd']",13,8,True +prepped,"['p', 'r', 'e', 'p', 'p', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 't', 'l', 'n']",7,2,True +blitzed,"['_', 'l', 'i', 't', '_', 'e', 'd']","['s', 'n', 'r', 'a', 'o', 'u', 'c', 'p', 'g', 'f']",5,0,False +manna,"['m', 'a', 'n', 'n', 'a']","['e', 'i', 'o', 's', 'u', 'r', 'l', 't', 'y']",5,1,True +gasp,"['_', 'a', 's', '_']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'm']",2,0,False +rill,"['r', 'i', 'l', 'l']","['e', 'a', 'o', 's', 'n', 'u', 't', 'y']",4,2,True +edged,"['e', 'd', '_', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'r', 'l', 't', 'n', 'p']",4,0,False +reprehend,"['r', 'e', 'p', 'r', 'e', '_', 'e', 'n', 'd']","['s', 'i', 'a', 'o', 'u', 't', 'l', 'y', 'c', 'w']",8,0,False +wanes,"['_', 'a', 'n', 'e', 's']","['i', 'r', 'o', 'l', 't', 'd', 'u', 'c', 'p', 'm']",4,0,False +illusory,"['i', 'l', 'l', 'u', 's', 'o', 'r', 'y']","['e', 'a', 'n', 't', 'c', 'p']",8,4,True +pediatrist,"['p', 'e', 'd', 'i', 'a', 't', 'r', 'i', 's', 't']","['n', 'l', 'o', 'c', 'u']",10,5,True +jumper,"['_', 'u', 'm', 'p', 'e', 'r']","['s', 'i', 'a', 'o', 'd', 'l', 't', 'n', 'y', 'b']",5,0,False +mellowing,"['_', 'e', 'l', 'l', 'o', 'w', 'i', 'n', 'g']","['s', 'a', 'r', 'd', 't', 'c', 'p', 'b', 'u', 'y']",8,0,False +tribal,"['t', 'r', 'i', '_', 'a', 'l']","['e', 's', 'n', 'o', 'y', 'c', 'u', 'm', 'h', 'd']",5,0,False +treats,"['t', 'r', 'e', 'a', 't', 's']","['i', 'o']",6,8,True +decimal,"['d', 'e', 'c', 'i', 'm', 'a', 'l']","['s', 'n', 'r', 't', 'o', 'u', 'p', 'b']",7,2,True +correlating,"['c', 'o', 'r', 'r', 'e', 'l', 'a', 't', 'i', 'n', 'g']","['s', 'd']",11,8,True +reinterprets,"['r', 'e', 'i', 'n', 't', 'e', 'r', 'p', 'r', 'e', 't', 's']","['a', 'o', 'l', 'd', 'u', 'g', 'c']",12,3,True +imbeds,"['i', 'm', '_', 'e', 'd', 's']","['a', 'o', 'n', 'r', 'l', 't', 'u', 'p', 'h', 'k']",5,0,False +enfeebles,"['e', 'n', '_', 'e', 'e', '_', 'l', 'e', 's']","['i', 'a', 'o', 'u', 'r', 't', 'd', 'h', 'y', 'p']",7,0,False +taught,"['t', 'a', 'u', '_', 'h', 't']","['e', 'i', 'o', 's', 'l', 'r', 'n', 'y', 'c', 'm']",5,0,False +fluent,"['f', 'l', 'u', 'e', 'n', 't']","['s', 'i', 'a', 'o', 'r', 'd', 'y', 'c', 'm']",6,1,True +kidnapped,"['_', 'i', 'd', 'n', 'a', 'p', 'p', 'e', 'd']","['s', 'r', 'l', 't', 'o', 'g', 'c', 'm', 'u', 'w']",8,0,False +secluded,"['s', 'e', 'c', 'l', 'u', 'd', 'e', 'd']","['i', 'a', 'o', 'r', 't', 'n', 'p']",8,3,True +coyest,"['_', 'o', '_', 'e', 's', 't']","['i', 'a', 'r', 'l', 'n', 'd', 'u', 'p', 'h', 'b']",4,0,False +polymeric,"['p', 'o', 'l', 'y', 'm', 'e', 'r', 'i', 'c']","['s', 'n', 'a', 'd', 't', 'u', 'b', 'h', 'f']",9,1,True +gibbon,"['g', 'i', '_', '_', 'o', 'n']","['e', 'a', 's', 'l', 't', 'r', 'u', 'c', 'd', 'p']",4,0,False +confirmatory,"['c', 'o', 'n', 'f', 'i', 'r', 'm', 'a', 't', 'o', 'r', 'y']","['e', 's', 'l', 'g', 'u', 'd', 'p', 'h', 'b']",12,1,True +swayed,"['s', '_', 'a', '_', 'e', 'd']","['i', 'r', 'o', 'l', 't', 'n', 'u', 'c', 'p', 'h']",4,0,False +upends,"['u', 'p', 'e', 'n', 'd', 's']","['i', 'a', 'o', 'r', 'l', 't', 'c']",6,3,True +hies,"['h', 'i', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'd', 'u', 'p']",4,1,True +spoons,"['s', '_', 'o', 'o', 'n', 's']","['e', 'i', 'a', 'u', 'r', 'l', 't', 'c', 'y', 'b']",5,0,False +nonconductors,"['n', 'o', 'n', 'c', 'o', 'n', 'd', 'u', 'c', 't', 'o', 'r', 's']","['e', 'i', 'a', 'l', 'h', 'p', 'b']",13,3,True +telepathic,"['t', 'e', 'l', 'e', 'p', 'a', 't', 'h', 'i', 'c']","['s', 'n', 'r', 'd', 'o', 'u', 'y']",10,3,True +epicurean,"['e', 'p', 'i', 'c', 'u', 'r', 'e', 'a', 'n']","['s', 't', 'l', 'd', 'g', 'o', 'm']",9,3,True +untaught,"['u', 'n', 't', 'a', 'u', 'g', 'h', 't']","['e', 'i', 'o', 's', 'l', 'r', 'y', 'c', 'm']",8,1,True +audited,"['a', '_', 'd', 'i', 't', 'e', 'd']","['s', 'n', 'r', 'l', 'o', 'c', 'm', 'p', 'g', 'b']",6,0,False +cold,"['c', 'o', 'l', '_']","['e', 'i', 'a', 's', 'u', 'r', 'y', 't', 'n', 'b']",3,0,False +yellowest,"['_', 'e', 'l', 'l', 'o', '_', 'e', 's', 't']","['i', 'a', 'r', 'u', 'd', 'n', 'p', 'h', 'b', 'c']",7,0,False +electroplates,"['e', 'l', 'e', 'c', 't', 'r', 'o', 'p', 'l', 'a', 't', 'e', 's']","['i', 'n', 'd', 'u']",13,6,True +nickelodeons,"['n', 'i', 'c', 'k', 'e', 'l', 'o', 'd', 'e', 'o', 'n', 's']","['a', 'r', 't', 'u', 'g', 'p', 'm', 'h', 'b']",12,1,True +rivets,"['r', 'i', '_', 'e', 't', 's']","['a', 'o', 'n', 'l', 'd', 'u', 'p', 'h', 'm', 'f']",5,0,False +leakier,"['l', 'e', 'a', '_', 'i', 'e', 'r']","['s', 'n', 't', 'd', 'o', 'c', 'p', 'b', 'g', 'f']",6,0,False +felicities,"['f', 'e', 'l', 'i', 'c', 'i', 't', 'i', 'e', 's']","['a', 'o', 'n', 'r', 'd', 'u', 'h', 'p', 'm']",10,1,True +orthodox,"['o', 'r', 't', '_', 'o', '_', 'o', '_']","['e', 'i', 'a', 's', 'u', 'l', 'n', 'y', 'c', 'w']",5,0,False +contemplated,"['c', 'o', 'n', 't', 'e', 'm', 'p', 'l', 'a', 't', 'e', 'd']","['s', 'i', 'r', 'u']",12,6,True +extractors,"['e', '_', 't', 'r', 'a', 'c', 't', 'o', 'r', 's']","['i', 'l', 'n', 'd', 'u', 'p', 'h', 'm', 'b', 'g']",9,0,False +session,"['s', 'e', 's', 's', 'i', 'o', 'n']",['a'],7,9,True +glamoured,"['g', 'l', 'a', 'm', 'o', 'u', 'r', 'e', 'd']","['s', 'i', 't', 'n', 'c', 'b', 'p']",9,3,True +dues,"['d', 'u', 'e', 's']","['i', 'a', 'o', 'r', 'l', 't']",4,4,True +perchance,"['p', 'e', 'r', 'c', '_', 'a', 'n', 'c', 'e']","['s', 'i', 'o', 'd', 'l', 't', 'u', 'y', 'm', 'g']",8,0,False +nursing,"['n', 'u', 'r', 's', 'i', 'n', 'g']","['e', 'a', 'o', 't', 'l']",7,5,True +exactitude,"['e', '_', 'a', 'c', 't', 'i', 't', 'u', 'd', 'e']","['s', 'n', 'r', 'l', 'o', 'h', 'p', 'm', 'b', 'f']",9,0,False +taunting,"['t', 'a', 'u', 'n', 't', 'i', 'n', 'g']","['e', 's', 'o', 'l', 'r']",8,5,True +invaluable,"['i', 'n', '_', 'a', 'l', 'u', 'a', 'b', 'l', 'e']","['s', 'r', 't', 'd', 'g', 'o', 'c', 'm', 'p', 'f']",9,0,False +dispossesses,"['d', 'i', 's', 'p', 'o', 's', 's', 'e', 's', 's', 'e', 's']","['a', 'n', 'r', 'l', 't', 'u']",12,4,True +potato,"['_', 'o', 't', 'a', 't', 'o']","['e', 'i', 's', 'r', 'l', 'n', 'u', 'c', 'y', 'm']",5,0,False +divulging,"['d', 'i', '_', 'u', 'l', 'g', 'i', 'n', 'g']","['e', 'a', 'o', 's', 't', 'r', 'p', 'c', 'f', 'b']",8,0,False +valve,"['_', 'a', 'l', '_', 'e']","['s', 'i', 'r', 'o', 'd', 't', 'n', 'u', 'y', 'c']",3,0,False +standoffish,"['s', 't', 'a', 'n', 'd', 'o', '_', '_', 'i', 's', 'h']","['e', 'l', 'r', 'g', 'c', 'u', 'm', 'p', 'b', 'w']",9,0,False +baulks,"['_', 'a', 'u', 'l', '_', 's']","['e', 'i', 'o', 'r', 'n', 't', 'y', 'c', 'm', 'p']",4,0,False +senses,"['s', 'e', 'n', 's', 'e', 's']","['i', 'a', 'o', 'u', 'r', 'l', 't', 'd']",6,2,True +panhandlers,"['p', 'a', 'n', 'h', 'a', 'n', 'd', 'l', 'e', 'r', 's']","['i', 'o', 't', 'u', 'c', 'g', 'm', 'b']",11,2,True +vixens,"['_', 'i', '_', 'e', 'n', 's']","['a', 'o', 'r', 'l', 't', 'd', 'u', 'g', 'c', 'p']",4,0,False +berates,"['_', 'e', 'r', 'a', 't', 'e', 's']","['i', 'o', 'l', 'd', 'n', 'u', 'c', 'p', 'h', 'g']",6,0,False +moderators,"['m', 'o', 'd', 'e', 'r', 'a', 't', 'o', 'r', 's']","['i', 'l', 'n', 'c', 'u', 'p', 'h', 'b']",10,2,True +cobwebs,"['c', 'o', '_', '_', 'e', '_', 's']","['i', 'a', 'r', 'l', 't', 'd', 'n', 'u', 'p', 'h']",4,0,False +g,['_'],"['e', 'i', 'a', 'o', 'u', 'y', 's', 'r', 't', 'k']",0,0,False +yanks,"['y', 'a', 'n', '_', 's']","['e', 'i', 'o', 'u', 'r', 'l', 't', 'p', 'h', 'm']",4,0,False +drubs,"['_', 'r', 'u', '_', 's']","['e', 'i', 'a', 'o', 'l', 't', 'y', 'n', 'm', 'c']",3,0,False +kenned,"['_', 'e', 'n', 'n', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'r', 'l', 't', 'p', 'h']",5,0,False +caregiver,"['c', 'a', 'r', 'e', '_', 'i', '_', 'e', 'r']","['s', 'n', 'l', 't', 'd', 'o', 'p', 'm', 'b', 'h']",7,0,False +plantain,"['p', 'l', 'a', 'n', 't', 'a', 'i', 'n']","['e', 's', 'o', 'g', 'r', 'c', 'u', 'y', 'm']",8,1,True +prompts,"['p', 'r', 'o', 'm', 'p', 't', 's']","['e', 'i', 'a', 'u', 'l', 'n', 'c', 'h', 'y']",7,1,True +guilt,"['_', 'u', 'i', 'l', 't']","['e', 'a', 'o', 's', 'n', 'y', 'r', 'c', 'p', 'f']",4,0,False +disbars,"['d', 'i', 's', '_', 'a', 'r', 's']","['e', 'n', 'o', 'l', 't', 'u', 'c', 'm', 'p', 'h']",6,0,False +niggard,"['n', 'i', 'g', 'g', 'a', 'r', 'd']","['e', 's', 'o', 'l', 't', 'u', 'c']",7,3,True +contused,"['c', 'o', 'n', 't', 'u', 's', 'e', 'd']","['i', 'a', 'r', 'l']",8,6,True +twiggy,"['t', '_', 'i', '_', '_', 'y']","['e', 'a', 'o', 's', 'n', 'l', 'u', 'r', 'h', 'p']",3,0,False +fascist,"['_', 'a', 's', 'c', 'i', 's', 't']","['e', 'n', 'o', 'l', 'r', 'u', 'h', 'm', 'p', 'd']",6,0,False +obtaining,"['o', 'b', 't', 'a', 'i', 'n', 'i', 'n', 'g']","['e', 's', 'l', 'r', 'c', 'u', 'd', 'm', 'p']",9,1,True +delegate,"['d', 'e', 'l', 'e', '_', 'a', 't', 'e']","['s', 'i', 'r', 'o', 'n', 'u', 'c', 'p', 'b', 'w']",7,0,False +residents,"['r', 'e', 's', 'i', 'd', 'e', 'n', 't', 's']","['a', 'o', 'l']",9,7,True +ember,"['e', '_', '_', 'e', 'r']","['s', 'i', 'a', 'o', 'u', 'd', 't', 'l', 'y', 'n']",3,0,False +spiniest,"['s', 'p', 'i', 'n', 'i', 'e', 's', 't']","['a', 'o', 'r', 'l', 'd', 'u', 'g', 'h']",8,2,True +strikings,"['s', 't', 'r', 'i', 'k', 'i', 'n', 'g', 's']","['e', 'a', 'o', 'u', 'l', 'h', 'p']",9,3,True +known,"['_', 'n', 'o', '_', 'n']","['e', 'i', 'a', 's', 'u', 'r', 'l', 't', 'y', 'c']",3,0,False +flamboyance,"['_', 'l', 'a', 'm', 'b', 'o', 'y', 'a', 'n', 'c', 'e']","['s', 'i', 'r', 'd', 't', 'u', 'p', 'g', 'h', 'w']",10,0,False +cigarette,"['c', 'i', '_', 'a', 'r', 'e', 't', 't', 'e']","['s', 'n', 'l', 'd', 'o', 'p', 'h', 'b', 'm', 'f']",8,0,False +technicalities,"['t', 'e', 'c', 'h', 'n', 'i', 'c', 'a', 'l', 'i', 't', 'i', 'e', 's']","['r', 'o', 'd', 'g', 'u', 'p']",14,4,True +badminton,"['b', 'a', 'd', 'm', 'i', 'n', 't', 'o', 'n']","['e', 's', 'l', 'r', 'g', 'c', 'u', 'y', 'p']",9,1,True +bravely,"['b', 'r', 'a', '_', 'e', 'l', 'y']","['s', 'i', 'o', 'd', 't', 'u', 'n', 'c', 'p', 'g']",6,0,False +coddle,"['c', 'o', 'd', 'd', 'l', 'e']","['s', 'i', 'a', 'r', 'n', 'u', 't', 'p', 'b']",6,1,True +countrywoman,"['c', 'o', 'u', 'n', 't', 'r', 'y', '_', 'o', 'm', 'a', 'n']","['e', 'i', 's', 'l', 'h', 'd', 'b', 'p', 'g', 'f']",11,0,False +ebullience,"['e', '_', 'u', 'l', 'l', 'i', 'e', 'n', 'c', 'e']","['s', 'a', 'r', 'o', 'd', 'g', 't', 'p', 'f', 'm']",9,0,False +honeydews,"['_', 'o', 'n', 'e', '_', 'd', 'e', '_', 's']","['i', 'a', 'r', 'l', 't', 'u', 'c', 'p', 'b', 'm']",6,0,False +honorary,"['_', 'o', 'n', 'o', 'r', 'a', 'r', 'y']","['e', 'i', 's', 'l', 't', 'u', 'c', 'd', 'm', 'b']",7,0,False +battleships,"['b', 'a', 't', 't', 'l', 'e', 's', 'h', 'i', 'p', 's']","['r', 'n', 'o', 'd', 'c', 'u', 'm']",11,3,True +shoestring,"['s', 'h', 'o', 'e', 's', 't', 'r', 'i', 'n', 'g']","['a', 'l', 'd', 'c', 'u', 'p']",10,4,True +ragtag,"['r', 'a', '_', 't', 'a', '_']","['e', 'i', 'o', 's', 'u', 'l', 'n', 'y', 'c', 'm']",4,0,False +murderess,"['m', 'u', 'r', 'd', 'e', 'r', 'e', 's', 's']","['i', 'a', 'o', 't', 'l', 'n', 'p', 'c', 'b']",9,1,True +boxer,"['b', 'o', '_', 'e', 'r']","['s', 'i', 'a', 'd', 't', 'l', 'n', 'u', 'p', 'c']",4,0,False +urinates,"['u', 'r', 'i', 'n', 'a', 't', 'e', 's']","['o', 'l', 'd', 'c', 'g']",8,5,True +bulks,"['_', 'u', 'l', '_', 's']","['e', 'i', 'a', 'o', 'r', 'y', 't', 'p', 'n', 'c']",3,0,False +laurels,"['l', 'a', 'u', 'r', 'e', 'l', 's']","['i', 'o', 't', 'd']",7,6,True +rajas,"['r', 'a', '_', 'a', 's']","['e', 'i', 'o', 'u', 'l', 't', 'n', 'y', 'c', 'm']",4,0,False +digressing,"['d', 'i', 'g', 'r', 'e', 's', 's', 'i', 'n', 'g']","['a', 'o', 't', 'l', 'u']",10,5,True +advisement,"['a', 'd', '_', 'i', 's', 'e', 'm', 'e', 'n', 't']","['r', 'l', 'o', 'c', 'g', 'u', 'p', 'h', 'b', 'f']",9,0,False +thrives,"['t', 'h', 'r', 'i', '_', 'e', 's']","['a', 'o', 'n', 'l', 'd', 'u', 'p', 'c', 'f', 'm']",6,0,False +doming,"['d', 'o', '_', 'i', 'n', 'g']","['e', 'a', 's', 'l', 't', 'r', 'u', 'c', 'p', 'b']",5,0,False +underskirt,"['u', 'n', 'd', 'e', 'r', 's', '_', 'i', 'r', 't']","['a', 'o', 'l', 'g', 'c', 'p', 'm', 'f', 'h', 'b']",9,0,False +congest,"['c', 'o', 'n', '_', 'e', 's', 't']","['i', 'a', 'r', 'l', 'd', 'u', 'p', 'h', 'm', 'b']",6,0,False +charmed,"['c', '_', 'a', 'r', 'm', 'e', 'd']","['s', 'i', 'o', 'l', 't', 'n', 'u', 'p', 'b', 'g']",6,0,False +dibbling,"['d', 'i', '_', '_', 'l', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 't', 'r', 'y', 'c', 'p']",6,0,False +reeving,"['r', 'e', 'e', '_', 'i', 'n', 'g']","['s', 'a', 'o', 't', 'd', 'l', 'u', 'p', 'c', 'f']",6,0,False +conjoint,"['c', 'o', 'n', '_', 'o', 'i', 'n', 't']","['e', 'a', 's', 'g', 'l', 'r', 'u', 'h', 'y', 'm']",7,0,False +assignments,"['a', 's', 's', 'i', 'g', 'n', 'm', 'e', 'n', 't', 's']","['r', 'l', 'o', 'd', 'c', 'u', 'h']",11,3,True +sparkler,"['s', 'p', 'a', 'r', '_', 'l', 'e', 'r']","['i', 'o', 't', 'd', 'u', 'c', 'n', 'y', 'b', 'h']",7,0,False +corruptions,"['c', 'o', 'r', 'r', 'u', 'p', 't', 'i', 'o', 'n', 's']","['e', 'a', 'g', 'l']",11,6,True +analgesia,"['a', 'n', 'a', 'l', 'g', 'e', 's', 'i', 'a']","['r', 't', 'o', 'd']",9,6,True +revolutionist,"['r', 'e', 'v', 'o', 'l', 'u', 't', 'i', 'o', 'n', 'i', 's', 't']","['a', 'd', 'c', 'g', 'p', 'm', 'f', 'b', 'h']",13,1,True +excels,"['e', '_', '_', 'e', 'l', 's']","['i', 'a', 'o', 'u', 'r', 't', 'd', 'h', 'n', 'p']",4,0,False +firsthand,"['_', 'i', 'r', 's', 't', 'h', 'a', 'n', 'd']","['e', 'o', 'l', 'g', 'c', 'u', 'm', 'p', 'y', 'b']",8,0,False +midwives,"['m', 'i', 'd', '_', 'i', '_', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'u', 'p', 'h', 'k']",6,0,False +subcontinent,"['s', 'u', 'b', 'c', 'o', 'n', 't', 'i', 'n', 'e', 'n', 't']","['a', 'r', 'l', 'd', 'g', 'p', 'm', 'h', 'f']",12,1,True +yawed,"['_', 'a', '_', 'e', 'd']","['s', 'i', 'r', 'l', 'o', 't', 'n', 'u', 'c', 'g']",3,0,False +classier,"['c', 'l', 'a', 's', 's', 'i', 'e', 'r']","['n', 't', 'o', 'd']",8,6,True +curlicuing,"['c', 'u', 'r', 'l', 'i', 'c', 'u', 'i', 'n', 'g']","['e', 'a', 'o', 's', 't']",10,5,True +veeps,"['_', 'e', 'e', 'p', 's']","['i', 'a', 'o', 'u', 'r', 'l', 't', 'd', 'n', 'h']",4,0,False +flooding,"['_', 'l', 'o', 'o', 'd', 'i', 'n', 'g']","['e', 'a', 's', 'u', 't', 'r', 'c', 'y', 'b', 'p']",7,0,False +warders,"['_', 'a', 'r', 'd', 'e', 'r', 's']","['i', 'o', 't', 'l', 'n', 'u', 'c', 'p', 'g', 'h']",6,0,False +trainee,"['t', 'r', 'a', 'i', 'n', 'e', 'e']",['s'],7,9,True +fitter,"['f', 'i', 't', 't', 'e', 'r']","['s', 'n', 'a', 'o', 'l', 'd', 'u', 'p', 'h']",6,1,True +remonstrate,"['r', 'e', 'm', 'o', 'n', 's', 't', 'r', 'a', 't', 'e']","['i', 'l', 'd', 'c', 'u', 'p']",11,4,True +briars,"['_', 'r', 'i', 'a', 'r', 's']","['e', 'n', 'o', 'l', 't', 'u', 'c', 'm', 'p', 'd']",5,0,False +preschool,"['p', 'r', 'e', 's', 'c', 'h', 'o', 'o', 'l']","['i', 'a', 'u', 't', 'd', 'n']",9,4,True +eighty,"['e', 'i', '_', 'h', 't', '_']","['s', 'n', 'r', 'l', 'd', 'a', 'o', 'u', 'p', 'c']",4,0,False +bags,"['_', 'a', '_', 's']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'm']",2,0,False +coincide,"['c', 'o', 'i', 'n', 'c', 'i', 'd', 'e']","['s', 'a', 'r', 'l', 't', 'g']",8,4,True +schooners,"['s', 'c', 'h', 'o', 'o', 'n', 'e', 'r', 's']","['i', 'a', 'u', 't', 'd', 'l', 'p']",9,3,True +parturition,"['p', 'a', 'r', 't', 'u', 'r', 'i', 't', 'i', 'o', 'n']","['e', 's', 'l', 'g', 'c', 'm', 'd']",11,3,True +hampered,"['_', 'a', '_', 'p', 'e', 'r', 'e', 'd']","['s', 'i', 'o', 'l', 't', 'n', 'u', 'c', 'g', 'y']",6,0,False +smattering,"['s', 'm', 'a', 't', 't', 'e', 'r', 'i', 'n', 'g']","['o', 'l', 'd', 'c', 'u', 'p']",10,4,True +burrowing,"['b', 'u', 'r', 'r', 'o', '_', 'i', 'n', 'g']","['e', 'a', 's', 'l', 't', 'c', 'd', 'p', 'm', 'f']",8,0,False +mucous,"['m', 'u', 'c', 'o', 'u', 's']","['e', 'i', 'a', 'r', 'l', 't', 'n']",6,3,True +pests,"['p', 'e', 's', 't', 's']","['i', 'a', 'o', 'u', 'r', 'l', 'd', 'n']",5,2,True +merchantmen,"['m', 'e', 'r', 'c', 'h', 'a', 'n', 't', 'm', 'e', 'n']","['s', 'i', 'o', 'd', 'l', 'u', 'p']",11,3,True +demoralisation,"['d', 'e', 'm', 'o', 'r', 'a', 'l', 'i', 's', 'a', 't', 'i', 'o', 'n']","['c', 'g', 'u', 'p']",14,6,True +draw,"['_', 'r', 'a', '_']","['e', 'i', 'o', 's', 'u', 'l', 't', 'y', 'n', 'm']",2,0,False +profundities,"['p', 'r', 'o', 'f', 'u', 'n', 'd', 'i', 't', 'i', 'e', 's']","['a', 'l', 'c', 'g', 'm', 'h']",12,4,True +certainties,"['c', 'e', 'r', 't', 'a', 'i', 'n', 't', 'i', 'e', 's']","['o', 'l', 'd']",11,7,True +vs,"['_', 's']","['e', 'i', 'a', 'o', 'u', 'y', 't', 'r', 'k', 'g']",1,0,False +inclose,"['i', 'n', 'c', 'l', 'o', 's', 'e']","['a', 'r', 't', 'd', 'g']",7,5,True +monolithic,"['_', 'o', 'n', 'o', 'l', 'i', 't', 'h', 'i', 'c']","['e', 'a', 's', 'g', 'u', 'r', 'y', 'p', 'd', 'b']",9,0,False +mainlined,"['m', 'a', 'i', 'n', 'l', 'i', 'n', 'e', 'd']","['s', 'r', 't', 'o', 'g', 'c', 'u']",9,3,True +circumcised,"['c', 'i', 'r', 'c', 'u', 'm', 'c', 'i', 's', 'e', 'd']","['a', 'o', 'n', 't', 'l', 'p']",11,4,True +mariners,"['m', 'a', 'r', 'i', 'n', 'e', 'r', 's']","['t', 'l', 'o', 'd', 'g', 'c', 'p']",8,3,True +halfpenny,"['_', 'a', 'l', '_', 'p', 'e', 'n', 'n', 'y']","['s', 'i', 'r', 'o', 'd', 't', 'u', 'c', 'g', 'b']",7,0,False +cornea,"['c', 'o', 'r', 'n', 'e', 'a']","['s', 'i', 'd', 't', 'l']",6,5,True +slammers,"['s', 'l', 'a', '_', '_', 'e', 'r', 's']","['i', 'o', 't', 'd', 'u', 'c', 'n', 'p', 'b', 'h']",6,0,False +universities,"['u', 'n', 'i', '_', 'e', 'r', 's', 'i', 't', 'i', 'e', 's']","['a', 'o', 'l', 'd', 'g', 'c', 'p', 'm', 'h', 'f']",11,0,False +weaving,"['_', 'e', 'a', '_', 'i', 'n', 'g']","['s', 'r', 'l', 't', 'd', 'o', 'c', 'p', 'm', 'b']",5,0,False +putsches,"['p', 'u', 't', 's', 'c', 'h', 'e', 's']","['i', 'a', 'o', 'r', 'l', 'd', 'n', 'm']",8,2,True +distances,"['d', 'i', 's', 't', 'a', 'n', 'c', 'e', 's']","['r', 'l', 'o']",9,7,True +deplores,"['d', 'e', 'p', 'l', 'o', 'r', 'e', 's']","['i', 'a', 'u', 't', 'n']",8,5,True +multiracial,"['m', 'u', 'l', 't', 'i', 'r', 'a', 'c', 'i', 'a', 'l']","['e', 's', 'n', 'o', 'y']",11,5,True +primroses,"['p', 'r', 'i', 'm', 'r', 'o', 's', 'e', 's']","['a', 'n', 't', 'l', 'd', 'u', 'c']",9,3,True +swamped,"['s', '_', 'a', 'm', 'p', 'e', 'd']","['i', 'r', 'o', 'l', 't', 'n', 'u', 'c', 'y', 'g']",6,0,False +thicknesses,"['t', 'h', 'i', 'c', '_', 'n', 'e', 's', 's', 'e', 's']","['a', 'o', 'r', 'l', 'd', 'u', 'g', 'p', 'm', 'f']",10,0,False +somersaulted,"['s', 'o', 'm', 'e', 'r', 's', 'a', 'u', 'l', 't', 'e', 'd']","['i', 'n', 'c', 'p', 'b', 'h']",12,4,True +nighest,"['n', 'i', 'g', 'h', 'e', 's', 't']","['a', 'o', 'r', 'l', 'd', 'u']",7,4,True +priesthood,"['p', 'r', 'i', 'e', 's', 't', 'h', 'o', 'o', 'd']","['a', 'n', 'l', 'u', 'c']",10,5,True +disassociates,"['d', 'i', 's', 'a', 's', 's', 'o', 'c', 'i', 'a', 't', 'e', 's']","['r', 'n', 'l']",13,7,True +deregulated,"['d', 'e', 'r', 'e', 'g', 'u', 'l', 'a', 't', 'e', 'd']","['s', 'i', 'o', 'n', 'c', 'b', 'p']",11,3,True +esters,"['e', 's', 't', 'e', 'r', 's']","['i', 'a', 'o', 'u']",6,6,True +apologia,"['a', 'p', 'o', 'l', 'o', '_', 'i', 'a']","['e', 's', 'n', 'r', 't', 'c', 'y', 'm', 'd', 'f']",7,0,False +squirmed,"['s', '_', 'u', 'i', 'r', 'm', 'e', 'd']","['a', 'o', 'n', 't', 'l', 'p', 'c', 'b', 'f', 'g']",7,0,False +craning,"['c', 'r', 'a', 'n', 'i', 'n', 'g']","['e', 's', 'o', 'l', 't', 'u']",7,4,True +picnics,"['p', 'i', '_', 'n', 'i', '_', 's']","['e', 'a', 'o', 'u', 'g', 't', 'l', 'k', 'h', 'm']",5,0,False +patrolled,"['p', 'a', 't', 'r', 'o', 'l', 'l', 'e', 'd']","['s', 'i', 'n', 'c', 'u']",9,5,True +wingless,"['_', 'i', 'n', 'g', 'l', 'e', 's', 's']","['a', 'o', 'r', 't', 'd', 'u', 'p', 'c', 'm', 'f']",7,0,False +swankiest,"['s', '_', 'a', 'n', '_', 'i', 'e', 's', 't']","['r', 'l', 'o', 'd', 'g', 'c', 'm', 'p', 'u', 'h']",7,0,False +laze,"['l', 'a', '_', 'e']","['s', 'i', 'r', 'o', 'd', 't', 'n', 'u', 'y', 'c']",3,0,False +stalkers,"['s', 't', 'a', 'l', '_', 'e', 'r', 's']","['i', 'o', 'd', 'u', 'n', 'c', 'p', 'b', 'h', 'm']",7,0,False +imbecility,"['i', '_', '_', 'e', '_', 'i', 'l', 'i', 't', '_']","['s', 'n', 'r', 'a', 'd', 'o', 'u', 'h', 'p', 'f']",6,0,False +there,"['t', 'h', 'e', 'r', 'e']","['s', 'i', 'a', 'o', 'u', 'd', 'l', 'n', 'p']",5,1,True +blasphemes,"['b', 'l', 'a', 's', 'p', 'h', 'e', 'm', 'e', 's']","['i', 'r', 'o', 't', 'd', 'u', 'n', 'c', 'y']",10,1,True +dehumidifies,"['d', 'e', 'h', 'u', 'm', 'i', 'd', 'i', 'f', 'i', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'p', 'c', 'b']",12,1,True +unbars,"['u', 'n', 'b', 'a', 'r', 's']","['e', 'i', 'o', 'l', 't', 'c', 'y', 'm']",6,2,True +dishevel,"['d', 'i', 's', 'h', 'e', '_', 'e', 'l']","['a', 'o', 'n', 'r', 't', 'u', 'p', 'c', 'm', 'g']",7,0,False +bodkin,"['_', 'o', 'd', '_', 'i', 'n']","['e', 'a', 's', 'g', 'l', 't', 'r', 'u', 'c', 'y']",4,0,False +haziness,"['h', 'a', '_', 'i', 'n', 'e', 's', 's']","['r', 't', 'l', 'o', 'd', 'g', 'c', 'm', 'p', 'u']",7,0,False +paralyses,"['p', 'a', 'r', 'a', 'l', 'y', 's', 'e', 's']","['i', 'o', 't', 'd', 'u', 'c', 'n']",9,3,True +superhighways,"['s', 'u', 'p', 'e', 'r', 'h', 'i', 'g', 'h', 'w', 'a', 'y', 's']","['n', 't', 'l', 'o', 'd', 'c', 'm', 'b', 'f']",13,1,True +platelets,"['p', 'l', 'a', 't', 'e', 'l', 'e', 't', 's']","['i', 'r', 'o', 'd', 'u', 'n', 'c']",9,3,True +highjacked,"['h', 'i', 'g', 'h', '_', 'a', 'c', '_', 'e', 'd']","['s', 'n', 'r', 'l', 't', 'o', 'p', 'm', 'b', 'f']",8,0,False +agreeably,"['a', 'g', 'r', 'e', 'e', 'a', 'b', 'l', 'y']","['s', 'i', 'o', 'd', 't', 'u', 'n', 'c', 'p']",9,1,True +rig,"['r', 'i', '_']","['e', 'a', 'o', 's', 'n', 'l', 'u', 't', 'y', 'c']",2,0,False +reassigning,"['r', 'e', 'a', 's', 's', 'i', 'g', 'n', 'i', 'n', 'g']","['t', 'l', 'o', 'd']",11,6,True +brigades,"['b', 'r', 'i', 'g', 'a', 'd', 'e', 's']","['n', 't', 'l', 'o', 'c', 'p', 'm', 'u']",8,2,True +coworkers,"['c', 'o', '_', 'o', 'r', '_', 'e', 'r', 's']","['i', 'a', 'u', 't', 'd', 'l', 'n', 'p', 'h', 'b']",7,0,False +pacifies,"['p', 'a', 'c', 'i', '_', 'i', 'e', 's']","['r', 'n', 'l', 't', 'd', 'o', 'h', 'm', 'u', 'g']",7,0,False +street,"['s', 't', 'r', 'e', 'e', 't']","['i', 'a', 'o', 'u']",6,6,True +lynching,"['l', 'y', 'n', 'c', '_', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 't', 'r', 'd', 'p', 'k']",7,0,False +submersibles,"['s', 'u', 'b', 'm', 'e', 'r', 's', 'i', 'b', 'l', 'e', 's']","['a', 'o', 'n', 't', 'd', 'p', 'c', 'f']",12,2,True +internationals,"['i', 'n', 't', 'e', 'r', 'n', 'a', 't', 'i', 'o', 'n', 'a', 'l', 's']",[],14,10,True +objectively,"['o', 'b', '_', 'e', 'c', 't', 'i', '_', 'e', 'l', 'y']","['s', 'n', 'r', 'a', 'd', 'u', 'p', 'h', 'm', 'f']",9,0,False +veneration,"['_', 'e', 'n', 'e', 'r', 'a', 't', 'i', 'o', 'n']","['s', 'l', 'd', 'g', 'c', 'p', 'm', 'b', 'f', 'h']",9,0,False +cowing,"['c', 'o', '_', 'i', 'n', 'g']","['e', 'a', 's', 'l', 't', 'r', 'u', 'd', 'p', 'b']",5,0,False +stationer,"['s', 't', 'a', 't', 'i', 'o', 'n', 'e', 'r']",[],9,10,True +thoracic,"['t', 'h', 'o', 'r', 'a', 'c', 'i', 'c']","['e', 's', 'n', 'l', 'u']",8,5,True +inquisitions,"['i', 'n', '_', 'u', 'i', 's', 'i', 't', 'i', 'o', 'n', 's']","['e', 'a', 'g', 'l', 'r', 'c', 'p', 'd', 'm', 'b']",11,0,False +repeatably,"['r', 'e', 'p', 'e', 'a', 't', 'a', 'b', 'l', 'y']","['s', 'i', 'o', 'd', 'n', 'u', 'c']",10,3,True +burnish,"['b', 'u', 'r', 'n', 'i', 's', '_']","['e', 'a', 'o', 'g', 't', 'l', 'c', 'p', 'm', 'k']",6,0,False +mutability,"['m', 'u', 't', 'a', 'b', 'i', 'l', 'i', 't', 'y']","['e', 's', 'n', 'o', 'r', 'c', 'p']",10,3,True +excavating,"['e', '_', 'c', 'a', '_', 'a', 't', 'i', 'n', 'g']","['s', 'r', 'l', 'd', 'o', 'h', 'u', 'p', 'm', 'b']",8,0,False +verminous,"['_', 'e', 'r', 'm', 'i', 'n', 'o', 'u', 's']","['a', 't', 'l', 'd', 'c', 'g', 'p', 'b', 'h', 'f']",8,0,False +hitchhiker,"['h', 'i', 't', 'c', 'h', 'h', 'i', '_', 'e', 'r']","['s', 'n', 'a', 'o', 'l', 'd', 'u', 'p', 'f', 'm']",9,0,False +few,"['_', 'e', '_']","['s', 'i', 'a', 'o', 'u', 'r', 'd', 'l', 't', 'h']",1,0,False +uneaten,"['u', 'n', 'e', 'a', 't', 'e', 'n']","['s', 'i', 'r', 'l', 'd', 'o']",7,4,True +ciphered,"['c', 'i', 'p', 'h', 'e', 'r', 'e', 'd']","['s', 'n', 'a', 'o', 'l', 't', 'u', 'm']",8,2,True +caws,"['_', 'a', '_', 's']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'm']",2,0,False +superimposed,"['s', 'u', 'p', 'e', 'r', 'i', 'm', 'p', 'o', 's', 'e', 'd']","['a', 'n', 't', 'l', 'c']",12,5,True +impeccably,"['i', 'm', 'p', 'e', 'c', 'c', 'a', 'b', 'l', 'y']","['s', 'n', 'r', 'd', 't', 'o', 'u']",10,3,True +uterine,"['u', 't', 'e', 'r', 'i', 'n', 'e']","['s', 'a', 'o', 'd', 'l', 'g']",7,4,True +cornier,"['c', 'o', 'r', 'n', 'i', 'e', 'r']","['s', 'a', 't', 'd', 'l', 'g']",7,4,True +granges,"['g', 'r', 'a', 'n', 'g', 'e', 's']","['i', 'o', 't', 'l', 'd', 'u', 'c', 'p']",7,2,True +hock,"['_', 'o', '_', '_']","['e', 'i', 'a', 's', 'u', 'r', 'l', 'n', 'y', 't']",1,0,False +impends,"['i', 'm', 'p', 'e', 'n', 'd', 's']","['a', 'o', 'r', 'l', 't', 'u', 'g', 'c']",7,2,True +sillier,"['s', 'i', 'l', 'l', 'i', 'e', 'r']","['a', 'o', 'n', 't']",7,6,True +internist,"['i', 'n', 't', 'e', 'r', 'n', 'i', 's', 't']","['a', 'o']",9,8,True +gilts,"['_', 'i', 'l', 't', 's']","['e', 'a', 'o', 'n', 'u', 'h', 'y', 'r', 'p', 'k']",4,0,False +wagged,"['_', 'a', 'g', 'g', 'e', 'd']","['s', 'i', 'r', 'l', 'o', 't', 'n', 'u', 'c', 'y']",5,0,False +synthesise,"['s', '_', 'n', 't', 'h', 'e', 's', 'i', 's', 'e']","['a', 'o', 'r', 'l', 'd', 'u', 'g', 'c', 'p', 'm']",9,0,False +deeded,"['d', 'e', 'e', 'd', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'r']",6,4,True +biddy,"['_', 'i', '_', '_', 'y']","['e', 'a', 'o', 's', 'n', 'l', 'u', 't', 'r', 'p']",2,0,False +clematises,"['c', 'l', 'e', 'm', 'a', 't', 'i', 's', 'e', 's']","['r', 'n', 'o', 'd', 'u', 'h', 'p']",10,3,True +unutterable,"['u', 'n', 'u', 't', 't', 'e', 'r', 'a', 'b', 'l', 'e']","['s', 'i', 'o', 'd', 'c', 'y', 'm', 'g']",11,2,True +accuser,"['a', 'c', 'c', 'u', 's', 'e', 'r']","['i', 'o', 't', 'l', 'd', 'n']",7,4,True +clauses,"['c', 'l', 'a', 'u', 's', 'e', 's']","['i', 'r', 'o', 't', 'd', 'n']",7,4,True +fiascoes,"['_', 'i', 'a', 's', 'c', 'o', 'e', 's']","['r', 'n', 'l', 't', 'd', 'p', 'm', 'h', 'b', 'g']",7,0,False +instability,"['i', 'n', 's', 't', 'a', '_', 'i', 'l', 'i', 't', 'y']","['e', 'o', 'g', 'r', 'u', 'c', 'm', 'p', 'd', 'h']",10,0,False +urination,"['_', 'r', 'i', 'n', 'a', 't', 'i', 'o', 'n']","['e', 's', 'l', 'g', 'c', 'm', 'd', 'p', 'b', 'y']",8,0,False +lifeline,"['l', 'i', '_', 'e', 'l', 'i', 'n', 'e']","['s', 'a', 'r', 'o', 'd', 'g', 't', 'u', 'c', 'p']",7,0,False +cystic,"['_', 'y', 's', 't', 'i', '_']","['e', 'a', 'o', 'n', 'u', 'l', 'r', 'h', 'p', 'm']",4,0,False +unconstitutional,"['u', 'n', 'c', 'o', 'n', 's', 't', 'i', 't', 'u', 't', 'i', 'o', 'n', 'a', 'l']","['e', 'r', 'g']",16,7,True +hardliners,"['h', 'a', 'r', 'd', 'l', 'i', 'n', 'e', 'r', 's']","['t', 'o', 'g', 'c', 'u', 'p', 'm', 'b']",10,2,True +hairs,"['_', 'a', 'i', 'r', 's']","['e', 'n', 'o', 'l', 't', 'u', 'c', 'm', 'p', 'd']",4,0,False +filch,"['_', 'i', 'l', 'c', 'h']","['e', 'a', 'o', 's', 'n', 'u', 't', 'y', 'r', 'p']",4,0,False +adjourning,"['a', 'd', '_', 'o', 'u', 'r', 'n', 'i', 'n', 'g']","['e', 's', 'l', 't', 'c', 'm', 'b', 'p', 'w', 'f']",9,0,False +thronged,"['t', '_', 'r', 'o', 'n', '_', 'e', 'd']","['s', 'i', 'a', 'u', 'l', 'c', 'p', 'm', 'b', 'w']",6,0,False +whisk,"['_', 'h', 'i', 's', 'k']","['e', 'a', 'o', 'n', 'u', 't', 'l', 'r', 'p', 'm']",4,0,False +suchlike,"['s', 'u', 'c', 'h', 'l', 'i', '_', 'e']","['a', 'o', 'n', 'r', 't', 'd', 'p', 'm', 'f', 'b']",7,0,False +spiffier,"['s', 'p', 'i', '_', '_', 'i', 'e', 'r']","['a', 'o', 'n', 't', 'l', 'd', 'u', 'h', 'm', 'c']",6,0,False +matte,"['_', 'a', 't', 't', 'e']","['s', 'i', 'r', 'l', 'd', 'o', 'n', 'u', 'h', 'p']",4,0,False +extorts,"['e', '_', 't', 'o', 'r', 't', 's']","['i', 'a', 'u', 'd', 'l', 'n', 'p', 'h', 'c', 'b']",6,0,False +menial,"['m', 'e', 'n', 'i', 'a', 'l']","['s', 'r', 't', 'd', 'g', 'o', 'c', 'u']",6,2,True +hyperactivity,"['h', 'y', 'p', 'e', 'r', 'a', 'c', 't', 'i', '_', 'i', 't', 'y']","['s', 'n', 'l', 'd', 'o', 'u', 'm', 'b', 'f', 'w']",12,0,False +effortless,"['e', 'f', 'f', 'o', 'r', 't', 'l', 'e', 's', 's']","['i', 'a', 'u', 'd', 'n', 'p', 'c', 'h', 'b']",10,1,True +folded,"['_', 'o', 'l', 'd', 'e', 'd']","['s', 'i', 'a', 'r', 'n', 'u', 't', 'p', 'b', 'c']",5,0,False +hangs,"['h', 'a', 'n', '_', 's']","['e', 'i', 'o', 'u', 'r', 'l', 't', 'y', 'p', 'c']",4,0,False +evangelised,"['e', '_', 'a', 'n', 'g', 'e', 'l', 'i', 's', 'e', 'd']","['r', 't', 'o', 'c', 'u', 'p', 'm', 'b', 'h', 'w']",10,0,False +entrenched,"['e', 'n', 't', 'r', 'e', 'n', 'c', 'h', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 'l', 'p']",10,3,True +culotte,"['_', 'u', 'l', 'o', 't', 't', 'e']","['s', 'i', 'a', 'r', 'd', 'n', 'p', 'b', 'h', 'y']",6,0,False +lunatic,"['l', 'u', 'n', 'a', 't', 'i', 'c']","['e', 's', 'o', 'g', 'r']",7,5,True +sags,"['s', 'a', '_', 's']","['e', 'i', 'o', 'u', 'r', 'l', 'n', 't', 'y', 'm']",3,0,False +reorders,"['r', 'e', 'o', 'r', 'd', 'e', 'r', 's']","['i', 'a', 'u', 't']",8,6,True +grenades,"['g', 'r', 'e', 'n', 'a', 'd', 'e', 's']","['i', 'o', 't', 'l', 'u', 'c', 'p']",8,3,True +flush,"['_', 'l', 'u', 's', '_']","['e', 'i', 'a', 'o', 'r', 'y', 't', 'p', 'n', 'c']",3,0,False +digitisation,"['d', 'i', 'g', 'i', 't', 'i', 's', 'a', 't', 'i', 'o', 'n']","['e', 'l', 'r', 'c', 'u', 'm', 'p', 'h']",12,2,True +whippersnappers,"['w', 'h', 'i', 'p', 'p', 'e', 'r', 's', 'n', 'a', 'p', 'p', 'e', 'r', 's']","['t', 'l', 'o', 'd', 'g', 'c', 'u', 'm']",15,2,True +mucky,"['m', 'u', '_', '_', 'y']","['e', 'i', 'a', 'o', 's', 'l', 'r', 'n', 'p', 'h']",3,0,False +mulching,"['m', 'u', 'l', 'c', '_', 'i', 'n', 'g']","['e', 'a', 'o', 's', 't', 'r', 'p', 'd', 'f', 'b']",7,0,False +pneumonia,"['p', 'n', 'e', '_', 'm', 'o', 'n', 'i', 'a']","['s', 'r', 'l', 't', 'd', 'g', 'c', 'b', 'y', 'w']",8,0,False +dittos,"['d', 'i', 't', 't', 'o', 's']","['e', 'a', 'n', 'l', 'r', 'u', 'h', 'c', 'p']",6,1,True +pot,"['_', 'o', 't']","['e', 'i', 'a', 's', 'u', 'r', 'l', 'n', 'y', 'h']",2,0,False +underscored,"['u', 'n', 'd', 'e', 'r', 's', 'c', 'o', 'r', 'e', 'd']","['i', 'a', 't', 'l']",11,6,True +luminary,"['l', 'u', 'm', 'i', 'n', 'a', 'r', 'y']","['e', 's', 'o', 'g', 't', 'c', 'd']",8,3,True +arousal,"['a', 'r', 'o', 'u', 's', 'a', 'l']","['e', 'i', 't']",7,7,True +crayfishes,"['c', 'r', 'a', '_', '_', 'i', 's', 'h', 'e', 's']","['n', 't', 'l', 'o', 'd', 'p', 'u', 'm', 'b', 'w']",8,0,False +placebo,"['p', 'l', 'a', 'c', 'e', 'b', 'o']","['s', 'i', 'r', 'd', 't', 'n', 'y', 'u']",7,2,True +equivocation,"['e', '_', 'u', 'i', '_', 'o', 'c', 'a', 't', 'i', 'o', 'n']","['s', 'r', 'l', 'd', 'g', 'm', 'p', 'h', 'b', 'f']",10,0,False +careening,"['c', 'a', 'r', 'e', 'e', 'n', 'i', 'n', 'g']","['s', 't', 'l', 'd', 'o']",9,5,True +eaters,"['e', 'a', 't', 'e', 'r', 's']","['i', 'o']",6,8,True +polluting,"['p', 'o', 'l', 'l', 'u', 't', 'i', 'n', 'g']","['e', 'a', 's', 'r', 'c', 'd']",9,4,True +perish,"['p', 'e', 'r', 'i', 's', 'h']","['a', 'o', 'n', 't', 'l', 'd', 'u']",6,3,True +implacably,"['i', 'm', 'p', 'l', 'a', 'c', 'a', 'b', 'l', 'y']","['e', 's', 'n', 'o', 'r', 't', 'u', 'd']",10,2,True +vivifies,"['_', 'i', '_', 'i', '_', 'i', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'd', 'u', 'p', 'h']",5,0,False +failures,"['f', 'a', 'i', 'l', 'u', 'r', 'e', 's']","['n', 't', 'o', 'd', 'c', 'p', 'b', 'm', 'g']",8,1,True +pesters,"['p', 'e', 's', 't', 'e', 'r', 's']","['i', 'a', 'o', 'u', 'd', 'l', 'n']",7,3,True +panicky,"['_', 'a', 'n', 'i', 'c', '_', 'y']","['e', 's', 'o', 'l', 'g', 't', 'r', 'u', 'd', 'm']",5,0,False +dysfunction,"['d', '_', 's', 'f', 'u', 'n', 'c', 't', 'i', 'o', 'n']","['e', 'a', 'g', 'l', 'r', 'p', 'm', 'h', 'b', 'k']",10,0,False +loudness,"['l', 'o', 'u', 'd', 'n', 'e', 's', 's']","['i', 'a', 'r', 't']",8,6,True +humanely,"['_', 'u', 'm', 'a', 'n', 'e', 'l', 'y']","['s', 'i', 'r', 'o', 'd', 't', 'c', 'g', 'p', 'b']",7,0,False +womanises,"['_', 'o', 'm', 'a', 'n', 'i', 's', 'e', 's']","['r', 't', 'l', 'd', 'c', 'g', 'p', 'b', 'h', 'u']",8,0,False +purling,"['p', 'u', 'r', 'l', 'i', 'n', 'g']","['e', 'a', 'o', 's', 't', 'c', 'd']",7,3,True +brethren,"['_', 'r', 'e', 't', 'h', 'r', 'e', 'n']","['s', 'i', 'a', 'o', 'u', 'd', 'l', 'p', 'y', 'c']",7,0,False +compiler,"['c', 'o', '_', 'p', 'i', 'l', 'e', 'r']","['s', 'n', 'a', 'd', 't', 'u', 'y', 'b', 'f', 'h']",7,0,False +fretwork,"['_', 'r', 'e', 't', '_', 'o', 'r', '_']","['s', 'i', 'a', 'd', 'l', 'n', 'u', 'p', 'h', 'b']",5,0,False +sukiyaki,"['s', 'u', '_', 'i', '_', 'a', '_', 'i']","['e', 'n', 'o', 'l', 't', 'r', 'm', 'c', 'p', 'h']",5,0,False +used,"['u', 's', 'e', 'd']","['i', 'a', 'o', 'r', 'l', 't']",4,4,True +beginning,"['_', 'e', 'g', 'i', 'n', 'n', 'i', 'n', 'g']","['s', 'a', 'r', 'o', 'l', 'd', 't', 'u', 'p', 'c']",8,0,False +emotions,"['e', 'm', 'o', 't', 'i', 'o', 'n', 's']","['a', 'r', 'l', 'd', 'c', 'g', 'u', 'p', 'h']",8,1,True +dyers,"['d', '_', 'e', 'r', 's']","['i', 'a', 'o', 'u', 't', 'l', 'n', 'p', 'h', 'g']",4,0,False +gladdening,"['g', 'l', 'a', 'd', 'd', 'e', 'n', 'i', 'n', 'g']","['s', 'r', 't', 'o']",10,6,True +interpreted,"['i', 'n', 't', 'e', 'r', 'p', 'r', 'e', 't', 'e', 'd']","['s', 'a', 'o', 'l', 'g', 'u', 'c']",11,3,True +atriums,"['a', 't', 'r', 'i', 'u', 'm', 's']","['e', 'n', 'o', 'l', 'c']",7,5,True +majestic,"['m', 'a', '_', 'e', 's', 't', 'i', 'c']","['r', 'n', 'l', 'o', 'd', 'h', 'u', 'p', 'b', 'g']",7,0,False +wipes,"['_', 'i', 'p', 'e', 's']","['a', 'o', 'n', 'r', 'l', 't', 'd', 'u', 'h', 'g']",4,0,False +mattes,"['m', 'a', 't', 't', 'e', 's']","['i', 'r', 'o', 'l', 'n', 'd', 'u', 'h', 'p']",6,1,True +placement,"['p', 'l', 'a', 'c', 'e', 'm', 'e', 'n', 't']","['s', 'i', 'r', 'o', 'd', 'u', 'y', 'h']",9,2,True +roamed,"['r', 'o', 'a', 'm', 'e', 'd']","['s', 'i', 't', 'l', 'n', 'c']",6,4,True +overeat,"['o', '_', 'e', 'r', 'e', 'a', 't']","['s', 'i', 'd', 'l', 'n', 'c', 'p', 'b', 'm', 'h']",6,0,False +contoured,"['c', 'o', 'n', 't', 'o', 'u', 'r', 'e', 'd']","['s', 'i', 'a', 'l']",9,6,True +minicam,"['_', 'i', 'n', 'i', 'c', 'a', '_']","['e', 's', 'o', 'l', 'g', 't', 'r', 'u', 'd', 'y']",5,0,False +convenience,"['c', 'o', 'n', '_', 'e', 'n', 'i', 'e', 'n', 'c', 'e']","['s', 'a', 'r', 'l', 'd', 't', 'g', 'p', 'm', 'h']",10,0,False +obese,"['o', '_', 'e', 's', 'e']","['i', 'a', 'r', 'l', 't', 'd', 'n', 'u', 'p', 'c']",4,0,False +deathblow,"['d', 'e', 'a', 't', '_', 'b', 'l', 'o', 'w']","['s', 'i', 'r', 'n', 'c', 'u', 'p', 'g', 'm', 'y']",8,0,False +repelled,"['r', 'e', 'p', 'e', 'l', 'l', 'e', 'd']","['s', 'i', 'a', 'o', 'u', 't', 'n', 'y']",8,2,True +disrepute,"['d', 'i', 's', 'r', 'e', 'p', 'u', 't', 'e']","['a', 'o', 'n', 'l']",9,6,True +intermingled,"['i', 'n', 't', 'e', 'r', 'm', 'i', 'n', 'g', 'l', 'e', 'd']","['s', 'a', 'o', 'u', 'c', 'p', 'f', 'b', 'w']",12,1,True +conform,"['c', 'o', 'n', '_', 'o', 'r', '_']","['e', 'i', 'a', 's', 'u', 'l', 't', 'y', 'd', 'b']",5,0,False +redevelopments,"['r', 'e', 'd', 'e', '_', 'e', 'l', 'o', 'p', 'm', 'e', 'n', 't', 's']","['i', 'a', 'u', 'c', 'h', 'b', 'w', 'y', 'g', 'f']",13,0,False +itchiness,"['i', 't', 'c', 'h', 'i', 'n', 'e', 's', 's']","['a', 'o', 'r', 'l', 'd', 'u', 'g']",9,3,True +fat,"['_', 'a', 't']","['e', 'i', 'o', 's', 'u', 'r', 'l', 'n', 'y', 'h']",2,0,False +guidelines,"['g', 'u', 'i', 'd', 'e', 'l', 'i', 'n', 'e', 's']","['a', 'o', 'r', 't']",10,6,True +circularises,"['c', 'i', 'r', 'c', 'u', 'l', 'a', 'r', 'i', 's', 'e', 's']","['n', 't', 'o', 'd']",12,6,True +standstills,"['s', 't', 'a', 'n', '_', 's', 't', 'i', 'l', 'l', 's']","['e', 'o', 'g', 'r', 'u', 'c', 'y', 'm', 'p', 'h']",10,0,False +suit,"['s', 'u', 'i', 't']","['e', 'a', 'o', 'n', 'l']",4,5,True +sign,"['s', 'i', 'g', 'n']","['e', 'a', 'o', 'u']",4,6,True +whispered,"['_', 'h', 'i', 's', 'p', 'e', 'r', 'e', 'd']","['a', 'o', 'n', 't', 'l', 'u', 'c', 'm', 'v', 'g']",8,0,False +traffics,"['t', 'r', 'a', '_', '_', 'i', 'c', 's']","['e', 'n', 'o', 'l', 'u', 'h', 'm', 'y', 'p', 'd']",6,0,False +hardback,"['_', 'a', 'r', '_', '_', 'a', '_', '_']","['e', 'i', 'o', 's', 'u', 'l', 't', 'y', 'n', 'm']",3,0,False +macaronies,"['m', 'a', 'c', 'a', 'r', 'o', 'n', 'i', 'e', 's']","['t', 'l', 'd', 'g', 'p']",10,5,True +papyruses,"['p', 'a', 'p', '_', 'r', 'u', 's', 'e', 's']","['i', 'o', 't', 'l', 'd', 'n', 'c', 'm', 'b', 'h']",8,0,False +winking,"['_', 'i', 'n', '_', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'u', 'l', 't', 'r', 'p', 'd']",5,0,False +fryer,"['_', 'r', 'y', 'e', 'r']","['s', 'i', 'a', 'o', 'u', 'd', 't', 'l', 'p', 'n']",4,0,False +perplexes,"['p', 'e', 'r', 'p', 'l', 'e', '_', 'e', 's']","['i', 'a', 'o', 'u', 't', 'd', 'n', 'y', 'h', 'v']",8,0,False +monitoring,"['_', 'o', 'n', 'i', 't', 'o', 'r', 'i', 'n', 'g']","['e', 'a', 's', 'l', 'u', 'c', 'p', 'd', 'b', 'f']",9,0,False +criminologists,"['c', 'r', 'i', 'm', 'i', 'n', 'o', 'l', 'o', 'g', 'i', 's', 't', 's']","['e', 'a', 'u', 'p', 'h', 'd']",14,4,True +curvaceous,"['c', 'u', 'r', '_', 'a', 'c', 'e', 'o', 'u', 's']","['i', 't', 'l', 'd', 'n', 'p', 'm', 'b', 'h', 'g']",9,0,False +stepparents,"['s', 't', 'e', 'p', 'p', 'a', 'r', 'e', 'n', 't', 's']","['i', 'o', 'l', 'd', 'u', 'c']",11,4,True +waterspouts,"['_', 'a', 't', 'e', 'r', 's', 'p', 'o', 'u', 't', 's']","['i', 'l', 'n', 'd', 'c', 'h', 'm', 'b', 'g', 'f']",10,0,False +bifurcates,"['b', 'i', 'f', 'u', 'r', 'c', 'a', 't', 'e', 's']","['n', 'l', 'o', 'd', 'p', 'h', 'm']",10,3,True +pediatrist,"['p', 'e', 'd', 'i', 'a', 't', 'r', 'i', 's', 't']","['n', 'l', 'o', 'c', 'u']",10,5,True +discolored,"['d', 'i', 's', 'c', 'o', 'l', 'o', 'r', 'e', 'd']","['a', 'n', 't', 'u', 'p']",10,5,True +remorsefully,"['r', 'e', 'm', 'o', 'r', 's', 'e', 'f', 'u', 'l', 'l', '_']","['i', 'a', 't', 'd', 'n', 'p', 'c', 'b', 'g', 'h']",11,0,False +tanners,"['t', 'a', 'n', 'n', 'e', 'r', 's']","['i', 'o', 'l', 'd']",7,6,True +freestanding,"['f', 'r', 'e', 'e', 's', 't', 'a', 'n', 'd', 'i', 'n', 'g']","['o', 'l', 'c', 'u', 'p', 'm', 'h', 'b']",12,2,True +nectar,"['n', 'e', 'c', 't', 'a', 'r']","['s', 'i', 'o', 'd', 'l', 'u']",6,4,True +disqualifications,"['d', 'i', 's', '_', 'u', 'a', 'l', 'i', 'f', 'i', 'c', 'a', 't', 'i', 'o', 'n', 's']","['e', 'r', 'g', 'm', 'p', 'b', 'y', 'h', 'k', 'w']",16,0,False +blankets,"['b', 'l', 'a', 'n', '_', 'e', 't', 's']","['i', 'r', 'o', 'd', 'u', 'c', 'p', 'm', 'g', 'h']",7,0,False +desiccating,"['d', 'e', 's', 'i', 'c', 'c', 'a', 't', 'i', 'n', 'g']","['r', 'l', 'o']",11,7,True +rooter,"['r', 'o', 'o', 't', 'e', 'r']","['s', 'i', 'a', 'd']",6,6,True +nowadays,"['n', 'o', '_', 'a', 'd', 'a', 'y', 's']","['e', 'i', 'r', 'l', 't', 'u', 'c', 'm', 'b', 'p']",7,0,False +fluttery,"['f', 'l', 'u', 't', 't', 'e', 'r', 'y']","['s', 'i', 'a', 'o', 'd', 'n', 'p', 'b', 'c']",8,1,True +pampered,"['p', 'a', '_', 'p', 'e', 'r', 'e', 'd']","['s', 'i', 'o', 'l', 't', 'n', 'u', 'c', 'g', 'y']",7,0,False +conferences,"['c', 'o', 'n', '_', 'e', 'r', 'e', 'n', 'c', 'e', 's']","['i', 'a', 'u', 't', 'd', 'l', 'p', 'h', 'b', 'g']",10,0,False +quotients,"['_', 'u', 'o', 't', 'i', 'e', 'n', 't', 's']","['a', 'r', 'l', 'd', 'c', 'g', 'p', 'm', 'h', 'b']",8,0,False +gliders,"['g', 'l', 'i', 'd', 'e', 'r', 's']","['a', 'o', 'n', 't', 'u', 'p', 'c', 'm', 'f']",7,1,True diff --git a/adaptive_included.csv b/adaptive_included.csv new file mode 100644 index 0000000..ca47ac1 --- /dev/null +++ b/adaptive_included.csv @@ -0,0 +1,1001 @@ +target,discovered,wrong letters,number of hits,lives remaining,game won +printouts,"['p', 'r', 'i', 'n', 't', 'o', 'u', 't', 's']","['e', 'a']",9,8,True +ergonomic,"['e', 'r', 'g', 'o', 'n', 'o', 'm', 'i', 'c']",[],9,10,True +bailout,"['b', 'a', 'i', 'l', 'o', 'u', 't']","['e', 's', 'r', 'n', 'f']",7,5,True +infelicitous,"['i', 'n', 'f', 'e', 'l', 'i', 'c', 'i', 't', 'o', 'u', 's']",[],12,10,True +extraterrestrials,"['e', 'x', 't', 'r', 'a', 't', 'e', 'r', 'r', 'e', 's', 't', 'r', 'i', 'a', 'l', 's']",[],17,10,True +ignominiously,"['i', 'g', 'n', 'o', 'm', 'i', 'n', 'i', 'o', 'u', 's', 'l', 'y']",[],13,10,True +eclipse,"['e', 'c', 'l', 'i', 'p', 's', 'e']","['n', 'a']",7,8,True +bobs,"['b', 'o', 'b', 's']","['e', 'a', 't']",4,7,True +laws,"['l', 'a', 'w', 's']","['e', 't', 'p', 'g', 'm', 'y', 'd', 'r', 'b']",4,1,True +romantics,"['r', 'o', 'm', 'a', 'n', 't', 'i', 'c', 's']",['e'],9,9,True +tomahawked,"['t', 'o', 'm', 'a', 'h', 'a', 'w', 'k', 'e', 'd']","['s', 'i', 'r', 'n', 'l', 'b', 'c']",10,3,True +wick,"['w', 'i', 'c', 'k']","['e', 's', 'a', 'o', 'l', 't', 'n', 'd', 'r']",4,1,True +recompiling,"['r', 'e', 'c', 'o', 'm', 'p', 'i', 'l', 'i', 'n', 'g']",['s'],11,9,True +pawnshop,"['p', 'a', 'w', 'n', 's', 'h', 'o', 'p']","['e', 'i', 'r', 'l', 't', 'g', 'm']",8,3,True +positively,"['p', 'o', 's', 'i', 't', 'i', 'v', 'e', 'l', 'y']",[],10,10,True +lent,"['l', 'e', 'n', 't']","['s', 'g', 'w']",4,7,True +puppetry,"['p', 'u', 'p', 'p', 'e', 't', 'r', 'y']","['m', 'g', 'o']",8,7,True +dims,"['d', 'i', 'm', 's']","['e', 'a', 'o', 'p', 't', 'n', 'g']",4,3,True +gaggle,"['g', 'a', 'g', 'g', 'l', 'e']",['b'],6,9,True +rebounds,"['r', 'e', 'b', 'o', 'u', 'n', 'd', 's']","['t', 'i', 'a', 'l', 'c']",8,5,True +scaled,"['s', 'c', 'a', 'l', 'e', 'd']","['r', 't']",6,8,True +gentlewomen,"['g', 'e', 'n', 't', 'l', 'e', 'w', 'o', 'm', 'e', 'n']",['r'],11,9,True +viticulture,"['v', 'i', 't', 'i', 'c', 'u', 'l', 't', 'u', 'r', 'e']",[],11,10,True +aphorism,"['a', 'p', 'h', 'o', 'r', 'i', 's', 'm']","['e', 't', 'n']",8,7,True +trafficker,"['t', 'r', 'a', 'f', 'f', 'i', 'c', 'k', 'e', 'r']",['s'],10,9,True +recuperates,"['r', 'e', 'c', 'u', 'p', 'e', 'r', 'a', 't', 'e', 's']","['n', 'm', 'd']",11,7,True +economise,"['e', 'c', 'o', 'n', 'o', 'm', 'i', 's', 'e']","['t', 'a', 'p']",9,7,True +shills,"['s', 'h', 'i', 'l', 'l', 's']","['e', 'a', 't', 'r', 'w', 'k', 'p']",6,3,True +litigants,"['l', 'i', 't', 'i', 'g', 'a', 'n', 't', 's']",['e'],9,9,True +tinctures,"['t', 'i', 'n', 'c', 't', 'u', 'r', 'e', 's']",['l'],9,9,True +recalling,"['r', 'e', 'c', 'a', 'l', 'l', 'i', 'n', 'g']","['t', 'f', 's', 'p', 'v', 'b']",9,4,True +psychos,"['p', 's', 'y', 'c', 'h', 'o', 's']","['e', 'a', 't', 'r']",7,6,True +shammy,"['s', 'h', 'a', 'm', 'm', 'y']","['e', 't', 'd', 'r', 'k', 'n', 'g']",6,3,True +deniers,"['d', 'e', 'n', 'i', 'e', 'r', 's']",['t'],7,9,True +corruptest,"['c', 'o', 'r', 'r', 'u', 'p', 't', 'e', 's', 't']","['n', 'i']",10,8,True +nimbus,"['n', 'i', 'm', 'b', 'u', 's']","['e', 'a', 'r', 'o', 't', 'h', 'c', 'g']",6,2,True +flannel,"['f', 'l', 'a', 'n', 'n', 'e', 'l']","['s', 'r', 'd', 'i', 't']",7,5,True +kitschy,"['k', 'i', 't', 's', 'c', 'h', 'y']","['e', 'n']",7,8,True +underselling,"['u', 'n', 'd', 'e', 'r', 's', 'e', 'l', 'l', 'i', 'n', 'g']",['t'],12,9,True +admixture,"['a', 'd', 'm', 'i', 'x', 't', 'u', 'r', 'e']",[],9,10,True +trident,"['t', 'r', 'i', 'd', 'e', 'n', 't']",['s'],7,9,True +steamrollering,"['s', 't', 'e', 'a', 'm', 'r', 'o', 'l', 'l', 'e', 'r', 'i', 'n', 'g']",[],14,10,True +albatross,"['a', 'l', 'b', 'a', 't', 'r', 'o', 's', 's']","['e', 'n', 'i']",9,7,True +stronghold,"['s', 't', 'r', 'o', 'n', 'g', 'h', 'o', 'l', 'd']","['e', 'i']",10,8,True +expo,"['e', 'x', 'p', 'o']","['s', 'r', 'a', 'g', 'y', 'l', 'd', 'i', 't']",4,1,True +dogwoods,"['d', 'o', 'g', 'w', 'o', 'o', 'd', 's']","['e', 'r', 'a', 'i', 't', 'n']",8,4,True +onsets,"['o', 'n', 's', 'e', 't', 's']",['r'],6,9,True +scatterbrained,"['s', 'c', 'a', 't', 't', 'e', 'r', 'b', 'r', 'a', 'i', 'n', 'e', 'd']",[],14,10,True +historian,"['h', 'i', 's', 't', 'o', 'r', 'i', 'a', 'n']",['e'],9,9,True +minuteness,"['m', 'i', 'n', 'u', 't', 'e', 'n', 'e', 's', 's']",[],10,10,True +scuppered,"['s', 'c', 'u', 'p', 'p', 'e', 'r', 'e', 'd']","['t', 'a', 'l', 'o', 'k']",9,5,True +screeched,"['s', 'c', 'r', 'e', 'e', 'c', 'h', 'e', 'd']",[],9,10,True +coffee,"['c', 'o', 'f', 'f', 'e', 'e']",['t'],6,9,True +walkways,"['w', 'a', 'l', 'k', 'w', 'a', 'y', 's']","['e', 'r', 't']",8,7,True +repercussion,"['r', 'e', 'p', 'e', 'r', 'c', 'u', 's', 's', 'i', 'o', 'n']",[],12,10,True +demolished,"['d', 'e', 'm', 'o', 'l', 'i', 's', 'h', 'e', 'd']","['r', 't']",10,8,True +clearest,"['c', 'l', 'e', 'a', 'r', 'e', 's', 't']","['i', 'q']",8,8,True +chirped,"['c', 'h', 'i', 'r', 'p', 'e', 'd']","['s', 'a', 'w', 't', 'k', 'l']",7,4,True +lacrosse,"['l', 'a', 'c', 'r', 'o', 's', 's', 'e']","['i', 't']",8,8,True +saunas,"['s', 'a', 'u', 'n', 'a', 's']","['e', 'm']",6,8,True +lordliest,"['l', 'o', 'r', 'd', 'l', 'i', 'e', 's', 't']",['n'],9,9,True +coincident,"['c', 'o', 'i', 'n', 'c', 'i', 'd', 'e', 'n', 't']","['s', 'r']",10,8,True +dedicating,"['d', 'e', 'd', 'i', 'c', 'a', 't', 'i', 'n', 'g']",['r'],10,9,True +phonetician,"['p', 'h', 'o', 'n', 'e', 't', 'i', 'c', 'i', 'a', 'n']","['s', 'r']",11,8,True +upsides,"['u', 'p', 's', 'i', 'd', 'e', 's']",['n'],7,9,True +deferentially,"['d', 'e', 'f', 'e', 'r', 'e', 'n', 't', 'i', 'a', 'l', 'l', 'y']",[],13,10,True +nobly,"['_', 'o', '_', 'l', 'y']","['s', 'e', 'a', 'r', 'd', 'g', 'w', 'h', 't', 'f']",3,0,False +verdigrising,"['v', 'e', 'r', 'd', 'i', 'g', 'r', 'i', 's', 'i', 'n', 'g']",[],12,10,True +solicitation,"['s', 'o', 'l', 'i', 'c', 'i', 't', 'a', 't', 'i', 'o', 'n']",['e'],12,9,True +mingled,"['m', 'i', 'n', 'g', 'l', 'e', 'd']","['s', 'r', 'a', 'b', 't']",7,5,True +rhythm,"['r', '_', '_', 't', '_', '_']","['e', 's', 'a', 'i', 'd', 'o', 'u', 'n', 'l', 'c']",2,0,False +explodes,"['e', 'x', 'p', 'l', 'o', 'd', 'e', 's']","['n', 'i', 't', 'a', 'r']",8,5,True +padlocks,"['p', 'a', 'd', 'l', 'o', 'c', 'k', 's']","['e', 'r', 'n', 't', 'i', 'f']",8,4,True +elections,"['e', 'l', 'e', 'c', 't', 'i', 'o', 'n', 's']",[],9,10,True +frenetically,"['f', 'r', 'e', 'n', 'e', 't', 'i', 'c', 'a', 'l', 'l', 'y']",[],12,10,True +collegian,"['c', 'o', 'l', 'l', 'e', 'g', 'i', 'a', 'n']","['s', 'r', 'm', 't']",9,6,True +civilisation,"['c', 'i', 'v', 'i', 'l', 'i', 's', 'a', 't', 'i', 'o', 'n']","['e', 'm', 'g']",12,7,True +perturbed,"['p', 'e', 'r', 't', 'u', 'r', 'b', 'e', 'd']",[],9,10,True +deducible,"['d', 'e', 'd', 'u', 'c', 'i', 'b', 'l', 'e']","['r', 'a', 't', 'n']",9,6,True +intergalactic,"['i', 'n', 't', 'e', 'r', 'g', 'a', 'l', 'a', 'c', 't', 'i', 'c']",[],13,10,True +solenoids,"['s', 'o', 'l', 'e', 'n', 'o', 'i', 'd', 's']",['r'],9,9,True +pleasures,"['p', 'l', 'e', 'a', 's', 'u', 'r', 'e', 's']",[],9,10,True +hauls,"['h', 'a', 'u', 'l', 's']","['e', 'i', 'w', 'm', 'p']",5,5,True +beefburger,"['b', 'e', 'e', 'f', 'b', 'u', 'r', 'g', 'e', 'r']",[],10,10,True +mizzenmasts,"['m', 'i', 'z', 'z', 'e', 'n', 'm', 'a', 's', 't', 's']",['r'],11,9,True +undergo,"['u', 'n', 'd', 'e', 'r', 'g', 'o']",['s'],7,9,True +fronted,"['f', 'r', 'o', 'n', 't', 'e', 'd']",['s'],7,9,True +firewalls,"['f', 'i', 'r', 'e', 'w', 'a', 'l', 'l', 's']",['o'],9,9,True +gangly,"['g', 'a', 'n', 'g', 'l', 'y']","['e', 's', 'r', 'd', 'c', 't']",6,4,True +guerrilla,"['g', 'u', 'e', 'r', 'r', 'i', 'l', 'l', 'a']","['s', 'o', 'v']",9,7,True +ignorantly,"['i', 'g', 'n', 'o', 'r', 'a', 'n', 't', 'l', 'y']",['e'],10,9,True +tubeless,"['t', 'u', 'b', 'e', 'l', 'e', 's', 's']",['n'],8,9,True +patrolled,"['p', 'a', 't', 'r', 'o', 'l', 'l', 'e', 'd']",['s'],9,9,True +romanticists,"['r', 'o', 'm', 'a', 'n', 't', 'i', 'c', 'i', 's', 't', 's']",['e'],12,9,True +saprophyte,"['s', 'a', 'p', 'r', 'o', 'p', 'h', 'y', 't', 'e']","['i', 'm']",10,8,True +deepest,"['d', 'e', 'e', 'p', 'e', 's', 't']","['k', 'm', 'n']",7,7,True +fatigues,"['f', 'a', 't', 'i', 'g', 'u', 'e', 's']",[],8,10,True +geegaw,"['g', 'e', 'e', 'g', 'a', 'w']","['d', 'r', 'p', 'l', 's', 'n']",6,4,True +defenses,"['d', 'e', 'f', 'e', 'n', 's', 'e', 's']",[],8,10,True +cookery,"['c', 'o', 'o', 'k', 'e', 'r', 'y']","['s', 't', 'a']",7,7,True +deprogram,"['d', 'e', 'p', 'r', 'o', 'g', 'r', 'a', 'm']",[],9,10,True +insert,"['i', 'n', 's', 'e', 'r', 't']",['u'],6,9,True +caduceus,"['c', 'a', 'd', 'u', 'c', 'e', 'u', 's']","['r', 't', 'n', 'l']",8,6,True +highways,"['h', 'i', 'g', 'h', 'w', 'a', 'y', 's']","['e', 'r', 'l', 't', 'd', 'm', 'n']",8,3,True +hassock,"['h', 'a', 's', 's', 'o', 'c', 'k']","['e', 'i', 'l', 'g']",7,6,True +aureolas,"['a', 'u', 'r', 'e', 'o', 'l', 'a', 's']",[],8,10,True +yellowing,"['y', 'e', 'l', 'l', 'o', 'w', 'i', 'n', 'g']","['r', 's', 't', 'd', 'm']",9,5,True +magnification,"['m', 'a', 'g', 'n', 'i', 'f', 'i', 'c', 'a', 't', 'i', 'o', 'n']",[],13,10,True +fold,"['f', 'o', 'l', 'd']","['e', 's', 'a', 't', 'g', 'm']",4,4,True +compositions,"['c', 'o', 'm', 'p', 'o', 's', 'i', 't', 'i', 'o', 'n', 's']",['e'],12,9,True +blouses,"['b', 'l', 'o', 'u', 's', 'e', 's']","['r', 'g']",7,8,True +grackle,"['g', 'r', 'a', 'c', 'k', 'l', 'e']","['p', 'n']",7,8,True +sojourn,"['s', 'o', 'j', 'o', 'u', 'r', 'n']","['e', 'a', 'i']",7,7,True +mile,"['m', 'i', 'l', 'e']","['a', 'o', 't']",4,7,True +sexpot,"['s', 'e', 'x', 'p', 'o', 't']","['r', 'd']",6,8,True +lowered,"['l', 'o', 'w', 'e', 'r', 'e', 'd']",['t'],7,9,True +oriole,"['o', 'r', 'i', 'o', 'l', 'e']","['b', 'a', 't']",6,7,True +auk,"['a', '_', '_']","['e', 'd', 't', 'l', 'r', 'i', 'n', 'p', 's', 'm']",1,0,False +collided,"['c', 'o', 'l', 'l', 'i', 'd', 'e', 'd']","['s', 'r', 'n', 'a', 'u']",8,5,True +stopover,"['s', 't', 'o', 'p', 'o', 'v', 'e', 'r']",['i'],8,9,True +dioramas,"['d', 'i', 'o', 'r', 'a', 'm', 'a', 's']",['e'],8,9,True +spoiled,"['s', 'p', 'o', 'i', 'l', 'e', 'd']","['r', 't', 'a', 'n']",7,6,True +semblance,"['s', 'e', 'm', 'b', 'l', 'a', 'n', 'c', 'e']","['r', 't']",9,8,True +rattlers,"['r', 'a', 't', 't', 'l', 'e', 'r', 's']",[],8,10,True +brainiest,"['b', 'r', 'a', 'i', 'n', 'i', 'e', 's', 't']",['g'],9,9,True +gripes,"['g', 'r', 'i', 'p', 'e', 's']","['d', 'a']",6,8,True +splicer,"['s', 'p', 'l', 'i', 'c', 'e', 'r']",['o'],7,9,True +westerly,"['w', 'e', 's', 't', 'e', 'r', 'l', 'y']","['d', 'n']",8,8,True +unfits,"['u', 'n', 'f', 'i', 't', 's']","['e', 'a', 'r', 'o', 'm', 'p']",6,4,True +chorusing,"['c', 'h', 'o', 'r', 'u', 's', 'i', 'n', 'g']","['e', 'p']",9,8,True +berthed,"['b', 'e', 'r', 't', 'h', 'e', 'd']",['i'],7,9,True +healed,"['h', 'e', 'a', 'l', 'e', 'd']",['p'],6,9,True +amplest,"['a', 'm', 'p', 'l', 'e', 's', 't']","['i', 'r', 'h', 'c']",7,6,True +hesitates,"['h', 'e', 's', 'i', 't', 'a', 't', 'e', 's']","['r', 'd']",9,8,True +beached,"['b', 'e', 'a', 'c', 'h', 'e', 'd']","['r', 't', 'l', 'i']",7,6,True +respiration,"['r', 'e', 's', 'p', 'i', 'r', 'a', 't', 'i', 'o', 'n']",[],11,10,True +lowland,"['l', 'o', 'w', 'l', 'a', 'n', 'd']","['e', 's', 'i', 'r', 't', 'm']",7,4,True +mails,"['m', 'a', 'i', 'l', 's']","['e', 't']",5,8,True +infiltrators,"['i', 'n', 'f', 'i', 'l', 't', 'r', 'a', 't', 'o', 'r', 's']",['e'],12,9,True +pelts,"['p', 'e', 'l', 't', 's']","['n', 'f', 'm', 'w']",5,6,True +owe,"['o', 'w', 'e']",['a'],3,9,True +aquaplanes,"['a', 'q', 'u', 'a', 'p', 'l', 'a', 'n', 'e', 's']",['i'],10,9,True +tradesmen,"['t', 'r', 'a', 'd', 'e', 's', 'm', 'e', 'n']",[],9,10,True +copious,"['c', 'o', 'p', 'i', 'o', 'u', 's']","['e', 'r', 'a', 'n', 't']",7,5,True +prowled,"['p', 'r', 'o', 'w', 'l', 'e', 'd']","['s', 't', 'g', 'f']",7,6,True +competencies,"['c', 'o', 'm', 'p', 'e', 't', 'e', 'n', 'c', 'i', 'e', 's']",['r'],12,9,True +flash,"['f', 'l', 'a', 's', 'h']",['e'],5,9,True +blurting,"['b', 'l', 'u', 'r', 't', 'i', 'n', 'g']","['e', 's', 'a', 'o', 'f']",8,5,True +animated,"['a', 'n', 'i', 'm', 'a', 't', 'e', 'd']","['s', 'r', 'u', 'g']",8,6,True +suppurating,"['s', 'u', 'p', 'p', 'u', 'r', 'a', 't', 'i', 'n', 'g']","['e', 'o']",11,8,True +plateful,"['p', 'l', 'a', 't', 'e', 'f', 'u', 'l']","['r', 's', 'd', 'n']",8,6,True +tethered,"['t', 'e', 't', 'h', 'e', 'r', 'e', 'd']",[],8,10,True +approximates,"['a', 'p', 'p', 'r', 'o', 'x', 'i', 'm', 'a', 't', 'e', 's']","['g', 'n']",12,8,True +reclines,"['r', 'e', 'c', 'l', 'i', 'n', 'e', 's']","['d', 't', 'p']",8,7,True +laypersons,"['l', 'a', 'y', 'p', 'e', 'r', 's', 'o', 'n', 's']",[],10,10,True +captaincies,"['c', 'a', 'p', 't', 'a', 'i', 'n', 'c', 'i', 'e', 's']",[],11,10,True +heralding,"['h', 'e', 'r', 'a', 'l', 'd', 'i', 'n', 'g']",['s'],9,9,True +hammer,"['h', 'a', 'm', 'm', 'e', 'r']","['d', 't', 'n', 'l', 'i', 'y']",6,4,True +derbies,"['d', 'e', 'r', 'b', 'i', 'e', 's']",[],7,10,True +transportable,"['t', 'r', 'a', 'n', 's', 'p', 'o', 'r', 't', 'a', 'b', 'l', 'e']",['i'],13,9,True +navy,"['n', 'a', 'v', 'y']","['e', 's', 'l', 't', 'r']",4,5,True +generous,"['g', 'e', 'n', 'e', 'r', 'o', 'u', 's']",['v'],8,9,True +cosmonauts,"['c', 'o', 's', 'm', 'o', 'n', 'a', 'u', 't', 's']","['e', 'i']",10,8,True +swarming,"['s', 'w', 'a', 'r', 'm', 'i', 'n', 'g']","['e', 't', 'p', 'l']",8,6,True +punch,"['_', 'u', 'n', 'c', 'h']","['s', 'e', 'a', 'r', 'o', 'l', 't', 'i', 'd', 'm']",4,0,False +refinery,"['r', 'e', 'f', 'i', 'n', 'e', 'r', 'y']",['s'],8,9,True +ineluctably,"['i', 'n', 'e', 'l', 'u', 'c', 't', 'a', 'b', 'l', 'y']","['r', 's']",11,8,True +wallflowers,"['w', 'a', 'l', 'l', 'f', 'l', 'o', 'w', 'e', 'r', 's']",[],11,10,True +ducal,"['d', 'u', 'c', 'a', 'l']","['s', 'e', 'o', 'r', 't', 'n', 'p', 'i']",5,2,True +physician,"['p', 'h', 'y', 's', 'i', 'c', 'i', 'a', 'n']","['e', 'f', 't']",9,7,True +luckily,"['l', 'u', 'c', 'k', 'i', 'l', 'y']","['e', 's', 'n', 'g', 'r', 'a', 't']",7,3,True +voids,"['_', 'o', '_', 'd', 's']","['e', 'a', 'l', 'r', 't', 'g', 'f', 'c', 'm', 'w']",3,0,False +flops,"['f', 'l', 'o', 'p', 's']","['e', 'a']",5,8,True +medically,"['m', 'e', 'd', 'i', 'c', 'a', 'l', 'l', 'y']","['r', 's', 't']",9,7,True +gauntlet,"['g', 'a', 'u', 'n', 't', 'l', 'e', 't']","['s', 'r', 'd', 'i']",8,6,True +championship,"['c', 'h', 'a', 'm', 'p', 'i', 'o', 'n', 's', 'h', 'i', 'p']",['e'],12,9,True +philosophies,"['p', 'h', 'i', 'l', 'o', 's', 'o', 'p', 'h', 'i', 'e', 's']",[],12,10,True +lamest,"['l', 'a', 'm', 'e', 's', 't']","['r', 'i', 'x']",6,7,True +relationships,"['r', 'e', 'l', 'a', 't', 'i', 'o', 'n', 's', 'h', 'i', 'p', 's']",[],13,10,True +sanserif,"['s', 'a', 'n', 's', 'e', 'r', 'i', 'f']","['d', 't']",8,8,True +thuds,"['t', 'h', 'u', 'd', 's']","['e', 'a', 'o', 'l', 'r', 'i', 'g']",5,3,True +here,"['h', 'e', 'r', 'e']","['m', 'w']",4,8,True +blacken,"['b', 'l', 'a', 'c', 'k', 'e', 'n']","['s', 'r', 'd', 'i', 't', 'p']",7,4,True +maxilla,"['m', 'a', 'x', 'i', 'l', 'l', 'a']","['e', 's', 'p']",7,7,True +recompiled,"['r', 'e', 'c', 'o', 'm', 'p', 'i', 'l', 'e', 'd']","['s', 'n']",10,8,True +misinforming,"['m', 'i', 's', 'i', 'n', 'f', 'o', 'r', 'm', 'i', 'n', 'g']","['e', 'd']",12,8,True +ducting,"['d', 'u', 'c', 't', 'i', 'n', 'g']","['e', 's', 'a', 'l', 'o', 'r', 'b', 'p', 'h']",7,1,True +pimiento,"['p', 'i', 'm', 'i', 'e', 'n', 't', 'o']","['r', 's']",8,8,True +spoofs,"['s', 'p', 'o', 'o', 'f', 's']","['e', 'a', 't', 'r', 'l']",6,5,True +vigorously,"['v', 'i', 'g', 'o', 'r', 'o', 'u', 's', 'l', 'y']",['e'],10,9,True +blanching,"['b', 'l', 'a', 'n', 'c', 'h', 'i', 'n', 'g']","['e', 's']",9,8,True +graceless,"['g', 'r', 'a', 'c', 'e', 'l', 'e', 's', 's']","['t', 'm', 'h']",9,7,True +excision,"['e', 'x', 'c', 'i', 's', 'i', 'o', 'n']",[],8,10,True +prickle,"['p', 'r', 'i', 'c', 'k', 'l', 'e']","['a', 't', 'b', 'g']",7,6,True +litterbugs,"['l', 'i', 't', 't', 'e', 'r', 'b', 'u', 'g', 's']",['n'],10,9,True +tourist,"['t', 'o', 'u', 'r', 'i', 's', 't']",['e'],7,9,True +porch,"['p', 'o', 'r', 'c', 'h']","['s', 'e', 'a', 't', 'd', 'f', 'm', 'y']",5,2,True +heartsick,"['h', 'e', 'a', 'r', 't', 's', 'i', 'c', 'k']",[],9,10,True +dieted,"['d', 'i', 'e', 't', 'e', 'd']",[],6,10,True +minoring,"['m', 'i', 'n', 'o', 'r', 'i', 'n', 'g']","['e', 's', 'l', 'c', 't']",8,5,True +roominess,"['r', 'o', 'o', 'm', 'i', 'n', 'e', 's', 's']",['a'],9,9,True +swarm,"['s', 'w', 'a', 'r', 'm']","['e', 't', 'l', 'h', 'p', 'n', 'c', 'k']",5,2,True +palette,"['p', 'a', 'l', 'e', 't', 't', 'e']","['n', 's', 'r', 'i']",7,6,True +rotted,"['r', 'o', 't', 't', 'e', 'd']","['a', 'l', 'p']",6,7,True +proofread,"['p', 'r', 'o', 'o', 'f', 'r', 'e', 'a', 'd']","['s', 't']",9,8,True +proceedings,"['p', 'r', 'o', 'c', 'e', 'e', 'd', 'i', 'n', 'g', 's']","['f', 'b']",11,8,True +goofing,"['g', 'o', 'o', 'f', 'i', 'n', 'g']","['e', 's', 'a', 'l', 'r']",7,5,True +jamb,"['j', 'a', 'm', 'b']","['e', 's', 'l', 't', 'r', 'n', 'p', 'd', 'i']",4,1,True +insupportable,"['i', 'n', 's', 'u', 'p', 'p', 'o', 'r', 't', 'a', 'b', 'l', 'e']",[],13,10,True +shotguns,"['s', 'h', 'o', 't', 'g', 'u', 'n', 's']","['e', 'r', 'a', 'i']",8,6,True +fossilise,"['f', 'o', 's', 's', 'i', 'l', 'i', 's', 'e']",['a'],9,9,True +byword,"['b', 'y', 'w', 'o', 'r', 'd']","['e', 's', 'a', 't', 'm', 'n', 'f', 'c']",6,2,True +froze,"['_', 'r', 'o', '_', 'e']","['s', 'a', 'i', 'p', 't', 'n', 'd', 'v', 'g', 'k']",3,0,False +weakly,"['w', 'e', 'a', 'k', 'l', 'y']","['r', 'd', 's', 't', 'n', 'm']",6,4,True +polymaths,"['p', 'o', 'l', 'y', 'm', 'a', 't', 'h', 's']","['e', 'i', 'g']",9,7,True +larynges,"['l', 'a', 'r', 'y', 'n', 'g', 'e', 's']","['i', 'o', 't', 'x']",8,6,True +archway,"['a', 'r', 'c', 'h', 'w', 'a', 'y']","['e', 's', 'i', 'l', 'n', 't', 'm']",7,3,True +manifesto,"['m', 'a', 'n', 'i', 'f', 'e', 's', 't', 'o']",['r'],9,9,True +ant,"['a', 'n', 't']","['e', 'd', 'f']",3,7,True +syllabifying,"['s', 'y', 'l', 'l', 'a', 'b', 'i', 'f', 'y', 'i', 'n', 'g']","['e', 't', 'r']",12,7,True +fagging,"['f', 'a', 'g', 'g', 'i', 'n', 'g']","['e', 's', 't']",7,7,True +masterpiece,"['m', 'a', 's', 't', 'e', 'r', 'p', 'i', 'e', 'c', 'e']","['n', 'l']",11,8,True +drizzly,"['d', 'r', 'i', 'z', 'z', 'l', 'y']","['e', 's', 't']",7,7,True +streetwalker,"['s', 't', 'r', 'e', 'e', 't', 'w', 'a', 'l', 'k', 'e', 'r']",[],12,10,True +hunted,"['h', 'u', 'n', 't', 'e', 'd']","['a', 'o', 'l', 'r', 's', 'i', 'p']",6,3,True +moratoria,"['m', 'o', 'r', 'a', 't', 'o', 'r', 'i', 'a']","['e', 's']",9,8,True +embedding,"['e', 'm', 'b', 'e', 'd', 'd', 'i', 'n', 'g']",['x'],9,9,True +flounder,"['f', 'l', 'o', 'u', 'n', 'd', 'e', 'r']","['s', 'i', 't', 'p']",8,6,True +bookmobile,"['b', 'o', 'o', 'k', 'm', 'o', 'b', 'i', 'l', 'e']","['a', 's', 't', 'r', 'n', 'v']",10,4,True +proffers,"['p', 'r', 'o', 'f', 'f', 'e', 'r', 's']",['t'],8,9,True +wretch,"['w', 'r', 'e', 't', 'c', 'h']","['s', 'a', 'n']",6,7,True +agitated,"['a', 'g', 'i', 't', 'a', 't', 'e', 'd']","['s', 'r']",8,8,True +abutments,"['a', 'b', 'u', 't', 'm', 'e', 'n', 't', 's']","['r', 'o']",9,8,True +snuffling,"['s', 'n', 'u', 'f', 'f', 'l', 'i', 'n', 'g']",['e'],9,9,True +unfamiliar,"['u', 'n', 'f', 'a', 'm', 'i', 'l', 'i', 'a', 'r']","['e', 't', 'g', 's']",10,6,True +windstorm,"['w', 'i', 'n', 'd', 's', 't', 'o', 'r', 'm']",['e'],9,9,True +revere,"['r', 'e', 'v', 'e', 'r', 'e']",[],6,10,True +courtesies,"['c', 'o', 'u', 'r', 't', 'e', 's', 'i', 'e', 's']",[],10,10,True +concatenates,"['c', 'o', 'n', 'c', 'a', 't', 'e', 'n', 'a', 't', 'e', 's']","['r', 'i']",12,8,True +snuff,"['s', 'n', 'u', 'f', 'f']","['e', 'a', 't', 'l', 'o', 'i', 'r', 'p']",5,2,True +vapidity,"['v', 'a', 'p', 'i', 'd', 'i', 't', 'y']","['e', 's', 'n', 'l', 'u', 'r']",8,4,True +wailing,"['w', 'a', 'i', 'l', 'i', 'n', 'g']","['e', 's', 't', 'm', 'f']",7,5,True +awards,"['a', 'w', 'a', 'r', 'd', 's']","['e', 't', 'k']",6,7,True +premiss,"['p', 'r', 'e', 'm', 'i', 's', 's']",['t'],7,9,True +cookeries,"['c', 'o', 'o', 'k', 'e', 'r', 'i', 'e', 's']",[],9,10,True +cancerous,"['c', 'a', 'n', 'c', 'e', 'r', 'o', 'u', 's']",['i'],9,9,True +plod,"['p', 'l', 'o', 'd']","['e', 's', 'a', 't', 'y']",4,5,True +paperboy,"['p', 'a', 'p', 'e', 'r', 'b', 'o', 'y']","['s', 'i', 'n', 't', 'g', 'w', 'l']",8,3,True +addles,"['a', 'd', 'd', 'l', 'e', 's']",[],6,10,True +pictorially,"['p', 'i', 'c', 't', 'o', 'r', 'i', 'a', 'l', 'l', 'y']","['e', 's', 'n']",11,7,True +dieters,"['d', 'i', 'e', 't', 'e', 'r', 's']","['w', 'p', 'f']",7,7,True +gleam,"['g', 'l', 'e', 'a', 'm']","['s', 'r', 't', 'p', 'c']",5,5,True +forgathers,"['f', 'o', 'r', 'g', 'a', 't', 'h', 'e', 'r', 's']",[],10,10,True +gables,"['g', 'a', 'b', 'l', 'e', 's']","['d', 'r', 't']",6,7,True +hollowest,"['h', 'o', 'l', 'l', 'o', 'w', 'e', 's', 't']","['i', 'r']",9,8,True +raiment,"['r', 'a', 'i', 'm', 'e', 'n', 't']",['s'],7,9,True +phasing,"['p', 'h', 'a', 's', 'i', 'n', 'g']",['e'],7,9,True +inextinguishable,"['i', 'n', 'e', 'x', 't', 'i', 'n', 'g', 'u', 'i', 's', 'h', 'a', 'b', 'l', 'e']",[],16,10,True +pooled,"['p', 'o', 'o', 'l', 'e', 'd']","['a', 't', 'f']",6,7,True +invigoration,"['i', 'n', 'v', 'i', 'g', 'o', 'r', 'a', 't', 'i', 'o', 'n']",['e'],12,9,True +unobjectionable,"['u', 'n', 'o', 'b', 'j', 'e', 'c', 't', 'i', 'o', 'n', 'a', 'b', 'l', 'e']",[],15,10,True +leaflets,"['l', 'e', 'a', 'f', 'l', 'e', 't', 's']",['r'],8,9,True +costumed,"['c', 'o', 's', 't', 'u', 'm', 'e', 'd']","['r', 'a']",8,8,True +unblocked,"['u', 'n', 'b', 'l', 'o', 'c', 'k', 'e', 'd']","['s', 'r', 't', 'a', 'i', 'p']",9,4,True +edged,"['e', 'd', 'g', 'e', 'd']",['s'],5,9,True +minute,"['m', 'i', 'n', 'u', 't', 'e']","['l', 'a', 'd', 'p', 'f']",6,5,True +illusions,"['i', 'l', 'l', 'u', 's', 'i', 'o', 'n', 's']",['e'],9,9,True +racquets,"['r', 'a', 'c', 'q', 'u', 'e', 't', 's']",['l'],8,9,True +detest,"['d', 'e', 't', 'e', 's', 't']",['r'],6,9,True +emboldening,"['e', 'm', 'b', 'o', 'l', 'd', 'e', 'n', 'i', 'n', 'g']",[],11,10,True +auricle,"['a', 'u', 'r', 'i', 'c', 'l', 'e']","['t', 'g']",7,8,True +behemoth,"['b', 'e', 'h', 'e', 'm', 'o', 't', 'h']","['r', 'd', 's', 'i', 'a', 'y']",8,4,True +mushiness,"['m', 'u', 's', 'h', 'i', 'n', 'e', 's', 's']",['t'],9,9,True +jousting,"['j', 'o', 'u', 's', 't', 'i', 'n', 'g']","['e', 'a', 'r', 'b', 'f', 'w']",8,4,True +slavery,"['s', 'l', 'a', 'v', 'e', 'r', 'y']",['i'],7,9,True +premeditated,"['p', 'r', 'e', 'm', 'e', 'd', 'i', 't', 'a', 't', 'e', 'd']",[],12,10,True +virtuosos,"['v', 'i', 'r', 't', 'u', 'o', 's', 'o', 's']",['e'],9,9,True +cubed,"['_', '_', '_', 'e', 'd']","['s', 'a', 'o', 'i', 'r', 't', 'p', 'l', 'w', 'm']",2,0,False +circularity,"['c', 'i', 'r', 'c', 'u', 'l', 'a', 'r', 'i', 't', 'y']","['e', 'n', 's', 'g']",11,6,True +gibe,"['_', 'i', '_', 'e']","['a', 'o', 'l', 'r', 't', 'n', 'd', 'm', 'v', 'f']",2,0,False +commissions,"['c', 'o', 'm', 'm', 'i', 's', 's', 'i', 'o', 'n', 's']",['e'],11,9,True +troy,"['t', 'r', 'o', 'y']","['e', 's', 'a', 'l', 'p']",4,5,True +ill,"['i', 'l', 'l']","['a', 'e', 'o', 'n', 's', 'k']",3,4,True +kilohertzes,"['k', 'i', 'l', 'o', 'h', 'e', 'r', 't', 'z', 'e', 's']","['a', 'g', 'm']",11,7,True +correlate,"['c', 'o', 'r', 'r', 'e', 'l', 'a', 't', 'e']",[],9,10,True +legislate,"['l', 'e', 'g', 'i', 's', 'l', 'a', 't', 'e']","['r', 'd']",9,8,True +neurotransmitter,"['n', 'e', 'u', 'r', 'o', 't', 'r', 'a', 'n', 's', 'm', 'i', 't', 't', 'e', 'r']",[],16,10,True +trendy,"['t', 'r', 'e', 'n', 'd', 'y']","['s', 'a', 'c']",6,7,True +flicks,"['f', 'l', 'i', 'c', 'k', 's']","['e', 'a', 'r', 'o', 'n']",6,5,True +toastmasters,"['t', 'o', 'a', 's', 't', 'm', 'a', 's', 't', 'e', 'r', 's']",[],12,10,True +phoebe,"['p', 'h', 'o', 'e', 'b', 'e']","['r', 'c', 't', 'w']",6,6,True +timid,"['t', 'i', 'm', 'i', 'd']","['s', 'e', 'a', 'r', 'o', 'l']",5,4,True +brunch,"['b', 'r', 'u', 'n', 'c', 'h']","['e', 's', 'a', 't', 'o', 'i', 'd']",6,3,True +glowers,"['g', 'l', 'o', 'w', 'e', 'r', 's']","['t', 'a']",7,8,True +underclothing,"['u', 'n', 'd', 'e', 'r', 'c', 'l', 'o', 't', 'h', 'i', 'n', 'g']",[],13,10,True +surveys,"['s', 'u', 'r', 'v', 'e', 'y', 's']","['t', 'o']",7,8,True +dealings,"['d', 'e', 'a', 'l', 'i', 'n', 'g', 's']","['r', 't', 'f', 'p']",8,6,True +belongs,"['b', 'e', 'l', 'o', 'n', 'g', 's']","['r', 't', 'd', 'a', 'w', 'i']",7,4,True +chuckhole,"['c', 'h', 'u', 'c', 'k', 'h', 'o', 'l', 'e']","['a', 'i', 't', 'r', 's', 'n']",9,4,True +interment,"['i', 'n', 't', 'e', 'r', 'm', 'e', 'n', 't']",['s'],9,9,True +resulting,"['r', 'e', 's', 'u', 'l', 't', 'i', 'n', 'g']",['o'],9,9,True +supercharged,"['s', 'u', 'p', 'e', 'r', 'c', 'h', 'a', 'r', 'g', 'e', 'd']",[],12,10,True +moused,"['m', 'o', 'u', 's', 'e', 'd']","['a', 'l', 't', 'r', 'b', 'p']",6,4,True +obsessively,"['o', 'b', 's', 'e', 's', 's', 'i', 'v', 'e', 'l', 'y']",[],11,10,True +hugging,"['h', 'u', 'g', 'g', 'i', 'n', 'g']","['e', 's', 'a', 'o', 't', 'm', 'l']",7,3,True +zanier,"['_', 'a', 'n', '_', 'e', 'r']","['d', 't', 'k', 'c', 'g', 'l', 'b', 'm', 'w', 'p']",4,0,False +pedant,"['p', 'e', 'd', 'a', 'n', 't']","['r', 's']",6,8,True +shearer,"['s', 'h', 'e', 'a', 'r', 'e', 'r']",[],7,10,True +malignantly,"['m', 'a', 'l', 'i', 'g', 'n', 'a', 'n', 't', 'l', 'y']","['e', 's']",11,8,True +minuter,"['m', 'i', 'n', 'u', 't', 'e', 'r']","['s', 'g', 'h']",7,7,True +interesting,"['i', 'n', 't', 'e', 'r', 'e', 's', 't', 'i', 'n', 'g']",[],11,10,True +sheer,"['s', 'h', 'e', 'e', 'r']","['t', 'p', 'l', 'n']",5,6,True +snooper,"['s', 'n', 'o', 'o', 'p', 'e', 'r']","['i', 't', 'a', 'l']",7,6,True +woofer,"['_', 'o', 'o', '_', 'e', 'r']","['d', 'a', 'i', 't', 'l', 'c', 'g', 'k', 'p', 'h']",4,0,False +muffler,"['m', 'u', 'f', 'f', 'l', 'e', 'r']","['s', 'i', 't', 'a', 'b']",7,5,True +snobbery,"['s', 'n', 'o', 'b', 'b', 'e', 'r', 'y']","['t', 'p', 'a', 'l', 'i', 'f']",8,4,True +difficulty,"['d', 'i', 'f', 'f', 'i', 'c', 'u', 'l', 't', 'y']","['e', 's']",10,8,True +speedier,"['s', 'p', 'e', 'e', 'd', 'i', 'e', 'r']","['l', 't']",8,8,True +twister,"['t', 'w', 'i', 's', 't', 'e', 'r']",[],7,10,True +cyclists,"['c', 'y', 'c', 'l', 'i', 's', 't', 's']",['e'],8,9,True +bandstand,"['b', 'a', 'n', 'd', 's', 't', 'a', 'n', 'd']","['e', 'i', 'o', 'h']",9,6,True +tired,"['t', 'i', 'r', 'e', 'd']","['s', 'a', 'o', 'l', 'm']",5,5,True +immigrates,"['i', 'm', 'm', 'i', 'g', 'r', 'a', 't', 'e', 's']",['n'],10,9,True +righteously,"['r', 'i', 'g', 'h', 't', 'e', 'o', 'u', 's', 'l', 'y']",['n'],11,9,True +reallocates,"['r', 'e', 'a', 'l', 'l', 'o', 'c', 'a', 't', 'e', 's']",[],11,10,True +unprepared,"['u', 'n', 'p', 'r', 'e', 'p', 'a', 'r', 'e', 'd']",['s'],10,9,True +denouncement,"['d', 'e', 'n', 'o', 'u', 'n', 'c', 'e', 'm', 'e', 'n', 't']",['s'],12,9,True +elderberry,"['e', 'l', 'd', 'e', 'r', 'b', 'e', 'r', 'r', 'y']",['n'],10,9,True +biped,"['_', 'i', 'p', 'e', 'd']","['s', 'a', 'o', 'l', 'm', 'r', 't', 'n', 'k', 'w']",4,0,False +deadest,"['d', 'e', 'a', 'd', 'e', 's', 't']",[],7,10,True +cattiest,"['c', 'a', 't', 't', 'i', 'e', 's', 't']","['f', 'n', 'r', 'b']",8,6,True +scherzo,"['s', 'c', 'h', 'e', 'r', 'z', 'o']",[],7,10,True +internecine,"['i', 'n', 't', 'e', 'r', 'n', 'e', 'c', 'i', 'n', 'e']",[],11,10,True +algorithms,"['a', 'l', 'g', 'o', 'r', 'i', 't', 'h', 'm', 's']",['e'],10,9,True +become,"['b', 'e', 'c', 'o', 'm', 'e']","['r', 'd', 't', 'l', 's', 'a', 'i', 'n', 'g']",6,1,True +ring,"['_', 'i', 'n', 'g']","['e', 's', 'a', 'o', 'l', 't', 'k', 'd', 'w', 'p']",3,0,False +dissembled,"['d', 'i', 's', 's', 'e', 'm', 'b', 'l', 'e', 'd']",[],10,10,True +perceivable,"['p', 'e', 'r', 'c', 'e', 'i', 'v', 'a', 'b', 'l', 'e']",[],11,10,True +garlicky,"['g', 'a', 'r', 'l', 'i', 'c', 'k', 'y']","['e', 's', 't', 'n', 'o']",8,5,True +incompleteness,"['i', 'n', 'c', 'o', 'm', 'p', 'l', 'e', 't', 'e', 'n', 'e', 's', 's']",[],14,10,True +mangos,"['m', 'a', 'n', 'g', 'o', 's']","['e', 'r', 't', 'l', 'c', 'i']",6,4,True +exhaling,"['e', 'x', 'h', 'a', 'l', 'i', 'n', 'g']","['s', 't', 'c', 'f']",8,6,True +thermoses,"['t', 'h', 'e', 'r', 'm', 'o', 's', 'e', 's']",[],9,10,True +reconnaissance,"['r', 'e', 'c', 'o', 'n', 'n', 'a', 'i', 's', 's', 'a', 'n', 'c', 'e']",[],14,10,True +obeying,"['_', '_', 'e', '_', 'i', 'n', 'g']","['r', 's', 't', 'd', 'l', 'a', 'p', 'w', 'k', 'f']",4,0,False +atriums,"['a', 't', 'r', 'i', 'u', 'm', 's']",['e'],7,9,True +contend,"['c', 'o', 'n', 't', 'e', 'n', 'd']","['s', 'r', 'a']",7,7,True +conciliators,"['c', 'o', 'n', 'c', 'i', 'l', 'i', 'a', 't', 'o', 'r', 's']","['e', 'y']",12,8,True +enlargers,"['e', 'n', 'l', 'a', 'r', 'g', 'e', 'r', 's']",['o'],9,9,True +unknowns,"['u', 'n', 'k', 'n', 'o', 'w', 'n', 's']","['e', 'r', 'a', 'i', 't']",8,5,True +reopening,"['r', 'e', 'o', 'p', 'e', 'n', 'i', 'n', 'g']","['s', 'd', 't']",9,7,True +tier,"['t', 'i', 'e', 'r']","['s', 'd', 'v']",4,7,True +microbiologist,"['m', 'i', 'c', 'r', 'o', 'b', 'i', 'o', 'l', 'o', 'g', 'i', 's', 't']",[],14,10,True +explained,"['e', 'x', 'p', 'l', 'a', 'i', 'n', 'e', 'd']","['s', 'r', 'h']",9,7,True +inventorying,"['i', 'n', 'v', 'e', 'n', 't', 'o', 'r', 'y', 'i', 'n', 'g']",[],12,10,True +indiscretion,"['i', 'n', 'd', 'i', 's', 'c', 'r', 'e', 't', 'i', 'o', 'n']",[],12,10,True +housewarmings,"['h', 'o', 'u', 's', 'e', 'w', 'a', 'r', 'm', 'i', 'n', 'g', 's']",[],13,10,True +minus,"['m', 'i', 'n', 'u', 's']","['e', 'a', 'o', 'l', 'r', 't', 'k', 'd', 'g']",5,1,True +dillydallied,"['d', 'i', 'l', 'l', 'y', 'd', 'a', 'l', 'l', 'i', 'e', 'd']",['s'],12,9,True +postdate,"['p', 'o', 's', 't', 'd', 'a', 't', 'e']","['i', 'r']",8,8,True +sad,"['_', 'a', 'd']","['t', 'p', 'g', 'r', 'm', 'w', 'y', 'f', 'l', 'h']",2,0,False +sconces,"['s', 'c', 'o', 'n', 'c', 'e', 's']","['i', 't', 'a', 'l', 'r', 'u']",7,4,True +partizan,"['p', 'a', 'r', 't', 'i', 'z', 'a', 'n']","['e', 's']",8,8,True +servos,"['s', 'e', 'r', 'v', 'o', 's']",[],6,10,True +swooned,"['s', 'w', 'o', 'o', 'n', 'e', 'd']","['r', 't', 'a', 'l', 'p']",7,5,True +tuned,"['t', 'u', 'n', 'e', 'd']","['s', 'a', 'o', 'i', 'r']",5,5,True +paroles,"['p', 'a', 'r', 'o', 'l', 'e', 's']","['i', 'b', 'd', 'g', 't', 'n', 'm', 'w']",7,2,True +texturing,"['t', 'e', 'x', 't', 'u', 'r', 'i', 'n', 'g']",[],9,10,True +comparable,"['c', 'o', 'm', 'p', 'a', 'r', 'a', 'b', 'l', 'e']",['n'],10,9,True +dalmatians,"['d', 'a', 'l', 'm', 'a', 't', 'i', 'a', 'n', 's']","['e', 'o']",10,8,True +cod,"['_', 'o', 'd']","['a', 'e', 't', 'b', 'w', 'p', 'n', 'g', 'm', 'h']",2,0,False +veterinaries,"['v', 'e', 't', 'e', 'r', 'i', 'n', 'a', 'r', 'i', 'e', 's']",[],12,10,True +modifiers,"['m', 'o', 'd', 'i', 'f', 'i', 'e', 'r', 's']",['p'],9,9,True +plush,"['p', 'l', 'u', 's', 'h']","['e', 'a', 'o', 't', 'r', 'f']",5,4,True +cribbage,"['c', 'r', 'i', 'b', 'b', 'a', 'g', 'e']",['t'],8,9,True +cribs,"['c', 'r', 'i', 'b', 's']","['e', 'a', 'o', 'l', 'g', 'p', 't', 'd']",5,2,True +clayey,"['c', 'l', 'a', 'y', 'e', 'y']","['d', 'r', 's', 'p', 't', 'f', 'b']",6,3,True +basking,"['b', 'a', 's', 'k', 'i', 'n', 'g']","['e', 't', 'h', 'p', 'm']",7,5,True +flaked,"['f', 'l', 'a', 'k', 'e', 'd']","['r', 's', 'm', 'w', 'y']",6,5,True +sauntering,"['s', 'a', 'u', 'n', 't', 'e', 'r', 'i', 'n', 'g']",[],10,10,True +beach,"['b', 'e', 'a', 'c', 'h']","['s', 'r', 't', 'l', 'p']",5,5,True +plushy,"['p', 'l', 'u', 's', 'h', 'y']","['e', 'a', 'o', 'r', 'd', 't', 'm']",6,3,True +deregulate,"['d', 'e', 'r', 'e', 'g', 'u', 'l', 'a', 't', 'e']",[],10,10,True +pestered,"['p', 'e', 's', 't', 'e', 'r', 'e', 'd']","['f', 'n', 'l']",8,7,True +interject,"['i', 'n', 't', 'e', 'r', 'j', 'e', 'c', 't']",['s'],9,9,True +diligence,"['d', 'i', 'l', 'i', 'g', 'e', 'n', 'c', 'e']",[],9,10,True +oaken,"['_', 'a', '_', 'e', '_']","['s', 'd', 'r', 'l', 't', 'g', 'p', 'c', 'm', 'w']",2,0,False +theoretically,"['t', 'h', 'e', 'o', 'r', 'e', 't', 'i', 'c', 'a', 'l', 'l', 'y']",[],13,10,True +turned,"['t', 'u', 'r', 'n', 'e', 'd']","['a', 'o', 'l', 'p', 's', 'b', 'f', 'c']",6,2,True +prim,"['p', 'r', 'i', 'm']","['e', 's', 'a', 'o', 'l', 't', 'g']",4,3,True +deducting,"['d', 'e', 'd', 'u', 'c', 't', 'i', 'n', 'g']","['r', 's']",9,8,True +kerb,"['k', 'e', 'r', 'b']","['s', 't', 'l', 'm', 'h']",4,5,True +pony,"['p', 'o', 'n', 'y']","['e', 's', 'a', 'l', 't', 'r', 'g', 'd', 'b']",4,1,True +familiarising,"['f', 'a', 'm', 'i', 'l', 'i', 'a', 'r', 'i', 's', 'i', 'n', 'g']",[],13,10,True +fiercer,"['f', 'i', 'e', 'r', 'c', 'e', 'r']",[],7,10,True +nobly,"['_', 'o', '_', 'l', 'y']","['s', 'e', 'a', 'r', 'd', 'g', 'w', 'h', 't', 'f']",3,0,False +bedbug,"['b', 'e', 'd', 'b', 'u', 'g']","['r', 'a', 'm', 's', 'l', 'c']",6,4,True +calling,"['c', 'a', 'l', 'l', 'i', 'n', 'g']","['e', 's', 'f', 'w', 'p', 'b']",7,4,True +taillights,"['t', 'a', 'i', 'l', 'l', 'i', 'g', 'h', 't', 's']","['e', 'n']",10,8,True +detest,"['d', 'e', 't', 'e', 's', 't']",['r'],6,9,True +signers,"['s', 'i', 'g', 'n', 'e', 'r', 's']",[],7,10,True +pumpkin,"['p', 'u', 'm', 'p', 'k', 'i', 'n']","['e', 's', 'a', 'c', 't', 'r', 'l']",7,3,True +orators,"['o', 'r', 'a', 't', 'o', 'r', 's']",['e'],7,9,True +preemptive,"['p', 'r', 'e', 'e', 'm', 'p', 't', 'i', 'v', 'e']",['s'],10,9,True +residency,"['r', 'e', 's', 'i', 'd', 'e', 'n', 'c', 'y']",[],9,10,True +unsophisticated,"['u', 'n', 's', 'o', 'p', 'h', 'i', 's', 't', 'i', 'c', 'a', 't', 'e', 'd']",[],15,10,True +hairdressers,"['h', 'a', 'i', 'r', 'd', 'r', 'e', 's', 's', 'e', 'r', 's']",[],12,10,True +sourly,"['s', 'o', 'u', 'r', 'l', 'y']","['e', 'a', 't']",6,7,True +geophysical,"['g', 'e', 'o', 'p', 'h', 'y', 's', 'i', 'c', 'a', 'l']",['r'],11,9,True +pulse,"['p', 'u', 'l', 's', 'e']","['o', 'a', 'r']",5,7,True +interrogations,"['i', 'n', 't', 'e', 'r', 'r', 'o', 'g', 'a', 't', 'i', 'o', 'n', 's']",[],14,10,True +altitudes,"['a', 'l', 't', 'i', 't', 'u', 'd', 'e', 's']",[],9,10,True +formidably,"['f', 'o', 'r', 'm', 'i', 'd', 'a', 'b', 'l', 'y']","['e', 's', 't', 'n', 'c']",10,5,True +heartthrobs,"['h', 'e', 'a', 'r', 't', 't', 'h', 'r', 'o', 'b', 's']",['i'],11,9,True +grounding,"['g', 'r', 'o', 'u', 'n', 'd', 'i', 'n', 'g']","['e', 's']",9,8,True +herbivore,"['h', 'e', 'r', 'b', 'i', 'v', 'o', 'r', 'e']",[],9,10,True +prime,"['p', 'r', 'i', 'm', 'e']","['s', 'a', 't']",5,7,True +purples,"['p', 'u', 'r', 'p', 'l', 'e', 's']","['i', 'b', 'd', 'a', 't', 'g', 'm']",7,3,True +firebrands,"['f', 'i', 'r', 'e', 'b', 'r', 'a', 'n', 'd', 's']",['o'],10,9,True +bluff,"['b', 'l', 'u', 'f', 'f']","['s', 'e', 'a', 'r', 'o', 'c']",5,4,True +monocle,"['m', 'o', 'n', 'o', 'c', 'l', 'e']","['a', 'i', 'r', 't', 'b', 's', 'u']",7,3,True +varied,"['_', 'a', 'r', '_', 'e', 'd']","['p', 'b', 'k', 't', 'm', 'w', 'n', 'c', 'f', 'h']",4,0,False +curt,"['c', 'u', 'r', 't']","['e', 's', 'a', 'o', 'l', 'i', 'n', 'h']",4,2,True +meowing,"['m', 'e', 'o', 'w', 'i', 'n', 'g']","['s', 'r', 't', 'l', 'd', 'a', 'p']",7,3,True +employees,"['e', 'm', 'p', 'l', 'o', 'y', 'e', 'e', 's']",[],9,10,True +fussed,"['f', 'u', 's', 's', 'e', 'd']","['a', 'o', 'l', 'r', 'i', 'm']",6,4,True +abdicate,"['a', 'b', 'd', 'i', 'c', 'a', 't', 'e']","['o', 'l']",8,8,True +sides,"['s', 'i', 'd', 'e', 's']","['a', 'x', 't']",5,7,True +melodrama,"['m', 'e', 'l', 'o', 'd', 'r', 'a', 'm', 'a']","['t', 'i', 'n', 's', 'g']",9,5,True +arthropods,"['a', 'r', 't', 'h', 'r', 'o', 'p', 'o', 'd', 's']","['e', 'i']",10,8,True +shagged,"['s', 'h', 'a', 'g', 'g', 'e', 'd']","['r', 't', 'p', 'n', 'l', 'c', 'm', 'w']",7,2,True +splattered,"['s', 'p', 'l', 'a', 't', 't', 'e', 'r', 'e', 'd']","['n', 'i', 'u']",10,7,True +excreta,"['e', 'x', 'c', 'r', 'e', 't', 'a']",['s'],7,9,True +inequality,"['i', 'n', 'e', 'q', 'u', 'a', 'l', 'i', 't', 'y']","['s', 'r']",10,8,True +wherever,"['w', 'h', 'e', 'r', 'e', 'v', 'e', 'r']",[],8,10,True +chlorinate,"['c', 'h', 'l', 'o', 'r', 'i', 'n', 'a', 't', 'e']",['m'],10,9,True +outwear,"['o', 'u', 't', 'w', 'e', 'a', 'r']","['s', 'b']",7,8,True +squareness,"['s', 'q', 'u', 'a', 'r', 'e', 'n', 'e', 's', 's']",['g'],10,9,True +stepchild,"['s', 't', 'e', 'p', 'c', 'h', 'i', 'l', 'd']",['a'],9,9,True +specifier,"['s', 'p', 'e', 'c', 'i', 'f', 'i', 'e', 'r']","['t', 'n']",9,8,True +myths,"['m', 'y', 't', 'h', 's']","['e', 'a', 'o', 'l', 'r', 'u']",5,4,True +recurrent,"['r', 'e', 'c', 'u', 'r', 'r', 'e', 'n', 't']",['s'],9,9,True +asked,"['a', 's', 'k', 'e', 'd']","['h', 't', 'n', 'w']",5,6,True +slacking,"['s', 'l', 'a', 'c', 'k', 'i', 'n', 'g']","['e', 't', 'p', 'm', 'b']",8,5,True +pelvic,"['p', 'e', 'l', 'v', 'i', 'c']","['r', 'd', 's', 't', 'o']",6,5,True +vantages,"['v', 'a', 'n', 't', 'a', 'g', 'e', 's']","['i', 'r', 'b', 'p', 'm']",8,5,True +cruiser,"['c', 'r', 'u', 'i', 's', 'e', 'r']","['d', 'o', 'b']",7,7,True +haughtier,"['h', 'a', 'u', 'g', 'h', 't', 'i', 'e', 'r']","['s', 'l']",9,8,True +reeks,"['r', 'e', 'e', 'k', 's']","['p', 'd', 'f']",5,7,True +overlap,"['o', 'v', 'e', 'r', 'l', 'a', 'p']","['t', 'y']",7,8,True +prejudgments,"['p', 'r', 'e', 'j', 'u', 'd', 'g', 'm', 'e', 'n', 't', 's']","['i', 'c']",12,8,True +bruskest,"['b', 'r', 'u', 's', 'k', 'e', 's', 't']","['i', 'o']",8,8,True +foiling,"['f', 'o', 'i', 'l', 'i', 'n', 'g']","['e', 's', 'a', 't']",7,6,True +largos,"['l', 'a', 'r', 'g', 'o', 's']","['e', 'c', 't']",6,7,True +ailment,"['a', 'i', 'l', 'm', 'e', 'n', 't']","['s', 'r', 'g']",7,7,True +labouring,"['l', 'a', 'b', 'o', 'u', 'r', 'i', 'n', 'g']","['e', 's', 't', 'm']",9,6,True +blubbering,"['b', 'l', 'u', 'b', 'b', 'e', 'r', 'i', 'n', 'g']","['s', 't']",10,8,True +proofreader,"['p', 'r', 'o', 'o', 'f', 'r', 'e', 'a', 'd', 'e', 'r']",['s'],11,9,True +gyp,"['g', 'y', 'p']","['a', 'e', 'o', 'i', 't', 'm']",3,4,True +auctioneer,"['a', 'u', 'c', 't', 'i', 'o', 'n', 'e', 'e', 'r']",['s'],10,9,True +phonograph,"['p', 'h', 'o', 'n', 'o', 'g', 'r', 'a', 'p', 'h']","['e', 'i', 's', 't']",10,6,True +renegaded,"['r', 'e', 'n', 'e', 'g', 'a', 'd', 'e', 'd']",['s'],9,9,True +marvellously,"['m', 'a', 'r', 'v', 'e', 'l', 'l', 'o', 'u', 's', 'l', 'y']",[],12,10,True +gunboat,"['g', 'u', 'n', 'b', 'o', 'a', 't']","['e', 's', 'i', 'r', 'l']",7,5,True +disfigures,"['d', 'i', 's', 'f', 'i', 'g', 'u', 'r', 'e', 's']",['t'],10,9,True +primer,"['p', 'r', 'i', 'm', 'e', 'r']","['d', 'a', 't', 'g', 'o']",6,5,True +elucidated,"['e', 'l', 'u', 'c', 'i', 'd', 'a', 't', 'e', 'd']",[],10,10,True +raillery,"['r', 'a', 'i', 'l', 'l', 'e', 'r', 'y']","['s', 't', 'o']",8,7,True +matchstick,"['m', 'a', 't', 'c', 'h', 's', 't', 'i', 'c', 'k']","['e', 'n']",10,8,True +clearer,"['c', 'l', 'e', 'a', 'r', 'e', 'r']","['s', 'w']",7,8,True +assorted,"['a', 's', 's', 'o', 'r', 't', 'e', 'd']",[],8,10,True +intimidated,"['i', 'n', 't', 'i', 'm', 'i', 'd', 'a', 't', 'e', 'd']",['s'],11,9,True +adverbial,"['a', 'd', 'v', 'e', 'r', 'b', 'i', 'a', 'l']","['s', 'n', 't']",9,7,True +recall,"['r', 'e', 'c', 'a', 'l', 'l']","['s', 't']",6,8,True +spoonerisms,"['s', 'p', 'o', 'o', 'n', 'e', 'r', 'i', 's', 'm', 's']",[],11,10,True +piazzas,"['p', 'i', 'a', 'z', 'z', 'a', 's']","['e', 'r']",7,8,True +shipyards,"['s', 'h', 'i', 'p', 'y', 'a', 'r', 'd', 's']","['e', 't', 'n', 'l', 'm']",9,5,True +active,"['a', 'c', 't', 'i', 'v', 'e']","['l', 'r', 'u', 's']",6,6,True +curtailments,"['c', 'u', 'r', 't', 'a', 'i', 'l', 'm', 'e', 'n', 't', 's']",[],12,10,True +misstating,"['m', 'i', 's', 's', 't', 'a', 't', 'i', 'n', 'g']","['e', 'd']",10,8,True +staffers,"['s', 't', 'a', 'f', 'f', 'e', 'r', 's']","['g', 'm']",8,8,True +puzzled,"['p', 'u', 'z', 'z', 'l', 'e', 'd']","['s', 'r', 'a', 'b', 'i', 't', 'g', 'm', 'n']",7,1,True +irreproachable,"['i', 'r', 'r', 'e', 'p', 'r', 'o', 'a', 'c', 'h', 'a', 'b', 'l', 'e']",['n'],14,9,True +cleaners,"['c', 'l', 'e', 'a', 'n', 'e', 'r', 's']","['t', 'k']",8,8,True +creosoting,"['c', 'r', 'e', 'o', 's', 'o', 't', 'i', 'n', 'g']",[],10,10,True +understated,"['u', 'n', 'd', 'e', 'r', 's', 't', 'a', 't', 'e', 'd']",[],11,10,True +organists,"['o', 'r', 'g', 'a', 'n', 'i', 's', 't', 's']","['e', 'l']",9,8,True +deathblow,"['d', 'e', 'a', 't', 'h', 'b', 'l', 'o', 'w']","['r', 's', 'i', 'n']",9,6,True +jamb,"['j', 'a', 'm', 'b']","['e', 's', 'l', 't', 'r', 'n', 'p', 'd', 'i']",4,1,True +flannelled,"['f', 'l', 'a', 'n', 'n', 'e', 'l', 'l', 'e', 'd']","['s', 'r']",10,8,True +watercolour,"['w', 'a', 't', 'e', 'r', 'c', 'o', 'l', 'o', 'u', 'r']","['i', 'n']",11,8,True +singsong,"['s', 'i', 'n', 'g', 's', 'o', 'n', 'g']",['e'],8,9,True +mutest,"['m', 'u', 't', 'e', 's', 't']",['a'],6,9,True +buntings,"['b', 'u', 'n', 't', 'i', 'n', 'g', 's']","['e', 'r', 'a', 'd', 'l']",8,5,True +gobs,"['g', 'o', 'b', 's']","['e', 'a', 't']",4,7,True +cincture,"['c', 'i', 'n', 'c', 't', 'u', 'r', 'e']","['a', 's', 'l']",8,7,True +tumid,"['t', '_', '_', 'i', '_']","['s', 'e', 'a', 'r', 'o', 'l', 'n', 'p', 'c', 'x']",2,0,False +cultivate,"['c', 'u', 'l', 't', 'i', 'v', 'a', 't', 'e']",['s'],9,9,True +editors,"['e', 'd', 'i', 't', 'o', 'r', 's']","['n', 'l']",7,8,True +heralded,"['h', 'e', 'r', 'a', 'l', 'd', 'e', 'd']",['s'],8,9,True +worshipping,"['w', 'o', 'r', 's', 'h', 'i', 'p', 'p', 'i', 'n', 'g']","['e', 't', 'a', 'l']",11,6,True +twaddle,"['t', 'w', 'a', 'd', 'd', 'l', 'e']","['r', 'p', 's']",7,7,True +academic,"['a', 'c', 'a', 'd', 'e', 'm', 'i', 'c']","['r', 's', 't', 'n']",8,6,True +multiplexor,"['m', 'u', 'l', 't', 'i', 'p', 'l', 'e', 'x', 'o', 'r']","['s', 'n']",11,8,True +tolerate,"['t', 'o', 'l', 'e', 'r', 'a', 't', 'e']",[],8,10,True +restatement,"['r', 'e', 's', 't', 'a', 't', 'e', 'm', 'e', 'n', 't']",[],11,10,True +polemical,"['p', 'o', 'l', 'e', 'm', 'i', 'c', 'a', 'l']","['s', 'n', 'r', 't']",9,6,True +unashamedly,"['u', 'n', 'a', 's', 'h', 'a', 'm', 'e', 'd', 'l', 'y']",['c'],11,9,True +shutdowns,"['s', 'h', 'u', 't', 'd', 'o', 'w', 'n', 's']","['e', 'i']",9,8,True +frying,"['f', 'r', 'y', 'i', 'n', 'g']","['e', 's', 'a', 't', 'o']",6,5,True +kings,"['k', 'i', 'n', 'g', 's']","['e', 'a', 'o', 'l', 'r', 't']",5,4,True +signify,"['s', 'i', 'g', 'n', 'i', 'f', 'y']","['e', 'r']",7,8,True +refiling,"['r', 'e', 'f', 'i', 'l', 'i', 'n', 'g']","['s', 'v']",8,8,True +deepen,"['d', 'e', 'e', 'p', 'e', 'n']",[],6,10,True +amid,"['a', 'm', 'i', 'd']","['e', 's', 'r', 'l']",4,6,True +travellings,"['t', 'r', 'a', 'v', 'e', 'l', 'l', 'i', 'n', 'g', 's']",[],11,10,True +epistles,"['e', 'p', 'i', 's', 't', 'l', 'e', 's']","['r', 'o']",8,8,True +lenses,"['l', 'e', 'n', 's', 'e', 's']","['d', 'r', 't', 'm']",6,6,True +humming,"['_', 'u', '_', '_', 'i', 'n', 'g']","['e', 's', 'a', 'l', 'o', 't', 'r', 'p', 'b', 'f']",4,0,False +burr,"['b', 'u', 'r', 'r']","['e', 's', 'a', 'o', 'l', 't', 'i', 'p']",4,2,True +mundane,"['m', 'u', 'n', 'd', 'a', 'n', 'e']","['t', 'r', 'g', 'l', 'c']",7,5,True +fibreboard,"['f', 'i', 'b', 'r', 'e', 'b', 'o', 'a', 'r', 'd']",['s'],10,9,True +bloodier,"['b', 'l', 'o', 'o', 'd', 'i', 'e', 'r']","['s', 'g', 'm']",8,7,True +barometers,"['b', 'a', 'r', 'o', 'm', 'e', 't', 'e', 'r', 's']",[],10,10,True +rewording,"['r', 'e', 'w', 'o', 'r', 'd', 'i', 'n', 'g']","['s', 't', 'k']",9,7,True +brakemen,"['b', 'r', 'a', 'k', 'e', 'm', 'e', 'n']","['d', 'p', 't']",8,7,True +visaing,"['_', 'i', 's', '_', 'i', 'n', 'g']","['e', 'h', 't', 'm', 'k', 'l', 'p', 'd', 'f', 'w']",5,0,False +rekindling,"['r', 'e', 'k', 'i', 'n', 'd', 'l', 'i', 'n', 'g']","['t', 'v', 's']",10,7,True +threaten,"['t', 'h', 'r', 'e', 'a', 't', 'e', 'n']","['s', 'd']",8,8,True +denouncing,"['d', 'e', 'n', 'o', 'u', 'n', 'c', 'i', 'n', 'g']",['r'],10,9,True +antipathies,"['a', 'n', 't', 'i', 'p', 'a', 't', 'h', 'i', 'e', 's']",['r'],11,9,True +dependant,"['d', 'e', 'p', 'e', 'n', 'd', 'a', 'n', 't']",['r'],9,9,True +from,"['f', 'r', 'o', 'm']","['e', 's', 'a', 'l', 'p', 't', 'g', 'w']",4,2,True +tag,"['t', 'a', 'g']",['x'],3,9,True +underwater,"['u', 'n', 'd', 'e', 'r', 'w', 'a', 't', 'e', 'r']",['s'],10,9,True +screenplays,"['s', 'c', 'r', 'e', 'e', 'n', 'p', 'l', 'a', 'y', 's']",[],11,10,True +trashed,"['t', 'r', 'a', 's', 'h', 'e', 'd']","['u', 'y']",7,8,True +sourpuss,"['s', 'o', 'u', 'r', 'p', 'u', 's', 's']","['e', 'n', 'l']",8,7,True +fluency,"['f', 'l', 'u', 'e', 'n', 'c', 'y']","['s', 'r', 't', 'd', 'a', 'g', 'o']",7,3,True +detaching,"['d', 'e', 't', 'a', 'c', 'h', 'i', 'n', 'g']","['r', 's', 'l']",9,7,True +mumbles,"['m', 'u', 'm', 'b', 'l', 'e', 's']",['i'],7,9,True +agriculture,"['a', 'g', 'r', 'i', 'c', 'u', 'l', 't', 'u', 'r', 'e']",[],11,10,True +agreeably,"['a', 'g', 'r', 'e', 'e', 'a', 'b', 'l', 'y']",[],9,10,True +fixates,"['f', 'i', 'x', 'a', 't', 'e', 's']","['l', 'd']",7,8,True +sofas,"['s', 'o', 'f', 'a', 's']",[],5,10,True +flub,"['f', 'l', 'u', 'b']","['e', 's', 'a', 'o', 'x', 'w', 'p']",4,3,True +niggled,"['n', 'i', 'g', 'g', 'l', 'e', 'd']","['s', 'r', 'a', 'b', 'w']",7,5,True +booms,"['b', 'o', 'o', 'm', 's']","['e', 'a', 't', 'l', 'd', 'r']",5,4,True +knacks,"['k', 'n', 'a', 'c', 'k', 's']","['e', 'r', 't', 'l']",6,6,True +clunked,"['c', 'l', 'u', 'n', 'k', 'e', 'd']","['s', 'r', 'a', 'o', 'p']",7,5,True +foisted,"['f', 'o', 'i', 's', 't', 'e', 'd']","['r', 'a', 'b']",7,7,True +encamped,"['e', 'n', 'c', 'a', 'm', 'p', 'e', 'd']","['s', 'l', 'r', 'o']",8,6,True +flacks,"['f', 'l', 'a', 'c', 'k', 's']","['e', 'r', 't', 'n']",6,6,True +responds,"['r', 'e', 's', 'p', 'o', 'n', 'd', 's']",['t'],8,9,True +anemometer,"['a', 'n', 'e', 'm', 'o', 'm', 'e', 't', 'e', 'r']",[],10,10,True +hollows,"['_', 'o', 'l', 'l', 'o', 'w', 's']","['e', 'r', 'a', 'i', 'n', 'm', 'c', 't', 'p', 'f']",6,0,False +facsimiles,"['f', 'a', 'c', 's', 'i', 'm', 'i', 'l', 'e', 's']",['t'],10,9,True +darker,"['d', 'a', 'r', 'k', 'e', 'r']","['m', 'o']",6,8,True +entwining,"['e', 'n', 't', 'w', 'i', 'n', 'i', 'n', 'g']",[],9,10,True +effrontery,"['e', 'f', 'f', 'r', 'o', 'n', 't', 'e', 'r', 'y']",[],10,10,True +califs,"['c', 'a', 'l', 'i', 'f', 's']","['e', 'r', 't', 'v', 'o', 'u']",6,4,True +reaper,"['r', 'e', 'a', 'p', 'e', 'r']","['d', 'm', 'l']",6,7,True +furs,"['_', 'u', '_', 's']","['e', 'a', 'o', 'i', 't', 'p', 'b', 'g', 'n', 'm']",2,0,False +bells,"['b', 'e', 'l', 'l', 's']","['t', 'f', 'w', 'y', 'd']",5,5,True +thins,"['t', 'h', 'i', 'n', 's']","['e', 'a', 'o', 'l', 'r', 'w']",5,4,True +scooped,"['s', 'c', 'o', 'o', 'p', 'e', 'd']","['r', 't', 'a', 'l', 'w', 'n']",7,4,True +plunge,"['p', 'l', 'u', 'n', 'g', 'e']","['a', 'c']",6,8,True +handicapping,"['h', 'a', 'n', 'd', 'i', 'c', 'a', 'p', 'p', 'i', 'n', 'g']","['e', 't']",12,8,True +fumed,"['f', 'u', 'm', 'e', 'd']","['s', 'a', 'o', 'i', 'r', 't', 'p', 'l', 'w']",5,1,True +mediators,"['m', 'e', 'd', 'i', 'a', 't', 'o', 'r', 's']",['c'],9,9,True +contractually,"['c', 'o', 'n', 't', 'r', 'a', 'c', 't', 'u', 'a', 'l', 'l', 'y']","['i', 'e']",13,8,True +rimming,"['r', 'i', 'm', 'm', 'i', 'n', 'g']","['e', 's', 't', 'l', 'p', 'd', 'k', 'f']",7,2,True +mayhem,"['m', 'a', 'y', 'h', 'e', 'm']","['d', 'r', 's', 't', 'l', 'n', 'c', 'b', 'p']",6,1,True +dunked,"['d', 'u', 'n', 'k', 'e', 'd']",['g'],6,9,True +equities,"['e', 'q', 'u', 'i', 't', 'i', 'e', 's']","['n', 'm']",8,8,True +air,"['a', 'i', 'r']","['e', 'd', 't', 'l']",3,6,True +appreciations,"['a', 'p', 'p', 'r', 'e', 'c', 'i', 'a', 't', 'i', 'o', 'n', 's']",[],13,10,True +zebu,"['_', 'e', '_', '_']","['s', 't', 'l', 'r', 'a', 'd', 'n', 'p', 'm', 'w']",1,0,False +honorable,"['h', 'o', 'n', 'o', 'r', 'a', 'b', 'l', 'e']",[],9,10,True +barrette,"['b', 'a', 'r', 'r', 'e', 't', 't', 'e']","['s', 'n']",8,8,True +villagers,"['v', 'i', 'l', 'l', 'a', 'g', 'e', 'r', 's']",[],9,10,True +firms,"['f', 'i', 'r', 'm', 's']","['e', 'a', 'o', 'l', 't', 'u']",5,4,True +flea,"['f', 'l', 'e', 'a']","['s', 'd', 'r', 'w', 'x']",4,5,True +placements,"['p', 'l', 'a', 'c', 'e', 'm', 'e', 'n', 't', 's']",[],10,10,True +ordinariness,"['o', 'r', 'd', 'i', 'n', 'a', 'r', 'i', 'n', 'e', 's', 's']",[],12,10,True +nudism,"['n', 'u', 'd', 'i', 's', 'm']","['e', 't', 'h', 'a', 'r']",6,5,True +minored,"['m', 'i', 'n', 'o', 'r', 'e', 'd']","['s', 'a', 't']",7,7,True +beeps,"['b', 'e', 'e', 'p', 's']","['w', 'k', 'd', 'v']",5,6,True +dynasties,"['d', 'y', 'n', 'a', 's', 't', 'i', 'e', 's']",['r'],9,9,True +violists,"['v', 'i', 'o', 'l', 'i', 's', 't', 's']","['e', 'a', 'n']",8,7,True +parsonages,"['p', 'a', 'r', 's', 'o', 'n', 'a', 'g', 'e', 's']",['i'],10,9,True +regal,"['r', 'e', 'g', 'a', 'l']",['s'],5,9,True +blueing,"['b', 'l', 'u', 'e', 'i', 'n', 'g']","['s', 'r']",7,8,True +unsupported,"['u', 'n', 's', 'u', 'p', 'p', 'o', 'r', 't', 'e', 'd']","['i', 'm']",11,8,True +department,"['d', 'e', 'p', 'a', 'r', 't', 'm', 'e', 'n', 't']","['s', 'o']",10,8,True +petty,"['p', 'e', 't', 't', 'y']","['s', 'r']",5,8,True +nutcracker,"['n', 'u', 't', 'c', 'r', 'a', 'c', 'k', 'e', 'r']","['s', 'i', 'g', 'o', 'p', 'm', 'h']",10,3,True +moistens,"['m', 'o', 'i', 's', 't', 'e', 'n', 's']","['r', 'b', 'a']",8,7,True +quintessential,"['q', 'u', 'i', 'n', 't', 'e', 's', 's', 'e', 'n', 't', 'i', 'a', 'l']",[],14,10,True +pigheaded,"['p', 'i', 'g', 'h', 'e', 'a', 'd', 'e', 'd']","['s', 'r', 'n', 't', 'o', 'c']",9,4,True +incoherence,"['i', 'n', 'c', 'o', 'h', 'e', 'r', 'e', 'n', 'c', 'e']",[],11,10,True +milkshake,"['m', 'i', 'l', 'k', 's', 'h', 'a', 'k', 'e']","['t', 'r']",9,8,True +for,"['_', 'o', '_']","['a', 'e', 't', 'b', 'w', 'p', 'n', 'd', 's', 'g']",1,0,False +thickly,"['t', 'h', 'i', 'c', 'k', 'l', 'y']","['e', 's', 'r']",7,7,True +disentangle,"['d', 'i', 's', 'e', 'n', 't', 'a', 'n', 'g', 'l', 'e']",['r'],11,9,True +defies,"['d', 'e', 'f', 'i', 'e', 's']","['r', 'n']",6,8,True +blissfully,"['b', 'l', 'i', 's', 's', 'f', 'u', 'l', 'l', 'y']",['e'],10,9,True +misdirection,"['m', 'i', 's', 'd', 'i', 'r', 'e', 'c', 't', 'i', 'o', 'n']",[],12,10,True +wrens,"['w', 'r', 'e', 'n', 's']","['t', 'p']",5,8,True +uttermost,"['u', 't', 't', 'e', 'r', 'm', 'o', 's', 't']",[],9,10,True +insinuates,"['i', 'n', 's', 'i', 'n', 'u', 'a', 't', 'e', 's']",[],10,10,True +bosh,"['b', 'o', 's', 'h']","['e', 't', 'a', 'u', 'g', 'n', 'p']",4,3,True +mysticism,"['m', 'y', 's', 't', 'i', 'c', 'i', 's', 'm']",['e'],9,9,True +obey,"['o', '_', 'e', '_']","['s', 'd', 'r', 'w', 'l', 'p', 't', 'n', 'v', 'x']",2,0,False +crescendi,"['c', 'r', 'e', 's', 'c', 'e', 'n', 'd', 'i']",['o'],9,9,True +sacristies,"['s', 'a', 'c', 'r', 'i', 's', 't', 'i', 'e', 's']",[],10,10,True +oxygenates,"['o', 'x', 'y', 'g', 'e', 'n', 'a', 't', 'e', 's']",['r'],10,9,True +slavered,"['s', 'l', 'a', 'v', 'e', 'r', 'e', 'd']","['t', 'q']",8,8,True +cultivates,"['c', 'u', 'l', 't', 'i', 'v', 'a', 't', 'e', 's']",[],10,10,True +shimmered,"['s', 'h', 'i', 'm', 'm', 'e', 'r', 'e', 'd']","['t', 'a', 'l', 'p']",9,6,True +excitement,"['e', 'x', 'c', 'i', 't', 'e', 'm', 'e', 'n', 't']",[],10,10,True +dross,"['d', 'r', 'o', 's', 's']","['e', 'g']",5,8,True +formulated,"['f', 'o', 'r', 'm', 'u', 'l', 'a', 't', 'e', 'd']","['s', 'i', 'c', 'g']",10,6,True +vindictive,"['v', 'i', 'n', 'd', 'i', 'c', 't', 'i', 'v', 'e']","['a', 's']",10,8,True +cotillion,"['c', 'o', 't', 'i', 'l', 'l', 'i', 'o', 'n']","['e', 's']",9,8,True +coursing,"['c', 'o', 'u', 'r', 's', 'i', 'n', 'g']",['e'],8,9,True +soldiered,"['s', 'o', 'l', 'd', 'i', 'e', 'r', 'e', 'd']",[],9,10,True +wholesalers,"['w', 'h', 'o', 'l', 'e', 's', 'a', 'l', 'e', 'r', 's']",['n'],11,9,True +stopover,"['s', 't', 'o', 'p', 'o', 'v', 'e', 'r']",['i'],8,9,True +frothy,"['f', 'r', 'o', 't', 'h', 'y']","['e', 's', 'a', 'c']",6,6,True +bequeathing,"['b', 'e', 'q', 'u', 'e', 'a', 't', 'h', 'i', 'n', 'g']","['r', 's']",11,8,True +adaptations,"['a', 'd', 'a', 'p', 't', 'a', 't', 'i', 'o', 'n', 's']",['e'],11,9,True +intensives,"['i', 'n', 't', 'e', 'n', 's', 'i', 'v', 'e', 's']",[],10,10,True +timescales,"['t', 'i', 'm', 'e', 's', 'c', 'a', 'l', 'e', 's']",[],10,10,True +hoarser,"['h', 'o', 'a', 'r', 's', 'e', 'r']",['d'],7,9,True +brunch,"['b', 'r', 'u', 'n', 'c', 'h']","['e', 's', 'a', 't', 'o', 'i', 'd']",6,3,True +vertebral,"['v', 'e', 'r', 't', 'e', 'b', 'r', 'a', 'l']",[],9,10,True +curb,"['c', 'u', 'r', 'b']","['e', 's', 'a', 'o', 'l', 't', 'i']",4,3,True +voluptuary,"['v', 'o', 'l', 'u', 'p', 't', 'u', 'a', 'r', 'y']","['e', 'i', 's', 'n']",10,6,True +centaur,"['c', 'e', 'n', 't', 'a', 'u', 'r']","['s', 'i']",7,8,True +urinals,"['u', 'r', 'i', 'n', 'a', 'l', 's']","['e', 'p']",7,8,True +lopped,"['l', 'o', 'p', 'p', 'e', 'd']","['a', 'g']",6,8,True +aggravates,"['a', 'g', 'g', 'r', 'a', 'v', 'a', 't', 'e', 's']",['i'],10,9,True +superimposed,"['s', 'u', 'p', 'e', 'r', 'i', 'm', 'p', 'o', 's', 'e', 'd']",[],12,10,True +depicts,"['d', 'e', 'p', 'i', 'c', 't', 's']","['r', 'f']",7,8,True +lavishes,"['l', 'a', 'v', 'i', 's', 'h', 'e', 's']",['r'],8,9,True +boroughs,"['b', 'o', 'r', 'o', 'u', 'g', 'h', 's']","['e', 'a', 'i', 'c', 'n', 'l', 't']",8,3,True +faxes,"['_', 'a', '_', 'e', 's']","['r', 'l', 't', 'm', 'g', 'p', 'c', 'v', 'n', 'd']",3,0,False +rap,"['r', 'a', 'p']","['t', 'g', 'm', 'n', 'y', 'l']",3,4,True +am,"['a', 'm']","['o', 's', 't']",2,7,True +bloodless,"['b', 'l', 'o', 'o', 'd', 'l', 'e', 's', 's']","['n', 'i']",9,8,True +gyroscope,"['g', 'y', 'r', 'o', 's', 'c', 'o', 'p', 'e']","['a', 'i', 't']",9,7,True +immobilisation,"['i', 'm', 'm', 'o', 'b', 'i', 'l', 'i', 's', 'a', 't', 'i', 'o', 'n']",[],14,10,True +alphabetically,"['a', 'l', 'p', 'h', 'a', 'b', 'e', 't', 'i', 'c', 'a', 'l', 'l', 'y']",[],14,10,True +chitchatted,"['c', 'h', 'i', 't', 'c', 'h', 'a', 't', 't', 'e', 'd']",['s'],11,9,True +overflows,"['o', 'v', 'e', 'r', 'f', 'l', 'o', 'w', 's']","['k', 'g']",9,8,True +wow,"['w', 'o', 'w']","['a', 'e', 't', 'b']",3,6,True +battlement,"['b', 'a', 't', 't', 'l', 'e', 'm', 'e', 'n', 't']",['s'],10,9,True +only,"['o', 'n', 'l', 'y']","['e', 's', 'a']",4,7,True +bushellings,"['b', 'u', 's', 'h', 'e', 'l', 'l', 'i', 'n', 'g', 's']",['m'],11,9,True +glowed,"['g', 'l', 'o', 'w', 'e', 'd']","['a', 'r', 's']",6,7,True +easiness,"['e', 'a', 's', 'i', 'n', 'e', 's', 's']",[],8,10,True +chastened,"['c', 'h', 'a', 's', 't', 'e', 'n', 'e', 'd']","['r', 'l', 'o', 'i', 'g', 'm']",9,4,True +tastelessness,"['t', 'a', 's', 't', 'e', 'l', 'e', 's', 's', 'n', 'e', 's', 's']",['i'],13,9,True +railroading,"['r', 'a', 'i', 'l', 'r', 'o', 'a', 'd', 'i', 'n', 'g']","['e', 't']",11,8,True +putsches,"['p', 'u', 't', 's', 'c', 'h', 'e', 's']","['i', 'o']",8,8,True +deserved,"['d', 'e', 's', 'e', 'r', 'v', 'e', 'd']","['t', 'f', 'n']",8,7,True +ricochetting,"['r', 'i', 'c', 'o', 'c', 'h', 'e', 't', 't', 'i', 'n', 'g']",['s'],12,9,True +tension,"['t', 'e', 'n', 's', 'i', 'o', 'n']",[],7,10,True +pastries,"['p', 'a', 's', 't', 'r', 'i', 'e', 's']",[],8,10,True +otter,"['o', 't', 't', 'e', 'r']","['s', 'd', 'a', 'i']",5,6,True +reprieved,"['r', 'e', 'p', 'r', 'i', 'e', 'v', 'e', 'd']",['t'],9,9,True +reveres,"['r', 'e', 'v', 'e', 'r', 'e', 's']",['d'],7,9,True +conflicted,"['c', 'o', 'n', 'f', 'l', 'i', 'c', 't', 'e', 'd']","['s', 'a', 'm']",10,7,True +mudguard,"['m', 'u', 'd', 'g', 'u', 'a', 'r', 'd']","['e', 's', 'i']",8,7,True +viewfinder,"['v', 'i', 'e', 'w', 'f', 'i', 'n', 'd', 'e', 'r']","['t', 's', 'a']",10,7,True +steerage,"['s', 't', 'e', 'e', 'r', 'a', 'g', 'e']",[],8,10,True +nylons,"['n', 'y', 'l', 'o', 'n', 's']","['e', 'a', 'r']",6,7,True +fighter,"['f', 'i', 'g', 'h', 't', 'e', 'r']",['s'],7,9,True +announcement,"['a', 'n', 'n', 'o', 'u', 'n', 'c', 'e', 'm', 'e', 'n', 't']",['s'],12,9,True +resettled,"['r', 'e', 's', 'e', 't', 't', 'l', 'e', 'd']",[],9,10,True +cuckoo,"['c', 'u', 'c', 'k', 'o', 'o']","['e', 's', 'r', 'a', 'i', 't', 'd', 'b']",6,2,True +titter,"['t', 'i', 't', 't', 'e', 'r']","['d', 'a']",6,8,True +plunger,"['p', 'l', 'u', 'n', 'g', 'e', 'r']","['s', 'i', 't', 'a', 'b']",7,5,True +thud,"['t', 'h', 'u', 'd']","['e', 's', 'a', 'o', 'l', 'r', 'i', 'n', 'g']",4,1,True +doping,"['d', 'o', 'p', 'i', 'n', 'g']","['e', 's', 'r', 'a', 'w', 't', 'm', 'l', 'h']",6,1,True +necklines,"['n', 'e', 'c', 'k', 'l', 'i', 'n', 'e', 's']","['r', 'd', 't']",9,7,True +reelecting,"['r', 'e', 'e', 'l', 'e', 'c', 't', 'i', 'n', 'g']",[],10,10,True +handstands,"['h', 'a', 'n', 'd', 's', 't', 'a', 'n', 'd', 's']","['e', 'i', 'o', 'r']",10,6,True +renters,"['r', 'e', 'n', 't', 'e', 'r', 's']",['a'],7,9,True +landholder,"['l', 'a', 'n', 'd', 'h', 'o', 'l', 'd', 'e', 'r']","['s', 'i']",10,8,True +horrific,"['h', 'o', 'r', 'r', 'i', 'f', 'i', 'c']","['e', 's', 't']",8,7,True +barer,"['b', 'a', 'r', 'e', 'r']","['s', 'd', 'u', 'o']",5,6,True +flotations,"['f', 'l', 'o', 't', 'a', 't', 'i', 'o', 'n', 's']",['e'],10,9,True +maligned,"['m', 'a', 'l', 'i', 'g', 'n', 'e', 'd']","['s', 'r', 't', 'o']",8,6,True +consummating,"['c', 'o', 'n', 's', 'u', 'm', 'm', 'a', 't', 'i', 'n', 'g']","['e', 'r']",12,8,True +footpath,"['f', 'o', 'o', 't', 'p', 'a', 't', 'h']","['e', 's', 'i', 'r']",8,6,True +frontrunners,"['f', 'r', 'o', 'n', 't', 'r', 'u', 'n', 'n', 'e', 'r', 's']",[],12,10,True +ticker,"['t', 'i', 'c', 'k', 'e', 'r']","['d', 'a', 'n']",6,7,True +descried,"['d', 'e', 's', 'c', 'r', 'i', 'e', 'd']","['t', 'v']",8,8,True +behoving,"['b', 'e', 'h', 'o', 'v', 'i', 'n', 'g']","['r', 's', 't', 'd', 'l', 'a', 'c']",8,3,True +dogma,"['d', 'o', 'g', 'm', 'a']","['s', 'e']",5,8,True +invested,"['i', 'n', 'v', 'e', 's', 't', 'e', 'd']","['g', 'f']",8,8,True +hidebound,"['h', 'i', 'd', 'e', 'b', 'o', 'u', 'n', 'd']","['s', 'g', 't', 'l']",9,6,True +gutturals,"['g', 'u', 't', 't', 'u', 'r', 'a', 'l', 's']","['e', 'i']",9,8,True +choristers,"['c', 'h', 'o', 'r', 'i', 's', 't', 'e', 'r', 's']",[],10,10,True +cession,"['c', 'e', 's', 's', 'i', 'o', 'n']",['m'],7,9,True +fend,"['f', 'e', 'n', 'd']","['s', 't', 'l', 'r', 'a', 'm']",4,4,True +unpainted,"['u', 'n', 'p', 'a', 'i', 'n', 't', 'e', 'd']","['s', 'r']",9,8,True +comment,"['c', 'o', 'm', 'm', 'e', 'n', 't']","['s', 'r']",7,8,True +counterrevolution,"['c', 'o', 'u', 'n', 't', 'e', 'r', 'r', 'e', 'v', 'o', 'l', 'u', 't', 'i', 'o', 'n']",[],17,10,True +polygamous,"['p', 'o', 'l', 'y', 'g', 'a', 'm', 'o', 'u', 's']","['e', 'i', 'r', 't', 'n']",10,5,True +litanies,"['l', 'i', 't', 'a', 'n', 'i', 'e', 's']",[],8,10,True +calendaring,"['c', 'a', 'l', 'e', 'n', 'd', 'a', 'r', 'i', 'n', 'g']",['t'],11,9,True +explications,"['e', 'x', 'p', 'l', 'i', 'c', 'a', 't', 'i', 'o', 'n', 's']",[],12,10,True +stencilled,"['s', 't', 'e', 'n', 'c', 'i', 'l', 'l', 'e', 'd']",['r'],10,9,True +dismisses,"['d', 'i', 's', 'm', 'i', 's', 's', 'e', 's']",[],9,10,True +palmettoes,"['p', 'a', 'l', 'm', 'e', 't', 't', 'o', 'e', 's']",['r'],10,9,True +typescript,"['t', 'y', 'p', 'e', 's', 'c', 'r', 'i', 'p', 't']",[],10,10,True +fragrantly,"['f', 'r', 'a', 'g', 'r', 'a', 'n', 't', 'l', 'y']","['e', 'i', 's']",10,7,True +reiteration,"['r', 'e', 'i', 't', 'e', 'r', 'a', 't', 'i', 'o', 'n']",[],11,10,True +recessional,"['r', 'e', 'c', 'e', 's', 's', 'i', 'o', 'n', 'a', 'l']","['t', 'y']",11,8,True +linage,"['l', 'i', 'n', 'a', 'g', 'e']",['t'],6,9,True +naiver,"['n', 'a', 'i', 'v', 'e', 'r']","['d', 't']",6,8,True +gauntness,"['g', 'a', 'u', 'n', 't', 'n', 'e', 's', 's']",[],9,10,True +biologically,"['b', 'i', 'o', 'l', 'o', 'g', 'i', 'c', 'a', 'l', 'l', 'y']","['e', 's']",12,8,True +pinks,"['p', 'i', 'n', 'k', 's']","['e', 'a', 'o', 'l', 'r', 't', 'm', 'f', 'w']",5,1,True +oilcloths,"['o', 'i', 'l', 'c', 'l', 'o', 't', 'h', 's']",['e'],9,9,True +reef,"['r', 'e', 'e', 'f']","['s', 'p', 'd']",4,7,True +hypothetically,"['h', 'y', 'p', 'o', 't', 'h', 'e', 't', 'i', 'c', 'a', 'l', 'l', 'y']",[],14,10,True +omnivores,"['o', 'm', 'n', 'i', 'v', 'o', 'r', 'e', 's']","['t', 'a']",9,8,True +backings,"['b', 'a', 'c', 'k', 'i', 'n', 'g', 's']","['e', 'r', 'l', 'p']",8,6,True +peaks,"['p', 'e', 'a', 'k', 's']","['t', 'l', 'r', 'm', 'n', 'd', 'b']",5,3,True +spideriest,"['s', 'p', 'i', 'd', 'e', 'r', 'i', 'e', 's', 't']",[],10,10,True +piscatorial,"['p', 'i', 's', 'c', 'a', 't', 'o', 'r', 'i', 'a', 'l']","['e', 'n', 'g', 'd']",11,6,True +schmaltzier,"['s', 'c', 'h', 'm', 'a', 'l', 't', 'z', 'i', 'e', 'r']",[],11,10,True +loathing,"['l', 'o', 'a', 't', 'h', 'i', 'n', 'g']","['e', 's', 'r']",8,7,True +borderlines,"['b', 'o', 'r', 'd', 'e', 'r', 'l', 'i', 'n', 'e', 's']",[],11,10,True +overcooks,"['o', 'v', 'e', 'r', 'c', 'o', 'o', 'k', 's']","['l', 'b']",9,8,True +recall,"['r', 'e', 'c', 'a', 'l', 'l']","['s', 't']",6,8,True +phrasing,"['p', 'h', 'r', 'a', 's', 'i', 'n', 'g']","['e', 'u']",8,8,True +shoved,"['s', 'h', 'o', 'v', 'e', 'd']","['a', 'r', 't', 'w']",6,6,True +appreciatively,"['a', 'p', 'p', 'r', 'e', 'c', 'i', 'a', 't', 'i', 'v', 'e', 'l', 'y']",['n'],14,9,True +supply,"['s', 'u', 'p', 'p', 'l', 'y']","['e', 'a', 't', 'r', 'i']",6,5,True +fireplugs,"['f', 'i', 'r', 'e', 'p', 'l', 'u', 'g', 's']",['o'],9,9,True +peers,"['p', 'e', 'e', 'r', 's']","['k', 'l']",5,8,True +maizes,"['m', 'a', 'i', 'z', 'e', 's']","['d', 'r', 'l', 'h', 'c', 'b', 't']",6,3,True +equalise,"['e', 'q', 'u', 'a', 'l', 'i', 's', 'e']",[],8,10,True +diatribe,"['d', 'i', 'a', 't', 'r', 'i', 'b', 'e']",['l'],8,9,True +rewording,"['r', 'e', 'w', 'o', 'r', 'd', 'i', 'n', 'g']","['s', 't', 'k']",9,7,True +lawless,"['l', 'a', 'w', 'l', 'e', 's', 's']","['n', 'r', 'g']",7,7,True +stiffly,"['s', 't', 'i', 'f', 'f', 'l', 'y']","['e', 'r', 'n']",7,7,True +dissembles,"['d', 'i', 's', 's', 'e', 'm', 'b', 'l', 'e', 's']",[],10,10,True +unsnarl,"['u', 'n', 's', 'n', 'a', 'r', 'l']","['e', 'i', 't']",7,7,True +bootlegged,"['b', 'o', 'o', 't', 'l', 'e', 'g', 'g', 'e', 'd']","['s', 'r', 'n']",10,7,True +lubricate,"['l', 'u', 'b', 'r', 'i', 'c', 'a', 't', 'e']",['f'],9,9,True +pensioning,"['p', 'e', 'n', 's', 'i', 'o', 'n', 'i', 'n', 'g']","['r', 't', 'm']",10,7,True +flabbier,"['f', 'l', 'a', 'b', 'b', 'i', 'e', 'r']","['s', 'o', 'p', 'h']",8,6,True +postmortems,"['p', 'o', 's', 't', 'm', 'o', 'r', 't', 'e', 'm', 's']",[],11,10,True +sharking,"['s', 'h', 'a', 'r', 'k', 'i', 'n', 'g']","['e', 't', 'p', 'l', 'm']",8,5,True +sugarier,"['s', 'u', 'g', 'a', 'r', 'i', 'e', 'r']",[],8,10,True +loyalty,"['l', 'o', 'y', 'a', 'l', 't', 'y']","['e', 's', 'i', 'r']",7,6,True +replicas,"['r', 'e', 'p', 'l', 'i', 'c', 'a', 's']","['t', 'n']",8,8,True +checkout,"['c', 'h', 'e', 'c', 'k', 'o', 'u', 't']","['r', 's', 'i', 'n', 'a', 'l']",8,4,True +drawings,"['d', 'r', 'a', 'w', 'i', 'n', 'g', 's']","['e', 't', 'c']",8,7,True +independence,"['i', 'n', 'd', 'e', 'p', 'e', 'n', 'd', 'e', 'n', 'c', 'e']",[],12,10,True +indubitable,"['i', 'n', 'd', 'u', 'b', 'i', 't', 'a', 'b', 'l', 'e']",[],11,10,True +spirituous,"['s', 'p', 'i', 'r', 'i', 't', 'u', 'o', 'u', 's']",['e'],10,9,True +reconvening,"['r', 'e', 'c', 'o', 'n', 'v', 'e', 'n', 'i', 'n', 'g']",['s'],11,9,True +unlatched,"['u', 'n', 'l', 'a', 't', 'c', 'h', 'e', 'd']","['s', 'r', 'm']",9,7,True +martyrs,"['m', 'a', 'r', 't', 'y', 'r', 's']","['e', 'g']",7,8,True +metaphysical,"['m', 'e', 't', 'a', 'p', 'h', 'y', 's', 'i', 'c', 'a', 'l']",[],12,10,True +diversionary,"['d', 'i', 'v', 'e', 'r', 's', 'i', 'o', 'n', 'a', 'r', 'y']",[],12,10,True +cornstarch,"['c', 'o', 'r', 'n', 's', 't', 'a', 'r', 'c', 'h']","['e', 'i']",10,8,True +mopping,"['m', 'o', 'p', 'p', 'i', 'n', 'g']","['e', 's', 'a', 'l', 't', 'r']",7,4,True +deadlocking,"['d', 'e', 'a', 'd', 'l', 'o', 'c', 'k', 'i', 'n', 'g']","['r', 't', 's']",11,7,True +infrastructures,"['i', 'n', 'f', 'r', 'a', 's', 't', 'r', 'u', 'c', 't', 'u', 'r', 'e', 's']",[],15,10,True +impersonate,"['i', 'm', 'p', 'e', 'r', 's', 'o', 'n', 'a', 't', 'e']",[],11,10,True +minuteman,"['m', 'i', 'n', 'u', 't', 'e', 'm', 'a', 'n']","['r', 's', 'd', 'l']",9,6,True +seductions,"['s', 'e', 'd', 'u', 'c', 't', 'i', 'o', 'n', 's']","['r', 'l']",10,8,True +nevermore,"['n', 'e', 'v', 'e', 'r', 'm', 'o', 'r', 'e']",[],9,10,True +quest,"['q', 'u', 'e', 's', 't']","['w', 'g']",5,8,True +follicle,"['f', 'o', 'l', 'l', 'i', 'c', 'l', 'e']",['a'],8,9,True +kayak,"['_', 'a', '_', 'a', '_']","['s', 'e', 'l', 'n', 'p', 'r', 'm', 'c', 't', 'g']",2,0,False +phenomenons,"['p', 'h', 'e', 'n', 'o', 'm', 'e', 'n', 'o', 'n', 's']","['r', 't']",11,8,True +abyss,"['a', 'b', 'y', 's', 's']","['r', 'm']",5,8,True +pricey,"['p', 'r', 'i', 'c', 'e', 'y']","['d', 'a', 's', 'm']",6,6,True +sweeter,"['s', 'w', 'e', 'e', 't', 'e', 'r']",['p'],7,9,True +changeable,"['c', 'h', 'a', 'n', 'g', 'e', 'a', 'b', 'l', 'e']",[],10,10,True +monies,"['m', 'o', 'n', 'i', 'e', 's']","['d', 'r', 'a', 'g']",6,6,True +suaver,"['s', 'u', 'a', 'v', 'e', 'r']","['d', 'l', 't']",6,7,True +amorphously,"['a', 'm', 'o', 'r', 'p', 'h', 'o', 'u', 's', 'l', 'y']","['e', 'i', 't']",11,7,True +willows,"['w', 'i', 'l', 'l', 'o', 'w', 's']","['e', 'r', 'a', 't', 'n']",7,5,True +inoffensive,"['i', 'n', 'o', 'f', 'f', 'e', 'n', 's', 'i', 'v', 'e']",['t'],11,9,True +loquacious,"['l', 'o', 'q', 'u', 'a', 'c', 'i', 'o', 'u', 's']","['e', 'n']",10,8,True +standardising,"['s', 't', 'a', 'n', 'd', 'a', 'r', 'd', 'i', 's', 'i', 'n', 'g']",[],13,10,True +overspreading,"['o', 'v', 'e', 'r', 's', 'p', 'r', 'e', 'a', 'd', 'i', 'n', 'g']",[],13,10,True +curtain,"['c', 'u', 'r', 't', 'a', 'i', 'n']","['e', 's']",7,8,True +sarong,"['s', 'a', 'r', 'o', 'n', 'g']","['e', 'l', 'i', 't', 'w']",6,5,True +bonitoes,"['b', 'o', 'n', 'i', 't', 'o', 'e', 's']",[],8,10,True +might,"['m', 'i', 'g', 'h', 't']","['s', 'e', 'a', 'r', 'o', 'l']",5,4,True +senna,"['s', 'e', 'n', 'n', 'a']",['r'],5,9,True +disunited,"['d', 'i', 's', 'u', 'n', 'i', 't', 'e', 'd']",[],9,10,True +precautionary,"['p', 'r', 'e', 'c', 'a', 'u', 't', 'i', 'o', 'n', 'a', 'r', 'y']",[],13,10,True +utters,"['u', 't', 't', 'e', 'r', 's']","['o', 'i', 'a']",6,7,True +distinction,"['d', 'i', 's', 't', 'i', 'n', 'c', 't', 'i', 'o', 'n']",['e'],11,9,True +carriers,"['c', 'a', 'r', 'r', 'i', 'e', 'r', 's']",['b'],8,9,True +vizor,"['v', 'i', 'z', 'o', 'r']","['s', 'e', 'a', 'm', 't', 'g']",5,4,True +actually,"['a', 'c', 't', 'u', 'a', 'l', 'l', 'y']","['e', 's', 'i', 'r']",8,6,True +seducers,"['s', 'e', 'd', 'u', 'c', 'e', 'r', 's']","['l', 't']",8,8,True +spirit,"['s', 'p', 'i', 'r', 'i', 't']","['e', 'a']",6,8,True +artists,"['a', 'r', 't', 'i', 's', 't', 's']",['e'],7,9,True +padres,"['p', 'a', 'd', 'r', 'e', 's']","['g', 'o', 'i', 'l', 'u']",6,5,True +handiest,"['h', 'a', 'n', 'd', 'i', 'e', 's', 't']",[],8,10,True +parenthesising,"['p', 'a', 'r', 'e', 'n', 't', 'h', 'e', 's', 'i', 's', 'i', 'n', 'g']",[],14,10,True +debuggers,"['d', 'e', 'b', 'u', 'g', 'g', 'e', 'r', 's']","['t', 'i', 'l', 'f', 'o']",9,5,True +bouncy,"['b', 'o', 'u', 'n', 'c', 'y']","['e', 's', 'r', 'a', 'i', 'd', 'l', 't']",6,2,True +verging,"['v', 'e', 'r', 'g', 'i', 'n', 'g']","['s', 'm']",7,8,True +tree,"['t', 'r', 'e', 'e']","['w', 'h']",4,8,True +ptarmigans,"['p', 't', 'a', 'r', 'm', 'i', 'g', 'a', 'n', 's']",['e'],10,9,True +keyboards,"['k', 'e', 'y', 'b', 'o', 'a', 'r', 'd', 's']","['w', 't']",9,8,True +peek,"['p', 'e', 'e', 'k']",['s'],4,9,True +mussier,"['m', 'u', 's', 's', 'i', 'e', 'r']",['o'],7,9,True +bellowing,"['b', 'e', 'l', 'l', 'o', 'w', 'i', 'n', 'g']","['r', 's', 't', 'd', 'm', 'y']",9,4,True +levitate,"['l', 'e', 'v', 'i', 't', 'a', 't', 'e']","['r', 'm']",8,8,True +bagatelles,"['b', 'a', 'g', 'a', 't', 'e', 'l', 'l', 'e', 's']","['r', 'i']",10,8,True +moralised,"['m', 'o', 'r', 'a', 'l', 'i', 's', 'e', 'd']","['n', 'c']",9,8,True +rung,"['r', 'u', 'n', 'g']","['e', 's', 'a', 'o', 'l', 't', 'i']",4,3,True +authorised,"['a', 'u', 't', 'h', 'o', 'r', 'i', 's', 'e', 'd']",['m'],10,9,True +purl,"['p', 'u', 'r', 'l']","['e', 's', 'a', 'o', 'i', 'f']",4,4,True +simulcast,"['s', 'i', 'm', 'u', 'l', 'c', 'a', 's', 't']",['e'],9,9,True +smoldering,"['s', 'm', 'o', 'l', 'd', 'e', 'r', 'i', 'n', 'g']","['t', 'a']",10,8,True +widens,"['w', 'i', 'd', 'e', 'n', 's']","['r', 'l', 't', 'o', 'a', 'v', 'x', 'g']",6,2,True +medullae,"['m', 'e', 'd', 'u', 'l', 'l', 'a', 'e']",['r'],8,9,True +bassinet,"['b', 'a', 's', 's', 'i', 'n', 'e', 't']","['g', 'm', 'p']",8,7,True +undertaking,"['u', 'n', 'd', 'e', 'r', 't', 'a', 'k', 'i', 'n', 'g']",[],11,10,True +dilutes,"['d', 'i', 'l', 'u', 't', 'e', 's']",[],7,10,True +observatories,"['o', 'b', 's', 'e', 'r', 'v', 'a', 't', 'o', 'r', 'i', 'e', 's']",['n'],13,9,True +servants,"['s', 'e', 'r', 'v', 'a', 'n', 't', 's']","['i', 'p']",8,8,True +gravest,"['g', 'r', 'a', 'v', 'e', 's', 't']","['i', 'n', 'y']",7,7,True +temper,"['t', 'e', 'm', 'p', 'e', 'r']","['d', 's', 'n', 'l']",6,6,True +tantalisingly,"['t', 'a', 'n', 't', 'a', 'l', 'i', 's', 'i', 'n', 'g', 'l', 'y']",[],13,10,True +mentioning,"['m', 'e', 'n', 't', 'i', 'o', 'n', 'i', 'n', 'g']",['r'],10,9,True +anthropologist,"['a', 'n', 't', 'h', 'r', 'o', 'p', 'o', 'l', 'o', 'g', 'i', 's', 't']",[],14,10,True +reenforced,"['r', 'e', 'e', 'n', 'f', 'o', 'r', 'c', 'e', 'd']",[],10,10,True +overconfident,"['o', 'v', 'e', 'r', 'c', 'o', 'n', 'f', 'i', 'd', 'e', 'n', 't']",[],13,10,True +rifer,"['r', 'i', 'f', 'e', 'r']","['s', 'd']",5,8,True +kc,"['_', '_']","['o', 's', 'a', 'e', 'm', 'h', 'i', 'u', 't', 'n']",0,0,False +clash,"['c', 'l', 'a', 's', 'h']","['e', 'f']",5,8,True +breeches,"['b', 'r', 'e', 'e', 'c', 'h', 'e', 's']",[],8,10,True +heretic,"['h', 'e', 'r', 'e', 't', 'i', 'c']","['s', 'a']",7,8,True +centimes,"['c', 'e', 'n', 't', 'i', 'm', 'e', 's']","['r', 'd', 'g']",8,7,True +cumulatively,"['c', 'u', 'm', 'u', 'l', 'a', 't', 'i', 'v', 'e', 'l', 'y']","['s', 'r', 'n']",12,7,True +exclusivity,"['e', 'x', 'c', 'l', 'u', 's', 'i', 'v', 'i', 't', 'y']",[],11,10,True +noontime,"['n', 'o', 'o', 'n', 't', 'i', 'm', 'e']","['a', 's']",8,8,True +cotter,"['c', 'o', 't', 't', 'e', 'r']","['d', 'a', 'i', 'u', 'p', 'h']",6,4,True +whose,"['w', 'h', 'o', 's', 'e']",['t'],5,9,True +downbeat,"['d', 'o', 'w', 'n', 'b', 'e', 'a', 't']","['s', 'i', 'r']",8,7,True +duh,"['d', 'u', 'h']","['a', 'e', 'o', 'i', 't', 'p', 'b', 'g', 'n']",3,1,True +unfurling,"['u', 'n', 'f', 'u', 'r', 'l', 'i', 'n', 'g']","['e', 's', 't']",9,7,True +rack,"['r', 'a', 'c', 'k']","['e', 's', 'l', 't', 'p', 'g', 'n']",4,3,True +interfaced,"['i', 'n', 't', 'e', 'r', 'f', 'a', 'c', 'e', 'd']",['s'],10,9,True +nonobjective,"['n', 'o', 'n', 'o', 'b', 'j', 'e', 'c', 't', 'i', 'v', 'e']",[],12,10,True +forgettable,"['f', 'o', 'r', 'g', 'e', 't', 't', 'a', 'b', 'l', 'e']",['c'],11,9,True +cope,"['c', 'o', 'p', 'e']","['a', 'r', 'l', 'n', 'm', 'h', 'd']",4,3,True +photosensitive,"['p', 'h', 'o', 't', 'o', 's', 'e', 'n', 's', 'i', 't', 'i', 'v', 'e']",[],14,10,True +adapts,"['a', 'd', 'a', 'p', 't', 's']","['e', 'w']",6,8,True +pacifically,"['p', 'a', 'c', 'i', 'f', 'i', 'c', 'a', 'l', 'l', 'y']",['e'],11,9,True +quarto,"['q', 'u', 'a', 'r', 't', 'o']","['e', 's', 'd', 'h']",6,6,True +yodellers,"['y', 'o', 'd', 'e', 'l', 'l', 'e', 'r', 's']","['v', 'w']",9,8,True +jolt,"['j', 'o', 'l', 't']","['e', 's', 'a', 'd', 'v', 'b', 'c']",4,3,True +pettily,"['p', 'e', 't', 't', 'i', 'l', 'y']","['s', 'r', 'n', 'g']",7,6,True +rhetorically,"['r', 'h', 'e', 't', 'o', 'r', 'i', 'c', 'a', 'l', 'l', 'y']",[],12,10,True +negates,"['n', 'e', 'g', 'a', 't', 'e', 's']","['d', 'r', 'b']",7,7,True +unbars,"['u', 'n', 'b', 'a', 'r', 's']","['e', 'i', 'c', 'l', 'd']",6,5,True +versatility,"['v', 'e', 'r', 's', 'a', 't', 'i', 'l', 'i', 't', 'y']",[],11,10,True +duckbill,"['d', 'u', 'c', 'k', 'b', 'i', 'l', 'l']","['e', 's', 'n', 'g', 'r', 't', 'a', 'o', 'w']",8,1,True +muscat,"['m', 'u', 's', 'c', 'a', 't']","['e', 'l', 'i']",6,7,True +tomfooleries,"['t', 'o', 'm', 'f', 'o', 'o', 'l', 'e', 'r', 'i', 'e', 's']",[],12,10,True +multivitamin,"['m', 'u', 'l', 't', 'i', 'v', 'i', 't', 'a', 'm', 'i', 'n']",['e'],12,9,True +rejoicings,"['r', 'e', 'j', 'o', 'i', 'c', 'i', 'n', 'g', 's']",['t'],10,9,True +brokerages,"['b', 'r', 'o', 'k', 'e', 'r', 'a', 'g', 'e', 's']","['t', 'p']",10,8,True +peters,"['p', 'e', 't', 'e', 'r', 's']",['m'],6,9,True +catechising,"['c', 'a', 't', 'e', 'c', 'h', 'i', 's', 'i', 'n', 'g']",['r'],11,9,True +pronounced,"['p', 'r', 'o', 'n', 'o', 'u', 'n', 'c', 'e', 'd']","['s', 'i', 'a', 't']",10,6,True +misquotations,"['m', 'i', 's', 'q', 'u', 'o', 't', 'a', 't', 'i', 'o', 'n', 's']",[],13,10,True +windows,"['w', 'i', 'n', 'd', 'o', 'w', 's']","['e', 'r', 'a', 't', 'g', 'l']",7,4,True +playgoers,"['p', 'l', 'a', 'y', 'g', 'o', 'e', 'r', 's']",['i'],9,9,True +recoiled,"['r', 'e', 'c', 'o', 'i', 'l', 'e', 'd']","['t', 'a']",8,8,True +arrogates,"['a', 'r', 'r', 'o', 'g', 'a', 't', 'e', 's']",['i'],9,9,True +misprinting,"['m', 'i', 's', 'p', 'r', 'i', 'n', 't', 'i', 'n', 'g']",['e'],11,9,True +horizontally,"['h', 'o', 'r', 'i', 'z', 'o', 'n', 't', 'a', 'l', 'l', 'y']","['e', 'c']",12,8,True +collectable,"['c', 'o', 'l', 'l', 'e', 'c', 't', 'a', 'b', 'l', 'e']",[],11,10,True +fetched,"['f', 'e', 't', 'c', 'h', 'e', 'd']","['r', 'i', 'l', 'p']",7,6,True +sapping,"['s', 'a', 'p', 'p', 'i', 'n', 'g']","['e', 'r', 'l']",7,7,True +shipbuilders,"['s', 'h', 'i', 'p', 'b', 'u', 'i', 'l', 'd', 'e', 'r', 's']","['t', 'o']",12,8,True +dispositions,"['d', 'i', 's', 'p', 'o', 's', 'i', 't', 'i', 'o', 'n', 's']",['e'],12,9,True +taught,"['t', 'a', 'u', 'g', 'h', 't']","['e', 's', 'r', 'n', 'l']",6,5,True +harped,"['h', 'a', 'r', 'p', 'e', 'd']",['w'],6,9,True +calculate,"['c', 'a', 'l', 'c', 'u', 'l', 'a', 't', 'e']",[],9,10,True +winnings,"['w', 'i', 'n', 'n', 'i', 'n', 'g', 's']","['e', 'r', 'a']",8,7,True +pillbox,"['p', 'i', 'l', 'l', 'b', 'o', 'x']","['e', 's', 'n']",7,7,True +denouncement,"['d', 'e', 'n', 'o', 'u', 'n', 'c', 'e', 'm', 'e', 'n', 't']",['s'],12,9,True +elusiveness,"['e', 'l', 'u', 's', 'i', 'v', 'e', 'n', 'e', 's', 's']",[],11,10,True +carotid,"['c', 'a', 'r', 'o', 't', 'i', 'd']","['e', 's', 'n', 'l']",7,6,True +thanked,"['t', 'h', 'a', 'n', 'k', 'e', 'd']","['s', 'r', 'l', 'c', 'm', 'g', 'w']",7,3,True +analysers,"['a', 'n', 'a', 'l', 'y', 's', 'e', 'r', 's']",[],9,10,True +scrunch,"['s', 'c', 'r', 'u', 'n', 'c', 'h']","['e', 'i', 't', 'a']",7,6,True +proofreads,"['p', 'r', 'o', 'o', 'f', 'r', 'e', 'a', 'd', 's']",[],10,10,True +fastidious,"['f', 'a', 's', 't', 'i', 'd', 'i', 'o', 'u', 's']",['e'],10,9,True +finis,"['f', 'i', 'n', 'i', 's']","['e', 'a', 'o', 'l', 'r', 't', 'w', 'm']",5,2,True +incumbencies,"['i', 'n', 'c', 'u', 'm', 'b', 'e', 'n', 'c', 'i', 'e', 's']",['r'],12,9,True +meddlers,"['m', 'e', 'd', 'd', 'l', 'e', 'r', 's']",['t'],8,9,True +bullion,"['b', 'u', 'l', 'l', 'i', 'o', 'n']","['e', 's', 't', 'm']",7,6,True +movements,"['m', 'o', 'v', 'e', 'm', 'e', 'n', 't', 's']",['r'],9,9,True +persuasive,"['p', 'e', 'r', 's', 'u', 'a', 's', 'i', 'v', 'e']",[],10,10,True +quarterfinals,"['q', 'u', 'a', 'r', 't', 'e', 'r', 'f', 'i', 'n', 'a', 'l', 's']",[],13,10,True +desserts,"['d', 'e', 's', 's', 'e', 'r', 't', 's']",[],8,10,True +underhand,"['u', 'n', 'd', 'e', 'r', 'h', 'a', 'n', 'd']","['s', 'i', 'g', 't']",9,6,True +armories,"['a', 'r', 'm', 'o', 'r', 'i', 'e', 's']",['t'],8,9,True +fretfully,"['f', 'r', 'e', 't', 'f', 'u', 'l', 'l', 'y']","['s', 'p', 'n', 'i', 'd']",9,5,True +undivided,"['u', 'n', 'd', 'i', 'v', 'i', 'd', 'e', 'd']","['s', 'r']",9,8,True +frizzling,"['f', 'r', 'i', 'z', 'z', 'l', 'i', 'n', 'g']","['e', 's', 't', 'k']",9,6,True +aces,"['a', 'c', 'e', 's']","['o', 'x', 'g', 'w', 'y', 'l', 'p', 'r']",4,2,True +nationalist,"['n', 'a', 't', 'i', 'o', 'n', 'a', 'l', 'i', 's', 't']",['e'],11,9,True +thrives,"['t', 'h', 'r', 'i', 'v', 'e', 's']",[],7,10,True +bishopric,"['b', 'i', 's', 'h', 'o', 'p', 'r', 'i', 'c']","['e', 'd']",9,8,True +narrators,"['n', 'a', 'r', 'r', 'a', 't', 'o', 'r', 's']","['e', 'i']",9,8,True +hobnails,"['h', 'o', 'b', 'n', 'a', 'i', 'l', 's']","['e', 'r', 't', 'g']",8,6,True +carousels,"['c', 'a', 'r', 'o', 'u', 's', 'e', 'l', 's']",[],9,10,True +parishes,"['p', 'a', 'r', 'i', 's', 'h', 'e', 's']",[],8,10,True +automatic,"['a', 'u', 't', 'o', 'm', 'a', 't', 'i', 'c']","['e', 's']",9,8,True +tubed,"['t', 'u', 'b', 'e', 'd']","['s', 'a', 'o', 'i', 'r', 'n']",5,4,True +sublimes,"['s', 'u', 'b', 'l', 'i', 'm', 'e', 's']","['f', 'd', 'r']",8,7,True +waltzing,"['w', 'a', 'l', 't', 'z', 'i', 'n', 'g']","['e', 's', 'r', 'y']",8,6,True +pilled,"['p', 'i', 'l', 'l', 'e', 'd']","['a', 'o', 'u', 't', 'm', 'f', 'w', 'k']",6,2,True +duds,"['_', 'u', '_', 's']","['e', 'a', 'o', 'i', 't', 'p', 'b', 'g', 'n', 'm']",2,0,False +castigation,"['c', 'a', 's', 't', 'i', 'g', 'a', 't', 'i', 'o', 'n']",['e'],11,9,True +chanced,"['c', 'h', 'a', 'n', 'c', 'e', 'd']","['s', 'r', 'l']",7,7,True +affiliates,"['a', 'f', 'f', 'i', 'l', 'i', 'a', 't', 'e', 's']",[],10,10,True +dickered,"['d', 'i', 'c', 'k', 'e', 'r', 'e', 'd']","['n', 'f', 't']",8,7,True +hexadecimal,"['h', 'e', 'x', 'a', 'd', 'e', 'c', 'i', 'm', 'a', 'l']","['r', 't', 'n', 's']",11,6,True +firmer,"['f', 'i', 'r', 'm', 'e', 'r']","['d', 'a', 'g']",6,7,True +foresaw,"['f', 'o', 'r', 'e', 's', 'a', 'w']","['t', 'n', 'i', 'm']",7,6,True +muckraker,"['m', 'u', 'c', 'k', 'r', 'a', 'k', 'e', 'r']","['s', 'i']",9,8,True +truth,"['t', 'r', 'u', 't', 'h']","['s', 'e', 'a', 'o']",5,6,True +crest,"['c', 'r', 'e', 's', 't']","['w', 'u']",5,8,True +parboiling,"['p', 'a', 'r', 'b', 'o', 'i', 'l', 'i', 'n', 'g']","['e', 's', 't', 'w']",10,6,True +compactness,"['c', 'o', 'm', 'p', 'a', 'c', 't', 'n', 'e', 's', 's']","['i', 'l', 'u', 'w', 'r']",11,5,True +prehensile,"['p', 'r', 'e', 'h', 'e', 'n', 's', 'i', 'l', 'e']","['v', 't']",10,8,True +jabberer,"['j', 'a', 'b', 'b', 'e', 'r', 'e', 'r']","['d', 't', 'p', 'n']",8,6,True +housewife,"['h', 'o', 'u', 's', 'e', 'w', 'i', 'f', 'e']","['r', 'a', 't']",9,7,True +salving,"['s', 'a', 'l', 'v', 'i', 'n', 'g']","['e', 'r', 't']",7,7,True +rusk,"['r', 'u', 's', 'k']","['e', 't', 'a', 'h', 'm', 'd']",4,4,True +sprawls,"['s', 'p', 'r', 'a', 'w', 'l', 's']","['e', 't', 'i']",7,7,True +commercial,"['c', 'o', 'm', 'm', 'e', 'r', 'c', 'i', 'a', 'l']","['s', 'n', 't', 'g']",10,6,True +bales,"['b', 'a', 'l', 'e', 's']","['r', 't', 'g', 'm', 'w', 'p', 'h', 'd', 'v']",5,1,True +blisters,"['b', 'l', 'i', 's', 't', 'e', 'r', 's']","['o', 'u', 'a']",8,7,True +nullifying,"['n', 'u', 'l', 'l', 'i', 'f', 'y', 'i', 'n', 'g']",['e'],10,9,True +unclaimed,"['u', 'n', 'c', 'l', 'a', 'i', 'm', 'e', 'd']","['s', 'r', 't', 'p']",9,6,True +glads,"['g', 'l', 'a', 'd', 's']","['e', 'r', 'f', 'p', 'c']",5,5,True +boosts,"['b', 'o', 'o', 's', 't', 's']","['e', 'a', 'r']",6,7,True +backbites,"['b', 'a', 'c', 'k', 'b', 'i', 't', 'e', 's']","['n', 'p', 'r']",9,7,True +hankered,"['h', 'a', 'n', 'k', 'e', 'r', 'e', 'd']","['t', 'm']",8,8,True +unfurls,"['u', 'n', 'f', 'u', 'r', 'l', 's']","['e', 'a', 't', 'o']",7,6,True +runs,"['r', 'u', 'n', 's']","['e', 'a', 'o', 'i', 't', 'p', 'b', 'g', 'd']",4,1,True +wheezed,"['w', 'h', 'e', 'e', 'z', 'e', 'd']","['r', 's', 't', 'l', 'c']",7,5,True +awkwarder,"['a', 'w', 'k', 'w', 'a', 'r', 'd', 'e', 'r']","['s', 't', 'i', 'o']",9,6,True +probabilities,"['p', 'r', 'o', 'b', 'a', 'b', 'i', 'l', 'i', 't', 'i', 'e', 's']",[],13,10,True +crystalizes,"['c', 'r', 'y', 's', 't', 'a', 'l', 'i', 'z', 'e', 's']",[],11,10,True +disencumber,"['d', 'i', 's', 'e', 'n', 'c', 'u', 'm', 'b', 'e', 'r']",[],11,10,True +oversee,"['o', 'v', 'e', 'r', 's', 'e', 'e']",[],7,10,True +bailout,"['b', 'a', 'i', 'l', 'o', 'u', 't']","['e', 's', 'r', 'n', 'f']",7,5,True +psyches,"['p', 's', 'y', 'c', 'h', 'e', 's']",['a'],7,9,True +scrotums,"['s', 'c', 'r', 'o', 't', 'u', 'm', 's']","['e', 'i']",8,8,True +ostensible,"['o', 's', 't', 'e', 'n', 's', 'i', 'b', 'l', 'e']","['a', 'r', 'x', 'd']",10,6,True +drowsy,"['d', 'r', 'o', 'w', 's', 'y']","['e', 't', 'i', 'a', 'f']",6,5,True +incomes,"['i', 'n', 'c', 'o', 'm', 'e', 's']","['t', 'd']",7,8,True +majority,"['m', 'a', 'j', 'o', 'r', 'i', 't', 'y']","['e', 's', 'n', 'g']",8,6,True +crowing,"['c', 'r', 'o', 'w', 'i', 'n', 'g']","['e', 's', 'a', 'l', 'p']",7,5,True +orthodontics,"['o', 'r', 't', 'h', 'o', 'd', 'o', 'n', 't', 'i', 'c', 's']",['e'],12,9,True +wishers,"['w', 'i', 's', 'h', 'e', 'r', 's']","['t', 'a']",7,8,True +washcloth,"['w', 'a', 's', 'h', 'c', 'l', 'o', 't', 'h']","['e', 'i']",9,8,True +trimester,"['t', 'r', 'i', 'm', 'e', 's', 't', 'e', 'r']",[],9,10,True +rehashing,"['r', 'e', 'h', 'a', 's', 'h', 'i', 'n', 'g']","['t', 'l', 'p', 'm', 'd', 'c']",9,4,True +astonishes,"['a', 's', 't', 'o', 'n', 'i', 's', 'h', 'e', 's']",[],10,10,True +multilingual,"['m', 'u', 'l', 't', 'i', 'l', 'i', 'n', 'g', 'u', 'a', 'l']",['e'],12,9,True +trickled,"['t', 'r', 'i', 'c', 'k', 'l', 'e', 'd']","['s', 'z']",8,8,True +reverie,"['r', 'e', 'v', 'e', 'r', 'i', 'e']",['s'],7,9,True +maidenhead,"['m', 'a', 'i', 'd', 'e', 'n', 'h', 'e', 'a', 'd']","['s', 'r', 't']",10,7,True +undermost,"['u', 'n', 'd', 'e', 'r', 'm', 'o', 's', 't']","['i', 'l', 'p']",9,7,True +ewer,"['e', 'w', 'e', 'r']","['s', 'v', 'x']",4,7,True +biathlon,"['b', 'i', 'a', 't', 'h', 'l', 'o', 'n']","['e', 's', 'r', 'd']",8,6,True +invoking,"['i', 'n', 'v', 'o', 'k', 'i', 'n', 'g']","['e', 's', 'u', 'c', 't', 'm']",8,4,True +overbooks,"['o', 'v', 'e', 'r', 'b', 'o', 'o', 'k', 's']",['l'],9,9,True +stentorian,"['s', 't', 'e', 'n', 't', 'o', 'r', 'i', 'a', 'n']",[],10,10,True +overs,"['o', 'v', 'e', 'r', 's']",[],5,10,True +summon,"['s', 'u', 'm', 'm', 'o', 'n']","['e', 'a', 't', 'r', 'i', 'l']",6,4,True +lexicographers,"['l', 'e', 'x', 'i', 'c', 'o', 'g', 'r', 'a', 'p', 'h', 'e', 'r', 's']",['n'],14,9,True +emotions,"['e', 'm', 'o', 't', 'i', 'o', 'n', 's']",[],8,10,True diff --git a/adaptive_pattern.csv b/adaptive_pattern.csv new file mode 100644 index 0000000..a73c63d --- /dev/null +++ b/adaptive_pattern.csv @@ -0,0 +1,1001 @@ +target,discovered,wrong letters,number of hits,lives remaining,game won +begrudges,"['b', 'e', 'g', 'r', 'u', 'd', 'g', 'e', 's']",[],9,10,True +omegas,"['o', 'm', 'e', 'g', 'a', 's']",[],6,10,True +caliphate,"['c', 'a', 'l', 'i', 'p', 'h', 'a', 't', 'e']",[],9,10,True +sarsaparillas,"['s', 'a', 'r', 's', 'a', 'p', 'a', 'r', 'i', 'l', 'l', 'a', 's']",['e'],13,9,True +retook,"['r', 'e', 't', 'o', 'o', 'k']","['a', 'i']",6,8,True +rafter,"['r', 'a', 'f', 't', 'e', 'r']","['d', 's', 'o']",6,7,True +declassify,"['d', 'e', 'c', 'l', 'a', 's', 's', 'i', 'f', 'y']",['n'],10,9,True +hyaenas,"['h', 'y', 'a', 'e', 'n', 'a', 's']","['t', 'd']",7,8,True +limping,"['l', 'i', 'm', 'p', 'i', 'n', 'g']","['e', 't']",7,8,True +cocoanut,"['c', 'o', 'c', 'o', 'a', 'n', 'u', 't']","['e', 'i', 's', 'l']",8,6,True +prematurely,"['p', 'r', 'e', 'm', 'a', 't', 'u', 'r', 'e', 'l', 'y']","['s', 'i']",11,8,True +lentils,"['l', 'e', 'n', 't', 'i', 'l', 's']",[],7,10,True +releases,"['r', 'e', 'l', 'e', 'a', 's', 'e', 's']",['d'],8,9,True +doddering,"['d', 'o', 'd', 'd', 'e', 'r', 'i', 'n', 'g']","['t', 'm']",9,8,True +dozens,"['d', 'o', 'z', 'e', 'n', 's']","['r', 'l', 'y', 't', 'm']",6,5,True +sprawled,"['s', 'p', 'r', 'a', 'w', 'l', 'e', 'd']","['t', 'c', 'i', 'g']",8,6,True +upgrades,"['u', 'p', 'g', 'r', 'a', 'd', 'e', 's']","['i', 'o']",8,8,True +bleakness,"['b', 'l', 'e', 'a', 'k', 'n', 'e', 's', 's']",[],9,10,True +ampler,"['a', 'm', 'p', 'l', 'e', 'r']","['d', 's', 'i', 't', 'g']",6,5,True +smithy,"['s', 'm', 'i', 't', 'h', 'y']","['e', 'a', 'n']",6,7,True +ranger,"['r', 'a', 'n', 'g', 'e', 'r']","['d', 's', 'o', 't', 'p']",6,5,True +prenatal,"['p', 'r', 'e', 'n', 'a', 't', 'a', 'l']","['i', 's']",8,8,True +shopkeeper,"['s', 'h', 'o', 'p', 'k', 'e', 'e', 'p', 'e', 'r']",[],10,10,True +wriggled,"['w', 'r', 'i', 'g', 'g', 'l', 'e', 'd']","['s', 'p', 'z', 'c']",8,6,True +revivify,"['r', 'e', 'v', 'i', 'v', 'i', 'f', 'y']","['n', 's', 't']",8,7,True +snaffles,"['s', 'n', 'a', 'f', 'f', 'l', 'e', 's']","['i', 't', 'u']",8,7,True +compels,"['c', 'o', 'm', 'p', 'e', 'l', 's']","['r', 't']",7,8,True +hunchback,"['h', 'u', 'n', 'c', 'h', 'b', 'a', 'c', 'k']","['e', 'i', 'o', 's']",9,6,True +ridging,"['r', 'i', 'd', 'g', 'i', 'n', 'g']",['e'],7,9,True +foghorn,"['f', 'o', 'g', 'h', 'o', 'r', 'n']","['e', 'i', 'a', 's', 'c']",7,5,True +steeple,"['s', 't', 'e', 'e', 'p', 'l', 'e']",[],7,10,True +chitchats,"['c', 'h', 'i', 't', 'c', 'h', 'a', 't', 's']",['e'],9,9,True +strain,"['s', 't', 'r', 'a', 'i', 'n']",['e'],6,9,True +hounded,"['h', 'o', 'u', 'n', 'd', 'e', 'd']","['s', 'm', 'f', 'w', 'p']",7,5,True +torsi,"['t', 'o', 'r', 's', 'i']",['e'],5,9,True +laze,"['l', 'a', 'z', 'e']","['t', 'm', 'n', 'k', 'd']",4,5,True +nightshirts,"['n', 'i', 'g', 'h', 't', 's', 'h', 'i', 'r', 't', 's']",['e'],11,9,True +ogres,"['o', 'g', 'r', 'e', 's']","['a', 'i', 'l']",5,7,True +preceptor,"['p', 'r', 'e', 'c', 'e', 'p', 't', 'o', 'r']",[],9,10,True +prolong,"['p', 'r', 'o', 'l', 'o', 'n', 'g']","['e', 'i', 'a', 't']",7,6,True +muckraker,"['m', 'u', 'c', 'k', 'r', 'a', 'k', 'e', 'r']","['s', 'd']",9,8,True +pledges,"['p', 'l', 'e', 'd', 'g', 'e', 's']",[],7,10,True +standoffs,"['s', 't', 'a', 'n', 'd', 'o', 'f', 'f', 's']","['e', 'i']",9,8,True +blinking,"['b', 'l', 'i', 'n', 'k', 'i', 'n', 'g']","['e', 't', 's']",8,7,True +comparatively,"['c', 'o', 'm', 'p', 'a', 'r', 'a', 't', 'i', 'v', 'e', 'l', 'y']",[],13,10,True +curtained,"['c', 'u', 'r', 't', 'a', 'i', 'n', 'e', 'd']",['s'],9,9,True +menials,"['m', 'e', 'n', 'i', 'a', 'l', 's']",[],7,10,True +obduracy,"['o', 'b', 'd', 'u', 'r', 'a', 'c', 'y']","['e', 'i', 't']",8,7,True +marauds,"['m', 'a', 'r', 'a', 'u', 'd', 's']","['e', 'i', 'o']",7,7,True +alphabetic,"['a', 'l', 'p', 'h', 'a', 'b', 'e', 't', 'i', 'c']",['s'],10,9,True +marauding,"['m', 'a', 'r', 'a', 'u', 'd', 'i', 'n', 'g']","['e', 'o']",9,8,True +slenderises,"['s', 'l', 'e', 'n', 'd', 'e', 'r', 'i', 's', 'e', 's']",[],11,10,True +pragmatism,"['p', 'r', 'a', 'g', 'm', 'a', 't', 'i', 's', 'm']","['e', 'n']",10,8,True +mammon,"['m', 'a', 'm', 'm', 'o', 'n']","['e', 's', 'i', 'r', 'l']",6,5,True +extensional,"['e', 'x', 't', 'e', 'n', 's', 'i', 'o', 'n', 'a', 'l']",[],11,10,True +volatility,"['v', 'o', 'l', 'a', 't', 'i', 'l', 'i', 't', 'y']","['e', 'n']",10,8,True +backless,"['b', 'a', 'c', 'k', 'l', 'e', 's', 's']","['n', 't', 'r']",8,7,True +compile,"['c', 'o', 'm', 'p', 'i', 'l', 'e']","['a', 'n']",7,8,True +weeper,"['w', 'e', 'e', 'p', 'e', 'r']",['d'],6,9,True +summarises,"['s', 'u', 'm', 'm', 'a', 'r', 'i', 's', 'e', 's']",[],10,10,True +inessential,"['i', 'n', 'e', 's', 's', 'e', 'n', 't', 'i', 'a', 'l']",[],11,10,True +repudiations,"['r', 'e', 'p', 'u', 'd', 'i', 'a', 't', 'i', 'o', 'n', 's']",[],12,10,True +arthritics,"['a', 'r', 't', 'h', 'r', 'i', 't', 'i', 'c', 's']","['e', 'n']",10,8,True +lipids,"['l', 'i', 'p', 'i', 'd', 's']","['e', 'a', 'o', 'm']",6,6,True +musts,"['m', 'u', 's', 't', 's']","['e', 'g']",5,8,True +manner,"['m', 'a', 'n', 'n', 'e', 'r']","['d', 's', 'i', 't']",6,6,True +ride,"['r', 'i', 'd', 'e']","['a', 'o', 'l', 't', 'm', 'f', 'p']",4,3,True +slovens,"['s', 'l', 'o', 'v', 'e', 'n', 's']","['r', 't', 'd']",7,7,True +nosed,"['n', 'o', 's', 'e', 'd']",[],5,10,True +grimness,"['g', 'r', 'i', 'm', 'n', 'e', 's', 's']",['t'],8,9,True +ad,"['a', 'd']","['o', 's', 't', 'm', 'n', 'y', 'h']",2,3,True +attitudinise,"['a', 't', 't', 'i', 't', 'u', 'd', 'i', 'n', 'i', 's', 'e']",[],12,10,True +leftie,"['l', 'e', 'f', 't', 'i', 'e']","['r', 'd']",6,8,True +saloons,"['s', 'a', 'l', 'o', 'o', 'n', 's']","['e', 'i']",7,8,True +boorish,"['b', 'o', 'o', 'r', 'i', 's', 'h']","['e', 'n', 'k']",7,7,True +guarantees,"['g', 'u', 'a', 'r', 'a', 'n', 't', 'e', 'e', 's']",[],10,10,True +frightens,"['f', 'r', 'i', 'g', 'h', 't', 'e', 'n', 's']",[],9,10,True +manicure,"['m', 'a', 'n', 'i', 'c', 'u', 'r', 'e']",['t'],8,9,True +seamless,"['s', 'e', 'a', 'm', 'l', 'e', 's', 's']",[],8,10,True +disintegration,"['d', 'i', 's', 'i', 'n', 't', 'e', 'g', 'r', 'a', 't', 'i', 'o', 'n']",[],14,10,True +misread,"['m', 'i', 's', 'r', 'e', 'a', 'd']",['l'],7,9,True +forages,"['f', 'o', 'r', 'a', 'g', 'e', 's']","['i', 'l', 't', 'm']",7,6,True +oxymoron,"['o', 'x', 'y', 'm', 'o', 'r', 'o', 'n']","['e', 'i', 'a']",8,7,True +battier,"['b', 'a', 't', 't', 'i', 'e', 'r']","['s', 'd', 'n', 'f']",7,6,True +capitalise,"['c', 'a', 'p', 'i', 't', 'a', 'l', 'i', 's', 'e']",['n'],10,9,True +remember,"['r', 'e', 'm', 'e', 'm', 'b', 'e', 'r']","['d', 't']",8,8,True +overbooking,"['o', 'v', 'e', 'r', 'b', 'o', 'o', 'k', 'i', 'n', 'g']",['l'],11,9,True +barfed,"['b', 'a', 'r', 'f', 'e', 'd']","['t', 'l', 'g']",6,7,True +immersed,"['i', 'm', 'm', 'e', 'r', 's', 'e', 'd']","['n', 'a']",8,8,True +microcosms,"['m', 'i', 'c', 'r', 'o', 'c', 'o', 's', 'm', 's']",['e'],10,9,True +paediatrics,"['p', 'a', 'e', 'd', 'i', 'a', 't', 'r', 'i', 'c', 's']",[],11,10,True +shorelines,"['s', 'h', 'o', 'r', 'e', 'l', 'i', 'n', 'e', 's']",['t'],10,9,True +hedonistic,"['h', 'e', 'd', 'o', 'n', 'i', 's', 't', 'i', 'c']",['l'],10,9,True +heroins,"['h', 'e', 'r', 'o', 'i', 'n', 's']",['g'],7,9,True +hoot,"['h', 'o', 'o', 't']","['e', 's', 'm', 'f', 'l']",4,5,True +tabbed,"['t', 'a', 'b', 'b', 'e', 'd']",['k'],6,9,True +trig,"['t', 'r', 'i', 'g']","['e', 's', 'o', 'a']",4,6,True +dais,"['d', 'a', 'i', 's']","['e', 't', 'p', 'g', 'm', 'y', 'b']",4,3,True +pursers,"['p', 'u', 'r', 's', 'e', 'r', 's']",[],7,10,True +perihelia,"['p', 'e', 'r', 'i', 'h', 'e', 'l', 'i', 'a']",['s'],9,9,True +distention,"['d', 'i', 's', 't', 'e', 'n', 't', 'i', 'o', 'n']",[],10,10,True +dork,"['d', 'o', 'r', 'k']","['e', 's', 'l', 'n', 'm', 'y']",4,4,True +medically,"['m', 'e', 'd', 'i', 'c', 'a', 'l', 'l', 'y']",['s'],9,9,True +crepes,"['c', 'r', 'e', 'p', 'e', 's']",[],6,10,True +decoyed,"['d', 'e', 'c', 'o', 'y', 'e', 'd']","['i', 't', 'a']",7,7,True +refill,"['r', 'e', 'f', 'i', 'l', 'l']","['a', 's', 'n']",6,7,True +gliders,"['g', 'l', 'i', 'd', 'e', 'r', 's']","['t', 'o', 'a', 'u']",7,6,True +arbitrariness,"['a', 'r', 'b', 'i', 't', 'r', 'a', 'r', 'i', 'n', 'e', 's', 's']",[],13,10,True +tackier,"['t', 'a', 'c', 'k', 'i', 'e', 'r']","['s', 'd', 'n']",7,7,True +pacifier,"['p', 'a', 'c', 'i', 'f', 'i', 'e', 'r']","['s', 'm']",8,8,True +unreasoning,"['u', 'n', 'r', 'e', 'a', 's', 'o', 'n', 'i', 'n', 'g']",[],11,10,True +huskiness,"['h', 'u', 's', 'k', 'i', 'n', 'e', 's', 's']",['t'],9,9,True +cosy,"['c', 'o', 's', 'y']","['e', 't', 'h', 'k', 'p', 'n', 'r']",4,3,True +cruets,"['c', 'r', 'u', 'e', 't', 's']",['f'],6,9,True +papery,"['p', 'a', 'p', 'e', 'r', 'y']","['s', 'n', 'l']",6,7,True +buddy,"['_', 'u', '_', '_', 'y']","['s', 'e', 'a', 'o', 'i', 'm', 'l', 'n', 'r', 'p']",2,0,False +breastwork,"['b', 'r', 'e', 'a', 's', 't', 'w', 'o', 'r', 'k']",['i'],10,9,True +clapped,"['c', 'l', 'a', 'p', 'p', 'e', 'd']","['s', 'o']",7,8,True +anchors,"['a', 'n', 'c', 'h', 'o', 'r', 's']","['e', 'i', 't']",7,7,True +evenest,"['e', 'v', 'e', 'n', 'e', 's', 't']",[],7,10,True +sensuousness,"['s', 'e', 'n', 's', 'u', 'o', 'u', 's', 'n', 'e', 's', 's']","['r', 'i']",12,8,True +institute,"['i', 'n', 's', 't', 'i', 't', 'u', 't', 'e']",['a'],9,9,True +tollgates,"['t', 'o', 'l', 'l', 'g', 'a', 't', 'e', 's']",['i'],9,9,True +mindbogglingly,"['m', 'i', 'n', 'd', 'b', 'o', 'g', 'g', 'l', 'i', 'n', 'g', 'l', 'y']",['e'],14,9,True +wartime,"['w', 'a', 'r', 't', 'i', 'm', 'e']","['c', 's']",7,8,True +nerveless,"['n', 'e', 'r', 'v', 'e', 'l', 'e', 's', 's']",[],9,10,True +wiseacres,"['w', 'i', 's', 'e', 'a', 'c', 'r', 'e', 's']",['l'],9,9,True +commissioned,"['c', 'o', 'm', 'm', 'i', 's', 's', 'i', 'o', 'n', 'e', 'd']",[],12,10,True +piazze,"['p', 'i', 'a', 'z', 'z', 'e']","['l', 't', 's']",6,7,True +golfed,"['g', 'o', 'l', 'f', 'e', 'd']","['a', 't']",6,8,True +rattier,"['r', 'a', 't', 't', 'i', 'e', 'r']","['s', 'd', 'n', 'o']",7,6,True +mattering,"['m', 'a', 't', 't', 'e', 'r', 'i', 'n', 'g']","['p', 'u']",9,8,True +demagogy,"['d', 'e', 'm', 'a', 'g', 'o', 'g', 'y']",['i'],8,9,True +articulates,"['a', 'r', 't', 'i', 'c', 'u', 'l', 'a', 't', 'e', 's']",['d'],11,9,True +capitalism,"['c', 'a', 'p', 'i', 't', 'a', 'l', 'i', 's', 'm']","['e', 'n']",10,8,True +barefaced,"['b', 'a', 'r', 'e', 'f', 'a', 'c', 'e', 'd']","['s', 'n']",9,8,True +lattice,"['l', 'a', 't', 't', 'i', 'c', 'e']",[],7,10,True +caffeine,"['c', 'a', 'f', 'f', 'e', 'i', 'n', 'e']","['s', 't']",8,8,True +transmigrate,"['t', 'r', 'a', 'n', 's', 'm', 'i', 'g', 'r', 'a', 't', 'e']",[],12,10,True +padlocked,"['p', 'a', 'd', 'l', 'o', 'c', 'k', 'e', 'd']","['s', 'u']",9,8,True +lyrical,"['l', 'y', 'r', 'i', 'c', 'a', 'l']","['e', 's', 'g']",7,7,True +utopia,"['u', 't', 'o', 'p', 'i', 'a']","['e', 's']",6,8,True +dawns,"['d', 'a', 'w', 'n', 's']","['e', 'o', 'l', 'r', 'f', 'y', 'p']",5,3,True +devastation,"['d', 'e', 'v', 'a', 's', 't', 'a', 't', 'i', 'o', 'n']",[],11,10,True +baking,"['_', 'a', '_', 'i', 'n', 'g']","['e', 's', 'r', 'w', 't', 'l', 'f', 'p', 'm', 'h']",4,0,False +skyjack,"['s', 'k', 'y', 'j', 'a', 'c', 'k']","['e', 'i', 'm', 'l']",7,6,True +courtrooms,"['c', 'o', 'u', 'r', 't', 'r', 'o', 'o', 'm', 's']","['e', 'i']",10,8,True +interacts,"['i', 'n', 't', 'e', 'r', 'a', 'c', 't', 's']",[],9,10,True +spiked,"['s', 'p', 'i', 'k', 'e', 'd']","['a', 'o', 't']",6,7,True +brow,"['b', 'r', 'o', 'w']","['e', 's', 'l', 'p', 't', 'g']",4,4,True +company,"['c', 'o', 'm', 'p', 'a', 'n', 'y']","['e', 'i', 's']",7,7,True +camerawomen,"['c', 'a', 'm', 'e', 'r', 'a', 'w', 'o', 'm', 'e', 'n']","['s', 'd']",11,8,True +legatees,"['l', 'e', 'g', 'a', 't', 'e', 'e', 's']",['r'],8,9,True +remittance,"['r', 'e', 'm', 'i', 't', 't', 'a', 'n', 'c', 'e']",['l'],10,9,True +acidifies,"['a', 'c', 'i', 'd', 'i', 'f', 'i', 'e', 's']",['t'],9,9,True +surest,"['s', 'u', 'r', 'e', 's', 't']","['a', 'y', 'o']",6,7,True +brawn,"['b', 'r', 'a', 'w', 'n']","['s', 'e', 't', 'p', 'd']",5,5,True +cohesively,"['c', 'o', 'h', 'e', 's', 'i', 'v', 'e', 'l', 'y']",[],10,10,True +jalousies,"['j', 'a', 'l', 'o', 'u', 's', 'i', 'e', 's']",[],9,10,True +personalities,"['p', 'e', 'r', 's', 'o', 'n', 'a', 'l', 'i', 't', 'i', 'e', 's']",[],13,10,True +soberly,"['s', 'o', 'b', 'e', 'r', 'l', 'y']",[],7,10,True +boggier,"['b', 'o', 'g', 'g', 'i', 'e', 'r']","['s', 'd', 'a', 'l', 'f']",7,5,True +golf,"['g', 'o', 'l', 'f']","['e', 's', 'd', 't']",4,6,True +spectrum,"['s', 'p', 'e', 'c', 't', 'r', 'u', 'm']",['i'],8,9,True +incorrigibility,"['i', 'n', 'c', 'o', 'r', 'r', 'i', 'g', 'i', 'b', 'i', 'l', 'i', 't', 'y']",[],15,10,True +waistline,"['w', 'a', 'i', 's', 't', 'l', 'i', 'n', 'e']",[],9,10,True +fraternises,"['f', 'r', 'a', 't', 'e', 'r', 'n', 'i', 's', 'e', 's']",[],11,10,True +working,"['w', 'o', 'r', 'k', 'i', 'n', 'g']","['e', 'a', 'l', 'p', 's', 'f', 'm']",7,3,True +spares,"['s', 'p', 'a', 'r', 'e', 's']","['d', 't', 'h', 'l', 'n']",6,5,True +sieves,"['s', 'i', 'e', 'v', 'e', 's']",['g'],6,9,True +twisters,"['t', 'w', 'i', 's', 't', 'e', 'r', 's']",[],8,10,True +pronounceable,"['p', 'r', 'o', 'n', 'o', 'u', 'n', 'c', 'e', 'a', 'b', 'l', 'e']",['i'],13,9,True +reopening,"['r', 'e', 'o', 'p', 'e', 'n', 'i', 'n', 'g']",['d'],9,9,True +godfathers,"['g', 'o', 'd', 'f', 'a', 't', 'h', 'e', 'r', 's']",['n'],10,9,True +dispenser,"['d', 'i', 's', 'p', 'e', 'n', 's', 'e', 'r']",[],9,10,True +tableaus,"['t', 'a', 'b', 'l', 'e', 'a', 'u', 's']",['o'],8,9,True +parenthesised,"['p', 'a', 'r', 'e', 'n', 't', 'h', 'e', 's', 'i', 's', 'e', 'd']",[],13,10,True +stratum,"['s', 't', 'r', 'a', 't', 'u', 'm']","['e', 'i', 'c']",7,7,True +goatskin,"['g', 'o', 'a', 't', 's', 'k', 'i', 'n']",['e'],8,9,True +bitch,"['b', 'i', 't', 'c', 'h']","['s', 'e', 'a', 'o', 'y', 'w', 'p', 'd']",5,2,True +coalesced,"['c', 'o', 'a', 'l', 'e', 's', 'c', 'e', 'd']",['t'],9,9,True +strangest,"['s', 't', 'r', 'a', 'n', 'g', 'e', 's', 't']","['i', 'o']",9,8,True +dieters,"['d', 'i', 'e', 't', 'e', 'r', 's']",['w'],7,9,True +spiritualists,"['s', 'p', 'i', 'r', 'i', 't', 'u', 'a', 'l', 'i', 's', 't', 's']",[],13,10,True +deprecates,"['d', 'e', 'p', 'r', 'e', 'c', 'a', 't', 'e', 's']",['g'],10,9,True +love,"['l', 'o', 'v', 'e']","['a', 'r', 'n', 'g', 's']",4,5,True +matrixes,"['m', 'a', 't', 'r', 'i', 'x', 'e', 's']",['c'],8,9,True +catharses,"['c', 'a', 't', 'h', 'a', 'r', 's', 'e', 's']","['o', 'i']",9,8,True +noticeboard,"['n', 'o', 't', 'i', 'c', 'e', 'b', 'o', 'a', 'r', 'd']",[],11,10,True +adoptive,"['a', 'd', 'o', 'p', 't', 'i', 'v', 'e']",[],8,10,True +radiations,"['r', 'a', 'd', 'i', 'a', 't', 'i', 'o', 'n', 's']","['e', 'l']",10,8,True +mantissa,"['m', 'a', 'n', 't', 'i', 's', 's', 'a']",['e'],8,9,True +draw,"['d', 'r', 'a', 'w']","['e', 's', 'o', 'b', 'g', 'p', 't', 'm']",4,2,True +hackneys,"['h', 'a', 'c', 'k', 'n', 'e', 'y', 's']",['r'],8,9,True +fuzzy,"['_', 'u', '_', '_', 'y']","['s', 'e', 'a', 'o', 'i', 'm', 'l', 'n', 'r', 'p']",2,0,False +logotypes,"['l', 'o', 'g', 'o', 't', 'y', 'p', 'e', 's']","['i', 'a']",9,8,True +rosebush,"['r', 'o', 's', 'e', 'b', 'u', 's', 'h']",['n'],8,9,True +distracted,"['d', 'i', 's', 't', 'r', 'a', 'c', 't', 'e', 'd']",[],10,10,True +esthetic,"['e', 's', 't', 'h', 'e', 't', 'i', 'c']",[],8,10,True +flatterers,"['f', 'l', 'a', 't', 't', 'e', 'r', 'e', 'r', 's']",[],10,10,True +walruses,"['w', 'a', 'l', 'r', 'u', 's', 'e', 's']","['c', 'i', 't']",8,7,True +floodlit,"['f', 'l', 'o', 'o', 'd', 'l', 'i', 't']","['e', 'a', 's']",8,7,True +lime,"['l', 'i', 'm', 'e']","['a', 'o', 't']",4,7,True +gaggle,"['g', 'a', 'g', 'g', 'l', 'e']","['b', 'd', 'i', 't']",6,6,True +expectorating,"['e', 'x', 'p', 'e', 'c', 't', 'o', 'r', 'a', 't', 'i', 'n', 'g']",[],13,10,True +blackguard,"['b', 'l', 'a', 'c', 'k', 'g', 'u', 'a', 'r', 'd']","['e', 'i', 'o', 'n']",10,6,True +motorcycle,"['m', 'o', 't', 'o', 'r', 'c', 'y', 'c', 'l', 'e']","['i', 'a']",10,8,True +foothold,"['f', 'o', 'o', 't', 'h', 'o', 'l', 'd']","['e', 'i', 'a', 'w']",8,6,True +pessimistically,"['p', 'e', 's', 's', 'i', 'm', 'i', 's', 't', 'i', 'c', 'a', 'l', 'l', 'y']",[],15,10,True +tirelessness,"['t', 'i', 'r', 'e', 'l', 'e', 's', 's', 'n', 'e', 's', 's']",['m'],12,9,True +entente,"['e', 'n', 't', 'e', 'n', 't', 'e']",[],7,10,True +lipstick,"['l', 'i', 'p', 's', 't', 'i', 'c', 'k']","['e', 'n']",8,8,True +luminary,"['l', 'u', 'm', 'i', 'n', 'a', 'r', 'y']",['e'],8,9,True +dinettes,"['d', 'i', 'n', 'e', 't', 't', 'e', 's']",['l'],8,9,True +unsnarling,"['u', 'n', 's', 'n', 'a', 'r', 'l', 'i', 'n', 'g']","['e', 'p']",10,8,True +kidnapper,"['k', 'i', 'd', 'n', 'a', 'p', 'p', 'e', 'r']","['s', 't']",9,8,True +away,"['a', 'w', 'a', 'y']","['e', 's', 'o', 'r']",4,6,True +liefest,"['l', 'i', 'e', 'f', 'e', 's', 't']",['r'],7,9,True +birthstone,"['b', 'i', 'r', 't', 'h', 's', 't', 'o', 'n', 'e']",[],10,10,True +bacilli,"['b', 'a', 'c', 'i', 'l', 'l', 'i']",['e'],7,9,True +waked,"['w', 'a', 'k', 'e', 'd']","['s', 'r', 'x', 'g', 'n']",5,5,True +revamp,"['r', 'e', 'v', 'a', 'm', 'p']","['s', 'i']",6,8,True +dishes,"['d', 'i', 's', 'h', 'e', 's']","['r', 'a']",6,8,True +duped,"['d', 'u', 'p', 'e', 'd']","['s', 'o', 'i', 'a']",5,6,True +madman,"['m', 'a', 'd', 'm', 'a', 'n']","['e', 's', 'i', 't']",6,6,True +realtors,"['r', 'e', 'a', 'l', 't', 'o', 'r', 's']","['i', 'd']",8,8,True +extracts,"['e', 'x', 't', 'r', 'a', 'c', 't', 's']","['i', 'n']",8,8,True +unfurls,"['u', 'n', 'f', 'u', 'r', 'l', 's']","['e', 'i', 'a', 'o']",7,6,True +glamorising,"['g', 'l', 'a', 'm', 'o', 'r', 'i', 's', 'i', 'n', 'g']",['e'],11,9,True +crossbars,"['c', 'r', 'o', 's', 's', 'b', 'a', 'r', 's']","['e', 'i']",9,8,True +invoices,"['i', 'n', 'v', 'o', 'i', 'c', 'e', 's']",['q'],8,9,True +nerveless,"['n', 'e', 'r', 'v', 'e', 'l', 'e', 's', 's']",[],9,10,True +commemorate,"['c', 'o', 'm', 'm', 'e', 'm', 'o', 'r', 'a', 't', 'e']",[],11,10,True +undertakers,"['u', 'n', 'd', 'e', 'r', 't', 'a', 'k', 'e', 'r', 's']",[],11,10,True +hysterical,"['h', 'y', 's', 't', 'e', 'r', 'i', 'c', 'a', 'l']",[],10,10,True +oilfield,"['o', 'i', 'l', 'f', 'i', 'e', 'l', 'd']","['s', 't']",8,8,True +passages,"['p', 'a', 's', 's', 'a', 'g', 'e', 's']","['i', 'm']",8,8,True +acid,"['a', 'c', 'i', 'd']","['e', 's', 'o', 'm', 'r', 'v']",4,4,True +renting,"['r', 'e', 'n', 't', 'i', 'n', 'g']",['d'],7,9,True +volunteered,"['v', 'o', 'l', 'u', 'n', 't', 'e', 'e', 'r', 'e', 'd']",[],11,10,True +duplex,"['d', 'u', 'p', 'l', 'e', 'x']","['r', 's', 'n', 'c']",6,6,True +unmanageable,"['u', 'n', 'm', 'a', 'n', 'a', 'g', 'e', 'a', 'b', 'l', 'e']",[],12,10,True +hydroponic,"['h', 'y', 'd', 'r', 'o', 'p', 'o', 'n', 'i', 'c']",['e'],10,9,True +dishonour,"['d', 'i', 's', 'h', 'o', 'n', 'o', 'u', 'r']",['e'],9,9,True +subleasing,"['s', 'u', 'b', 'l', 'e', 'a', 's', 'i', 'n', 'g']",['r'],10,9,True +caesarean,"['c', 'a', 'e', 's', 'a', 'r', 'e', 'a', 'n']",[],9,10,True +coalesced,"['c', 'o', 'a', 'l', 'e', 's', 'c', 'e', 'd']",['t'],9,9,True +soppiest,"['s', 'o', 'p', 'p', 'i', 'e', 's', 't']",['a'],8,9,True +sluggish,"['s', 'l', 'u', 'g', 'g', 'i', 's', 'h']","['e', 'n', 't']",8,7,True +elaborations,"['e', 'l', 'a', 'b', 'o', 'r', 'a', 't', 'i', 'o', 'n', 's']",[],12,10,True +rarities,"['r', 'a', 'r', 'i', 't', 'i', 'e', 's']",['v'],8,9,True +impending,"['i', 'm', 'p', 'e', 'n', 'd', 'i', 'n', 'g']",[],9,10,True +decadently,"['d', 'e', 'c', 'a', 'd', 'e', 'n', 't', 'l', 'y']",['r'],10,9,True +aetiology,"['a', 'e', 't', 'i', 'o', 'l', 'o', 'g', 'y']",['s'],9,9,True +oversensitive,"['o', 'v', 'e', 'r', 's', 'e', 'n', 's', 'i', 't', 'i', 'v', 'e']",[],13,10,True +market,"['m', 'a', 'r', 'k', 'e', 't']","['d', 's', 'g']",6,7,True +garish,"['g', 'a', 'r', 'i', 's', 'h']",['e'],6,9,True +humidified,"['h', 'u', 'm', 'i', 'd', 'i', 'f', 'i', 'e', 'd']","['s', 'a', 'o']",10,7,True +goofed,"['g', 'o', 'o', 'f', 'e', 'd']","['a', 't', 'l', 'm', 'p']",6,5,True +lodestones,"['l', 'o', 'd', 'e', 's', 't', 'o', 'n', 'e', 's']",[],10,10,True +indemnities,"['i', 'n', 'd', 'e', 'm', 'n', 'i', 't', 'i', 'e', 's']",[],11,10,True +insider,"['i', 'n', 's', 'i', 'd', 'e', 'r']",[],7,10,True +bused,"['b', 'u', 's', 'e', 'd']","['o', 'm', 'f']",5,7,True +venturous,"['v', 'e', 'n', 't', 'u', 'r', 'o', 'u', 's']","['i', 'a']",9,8,True +damping,"['d', 'a', 'm', 'p', 'i', 'n', 'g']","['e', 'l', 'r', 't', 's']",7,5,True +stints,"['s', 't', 'i', 'n', 't', 's']","['e', 'u']",6,8,True +clergywomen,"['c', 'l', 'e', 'r', 'g', 'y', 'w', 'o', 'm', 'e', 'n']",['s'],11,9,True +spreed,"['s', 'p', 'r', 'e', 'e', 'd']","['t', 'n']",6,8,True +manhunts,"['m', 'a', 'n', 'h', 'u', 'n', 't', 's']","['e', 'i', 'o', 'l']",8,6,True +portables,"['p', 'o', 'r', 't', 'a', 'b', 'l', 'e', 's']",['i'],9,9,True +encrusts,"['e', 'n', 'c', 'r', 'u', 's', 't', 's']","['i', 'x']",8,8,True +lawmaker,"['l', 'a', 'w', 'm', 'a', 'k', 'e', 'r']","['s', 'i']",8,8,True +disobeyed,"['d', 'i', 's', 'o', 'b', 'e', 'y', 'e', 'd']",['r'],9,9,True +accosts,"['a', 'c', 'c', 'o', 's', 't', 's']","['e', 'i', 'r']",7,7,True +compartment,"['c', 'o', 'm', 'p', 'a', 'r', 't', 'm', 'e', 'n', 't']",['s'],11,9,True +tank,"['t', 'a', 'n', 'k']","['e', 's', 'o', 'l', 'r', 'g']",4,4,True +deadened,"['d', 'e', 'a', 'd', 'e', 'n', 'e', 'd']",[],8,10,True +stunts,"['s', 't', 'u', 'n', 't', 's']",['e'],6,9,True +disallows,"['d', 'i', 's', 'a', 'l', 'l', 'o', 'w', 's']",['e'],9,9,True +slackly,"['s', 'l', 'a', 'c', 'k', 'l', 'y']","['e', 'i', 'n']",7,7,True +punching,"['p', 'u', 'n', 'c', 'h', 'i', 'n', 'g']","['e', 'm', 'l']",8,7,True +clarinettists,"['c', 'l', 'a', 'r', 'i', 'n', 'e', 't', 't', 'i', 's', 't', 's']",[],13,10,True +pentathlon,"['p', 'e', 'n', 't', 'a', 't', 'h', 'l', 'o', 'n']","['i', 'r']",10,8,True +collaborations,"['c', 'o', 'l', 'l', 'a', 'b', 'o', 'r', 'a', 't', 'i', 'o', 'n', 's']",['m'],14,9,True +befriends,"['b', 'e', 'f', 'r', 'i', 'e', 'n', 'd', 's']",['t'],9,9,True +queen,"['q', 'u', 'e', 'e', 'n']","['s', 'r', 'l', 't']",5,6,True +indorsed,"['i', 'n', 'd', 'o', 'r', 's', 'e', 'd']",[],8,10,True +conjoined,"['c', 'o', 'n', 'j', 'o', 'i', 'n', 'e', 'd']","['s', 't', 'a']",9,7,True +open,"['o', 'p', 'e', 'n']","['s', 'd', 'r', 'l', 'x', 'm']",4,4,True +bullfight,"['b', 'u', 'l', 'l', 'f', 'i', 'g', 'h', 't']","['e', 's', 'a', 'o']",9,6,True +debate,"['d', 'e', 'b', 'a', 't', 'e']","['r', 'o', 'p']",6,7,True +meg,"['m', 'e', 'g']","['a', 'o', 't', 'w', 'p', 'd']",3,4,True +closeouts,"['c', 'l', 'o', 's', 'e', 'o', 'u', 't', 's']",['i'],9,9,True +harmful,"['h', 'a', 'r', 'm', 'f', 'u', 'l']","['e', 'i', 'o', 't']",7,6,True +ductile,"['d', 'u', 'c', 't', 'i', 'l', 'e']","['a', 'o', 's', 'f']",7,6,True +bobble,"['b', 'o', 'b', 'b', 'l', 'e']",[],6,10,True +town,"['t', 'o', 'w', 'n']","['e', 's', 'l', 'r']",4,6,True +greediness,"['g', 'r', 'e', 'e', 'd', 'i', 'n', 'e', 's', 's']",[],10,10,True +monocles,"['m', 'o', 'n', 'o', 'c', 'l', 'e', 's']","['i', 'a']",8,8,True +whippersnapper,"['w', 'h', 'i', 'p', 'p', 'e', 'r', 's', 'n', 'a', 'p', 'p', 'e', 'r']",[],14,10,True +puppy,"['p', 'u', 'p', 'p', 'y']","['s', 'e', 'a', 'o', 'i', 'm', 'l', 'n', 'r']",5,1,True +plenipotentiary,"['p', 'l', 'e', 'n', 'i', 'p', 'o', 't', 'e', 'n', 't', 'i', 'a', 'r', 'y']",[],15,10,True +crustiest,"['c', 'r', 'u', 's', 't', 'i', 'e', 's', 't']",['f'],9,9,True +stipulate,"['s', 't', 'i', 'p', 'u', 'l', 'a', 't', 'e']",['m'],9,9,True +scumbags,"['s', 'c', 'u', 'm', 'b', 'a', 'g', 's']","['e', 'i', 'o']",8,7,True +sufferers,"['s', 'u', 'f', 'f', 'e', 'r', 'e', 'r', 's']",[],9,10,True +fishtail,"['f', 'i', 's', 'h', 't', 'a', 'i', 'l']",['e'],8,9,True +wretchedness,"['w', 'r', 'e', 't', 'c', 'h', 'e', 'd', 'n', 'e', 's', 's']",[],12,10,True +hollering,"['h', 'o', 'l', 'l', 'e', 'r', 'i', 'n', 'g']","['t', 'm', 'd']",9,7,True +bassinet,"['b', 'a', 's', 's', 'i', 'n', 'e', 't']",[],8,10,True +loathsome,"['l', 'o', 'a', 't', 'h', 's', 'o', 'm', 'e']",[],9,10,True +baser,"['b', 'a', 's', 'e', 'r']","['d', 'o', 'l']",5,7,True +cunninger,"['c', 'u', 'n', 'n', 'i', 'n', 'g', 'e', 'r']","['s', 'd', 't']",9,7,True +weighing,"['w', 'e', 'i', 'g', 'h', 'i', 'n', 'g']",[],8,10,True +executrixes,"['e', 'x', 'e', 'c', 'u', 't', 'r', 'i', 'x', 'e', 's']",[],11,10,True +armfuls,"['a', 'r', 'm', 'f', 'u', 'l', 's']","['e', 'i', 'o']",7,7,True +extrovert,"['e', 'x', 't', 'r', 'o', 'v', 'e', 'r', 't']",[],9,10,True +relinquishing,"['r', 'e', 'l', 'i', 'n', 'q', 'u', 'i', 's', 'h', 'i', 'n', 'g']",[],13,10,True +persuades,"['p', 'e', 'r', 's', 'u', 'a', 'd', 'e', 's']",[],9,10,True +badgered,"['b', 'a', 'd', 'g', 'e', 'r', 'e', 'd']",['t'],8,9,True +dark,"['d', 'a', 'r', 'k']","['e', 's', 'o', 'l', 't', 'n']",4,4,True +pitchfork,"['p', 'i', 't', 'c', 'h', 'f', 'o', 'r', 'k']","['e', 's', 'a']",9,7,True +clews,"['c', 'l', 'e', 'w', 's']","['r', 'f', 'g']",5,7,True +stomachs,"['s', 't', 'o', 'm', 'a', 'c', 'h', 's']","['e', 'i', 'k', 'p', 'l']",8,5,True +chancery,"['c', 'h', 'a', 'n', 'c', 'e', 'r', 'y']","['s', 't', 'l']",8,7,True +hostel,"['h', 'o', 's', 't', 'e', 'l']","['d', 'r', 'n']",6,7,True +nonsexist,"['n', 'o', 'n', 's', 'e', 'x', 'i', 's', 't']",[],9,10,True +pinafores,"['p', 'i', 'n', 'a', 'f', 'o', 'r', 'e', 's']",['g'],9,9,True +satirists,"['s', 'a', 't', 'i', 'r', 'i', 's', 't', 's']",['e'],9,9,True +hypothermia,"['h', 'y', 'p', 'o', 't', 'h', 'e', 'r', 'm', 'i', 'a']",[],11,10,True +kibitzing,"['k', 'i', 'b', 'i', 't', 'z', 'i', 'n', 'g']","['e', 'v', 'm']",9,7,True +sinner,"['s', 'i', 'n', 'n', 'e', 'r']",['d'],6,9,True +suitcase,"['s', 'u', 'i', 't', 'c', 'a', 's', 'e']",[],8,10,True +eavesdropping,"['e', 'a', 'v', 'e', 's', 'd', 'r', 'o', 'p', 'p', 'i', 'n', 'g']",[],13,10,True +numerating,"['n', 'u', 'm', 'e', 'r', 'a', 't', 'i', 'n', 'g']",[],10,10,True +discolour,"['d', 'i', 's', 'c', 'o', 'l', 'o', 'u', 'r']","['e', 'n']",9,8,True +brontosaurus,"['b', 'r', 'o', 'n', 't', 'o', 's', 'a', 'u', 'r', 'u', 's']","['e', 'i']",12,8,True +censuring,"['c', 'e', 'n', 's', 'u', 'r', 'i', 'n', 'g']",['o'],9,9,True +yoked,"['y', 'o', 'k', 'e', 'd']","['s', 'a', 'w', 'p', 't', 'r', 'n']",5,3,True +curled,"['c', 'u', 'r', 'l', 'e', 'd']","['a', 'o', 'i', 'f', 'p', 'h']",6,4,True +tectonics,"['t', 'e', 'c', 't', 'o', 'n', 'i', 'c', 's']","['m', 'r']",9,8,True +august,"['a', 'u', 'g', 'u', 's', 't']","['e', 'i', 'o']",6,7,True +handwork,"['h', 'a', 'n', 'd', 'w', 'o', 'r', 'k']","['e', 'i', 's']",8,7,True +hack,"['_', 'a', 'c', 'k']","['e', 's', 'o', 'l', 'r', 'n', 't', 'm', 'y', 'p']",3,0,False +diocesan,"['d', 'i', 'o', 'c', 'e', 's', 'a', 'n']",[],8,10,True +potions,"['p', 'o', 't', 'i', 'o', 'n', 's']","['e', 'm', 'l']",7,7,True +filbert,"['f', 'i', 'l', 'b', 'e', 'r', 't']","['s', 'c']",7,8,True +chortle,"['c', 'h', 'o', 'r', 't', 'l', 'e']","['a', 'i', 'u']",7,7,True +propulsive,"['p', 'r', 'o', 'p', 'u', 'l', 's', 'i', 'v', 'e']","['a', 't']",10,8,True +boulder,"['b', 'o', 'u', 'l', 'd', 'e', 'r']","['s', 'n', 'm']",7,7,True +dabble,"['d', 'a', 'b', 'b', 'l', 'e']","['o', 'g']",6,8,True +wranglers,"['w', 'r', 'a', 'n', 'g', 'l', 'e', 'r', 's']",['o'],9,9,True +airport,"['a', 'i', 'r', 'p', 'o', 'r', 't']","['e', 's', 'l']",7,7,True +cavils,"['c', 'a', 'v', 'i', 'l', 's']","['e', 'o', 'n', 't', 'r', 'm']",6,4,True +placates,"['p', 'l', 'a', 'c', 'a', 't', 'e', 's']","['i', 'r']",8,8,True +news,"['n', 'e', 'w', 's']",['t'],4,9,True +timepiece,"['t', 'i', 'm', 'e', 'p', 'i', 'e', 'c', 'e']",['r'],9,9,True +circumcises,"['c', 'i', 'r', 'c', 'u', 'm', 'c', 'i', 's', 'e', 's']",[],11,10,True +earphone,"['e', 'a', 'r', 'p', 'h', 'o', 'n', 'e']",[],8,10,True +semaphored,"['s', 'e', 'm', 'a', 'p', 'h', 'o', 'r', 'e', 'd']",[],10,10,True +damson,"['d', 'a', 'm', 's', 'o', 'n']",['e'],6,9,True +heave,"['h', 'e', 'a', 'v', 'e']","['s', 'w', 'l']",5,7,True +hopelessly,"['h', 'o', 'p', 'e', 'l', 'e', 's', 's', 'l', 'y']",['t'],10,9,True +handwork,"['h', 'a', 'n', 'd', 'w', 'o', 'r', 'k']","['e', 'i', 's']",8,7,True +depletion,"['d', 'e', 'p', 'l', 'e', 't', 'i', 'o', 'n']",['r'],9,9,True +aces,"['a', 'c', 'e', 's']","['o', 'x', 'g', 'w', 'y', 'l', 'p', 'r']",4,2,True +dainty,"['d', 'a', 'i', 'n', 't', 'y']","['e', 's', 'l', 'o']",6,6,True +anchorite,"['a', 'n', 'c', 'h', 'o', 'r', 'i', 't', 'e']",[],9,10,True +kale,"['k', 'a', 'l', 'e']","['t', 'g', 'm', 'w']",4,6,True +weaned,"['w', 'e', 'a', 'n', 'e', 'd']","['t', 'l', 'r', 's']",6,6,True +entitled,"['e', 'n', 't', 'i', 't', 'l', 'e', 'd']","['s', 'r']",8,8,True +babes,"['_', 'a', '_', 'e', 's']","['r', 'l', 't', 'n', 'g', 'k', 'd', 'c', 'x', 'v']",3,0,False +classmates,"['c', 'l', 'a', 's', 's', 'm', 'a', 't', 'e', 's']",['o'],10,9,True +knack,"['k', 'n', 'a', 'c', 'k']","['s', 'e', 'r', 'l']",5,6,True +pierced,"['p', 'i', 'e', 'r', 'c', 'e', 'd']",['l'],7,9,True +humanitarian,"['h', 'u', 'm', 'a', 'n', 'i', 't', 'a', 'r', 'i', 'a', 'n']",['e'],12,9,True +electricians,"['e', 'l', 'e', 'c', 't', 'r', 'i', 'c', 'i', 'a', 'n', 's']",[],12,10,True +snappy,"['s', 'n', 'a', 'p', 'p', 'y']",['e'],6,9,True +ends,"['e', 'n', 'd', 's']","['g', 'l', 'r']",4,7,True +goldfishes,"['g', 'o', 'l', 'd', 'f', 'i', 's', 'h', 'e', 's']",['a'],10,9,True +archivists,"['a', 'r', 'c', 'h', 'i', 'v', 'i', 's', 't', 's']",['e'],10,9,True +motherliness,"['m', 'o', 't', 'h', 'e', 'r', 'l', 'i', 'n', 'e', 's', 's']",['f'],12,9,True +exemplars,"['e', 'x', 'e', 'm', 'p', 'l', 'a', 'r', 's']","['t', 'y']",9,8,True +fiddled,"['f', 'i', 'd', 'd', 'l', 'e', 'd']","['s', 'u']",7,8,True +segregationists,"['s', 'e', 'g', 'r', 'e', 'g', 'a', 't', 'i', 'o', 'n', 'i', 's', 't', 's']",[],15,10,True +govern,"['g', 'o', 'v', 'e', 'r', 'n']",['s'],6,9,True +kookaburras,"['k', 'o', 'o', 'k', 'a', 'b', 'u', 'r', 'r', 'a', 's']","['e', 'i']",11,8,True +demesne,"['d', 'e', 'm', 'e', 's', 'n', 'e']",['r'],7,9,True +publicans,"['p', 'u', 'b', 'l', 'i', 'c', 'a', 'n', 's']","['e', 'o']",9,8,True +boutique,"['b', 'o', 'u', 't', 'i', 'q', 'u', 'e']","['a', 'l', 'n']",8,7,True +affair,"['a', 'f', 'f', 'a', 'i', 'r']","['e', 's']",6,8,True +miaowed,"['m', 'i', 'a', 'o', 'w', 'e', 'd']","['s', 'l', 'r', 't', 'c']",7,5,True +pan,"['p', 'a', 'n']","['t', 'w']",3,8,True +pleasantest,"['p', 'l', 'e', 'a', 's', 'a', 'n', 't', 'e', 's', 't']",[],11,10,True +linkup,"['l', 'i', 'n', 'k', 'u', 'p']","['e', 's']",6,8,True +enshrines,"['e', 'n', 's', 'h', 'r', 'i', 'n', 'e', 's']",[],9,10,True +backpacks,"['b', 'a', 'c', 'k', 'p', 'a', 'c', 'k', 's']","['e', 'i', 'o', 'l', 'r']",9,5,True +throughout,"['t', 'h', 'r', 'o', 'u', 'g', 'h', 'o', 'u', 't']","['e', 'i']",10,8,True +skiff,"['s', 'k', 'i', 'f', 'f']","['e', 'a', 'o', 'l', 't', 'n']",5,4,True +helpfully,"['h', 'e', 'l', 'p', 'f', 'u', 'l', 'l', 'y']","['i', 'a', 't']",9,7,True +mantel,"['m', 'a', 'n', 't', 'e', 'l']","['d', 's', 'r', 'c']",6,6,True +amateurs,"['a', 'm', 'a', 't', 'e', 'u', 'r', 's']",[],8,10,True +brusqueness,"['b', 'r', 'u', 's', 'q', 'u', 'e', 'n', 'e', 's', 's']",[],11,10,True +killer,"['k', 'i', 'l', 'l', 'e', 'r']","['d', 's', 't', 'g', 'p', 'm', 'f']",6,3,True +jays,"['_', 'a', 'y', 's']","['e', 't', 'p', 'g', 'm', 'w', 'n', 'l', 'h', 'd']",3,0,False +chromium,"['c', 'h', 'r', 'o', 'm', 'i', 'u', 'm']","['e', 'n', 's', 'l', 'a']",8,5,True +uphold,"['u', 'p', 'h', 'o', 'l', 'd']","['e', 's', 'i', 'a', 'n']",6,5,True +demarcating,"['d', 'e', 'm', 'a', 'r', 'c', 'a', 't', 'i', 'n', 'g']",[],11,10,True +rowel,"['r', 'o', 'w', 'e', 'l']","['s', 'd', 'v']",5,7,True +ganglion,"['g', 'a', 'n', 'g', 'l', 'i', 'o', 'n']","['e', 't']",8,8,True +flanks,"['f', 'l', 'a', 'n', 'k', 's']","['e', 'r']",6,8,True +anaesthetists,"['a', 'n', 'a', 'e', 's', 't', 'h', 'e', 't', 'i', 's', 't', 's']",[],13,10,True +peppermints,"['p', 'e', 'p', 'p', 'e', 'r', 'm', 'i', 'n', 't', 's']",[],11,10,True +mirroring,"['m', 'i', 'r', 'r', 'o', 'r', 'i', 'n', 'g']","['e', 's', 'l', 'c']",9,6,True +forecloses,"['f', 'o', 'r', 'e', 'c', 'l', 'o', 's', 'e', 's']",[],10,10,True +fettering,"['f', 'e', 't', 't', 'e', 'r', 'i', 'n', 'g']",[],9,10,True +mobilisation,"['m', 'o', 'b', 'i', 'l', 'i', 's', 'a', 't', 'i', 'o', 'n']","['e', 'c']",12,8,True +hippopotami,"['h', 'i', 'p', 'p', 'o', 'p', 'o', 't', 'a', 'm', 'i']",['e'],11,9,True +racquetball,"['r', 'a', 'c', 'q', 'u', 'e', 't', 'b', 'a', 'l', 'l']","['n', 's']",11,8,True +cablecasts,"['c', 'a', 'b', 'l', 'e', 'c', 'a', 's', 't', 's']",[],10,10,True +noshed,"['n', 'o', 's', 'h', 'e', 'd']","['a', 'l', 'p', 'b', 'r']",6,5,True +spinner,"['s', 'p', 'i', 'n', 'n', 'e', 'r']","['d', 't']",7,8,True +inverts,"['i', 'n', 'v', 'e', 'r', 't', 's']",['c'],7,9,True +unguents,"['u', 'n', 'g', 'u', 'e', 'n', 't', 's']",[],8,10,True +fulminating,"['f', 'u', 'l', 'm', 'i', 'n', 'a', 't', 'i', 'n', 'g']",['e'],11,9,True +offhandedly,"['o', 'f', 'f', 'h', 'a', 'n', 'd', 'e', 'd', 'l', 'y']",['s'],11,9,True +networked,"['n', 'e', 't', 'w', 'o', 'r', 'k', 'e', 'd']",[],9,10,True +deviations,"['d', 'e', 'v', 'i', 'a', 't', 'i', 'o', 'n', 's']",[],10,10,True +reveller,"['r', 'e', 'v', 'e', 'l', 'l', 'e', 'r']","['d', 't', 'm']",8,7,True +haversacks,"['h', 'a', 'v', 'e', 'r', 's', 'a', 'c', 'k', 's']","['i', 'l']",10,8,True +corruptly,"['c', 'o', 'r', 'r', 'u', 'p', 't', 'l', 'y']","['e', 'i', 'a']",9,7,True +seventieths,"['s', 'e', 'v', 'e', 'n', 't', 'i', 'e', 't', 'h', 's']",[],11,10,True +loners,"['l', 'o', 'n', 'e', 'r', 's']","['w', 'v', 'g']",6,7,True +exclude,"['e', 'x', 'c', 'l', 'u', 'd', 'e']","['n', 'i', 'a', 'o']",7,6,True +bluffing,"['b', 'l', 'u', 'f', 'f', 'i', 'n', 'g']","['e', 'a', 'o', 's', 'r']",8,5,True +inhibits,"['i', 'n', 'h', 'i', 'b', 'i', 't', 's']",['e'],8,9,True +blaspheme,"['b', 'l', 'a', 's', 'p', 'h', 'e', 'm', 'e']","['i', 'n']",9,8,True +firewood,"['f', 'i', 'r', 'e', 'w', 'o', 'o', 'd']",[],8,10,True +spiked,"['s', 'p', 'i', 'k', 'e', 'd']","['a', 'o', 't']",6,7,True +screenplay,"['s', 'c', 'r', 'e', 'e', 'n', 'p', 'l', 'a', 'y']",[],10,10,True +chorus,"['c', 'h', 'o', 'r', 'u', 's']","['e', 'a']",6,8,True +unwinds,"['u', 'n', 'w', 'i', 'n', 'd', 's']",['e'],7,9,True +flopped,"['f', 'l', 'o', 'p', 'p', 'e', 'd']","['s', 'c', 't']",7,7,True +acquisitiveness,"['a', 'c', 'q', 'u', 'i', 's', 'i', 't', 'i', 'v', 'e', 'n', 'e', 's', 's']",[],15,10,True +accord,"['a', 'c', 'c', 'o', 'r', 'd']","['e', 's', 'i', 'u', 'f']",6,5,True +backwoods,"['b', 'a', 'c', 'k', 'w', 'o', 'o', 'd', 's']","['e', 'i', 'r']",9,7,True +fink,"['f', 'i', 'n', 'k']","['e', 's', 'o', 'a', 'l', 'm']",4,4,True +m,['m'],"['x', 'e', 't', 'g']",1,6,True +spearhead,"['s', 'p', 'e', 'a', 'r', 'h', 'e', 'a', 'd']",[],9,10,True +greedier,"['g', 'r', 'e', 'e', 'd', 'i', 'e', 'r']",[],8,10,True +chords,"['c', 'h', 'o', 'r', 'd', 's']","['e', 'a', 'u']",6,7,True +aviatrix,"['a', 'v', 'i', 'a', 't', 'r', 'i', 'x']",['e'],8,9,True +deactivated,"['d', 'e', 'a', 'c', 't', 'i', 'v', 'a', 't', 'e', 'd']",[],11,10,True +infantries,"['i', 'n', 'f', 'a', 'n', 't', 'r', 'i', 'e', 's']",[],10,10,True +hoaxes,"['h', 'o', 'a', 'x', 'e', 's']","['d', 'r', 'l']",6,7,True +diminuendos,"['d', 'i', 'm', 'i', 'n', 'u', 'e', 'n', 'd', 'o', 's']",[],11,10,True +sternum,"['s', 't', 'e', 'r', 'n', 'u', 'm']","['o', 'i']",7,8,True +inanimate,"['i', 'n', 'a', 'n', 'i', 'm', 'a', 't', 'e']",[],9,10,True +frontiersman,"['f', 'r', 'o', 'n', 't', 'i', 'e', 'r', 's', 'm', 'a', 'n']",[],12,10,True +ouch,"['o', 'u', 'c', 'h']","['e', 's', 'l', 't', 'n']",4,5,True +corroding,"['c', 'o', 'r', 'r', 'o', 'd', 'i', 'n', 'g']","['e', 'w', 't', 'l']",9,6,True +repasts,"['r', 'e', 'p', 'a', 's', 't', 's']",['n'],7,9,True +revilement,"['r', 'e', 'v', 'i', 'l', 'e', 'm', 'e', 'n', 't']",['d'],10,9,True +semicircular,"['s', 'e', 'm', 'i', 'c', 'i', 'r', 'c', 'u', 'l', 'a', 'r']",[],12,10,True +scow,"['s', 'c', 'o', 'w']","['e', 'a', 't', 'n', 'l', 'h']",4,4,True +walkway,"['w', 'a', 'l', 'k', 'w', 'a', 'y']","['e', 'i', 'n', 't']",7,6,True +arterial,"['a', 'r', 't', 'e', 'r', 'i', 'a', 'l']",[],8,10,True +ensnare,"['e', 'n', 's', 'n', 'a', 'r', 'e']",[],7,10,True +comfortably,"['c', 'o', 'm', 'f', 'o', 'r', 't', 'a', 'b', 'l', 'y']","['e', 'i']",11,8,True +performance,"['p', 'e', 'r', 'f', 'o', 'r', 'm', 'a', 'n', 'c', 'e']",[],11,10,True +touching,"['t', 'o', 'u', 'c', 'h', 'i', 'n', 'g']","['e', 'a']",8,8,True +lopsidedness,"['l', 'o', 'p', 's', 'i', 'd', 'e', 'd', 'n', 'e', 's', 's']",[],12,10,True +electroplating,"['e', 'l', 'e', 'c', 't', 'r', 'o', 'p', 'l', 'a', 't', 'i', 'n', 'g']",[],14,10,True +lunchbox,"['l', 'u', 'n', 'c', 'h', 'b', 'o', 'x']","['e', 'i', 'a']",8,7,True +glints,"['g', 'l', 'i', 'n', 't', 's']","['e', 'a', 'o']",6,7,True +shifted,"['s', 'h', 'i', 'f', 't', 'e', 'd']","['o', 'a']",7,8,True +abjectly,"['a', 'b', 'j', 'e', 'c', 't', 'l', 'y']","['r', 'i', 's']",8,7,True +encircled,"['e', 'n', 'c', 'i', 'r', 'c', 'l', 'e', 'd']","['s', 'a']",9,8,True +vitally,"['v', 'i', 't', 'a', 'l', 'l', 'y']","['e', 's']",7,8,True +checkrooms,"['c', 'h', 'e', 'c', 'k', 'r', 'o', 'o', 'm', 's']",['i'],10,9,True +troupes,"['t', 'r', 'o', 'u', 'p', 'e', 's']","['i', 'l', 'a', 'g']",7,6,True +morphemes,"['m', 'o', 'r', 'p', 'h', 'e', 'm', 'e', 's']",['t'],9,9,True +coalesced,"['c', 'o', 'a', 'l', 'e', 's', 'c', 'e', 'd']",['t'],9,9,True +foxhound,"['f', 'o', 'x', 'h', 'o', 'u', 'n', 'd']","['e', 'i', 'a', 'c', 't']",8,5,True +citizen,"['c', 'i', 't', 'i', 'z', 'e', 'n']","['s', 'd', 'r', 'l']",7,6,True +thriftier,"['t', 'h', 'r', 'i', 'f', 't', 'i', 'e', 'r']","['s', 'd', 'a']",9,7,True +bromides,"['b', 'r', 'o', 'm', 'i', 'd', 'e', 's']","['c', 'p']",8,8,True +bumping,"['b', 'u', 'm', 'p', 'i', 'n', 'g']","['e', 'a', 'o', 'l', 's', 'f', 'h', 'd']",7,2,True +wheels,"['w', 'h', 'e', 'e', 'l', 's']",['r'],6,9,True +branding,"['b', 'r', 'a', 'n', 'd', 'i', 'n', 'g']","['e', 'u', 'k', 't', 'c']",8,5,True +dramatise,"['d', 'r', 'a', 'm', 'a', 't', 'i', 's', 'e']",[],9,10,True +sputtering,"['s', 'p', 'u', 't', 't', 'e', 'r', 'i', 'n', 'g']","['a', 'l']",10,8,True +crossbar,"['c', 'r', 'o', 's', 's', 'b', 'a', 'r']","['e', 'i', 'l']",8,7,True +boundaries,"['b', 'o', 'u', 'n', 'd', 'a', 'r', 'i', 'e', 's']",[],10,10,True +achiever,"['a', 'c', 'h', 'i', 'e', 'v', 'e', 'r']","['d', 't', 'n']",8,7,True +unlikelihood,"['u', 'n', 'l', 'i', 'k', 'e', 'l', 'i', 'h', 'o', 'o', 'd']",[],12,10,True +authors,"['a', 'u', 't', 'h', 'o', 'r', 's']","['e', 'i']",7,8,True +inattention,"['i', 'n', 'a', 't', 't', 'e', 'n', 't', 'i', 'o', 'n']",[],11,10,True +foreshorten,"['f', 'o', 'r', 'e', 's', 'h', 'o', 'r', 't', 'e', 'n']",[],11,10,True +doorbells,"['d', 'o', 'o', 'r', 'b', 'e', 'l', 'l', 's']",['t'],9,9,True +landslid,"['l', 'a', 'n', 'd', 's', 'l', 'i', 'd']","['e', 'c']",8,8,True +swindled,"['s', 'w', 'i', 'n', 'd', 'l', 'e', 'd']",['r'],8,9,True +impassively,"['i', 'm', 'p', 'a', 's', 's', 'i', 'v', 'e', 'l', 'y']",[],11,10,True +antediluvian,"['a', 'n', 't', 'e', 'd', 'i', 'l', 'u', 'v', 'i', 'a', 'n']",[],12,10,True +phalluses,"['p', 'h', 'a', 'l', 'l', 'u', 's', 'e', 's']","['o', 'i']",9,8,True +appropriating,"['a', 'p', 'p', 'r', 'o', 'p', 'r', 'i', 'a', 't', 'i', 'n', 'g']",[],13,10,True +squintest,"['s', 'q', 'u', 'i', 'n', 't', 'e', 's', 't']",[],9,10,True +entrant,"['e', 'n', 't', 'r', 'a', 'n', 't']",['i'],7,9,True +constrained,"['c', 'o', 'n', 's', 't', 'r', 'a', 'i', 'n', 'e', 'd']",[],11,10,True +disenchanted,"['d', 'i', 's', 'e', 'n', 'c', 'h', 'a', 'n', 't', 'e', 'd']",[],12,10,True +hop,"['h', 'o', 'p']","['a', 't', 'b', 'w', 'd', 'm', 'f', 'l']",3,2,True +populists,"['p', 'o', 'p', 'u', 'l', 'i', 's', 't', 's']","['e', 'a']",9,8,True +fiat,"['f', 'i', 'a', 't']","['e', 's', 'o', 'r', 'l', 'h', 'g']",4,3,True +moments,"['m', 'o', 'm', 'e', 'n', 't', 's']",[],7,10,True +swaps,"['s', 'w', 'a', 'p', 's']",['t'],5,9,True +trickled,"['t', 'r', 'i', 'c', 'k', 'l', 'e', 'd']","['s', 'p', 'z', 'u']",8,6,True +pledging,"['p', 'l', 'e', 'd', 'g', 'i', 'n', 'g']",[],8,10,True +s,['_'],"['x', 'e', 't', 'g', 'm', 'f', 'w', 'q', 'n', 'o']",0,0,False +replaces,"['r', 'e', 'p', 'l', 'a', 'c', 'e', 's']","['d', 'i']",8,8,True +slump,"['s', 'l', 'u', 'm', 'p']","['e', 'a', 'o', 'i', 'n']",5,5,True +mollify,"['m', 'o', 'l', 'l', 'i', 'f', 'y']","['e', 'n', 's', 't']",7,6,True +gossipping,"['g', 'o', 's', 's', 'i', 'p', 'p', 'i', 'n', 'g']","['e', 'f']",10,8,True +sauced,"['s', 'a', 'u', 'c', 'e', 'd']","['t', 'l', 'r', 'g', 'n', 'p']",6,4,True +provider,"['p', 'r', 'o', 'v', 'i', 'd', 'e', 'r']",['s'],8,9,True +preconceive,"['p', 'r', 'e', 'c', 'o', 'n', 'c', 'e', 'i', 'v', 'e']",[],11,10,True +popcorn,"['p', 'o', 'p', 'c', 'o', 'r', 'n']","['e', 'i', 'a', 's', 't']",7,5,True +rectangles,"['r', 'e', 'c', 't', 'a', 'n', 'g', 'l', 'e', 's']",['i'],10,9,True +comparatives,"['c', 'o', 'm', 'p', 'a', 'r', 'a', 't', 'i', 'v', 'e', 's']",[],12,10,True +dabbler,"['d', 'a', 'b', 'b', 'l', 'e', 'r']","['s', 'i']",7,8,True +rapacity,"['r', 'a', 'p', 'a', 'c', 'i', 't', 'y']","['e', 'n', 's', 'l']",8,6,True +palaeontologists,"['p', 'a', 'l', 'a', 'e', 'o', 'n', 't', 'o', 'l', 'o', 'g', 'i', 's', 't', 's']",[],16,10,True +vulcanises,"['v', 'u', 'l', 'c', 'a', 'n', 'i', 's', 'e', 's']",['g'],10,9,True +corollary,"['c', 'o', 'r', 'o', 'l', 'l', 'a', 'r', 'y']","['e', 'i']",9,8,True +mostly,"['m', 'o', 's', 't', 'l', 'y']","['e', 'i', 'a', 'u']",6,6,True +nearness,"['n', 'e', 'a', 'r', 'n', 'e', 's', 's']",['t'],8,9,True +intoned,"['i', 'n', 't', 'o', 'n', 'e', 'd']","['s', 'l', 'r', 'h']",7,6,True +levelheaded,"['l', 'e', 'v', 'e', 'l', 'h', 'e', 'a', 'd', 'e', 'd']",[],11,10,True +loudly,"['l', 'o', 'u', 'd', 'l', 'y']","['e', 's', 'i', 'a']",6,6,True +bylines,"['b', 'y', 'l', 'i', 'n', 'e', 's']",['a'],7,9,True +relativistic,"['r', 'e', 'l', 'a', 't', 'i', 'v', 'i', 's', 't', 'i', 'c']",[],12,10,True +sneezes,"['s', 'n', 'e', 'e', 'z', 'e', 's']","['r', 'd']",7,8,True +jazz,"['_', 'a', '_', '_']","['e', 's', 'o', 'l', 'r', 'n', 't', 'm', 'k', 'y']",1,0,False +sureness,"['s', 'u', 'r', 'e', 'n', 'e', 's', 's']",['o'],8,9,True +archbishop,"['a', 'r', 'c', 'h', 'b', 'i', 's', 'h', 'o', 'p']",['e'],10,9,True +breathy,"['b', 'r', 'e', 'a', 't', 'h', 'y']","['s', 'i', 'g']",7,7,True +conduits,"['c', 'o', 'n', 'd', 'u', 'i', 't', 's']","['e', 'a']",8,8,True +epochs,"['e', 'p', 'o', 'c', 'h', 's']","['t', 'n', 'x']",6,7,True +ossify,"['o', 's', 's', 'i', 'f', 'y']","['e', 'a']",6,8,True +halberd,"['h', 'a', 'l', 'b', 'e', 'r', 'd']","['s', 't', 'y', 'n']",7,6,True +swelter,"['s', 'w', 'e', 'l', 't', 'e', 'r']","['d', 'm']",7,8,True +connubial,"['c', 'o', 'n', 'n', 'u', 'b', 'i', 'a', 'l']",['e'],9,9,True +chromed,"['c', 'h', 'r', 'o', 'm', 'e', 'd']","['s', 'l', 'a', 't']",7,6,True +accrediting,"['a', 'c', 'c', 'r', 'e', 'd', 'i', 't', 'i', 'n', 'g']",['s'],11,9,True +refillable,"['r', 'e', 'f', 'i', 'l', 'l', 'a', 'b', 'l', 'e']",[],10,10,True +despatched,"['d', 'e', 's', 'p', 'a', 't', 'c', 'h', 'e', 'd']",[],10,10,True +unit,"['u', 'n', 'i', 't']","['e', 's', 'o', 'a', 'r', 'k']",4,4,True +wetly,"['w', 'e', 't', 'l', 'y']","['s', 'r']",5,8,True +oscillation,"['o', 's', 'c', 'i', 'l', 'l', 'a', 't', 'i', 'o', 'n']",['e'],11,9,True +lankiest,"['l', 'a', 'n', 'k', 'i', 'e', 's', 't']","['o', 'u', 'd', 'g']",8,6,True +handicappers,"['h', 'a', 'n', 'd', 'i', 'c', 'a', 'p', 'p', 'e', 'r', 's']","['l', 'o']",12,8,True +hollowed,"['h', 'o', 'l', 'l', 'o', 'w', 'e', 'd']","['s', 'r', 'n', 't', 'f']",8,5,True +ormolu,"['o', 'r', 'm', 'o', 'l', 'u']","['e', 's', 'i', 'a']",6,6,True +pardonable,"['p', 'a', 'r', 'd', 'o', 'n', 'a', 'b', 'l', 'e']","['i', 't']",10,8,True +inkier,"['i', 'n', 'k', 'i', 'e', 'r']","['d', 's', 'f']",6,7,True +tattles,"['t', 'a', 't', 't', 'l', 'e', 's']","['i', 'b', 'd', 'g']",7,6,True +afghan,"['a', 'f', 'g', 'h', 'a', 'n']","['e', 's', 'i']",6,7,True +dummy,"['d', 'u', 'm', 'm', 'y']","['s', 'e', 'a', 'o', 'i', 't', 'g']",5,3,True +beechnut,"['b', 'e', 'e', 'c', 'h', 'n', 'u', 't']",['g'],8,9,True +fisherman,"['f', 'i', 's', 'h', 'e', 'r', 'm', 'a', 'n']","['l', 't']",9,8,True +sinuous,"['s', 'i', 'n', 'u', 'o', 'u', 's']",['e'],7,9,True +preheats,"['p', 'r', 'e', 'h', 'e', 'a', 't', 's']","['f', 'n']",8,8,True +snag,"['s', 'n', 'a', 'g']","['e', 't', 'w', 'p', 'h', 'c', 'l', 'o']",4,2,True +counterattacking,"['c', 'o', 'u', 'n', 't', 'e', 'r', 'a', 't', 't', 'a', 'c', 'k', 'i', 'n', 'g']",[],16,10,True +calumniate,"['c', 'a', 'l', 'u', 'm', 'n', 'i', 'a', 't', 'e']",[],10,10,True +inborn,"['i', 'n', 'b', 'o', 'r', 'n']","['e', 's']",6,8,True +woodiness,"['w', 'o', 'o', 'd', 'i', 'n', 'e', 's', 's']",['m'],9,9,True +syllabus,"['s', 'y', 'l', 'l', 'a', 'b', 'u', 's']","['e', 'i', 'k', 'p']",8,6,True +insoluble,"['i', 'n', 's', 'o', 'l', 'u', 'b', 'l', 'e']",['a'],9,9,True +neurology,"['n', 'e', 'u', 'r', 'o', 'l', 'o', 'g', 'y']","['i', 'a']",9,8,True +chancellery,"['c', 'h', 'a', 'n', 'c', 'e', 'l', 'l', 'e', 'r', 'y']",['o'],11,9,True +rehearsal,"['r', 'e', 'h', 'e', 'a', 'r', 's', 'a', 'l']",['n'],9,9,True +eke,"['e', 'k', 'e']","['a', 'o', 'w', 'y']",3,6,True +gallops,"['g', 'a', 'l', 'l', 'o', 'p', 's']","['e', 'i', 'r', 'w', 'n']",7,5,True +shambling,"['s', 'h', 'a', 'm', 'b', 'l', 'i', 'n', 'g']","['e', 'o', 't', 'k', 'd']",9,5,True +thunderbolt,"['t', 'h', 'u', 'n', 'd', 'e', 'r', 'b', 'o', 'l', 't']",[],11,10,True +ingress,"['i', 'n', 'g', 'r', 'e', 's', 's']",[],7,10,True +villa,"['v', 'i', 'l', 'l', 'a']","['s', 'e', 'o', 'c', 'n']",5,5,True +gatecrashers,"['g', 'a', 't', 'e', 'c', 'r', 'a', 's', 'h', 'e', 'r', 's']",[],12,10,True +ghostwritten,"['g', 'h', 'o', 's', 't', 'w', 'r', 'i', 't', 't', 'e', 'n']",[],12,10,True +epidemic,"['e', 'p', 'i', 'd', 'e', 'm', 'i', 'c']","['s', 'n']",8,8,True +watermelons,"['w', 'a', 't', 'e', 'r', 'm', 'e', 'l', 'o', 'n', 's']",[],11,10,True +usefulness,"['u', 's', 'e', 'f', 'u', 'l', 'n', 'e', 's', 's']",[],10,10,True +reconsiders,"['r', 'e', 'c', 'o', 'n', 's', 'i', 'd', 'e', 'r', 's']",[],11,10,True +ammonia,"['a', 'm', 'm', 'o', 'n', 'i', 'a']",['e'],7,9,True +belying,"['b', 'e', 'l', 'y', 'i', 'n', 'g']","['t', 'r']",7,8,True +alligators,"['a', 'l', 'l', 'i', 'g', 'a', 't', 'o', 'r', 's']",['e'],10,9,True +console,"['c', 'o', 'n', 's', 'o', 'l', 'e']","['a', 'i', 'd']",7,7,True +bobwhites,"['b', 'o', 'b', 'w', 'h', 'i', 't', 'e', 's']","['a', 'n']",9,8,True +immaculateness,"['i', 'm', 'm', 'a', 'c', 'u', 'l', 'a', 't', 'e', 'n', 'e', 's', 's']",[],14,10,True +enfranchisement,"['e', 'n', 'f', 'r', 'a', 'n', 'c', 'h', 'i', 's', 'e', 'm', 'e', 'n', 't']",[],15,10,True +intrusted,"['i', 'n', 't', 'r', 'u', 's', 't', 'e', 'd']",[],9,10,True +griping,"['g', 'r', 'i', 'p', 'i', 'n', 'g']","['e', 'd', 'm']",7,7,True +disobedient,"['d', 'i', 's', 'o', 'b', 'e', 'd', 'i', 'e', 'n', 't']","['r', 'l']",11,8,True +swastika,"['s', 'w', 'a', 's', 't', 'i', 'k', 'a']","['e', 'n']",8,8,True +inconsistencies,"['i', 'n', 'c', 'o', 'n', 's', 'i', 's', 't', 'e', 'n', 'c', 'i', 'e', 's']",[],15,10,True +flatfishes,"['f', 'l', 'a', 't', 'f', 'i', 's', 'h', 'e', 's']",[],10,10,True +kilo,"['k', 'i', 'l', 'o']","['e', 's', 't', 'm', 'd', 'w']",4,4,True +sitar,"['s', 'i', 't', 'a', 'r']","['e', 'o']",5,8,True +lackey,"['l', 'a', 'c', 'k', 'e', 'y']","['d', 's', 'r', 'n', 't']",6,5,True +barnyard,"['b', 'a', 'r', 'n', 'y', 'a', 'r', 'd']","['e', 'i', 's', 'l', 'm']",8,5,True +spooks,"['s', 'p', 'o', 'o', 'k', 's']","['e', 't', 'a', 'f', 'n']",6,5,True +flagellated,"['f', 'l', 'a', 'g', 'e', 'l', 'l', 'a', 't', 'e', 'd']",['s'],11,9,True +hunter,"['h', 'u', 'n', 't', 'e', 'r']","['d', 's', 'i', 'a', 'o', 'p']",6,4,True +obviating,"['o', 'b', 'v', 'i', 'a', 't', 'i', 'n', 'g']","['e', 's', 'f']",9,7,True +wrestle,"['w', 'r', 'e', 's', 't', 'l', 'e']",['p'],7,9,True +nonabsorbents,"['n', 'o', 'n', 'a', 'b', 's', 'o', 'r', 'b', 'e', 'n', 't', 's']",['i'],13,9,True +strollers,"['s', 't', 'r', 'o', 'l', 'l', 'e', 'r', 's']",['n'],9,9,True +inebriated,"['i', 'n', 'e', 'b', 'r', 'i', 'a', 't', 'e', 'd']","['s', 'o']",10,8,True +canyon,"['c', 'a', 'n', 'y', 'o', 'n']","['e', 's', 'i', 'r', 'l', 't']",6,4,True +disoblige,"['d', 'i', 's', 'o', 'b', 'l', 'i', 'g', 'e']","['a', 't']",9,8,True +conditioned,"['c', 'o', 'n', 'd', 'i', 't', 'i', 'o', 'n', 'e', 'd']",[],11,10,True +cackling,"['c', 'a', 'c', 'k', 'l', 'i', 'n', 'g']","['e', 't', 'd', 'b', 'f', 's']",8,4,True +offshoots,"['o', 'f', 'f', 's', 'h', 'o', 'o', 't', 's']","['e', 'i']",9,8,True +harmony,"['h', 'a', 'r', 'm', 'o', 'n', 'y']","['e', 'i', 's']",7,7,True +sibling,"['s', 'i', 'b', 'l', 'i', 'n', 'g']","['e', 't', 'p', 'd']",7,6,True +electrocuting,"['e', 'l', 'e', 'c', 't', 'r', 'o', 'c', 'u', 't', 'i', 'n', 'g']",[],13,10,True +discoverers,"['d', 'i', 's', 'c', 'o', 'v', 'e', 'r', 'e', 'r', 's']",[],11,10,True +semiweeklies,"['s', 'e', 'm', 'i', 'w', 'e', 'e', 'k', 'l', 'i', 'e', 's']",[],12,10,True +overbalances,"['o', 'v', 'e', 'r', 'b', 'a', 'l', 'a', 'n', 'c', 'e', 's']",['d'],12,9,True +queue,"['q', 'u', 'e', 'u', 'e']","['s', 'r', 'i']",5,7,True +halter,"['h', 'a', 'l', 't', 'e', 'r']","['d', 's', 'i', 'n', 'f']",6,5,True +unfounded,"['u', 'n', 'f', 'o', 'u', 'n', 'd', 'e', 'd']","['s', 'a']",9,8,True +troubleshoot,"['t', 'r', 'o', 'u', 'b', 'l', 'e', 's', 'h', 'o', 'o', 't']",['i'],12,9,True +sodded,"['s', 'o', 'd', 'd', 'e', 'd']","['n', 'p']",6,8,True +bass,"['b', 'a', 's', 's']","['e', 'u', 'i', 'o', 'm', 'l', 'p']",4,3,True +rejoice,"['r', 'e', 'j', 'o', 'i', 'c', 'e']","['t', 'l']",7,8,True +cornrowing,"['c', 'o', 'r', 'n', 'r', 'o', 'w', 'i', 'n', 'g']",['e'],10,9,True +obliviousness,"['o', 'b', 'l', 'i', 'v', 'i', 'o', 'u', 's', 'n', 'e', 's', 's']",['f'],13,9,True +grounded,"['g', 'r', 'o', 'u', 'n', 'd', 'e', 'd']",['s'],8,9,True +quotations,"['q', 'u', 'o', 't', 'a', 't', 'i', 'o', 'n', 's']","['e', 'f']",10,8,True +earldom,"['e', 'a', 'r', 'l', 'd', 'o', 'm']",['i'],7,9,True +muddies,"['m', 'u', 'd', 'd', 'i', 'e', 's']","['o', 'a']",7,8,True +deal,"['d', 'e', 'a', 'l']","['s', 'r', 't', 'm', 'w', 'v', 'p', 'h']",4,2,True +decentralised,"['d', 'e', 'c', 'e', 'n', 't', 'r', 'a', 'l', 'i', 's', 'e', 'd']",[],13,10,True +trailblazer,"['t', 'r', 'a', 'i', 'l', 'b', 'l', 'a', 'z', 'e', 'r']",[],11,10,True +venally,"['v', 'e', 'n', 'a', 'l', 'l', 'y']",['s'],7,9,True +leavens,"['l', 'e', 'a', 'v', 'e', 'n', 's']","['r', 'd']",7,8,True +ruggeder,"['r', 'u', 'g', 'g', 'e', 'd', 'e', 'r']",[],8,10,True +wooziness,"['w', 'o', 'o', 'z', 'i', 'n', 'e', 's', 's']","['m', 'd']",9,8,True +horse,"['h', 'o', 'r', 's', 'e']","['u', 'g', 'w']",5,7,True +dilettantes,"['d', 'i', 'l', 'e', 't', 't', 'a', 'n', 't', 'e', 's']",[],11,10,True +copeck,"['c', 'o', 'p', 'e', 'c', 'k']","['s', 'n', 'a', 'l']",6,6,True +reactionaries,"['r', 'e', 'a', 'c', 't', 'i', 'o', 'n', 'a', 'r', 'i', 'e', 's']",[],13,10,True +bullheaded,"['b', 'u', 'l', 'l', 'h', 'e', 'a', 'd', 'e', 'd']","['s', 'n']",10,8,True +shadowiest,"['s', 'h', 'a', 'd', 'o', 'w', 'i', 'e', 's', 't']",['r'],10,9,True +loafs,"['l', 'o', 'a', 'f', 's']","['e', 't', 'n', 'd', 'c']",5,5,True +adored,"['a', 'd', 'o', 'r', 'e', 'd']",[],6,10,True +hammered,"['h', 'a', 'm', 'm', 'e', 'r', 'e', 'd']","['t', 's', 'y']",8,7,True +austerest,"['a', 'u', 's', 't', 'e', 'r', 'e', 's', 't']",[],9,10,True +warping,"['w', 'a', 'r', 'p', 'i', 'n', 'g']","['e', 'l']",7,8,True +drools,"['d', 'r', 'o', 'o', 'l', 's']","['e', 'a', 'p', 'b', 'c', 'g']",6,4,True +inflated,"['i', 'n', 'f', 'l', 'a', 't', 'e', 'd']","['s', 'r', 'u']",8,7,True +competences,"['c', 'o', 'm', 'p', 'e', 't', 'e', 'n', 'c', 'e', 's']",[],11,10,True +disfiguring,"['d', 'i', 's', 'f', 'i', 'g', 'u', 'r', 'i', 'n', 'g']",['e'],11,9,True +parch,"['p', 'a', 'r', 'c', 'h']","['s', 'e', 'y', 'o', 't', 'i', 'm', 'l']",5,2,True +cafeteria,"['c', 'a', 'f', 'e', 't', 'e', 'r', 'i', 'a']","['s', 'l', 'n']",9,7,True +employer,"['e', 'm', 'p', 'l', 'o', 'y', 'e', 'r']","['s', 'd', 't']",8,7,True +bailing,"['b', 'a', 'i', 'l', 'i', 'n', 'g']","['e', 't', 'm', 'f', 'w', 'h', 'r', 's']",7,2,True +being,"['b', 'e', 'i', 'n', 'g']","['s', 'r', 'l', 't']",5,6,True +watching,"['w', 'a', 't', 'c', 'h', 'i', 'n', 'g']","['e', 'l', 'r', 'm']",8,6,True +motivation,"['m', 'o', 't', 'i', 'v', 'a', 't', 'i', 'o', 'n']",['e'],10,9,True +welder,"['w', 'e', 'l', 'd', 'e', 'r']",['n'],6,9,True +hints,"['h', 'i', 'n', 't', 's']","['e', 'o', 'a', 'l', 'k', 'd', 'm', 'p']",5,2,True +sarcasms,"['s', 'a', 'r', 'c', 'a', 's', 'm', 's']","['e', 'i']",8,8,True +downbeats,"['d', 'o', 'w', 'n', 'b', 'e', 'a', 't', 's']",[],9,10,True +grilled,"['g', 'r', 'i', 'l', 'l', 'e', 'd']","['s', 't']",7,8,True +relinquished,"['r', 'e', 'l', 'i', 'n', 'q', 'u', 'i', 's', 'h', 'e', 'd']",[],12,10,True +theorem,"['t', 'h', 'e', 'o', 'r', 'e', 'm']",['d'],7,9,True +dowdiness,"['d', 'o', 'w', 'd', 'i', 'n', 'e', 's', 's']",['l'],9,9,True +frothed,"['f', 'r', 'o', 't', 'h', 'e', 'd']","['s', 'l', 'p', 'n']",7,6,True +melancholia,"['m', 'e', 'l', 'a', 'n', 'c', 'h', 'o', 'l', 'i', 'a']",[],11,10,True +planting,"['p', 'l', 'a', 'n', 't', 'i', 'n', 'g']","['e', 'u', 'k']",8,7,True +subordinating,"['s', 'u', 'b', 'o', 'r', 'd', 'i', 'n', 'a', 't', 'i', 'n', 'g']",[],13,10,True +interleaves,"['i', 'n', 't', 'e', 'r', 'l', 'e', 'a', 'v', 'e', 's']",['w'],11,9,True +poised,"['p', 'o', 'i', 's', 'e', 'd']","['a', 'l', 't', 'k', 'u']",6,5,True +corking,"['c', 'o', 'r', 'k', 'i', 'n', 'g']","['e', 'a', 'l', 'p', 's', 'f', 'w', 'd']",7,2,True +pristine,"['p', 'r', 'i', 's', 't', 'i', 'n', 'e']",['a'],8,9,True +overheating,"['o', 'v', 'e', 'r', 'h', 'e', 'a', 't', 'i', 'n', 'g']",['l'],11,9,True +owner,"['o', 'w', 'n', 'e', 'r']","['s', 'd', 'a', 't', 'f']",5,5,True +ambiguity,"['a', 'm', 'b', 'i', 'g', 'u', 'i', 't', 'y']","['e', 'n', 's']",9,7,True +avaricious,"['a', 'v', 'a', 'r', 'i', 'c', 'i', 'o', 'u', 's']","['e', 't']",10,8,True +hither,"['h', 'i', 't', 'h', 'e', 'r']","['d', 's']",6,8,True +detoxified,"['d', 'e', 't', 'o', 'x', 'i', 'f', 'i', 'e', 'd']",['s'],10,9,True +pamphleteer,"['p', 'a', 'm', 'p', 'h', 'l', 'e', 't', 'e', 'e', 'r']",[],11,10,True +connecter,"['c', 'o', 'n', 'n', 'e', 'c', 't', 'e', 'r']",['s'],9,9,True +viand,"['v', 'i', 'a', 'n', 'd']","['s', 'e', 'r', 'l', 't', 'o']",5,4,True +daiquiri,"['d', 'a', 'i', 'q', 'u', 'i', 'r', 'i']",['e'],8,9,True +fruitcake,"['f', 'r', 'u', 'i', 't', 'c', 'a', 'k', 'e']",[],9,10,True +revelry,"['r', 'e', 'v', 'e', 'l', 'r', 'y']",['s'],7,9,True +judicature,"['j', 'u', 'd', 'i', 'c', 'a', 't', 'u', 'r', 'e']",[],10,10,True +concertinaing,"['c', 'o', 'n', 'c', 'e', 'r', 't', 'i', 'n', 'a', 'i', 'n', 'g']",[],13,10,True +ho,"['h', 'o']","['t', 'g', 'n', 'y', 'l']",2,5,True +dully,"['d', 'u', 'l', 'l', 'y']","['s', 'e', 'a', 'o', 'i', 'm', 'g', 'f']",5,2,True +trilogy,"['t', 'r', 'i', 'l', 'o', 'g', 'y']","['e', 's', 'a', 'u']",7,6,True +unapproachable,"['u', 'n', 'a', 'p', 'p', 'r', 'o', 'a', 'c', 'h', 'a', 'b', 'l', 'e']",['i'],14,9,True +piebald,"['p', 'i', 'e', 'b', 'a', 'l', 'd']","['r', 's', 'n']",7,7,True +felony,"['f', 'e', 'l', 'o', 'n', 'y']","['r', 's', 'g']",6,7,True +madcaps,"['m', 'a', 'd', 'c', 'a', 'p', 's']","['e', 'i', 'n', 'y', 'r']",7,5,True +exits,"['e', 'x', 'i', 't', 's']",[],5,10,True +congruent,"['c', 'o', 'n', 'g', 'r', 'u', 'e', 'n', 't']","['s', 'f']",9,8,True +plasters,"['p', 'l', 'a', 's', 't', 'e', 'r', 's']","['o', 'u', 'b']",8,7,True +flashes,"['f', 'l', 'a', 's', 'h', 'e', 's']",[],7,10,True +manifolding,"['m', 'a', 'n', 'i', 'f', 'o', 'l', 'd', 'i', 'n', 'g']","['e', 't']",11,8,True +granule,"['g', 'r', 'a', 'n', 'u', 'l', 'e']",['p'],7,9,True +peskier,"['p', 'e', 's', 'k', 'i', 'e', 'r']","['d', 't']",7,8,True +queered,"['q', 'u', 'e', 'e', 'r', 'e', 'd']",['s'],7,9,True +cocksuckers,"['c', 'o', 'c', 'k', 's', 'u', 'c', 'k', 'e', 'r', 's']",[],11,10,True +optometrists,"['o', 'p', 't', 'o', 'm', 'e', 't', 'r', 'i', 's', 't', 's']",[],12,10,True +laughs,"['l', 'a', 'u', 'g', 'h', 's']","['e', 'o', 'i', 't']",6,6,True +maladjusted,"['m', 'a', 'l', 'a', 'd', 'j', 'u', 's', 't', 'e', 'd']","['i', 'o']",11,8,True +betas,"['b', 'e', 't', 'a', 's']",[],5,10,True +nineteen,"['n', 'i', 'n', 'e', 't', 'e', 'e', 'n']",['f'],8,9,True +pulled,"['p', 'u', 'l', 'l', 'e', 'd']","['a', 'o', 'i', 'g', 'm', 'f']",6,4,True +forming,"['f', 'o', 'r', 'm', 'i', 'n', 'g']","['e', 'a', 'l', 'p', 's']",7,5,True +dolly,"['d', 'o', 'l', 'l', 'y']","['s', 'e', 'a', 'g', 'f', 'h']",5,4,True +gambol,"['g', 'a', 'm', 'b', 'o', 'l']","['e', 's', 'i', 'r']",6,6,True +pocks,"['p', 'o', 'c', 'k', 's']","['e', 'l', 'r', 'n', 'm', 'y']",5,4,True +bowler,"['b', 'o', 'w', 'l', 'e', 'r']","['d', 's', 'i', 'a', 't', 'h']",6,4,True +braids,"['b', 'r', 'a', 'i', 'd', 's']","['e', 't', 'n', 'c', 'f']",6,5,True +cardiopulmonary,"['c', 'a', 'r', 'd', 'i', 'o', 'p', 'u', 'l', 'm', 'o', 'n', 'a', 'r', 'y']",[],15,10,True +carnal,"['c', 'a', 'r', 'n', 'a', 'l']","['e', 's', 'i', 't']",6,6,True +tillage,"['t', 'i', 'l', 'l', 'a', 'g', 'e']",['n'],7,9,True +eyewitnesses,"['e', 'y', 'e', 'w', 'i', 't', 'n', 'e', 's', 's', 'e', 's']",[],12,10,True +disobeyed,"['d', 'i', 's', 'o', 'b', 'e', 'y', 'e', 'd']",['r'],9,9,True +bold,"['b', 'o', 'l', 'd']","['e', 's', 't', 'g', 'm', 'f', 'h']",4,3,True +triceratops,"['t', 'r', 'i', 'c', 'e', 'r', 'a', 't', 'o', 'p', 's']",['n'],11,9,True +savoured,"['s', 'a', 'v', 'o', 'u', 'r', 'e', 'd']",[],8,10,True +carrels,"['c', 'a', 'r', 'r', 'e', 'l', 's']","['n', 'b']",7,8,True +insigne,"['i', 'n', 's', 'i', 'g', 'n', 'e']",['a'],7,9,True +apprenticeship,"['a', 'p', 'p', 'r', 'e', 'n', 't', 'i', 'c', 'e', 's', 'h', 'i', 'p']",[],14,10,True +verily,"['v', 'e', 'r', 'i', 'l', 'y']",[],6,10,True +barbarians,"['b', 'a', 'r', 'b', 'a', 'r', 'i', 'a', 'n', 's']","['e', 'o', 'm']",10,7,True +apostrophes,"['a', 'p', 'o', 's', 't', 'r', 'o', 'p', 'h', 'e', 's']",['i'],11,9,True +moonscapes,"['m', 'o', 'o', 'n', 's', 'c', 'a', 'p', 'e', 's']",[],10,10,True +minnow,"['m', 'i', 'n', 'n', 'o', 'w']","['e', 's', 'l', 'a']",6,6,True +outdistance,"['o', 'u', 't', 'd', 'i', 's', 't', 'a', 'n', 'c', 'e']",[],11,10,True +nuggets,"['n', 'u', 'g', 'g', 'e', 't', 's']","['r', 'l']",7,8,True +waggish,"['w', 'a', 'g', 'g', 'i', 's', 'h']","['e', 'n', 'o', 'u', 'f']",7,5,True +smothering,"['s', 'm', 'o', 't', 'h', 'e', 'r', 'i', 'n', 'g']",[],10,10,True +haltingly,"['h', 'a', 'l', 't', 'i', 'n', 'g', 'l', 'y']","['e', 's']",9,8,True +meekest,"['m', 'e', 'e', 'k', 'e', 's', 't']",[],7,10,True +elements,"['e', 'l', 'e', 'm', 'e', 'n', 't', 's']",[],8,10,True +compacting,"['c', 'o', 'm', 'p', 'a', 'c', 't', 'i', 'n', 'g']","['e', 'r']",10,8,True +beeps,"['b', 'e', 'e', 'p', 's']","['w', 'k', 'd', 'v']",5,6,True +edification,"['e', 'd', 'i', 'f', 'i', 'c', 'a', 't', 'i', 'o', 'n']",[],11,10,True +workloads,"['w', 'o', 'r', 'k', 'l', 'o', 'a', 'd', 's']","['e', 'i', 'n']",9,7,True +hazard,"['h', 'a', 'z', 'a', 'r', 'd']","['e', 's', 'i', 'y', 'n']",6,5,True +obelisk,"['o', 'b', 'e', 'l', 'i', 's', 'k']","['r', 't']",7,8,True +breastplates,"['b', 'r', 'e', 'a', 's', 't', 'p', 'l', 'a', 't', 'e', 's']",[],12,10,True +bridgehead,"['b', 'r', 'i', 'd', 'g', 'e', 'h', 'e', 'a', 'd']","['s', 't']",10,8,True +confederating,"['c', 'o', 'n', 'f', 'e', 'd', 'e', 'r', 'a', 't', 'i', 'n', 'g']",[],13,10,True +rankling,"['r', 'a', 'n', 'k', 'l', 'i', 'n', 'g']","['e', 'h', 'd', 'm', 'f']",8,5,True +swathed,"['s', 'w', 'a', 't', 'h', 'e', 'd']",['o'],7,9,True +flattered,"['f', 'l', 'a', 't', 't', 'e', 'r', 'e', 'd']","['s', 'u']",9,8,True +extractor,"['e', 'x', 't', 'r', 'a', 'c', 't', 'o', 'r']",['i'],9,9,True +urethra,"['u', 'r', 'e', 't', 'h', 'r', 'a']",[],7,10,True +uninjured,"['u', 'n', 'i', 'n', 'j', 'u', 'r', 'e', 'd']","['s', 't']",9,8,True +loading,"['l', 'o', 'a', 'd', 'i', 'n', 'g']","['e', 's', 'r', 'f']",7,6,True +filibustering,"['f', 'i', 'l', 'i', 'b', 'u', 's', 't', 'e', 'r', 'i', 'n', 'g']",[],13,10,True +coolness,"['c', 'o', 'o', 'l', 'n', 'e', 's', 's']",['i'],8,9,True +colonials,"['c', 'o', 'l', 'o', 'n', 'i', 'a', 'l', 's']",['e'],9,9,True +derivative,"['d', 'e', 'r', 'i', 'v', 'a', 't', 'i', 'v', 'e']",[],10,10,True +rankest,"['r', 'a', 'n', 'k', 'e', 's', 't']","['i', 'd', 'l']",7,7,True +astronaut,"['a', 's', 't', 'r', 'o', 'n', 'a', 'u', 't']","['e', 'i']",9,8,True +testifies,"['t', 'e', 's', 't', 'i', 'f', 'i', 'e', 's']",['d'],9,9,True +persecutors,"['p', 'e', 'r', 's', 'e', 'c', 'u', 't', 'o', 'r', 's']",[],11,10,True +wastrel,"['w', 'a', 's', 't', 'r', 'e', 'l']",[],7,10,True +entourages,"['e', 'n', 't', 'o', 'u', 'r', 'a', 'g', 'e', 's']",[],10,10,True +skunked,"['s', 'k', 'u', 'n', 'k', 'e', 'd']","['t', 'p', 'a', 'l']",7,6,True +workstations,"['w', 'o', 'r', 'k', 's', 't', 'a', 't', 'i', 'o', 'n', 's']",['e'],12,9,True +prescience,"['p', 'r', 'e', 's', 'c', 'i', 'e', 'n', 'c', 'e']",[],10,10,True +retails,"['r', 'e', 't', 'a', 'i', 'l', 's']","['n', 'o']",7,8,True +freeing,"['f', 'r', 'e', 'e', 'i', 'n', 'g']","['l', 't', 'm']",7,7,True +tarries,"['t', 'a', 'r', 'r', 'i', 'e', 's']","['o', 'd']",7,8,True +destructed,"['d', 'e', 's', 't', 'r', 'u', 'c', 't', 'e', 'd']",[],10,10,True +blemishing,"['b', 'l', 'e', 'm', 'i', 's', 'h', 'i', 'n', 'g']",[],10,10,True +alums,"['a', 'l', 'u', 'm', 's']","['e', 'o', 't']",5,7,True +sidearm,"['s', 'i', 'd', 'e', 'a', 'r', 'm']",[],7,10,True +triples,"['t', 'r', 'i', 'p', 'l', 'e', 's']",['f'],7,9,True +sympathising,"['s', 'y', 'm', 'p', 'a', 't', 'h', 'i', 's', 'i', 'n', 'g']",['e'],12,9,True +dimmers,"['d', 'i', 'm', 'm', 'e', 'r', 's']","['t', 'o', 'a', 'n', 'k', 'l', 'g']",7,3,True +backspace,"['b', 'a', 'c', 'k', 's', 'p', 'a', 'c', 'e']","['t', 'n']",9,8,True +tanner,"['t', 'a', 'n', 'n', 'e', 'r']","['d', 's', 'i']",6,7,True +perpetuates,"['p', 'e', 'r', 'p', 'e', 't', 'u', 'a', 't', 'e', 's']",['d'],11,9,True +fared,"['f', 'a', 'r', 'e', 'd']","['s', 't']",5,8,True +reprocessed,"['r', 'e', 'p', 'r', 'o', 'c', 'e', 's', 's', 'e', 'd']",[],11,10,True +quadriplegia,"['q', 'u', 'a', 'd', 'r', 'i', 'p', 'l', 'e', 'g', 'i', 'a']",['n'],12,9,True +pander,"['p', 'a', 'n', 'd', 'e', 'r']","['i', 'g', 'w', 'l']",6,6,True +wrigglier,"['w', 'r', 'i', 'g', 'g', 'l', 'i', 'e', 'r']","['s', 'd']",9,8,True +subatomic,"['s', 'u', 'b', 'a', 't', 'o', 'm', 'i', 'c']",['e'],9,9,True +adventuresome,"['a', 'd', 'v', 'e', 'n', 't', 'u', 'r', 'e', 's', 'o', 'm', 'e']",['i'],13,9,True +entertainment,"['e', 'n', 't', 'e', 'r', 't', 'a', 'i', 'n', 'm', 'e', 'n', 't']",[],13,10,True +accusation,"['a', 'c', 'c', 'u', 's', 'a', 't', 'i', 'o', 'n']","['e', 'r']",10,8,True +prequels,"['p', 'r', 'e', 'q', 'u', 'e', 'l', 's']",['t'],8,9,True +whooshes,"['w', 'h', 'o', 'o', 's', 'h', 'e', 's']",['t'],8,9,True +stigmas,"['s', 't', 'i', 'g', 'm', 'a', 's']",['e'],7,9,True +indiscretion,"['i', 'n', 'd', 'i', 's', 'c', 'r', 'e', 't', 'i', 'o', 'n']",[],12,10,True +share,"['s', 'h', 'a', 'r', 'e']","['t', 'm', 'k', 'l', 'p', 'd']",5,4,True +fascist,"['f', 'a', 's', 'c', 'i', 's', 't']","['e', 'n', 'h']",7,7,True +ridge,"['r', 'i', 'd', 'g', 'e']","['s', 'a', 't', 'm']",5,6,True +sanitising,"['s', 'a', 'n', 'i', 't', 'i', 's', 'i', 'n', 'g']",['e'],10,9,True +gollies,"['g', 'o', 'l', 'l', 'i', 'e', 's']",[],7,10,True +gluttonously,"['g', 'l', 'u', 't', 't', 'o', 'n', 'o', 'u', 's', 'l', 'y']","['e', 'i']",12,8,True +pigment,"['p', 'i', 'g', 'm', 'e', 'n', 't']","['s', 'r', 'f']",7,7,True +larch,"['l', 'a', 'r', 'c', 'h']","['s', 'e', 'y', 'o', 't', 'i', 'm']",5,3,True +orientations,"['o', 'r', 'i', 'e', 'n', 't', 'a', 't', 'i', 'o', 'n', 's']",[],12,10,True +gleaned,"['g', 'l', 'e', 'a', 'n', 'e', 'd']","['c', 't', 'm']",7,7,True +verdigrised,"['v', 'e', 'r', 'd', 'i', 'g', 'r', 'i', 's', 'e', 'd']",[],11,10,True +tzars,"['t', 'z', 'a', 'r', 's']","['e', 'o']",5,8,True +technicians,"['t', 'e', 'c', 'h', 'n', 'i', 'c', 'i', 'a', 'n', 's']",[],11,10,True +miscalls,"['m', 'i', 's', 'c', 'a', 'l', 'l', 's']","['e', 'd']",8,8,True +babies,"['b', 'a', 'b', 'i', 'e', 's']","['d', 'l', 'r', 'n']",6,6,True +beckons,"['b', 'e', 'c', 'k', 'o', 'n', 's']","['i', 'r']",7,8,True +tiles,"['t', 'i', 'l', 'e', 's']","['a', 'm', 'n', 'k']",5,6,True +riles,"['r', 'i', 'l', 'e', 's']","['a', 't', 'm', 'v', 'n']",5,5,True +focused,"['f', 'o', 'c', 'u', 's', 'e', 'd']","['r', 'i']",7,8,True +abolished,"['a', 'b', 'o', 'l', 'i', 's', 'h', 'e', 'd']","['r', 'g']",9,8,True +busying,"['b', 'u', 's', 'y', 'i', 'n', 'g']","['e', 'a', 'o', 'l', 'h', 't']",7,4,True +opening,"['o', 'p', 'e', 'n', 'i', 'n', 'g']","['r', 's']",7,8,True +cataracts,"['c', 'a', 't', 'a', 'r', 'a', 'c', 't', 's']","['e', 'i', 'o']",9,7,True +chased,"['c', 'h', 'a', 's', 'e', 'd']","['r', 'p']",6,8,True +diaphragm,"['d', 'i', 'a', 'p', 'h', 'r', 'a', 'g', 'm']","['e', 's']",9,8,True +parachuting,"['p', 'a', 'r', 'a', 'c', 'h', 'u', 't', 'i', 'n', 'g']",['e'],11,9,True +thieve,"['t', 'h', 'i', 'e', 'v', 'e']","['r', 'a']",6,8,True +insulators,"['i', 'n', 's', 'u', 'l', 'a', 't', 'o', 'r', 's']",['e'],10,9,True +cutlass,"['c', 'u', 't', 'l', 'a', 's', 's']","['e', 'i']",7,8,True +bouncing,"['b', 'o', 'u', 'n', 'c', 'i', 'n', 'g']","['e', 't', 'd', 'p']",8,6,True +reddens,"['r', 'e', 'd', 'd', 'e', 'n', 's']",['f'],7,9,True +warps,"['w', 'a', 'r', 'p', 's']","['e', 'o', 'l', 't', 'b', 'n', 'm']",5,3,True +hurdlers,"['h', 'u', 'r', 'd', 'l', 'e', 'r', 's']",[],8,10,True +transitively,"['t', 'r', 'a', 'n', 's', 'i', 't', 'i', 'v', 'e', 'l', 'y']",[],12,10,True +humans,"['h', 'u', 'm', 'a', 'n', 's']","['e', 'l', 'r', 't', 'g']",6,5,True +terms,"['t', 'e', 'r', 'm', 's']","['a', 'l', 'n', 'b']",5,6,True +substances,"['s', 'u', 'b', 's', 't', 'a', 'n', 'c', 'e', 's']",[],10,10,True +cowpuncher,"['c', 'o', 'w', 'p', 'u', 'n', 'c', 'h', 'e', 'r']","['s', 'a']",10,8,True +rallying,"['r', 'a', 'l', 'l', 'y', 'i', 'n', 'g']","['e', 't', 'd']",8,7,True +tomahawked,"['t', 'o', 'm', 'a', 'h', 'a', 'w', 'k', 'e', 'd']","['s', 'n']",10,8,True +calibrator,"['c', 'a', 'l', 'i', 'b', 'r', 'a', 't', 'o', 'r']",['e'],10,9,True +capitols,"['c', 'a', 'p', 'i', 't', 'o', 'l', 's']","['e', 'r']",8,8,True +drawers,"['d', 'r', 'a', 'w', 'e', 'r', 's']",['t'],7,9,True +dimmed,"['d', 'i', 'm', 'm', 'e', 'd']","['n', 'o', 'a', 'u', 's']",6,5,True +receptions,"['r', 'e', 'c', 'e', 'p', 't', 'i', 'o', 'n', 's']",['d'],10,9,True +bombardment,"['b', 'o', 'm', 'b', 'a', 'r', 'd', 'm', 'e', 'n', 't']",['s'],11,9,True +matchmakers,"['m', 'a', 't', 'c', 'h', 'm', 'a', 'k', 'e', 'r', 's']",[],11,10,True +triumphs,"['t', 'r', 'i', 'u', 'm', 'p', 'h', 's']","['e', 'a']",8,8,True +lime,"['l', 'i', 'm', 'e']","['a', 'o', 't']",4,7,True +monoliths,"['m', 'o', 'n', 'o', 'l', 'i', 't', 'h', 's']",['e'],9,9,True +infamies,"['i', 'n', 'f', 'a', 'm', 'i', 'e', 's']",[],8,10,True +geographer,"['g', 'e', 'o', 'g', 'r', 'a', 'p', 'h', 'e', 'r']","['s', 'd']",10,8,True +fracas,"['f', 'r', 'a', 'c', 'a', 's']","['e', 'l', 'm']",6,7,True +hushes,"['h', 'u', 's', 'h', 'e', 's']",['d'],6,9,True +bask,"['b', 'a', 's', 'k']","['e', 't', 'h', 'u', 'm']",4,5,True +victual,"['v', 'i', 'c', 't', 'u', 'a', 'l']","['e', 's', 'r']",7,7,True +yeahs,"['y', 'e', 'a', 'h', 's']","['r', 'l', 't', 'n', 'b']",5,5,True +squawks,"['s', 'q', 'u', 'a', 'w', 'k', 's']","['e', 'i', 'l', 't']",7,6,True +judged,"['j', 'u', 'd', 'g', 'e', 'd']","['f', 'n', 'b']",6,7,True +guppy,"['g', 'u', 'p', 'p', 'y']","['s', 'e', 'a', 'o', 'i', 'm', 'l', 'n', 'r']",5,1,True +terrorised,"['t', 'e', 'r', 'r', 'o', 'r', 'i', 's', 'e', 'd']",[],10,10,True +founding,"['f', 'o', 'u', 'n', 'd', 'i', 'n', 'g']","['e', 't', 'm']",8,7,True +trinity,"['t', 'r', 'i', 'n', 'i', 't', 'y']","['e', 's']",7,8,True +blackish,"['b', 'l', 'a', 'c', 'k', 'i', 's', 'h']","['e', 'n', 'f']",8,7,True +babies,"['b', 'a', 'b', 'i', 'e', 's']","['d', 'l', 'r', 'n']",6,6,True +accurst,"['a', 'c', 'c', 'u', 'r', 's', 't']","['e', 'i', 'o']",7,7,True +snoopers,"['s', 'n', 'o', 'o', 'p', 'e', 'r', 's']",['t'],8,9,True +majorettes,"['m', 'a', 'j', 'o', 'r', 'e', 't', 't', 'e', 's']",[],10,10,True +cliquish,"['c', 'l', 'i', 'q', 'u', 'i', 's', 'h']","['e', 'n', 'g']",8,7,True +scrawling,"['s', 'c', 'r', 'a', 'w', 'l', 'i', 'n', 'g']","['e', 'o', 'p', 'q', 'm']",9,5,True +expiry,"['e', 'x', 'p', 'i', 'r', 'y']","['t', 'n', 's', 'l']",6,6,True +disfranchisement,"['d', 'i', 's', 'f', 'r', 'a', 'n', 'c', 'h', 'i', 's', 'e', 'm', 'e', 'n', 't']",[],16,10,True +delegations,"['d', 'e', 'l', 'e', 'g', 'a', 't', 'i', 'o', 'n', 's']",[],11,10,True +assaulted,"['a', 's', 's', 'a', 'u', 'l', 't', 'e', 'd']",[],9,10,True +intelligibly,"['i', 'n', 't', 'e', 'l', 'l', 'i', 'g', 'i', 'b', 'l', 'y']",[],12,10,True +iffiest,"['i', 'f', 'f', 'i', 'e', 's', 't']",[],7,10,True +stickiness,"['s', 't', 'i', 'c', 'k', 'i', 'n', 'e', 's', 's']",[],10,10,True +inboards,"['i', 'n', 'b', 'o', 'a', 'r', 'd', 's']",['e'],8,9,True +parthenogenesis,"['p', 'a', 'r', 't', 'h', 'e', 'n', 'o', 'g', 'e', 'n', 'e', 's', 'i', 's']",[],15,10,True +endorser,"['e', 'n', 'd', 'o', 'r', 's', 'e', 'r']",[],8,10,True +carbides,"['c', 'a', 'r', 'b', 'i', 'd', 'e', 's']","['n', 'o', 't']",8,7,True +particularise,"['p', 'a', 'r', 't', 'i', 'c', 'u', 'l', 'a', 'r', 'i', 's', 'e']",['n'],13,9,True +polythene,"['p', 'o', 'l', 'y', 't', 'h', 'e', 'n', 'e']",['i'],9,9,True +jawed,"['j', 'a', 'w', 'e', 'd']","['s', 'r', 'y', 'p', 'h', 'c']",5,4,True +outgoing,"['o', 'u', 't', 'g', 'o', 'i', 'n', 'g']",['e'],8,9,True +skylarking,"['s', 'k', 'y', 'l', 'a', 'r', 'k', 'i', 'n', 'g']","['e', 'o']",10,8,True +sameness,"['s', 'a', 'm', 'e', 'n', 'e', 's', 's']",['r'],8,9,True +swaddles,"['s', 'w', 'a', 'd', 'd', 'l', 'e', 's']","['i', 't', 'f', 'g', 'k']",8,5,True +anatomy,"['a', 'n', 'a', 't', 'o', 'm', 'y']","['e', 'i']",7,8,True +snottier,"['s', 'n', 'o', 't', 't', 'i', 'e', 'r']",[],8,10,True +housekeeping,"['h', 'o', 'u', 's', 'e', 'k', 'e', 'e', 'p', 'i', 'n', 'g']",[],12,10,True +trudge,"['t', 'r', 'u', 'd', 'g', 'e']","['l', 'i', 'a', 'o']",6,6,True +naturalists,"['n', 'a', 't', 'u', 'r', 'a', 'l', 'i', 's', 't', 's']",['e'],11,9,True +cactus,"['c', 'a', 'c', 't', 'u', 's']","['e', 'o', 'i']",6,7,True +fumble,"['f', 'u', 'm', 'b', 'l', 'e']","['a', 't']",6,8,True +negligence,"['n', 'e', 'g', 'l', 'i', 'g', 'e', 'n', 'c', 'e']",[],10,10,True +toadies,"['t', 'o', 'a', 'd', 'i', 'e', 's']",['l'],7,9,True +multitasking,"['m', 'u', 'l', 't', 'i', 't', 'a', 's', 'k', 'i', 'n', 'g']",['e'],12,9,True +proofread,"['p', 'r', 'o', 'o', 'f', 'r', 'e', 'a', 'd']","['s', 'n']",9,8,True +parqueting,"['p', 'a', 'r', 'q', 'u', 'e', 't', 'i', 'n', 'g']","['o', 'm']",10,8,True +miscegenation,"['m', 'i', 's', 'c', 'e', 'g', 'e', 'n', 'a', 't', 'i', 'o', 'n']",[],13,10,True +offenders,"['o', 'f', 'f', 'e', 'n', 'd', 'e', 'r', 's']","['l', 't']",9,8,True +upstate,"['u', 'p', 's', 't', 'a', 't', 'e']",['i'],7,9,True +sidecars,"['s', 'i', 'd', 'e', 'c', 'a', 'r', 's']","['o', 'b']",8,8,True +solvers,"['s', 'o', 'l', 'v', 'e', 'r', 's']","['i', 'a', 'd']",7,7,True +bristliest,"['b', 'r', 'i', 's', 't', 'l', 'i', 'e', 's', 't']",['g'],10,9,True +suggestible,"['s', 'u', 'g', 'g', 'e', 's', 't', 'i', 'b', 'l', 'e']",['a'],11,9,True +pipeline,"['p', 'i', 'p', 'e', 'l', 'i', 'n', 'e']",['a'],8,9,True +tribune,"['t', 'r', 'i', 'b', 'u', 'n', 'e']","['a', 'l']",7,8,True +compatibility,"['c', 'o', 'm', 'p', 'a', 't', 'i', 'b', 'i', 'l', 'i', 't', 'y']",['s'],13,9,True +reaffirming,"['r', 'e', 'a', 'f', 'f', 'i', 'r', 'm', 'i', 'n', 'g']",['t'],11,9,True +boneheads,"['b', 'o', 'n', 'e', 'h', 'e', 'a', 'd', 's']",[],9,10,True +trinkets,"['t', 'r', 'i', 'n', 'k', 'e', 't', 's']",['p'],8,9,True +nominally,"['n', 'o', 'm', 'i', 'n', 'a', 'l', 'l', 'y']","['e', 'c']",9,8,True +teething,"['t', 'e', 'e', 't', 'h', 'i', 'n', 'g']",[],8,10,True +hungered,"['h', 'u', 'n', 'g', 'e', 'r', 'e', 'd']","['t', 'm', 'i', 'o', 'f', 'k']",8,4,True +touchstone,"['t', 'o', 'u', 'c', 'h', 's', 't', 'o', 'n', 'e']","['i', 'a']",10,8,True +ad,"['a', 'd']","['o', 's', 't', 'm', 'n', 'y', 'h']",2,3,True +rebounded,"['r', 'e', 'b', 'o', 'u', 'n', 'd', 'e', 'd']",['s'],9,9,True +domesticates,"['d', 'o', 'm', 'e', 's', 't', 'i', 'c', 'a', 't', 'e', 's']",[],12,10,True +geographies,"['g', 'e', 'o', 'g', 'r', 'a', 'p', 'h', 'i', 'e', 's']",[],11,10,True +adventuresses,"['a', 'd', 'v', 'e', 'n', 't', 'u', 'r', 'e', 's', 's', 'e', 's']",['i'],13,9,True +orphaned,"['o', 'r', 'p', 'h', 'a', 'n', 'e', 'd']","['s', 'l']",8,8,True +sloping,"['s', 'l', 'o', 'p', 'i', 'n', 'g']","['e', 'a', 'r', 'w', 'k']",7,5,True +periphrasis,"['p', 'e', 'r', 'i', 'p', 'h', 'r', 'a', 's', 'i', 's']",[],11,10,True +tartars,"['t', 'a', 'r', 't', 'a', 'r', 's']","['e', 'i', 'n', 'y']",7,6,True +intermingle,"['i', 'n', 't', 'e', 'r', 'm', 'i', 'n', 'g', 'l', 'e']",[],11,10,True +rebound,"['r', 'e', 'b', 'o', 'u', 'n', 'd']","['i', 's', 'w']",7,7,True +replenished,"['r', 'e', 'p', 'l', 'e', 'n', 'i', 's', 'h', 'e', 'd']",[],11,10,True +lorgnettes,"['l', 'o', 'r', 'g', 'n', 'e', 't', 't', 'e', 's']",[],10,10,True +gladiolus,"['g', 'l', 'a', 'd', 'i', 'o', 'l', 'u', 's']",['e'],9,9,True +impanelling,"['i', 'm', 'p', 'a', 'n', 'e', 'l', 'l', 'i', 'n', 'g']",[],11,10,True +catalogued,"['c', 'a', 't', 'a', 'l', 'o', 'g', 'u', 'e', 'd']",['s'],10,9,True +somebody,"['s', 'o', 'm', 'e', 'b', 'o', 'd', 'y']","['r', 'i', 'a', 'h']",8,6,True +unable,"['u', 'n', 'a', 'b', 'l', 'e']",['s'],6,9,True +superhuman,"['s', 'u', 'p', 'e', 'r', 'h', 'u', 'm', 'a', 'n']",['i'],10,9,True +jubilation,"['j', 'u', 'b', 'i', 'l', 'a', 't', 'i', 'o', 'n']","['e', 'g']",10,8,True +cyclic,"['c', 'y', 'c', 'l', 'i', 'c']","['e', 's', 'a', 'o', 'u']",6,5,True +outranks,"['o', 'u', 't', 'r', 'a', 'n', 'k', 's']","['e', 'i', 'd']",8,7,True +hoorayed,"['h', 'o', 'o', 'r', 'a', 'y', 'e', 'd']",['s'],8,9,True +vamp,"['v', 'a', 'm', 'p']","['e', 's', 'o', 'l', 'r', 'n', 't', 'd']",4,2,True +arduously,"['a', 'r', 'd', 'u', 'o', 'u', 's', 'l', 'y']","['e', 'i']",9,8,True +mackintosh,"['m', 'a', 'c', 'k', 'i', 'n', 't', 'o', 's', 'h']",['e'],10,9,True +footstools,"['f', 'o', 'o', 't', 's', 't', 'o', 'o', 'l', 's']","['e', 'i']",10,8,True +derive,"['d', 'e', 'r', 'i', 'v', 'e']",['a'],6,9,True +sheerest,"['s', 'h', 'e', 'e', 'r', 'e', 's', 't']",['k'],8,9,True +maddening,"['m', 'a', 'd', 'd', 'e', 'n', 'i', 'n', 'g']",[],9,10,True +evangelists,"['e', 'v', 'a', 'n', 'g', 'e', 'l', 'i', 's', 't', 's']",[],11,10,True +tweedier,"['t', 'w', 'e', 'e', 'd', 'i', 'e', 'r']",['s'],8,9,True +stunting,"['s', 't', 'u', 'n', 't', 'i', 'n', 'g']",['e'],8,9,True +conduction,"['c', 'o', 'n', 'd', 'u', 'c', 't', 'i', 'o', 'n']",['e'],10,9,True +hawthorn,"['h', 'a', 'w', 't', 'h', 'o', 'r', 'n']","['e', 'i', 's']",8,7,True +svelte,"['s', 'v', 'e', 'l', 't', 'e']",[],6,10,True +suit,"['s', 'u', 'i', 't']","['e', 'a', 'o', 'm', 'n', 'k', 'l', 'p']",4,2,True +awfullest,"['a', 'w', 'f', 'u', 'l', 'l', 'e', 's', 't']",['i'],9,9,True +enjoin,"['e', 'n', 'j', 'o', 'i', 'n']",['t'],6,9,True +embolisms,"['e', 'm', 'b', 'o', 'l', 'i', 's', 'm', 's']",[],9,10,True +ravaging,"['r', 'a', 'v', 'a', 'g', 'i', 'n', 'g']",['e'],8,9,True +inconsiderately,"['i', 'n', 'c', 'o', 'n', 's', 'i', 'd', 'e', 'r', 'a', 't', 'e', 'l', 'y']",[],15,10,True +ultrasonic,"['u', 'l', 't', 'r', 'a', 's', 'o', 'n', 'i', 'c']",['e'],10,9,True +idiots,"['i', 'd', 'i', 'o', 't', 's']","['e', 'a', 'r']",6,7,True +frisky,"['f', 'r', 'i', 's', 'k', 'y']","['e', 'a', 'o', 't', 'g']",6,5,True +squalidest,"['s', 'q', 'u', 'a', 'l', 'i', 'd', 'e', 's', 't']",[],10,10,True +absurdly,"['a', 'b', 's', 'u', 'r', 'd', 'l', 'y']","['e', 'i', 'o']",8,7,True +insincere,"['i', 'n', 's', 'i', 'n', 'c', 'e', 'r', 'e']",[],9,10,True +preempts,"['p', 'r', 'e', 'e', 'm', 'p', 't', 's']",['i'],8,9,True +fullest,"['f', 'u', 'l', 'l', 'e', 's', 't']","['i', 'a', 'o', 'm', 'n']",7,5,True +prerecording,"['p', 'r', 'e', 'r', 'e', 'c', 'o', 'r', 'd', 'i', 'n', 'g']",[],12,10,True +disinters,"['d', 'i', 's', 'i', 'n', 't', 'e', 'r', 's']",['o'],9,9,True +entreated,"['e', 'n', 't', 'r', 'e', 'a', 't', 'e', 'd']",['s'],9,9,True +podcast,"['p', 'o', 'd', 'c', 'a', 's', 't']","['e', 'i', 'm']",7,7,True +corporal,"['c', 'o', 'r', 'p', 'o', 'r', 'a', 'l']","['e', 'i']",8,8,True +couples,"['c', 'o', 'u', 'p', 'l', 'e', 's']","['i', 'b', 'd', 'g', 't']",7,5,True +thirsting,"['t', 'h', 'i', 'r', 's', 't', 'i', 'n', 'g']","['e', 'l']",9,8,True +rums,"['r', 'u', 'm', 's']","['e', 'a', 'o', 'i', 'b', 'g', 't', 'h']",4,2,True +unaltered,"['u', 'n', 'a', 'l', 't', 'e', 'r', 'e', 'd']",[],9,10,True +mottoes,"['m', 'o', 't', 't', 'o', 'e', 's']","['i', 'l', 'a']",7,7,True +multipurpose,"['m', 'u', 'l', 't', 'i', 'p', 'u', 'r', 'p', 'o', 's', 'e']",[],12,10,True +cuddly,"['c', 'u', 'd', 'd', 'l', 'y']","['e', 's', 'i', 'a', 'o', 'b']",6,4,True +staggered,"['s', 't', 'a', 'g', 'g', 'e', 'r', 'e', 'd']",[],9,10,True +sociability,"['s', 'o', 'c', 'i', 'a', 'b', 'i', 'l', 'i', 't', 'y']",['e'],11,9,True +broaches,"['b', 'r', 'o', 'a', 'c', 'h', 'e', 's']",['i'],8,9,True +rushes,"['r', 'u', 's', 'h', 'e', 's']","['d', 't', 'g', 'm', 'l', 'p']",6,4,True +dualism,"['d', 'u', 'a', 'l', 'i', 's', 'm']","['e', 'n', 'h', 't', 'o']",7,5,True +playgrounds,"['p', 'l', 'a', 'y', 'g', 'r', 'o', 'u', 'n', 'd', 's']","['e', 'i']",11,8,True +trespasses,"['t', 'r', 'e', 's', 'p', 'a', 's', 's', 'e', 's']",[],10,10,True +smooched,"['s', 'm', 'o', 'o', 'c', 'h', 'e', 'd']","['r', 'l', 't', 'i']",8,6,True +faceting,"['f', 'a', 'c', 'e', 't', 'i', 'n', 'g']",['r'],8,9,True +marinading,"['m', 'a', 'r', 'i', 'n', 'a', 'd', 'i', 'n', 'g']","['e', 't']",10,8,True +detract,"['d', 'e', 't', 'r', 'a', 'c', 't']",['n'],7,9,True +comprehensibility,"['c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', 's', 'i', 'b', 'i', 'l', 'i', 't', 'y']",[],17,10,True +humaneness,"['h', 'u', 'm', 'a', 'n', 'e', 'n', 'e', 's', 's']",[],10,10,True +troubleshoots,"['t', 'r', 'o', 'u', 'b', 'l', 'e', 's', 'h', 'o', 'o', 't', 's']",['i'],13,9,True diff --git a/fixed_alphabetical.csv b/fixed_alphabetical.csv new file mode 100644 index 0000000..605f3f1 --- /dev/null +++ b/fixed_alphabetical.csv @@ -0,0 +1,1001 @@ +target,discovered,wrong letters,number of hits,lives remaining,game won +formalism,"['f', 'o', '_', 'm', 'a', 'l', 'i', '_', 'm']","['b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'n', 'p']",7,0,False +awakes,"['a', '_', 'a', 'k', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'l', 'm']",4,0,False +schedule,"['_', 'c', 'h', 'e', 'd', '_', 'l', 'e']","['a', 'b', 'f', 'g', 'i', 'j', 'k', 'm', 'n', 'o']",6,0,False +backers,"['b', 'a', 'c', 'k', 'e', '_', '_']","['d', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'n', 'o']",5,0,False +trends,"['_', '_', 'e', '_', 'd', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +quisling,"['_', '_', 'i', '_', 'l', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",4,0,False +android,"['a', '_', 'd', '_', '_', 'i', 'd']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +corny,"['c', '_', '_', '_', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +belittle,"['b', 'e', 'l', 'i', '_', '_', 'l', 'e']","['a', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",6,0,False +ejaculating,"['e', 'j', 'a', 'c', '_', 'l', 'a', '_', 'i', 'n', 'g']","['b', 'd', 'f', 'h', 'k', 'm', 'o', 'p', 'q', 'r']",9,0,False +excels,"['e', '_', 'c', 'e', 'l', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +sugarier,"['_', '_', 'g', 'a', '_', 'i', 'e', '_']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'n']",4,0,False +pansy,"['_', 'a', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +sidestepped,"['_', 'i', 'd', 'e', '_', '_', 'e', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",6,0,False +frilly,"['f', '_', 'i', 'l', 'l', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'm']",4,0,False +tweed,"['_', '_', 'e', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +vetoes,"['_', 'e', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +frustration,"['f', '_', '_', '_', '_', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +maraud,"['_', 'a', '_', 'a', '_', 'd']","['b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +discharging,"['d', 'i', '_', 'c', 'h', 'a', '_', 'g', 'i', 'n', 'g']","['b', 'e', 'f', 'j', 'k', 'l', 'm', 'o', 'p', 'q']",9,0,False +cartographer,"['c', 'a', '_', '_', 'o', 'g', '_', 'a', 'p', 'h', 'e', '_']","['b', 'd', 'f', 'i', 'j', 'k', 'l', 'm', 'n', 'q']",8,0,False +controlled,"['c', 'o', 'n', '_', '_', 'o', 'l', 'l', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'p']",8,0,False +perturbations,"['p', 'e', '_', '_', '_', '_', 'b', 'a', '_', 'i', 'o', 'n', '_']","['c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'q']",7,0,False +lewdest,"['l', 'e', '_', 'd', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +nerveless,"['_', 'e', '_', '_', 'e', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +fuzzy,"['f', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k']",1,0,False +marsh,"['_', 'a', '_', '_', 'h']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +hallucinogens,"['h', 'a', 'l', 'l', '_', 'c', 'i', 'n', 'o', 'g', 'e', 'n', 's']","['b', 'd', 'f', 'j', 'k', 'm', 'p', 'q', 'r', 't']",12,0,False +boners,"['b', '_', '_', 'e', '_', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +fix,"['f', 'i', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'l']",2,0,False +extemporise,"['e', '_', '_', 'e', '_', '_', '_', '_', 'i', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +colorful,"['c', '_', 'l', '_', '_', 'f', '_', 'l']","['a', 'b', 'd', 'e', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +deduction,"['d', 'e', 'd', '_', 'c', '_', 'i', 'o', 'n']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",7,0,False +sobbed,"['_', '_', 'b', 'b', 'e', 'd']","['a', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +phonologist,"['p', 'h', 'o', 'n', 'o', 'l', 'o', 'g', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'j', 'k', 'm', 'q']",9,0,False +noonday,"['_', '_', '_', '_', 'd', 'a', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +hying,"['h', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'j', 'k', 'l', 'm']",3,0,False +enclosure,"['e', '_', 'c', 'l', '_', '_', '_', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +herd,"['h', 'e', '_', 'd']","['a', 'b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",3,0,False +snaffle,"['_', 'n', 'a', 'f', 'f', 'l', 'e']","['b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'm', 'o']",6,0,False +roadway,"['_', '_', 'a', 'd', '_', 'a', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +precludes,"['_', '_', 'e', 'c', 'l', '_', 'd', 'e', '_']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +conspiring,"['c', '_', '_', '_', '_', 'i', '_', 'i', '_', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +intermingle,"['i', 'n', '_', 'e', '_', 'm', 'i', 'n', 'g', 'l', 'e']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'o', 'p']",9,0,False +franchising,"['f', '_', 'a', 'n', 'c', 'h', 'i', '_', 'i', 'n', 'g']","['b', 'd', 'e', 'j', 'k', 'l', 'm', 'o', 'p', 'q']",9,0,False +summarily,"['_', '_', 'm', 'm', 'a', '_', 'i', 'l', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'n']",5,0,False +underlies,"['_', 'n', 'd', 'e', '_', 'l', 'i', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",6,0,False +unconsidered,"['_', 'n', 'c', 'o', 'n', '_', 'i', 'd', 'e', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",9,0,False +fielding,"['f', 'i', 'e', 'l', 'd', 'i', 'n', 'g']","['a', 'b', 'c', 'h', 'j', 'k', 'm']",8,3,True +otherwise,"['_', '_', 'h', 'e', '_', '_', 'i', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",4,0,False +avoided,"['a', '_', '_', 'i', 'd', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +lees,"['_', 'e', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +obliges,"['o', 'b', 'l', 'i', 'g', 'e', '_']","['a', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'n', 'p']",6,0,False +meow,"['_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +curvatures,"['c', '_', '_', '_', 'a', '_', '_', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +dictionaries,"['d', 'i', 'c', '_', 'i', 'o', 'n', 'a', '_', 'i', 'e', '_']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p', 'q']",9,0,False +defames,"['d', 'e', 'f', 'a', 'm', 'e', '_']","['b', 'c', 'g', 'h', 'i', 'j', 'k', 'l', 'n', 'o']",6,0,False +powerlessness,"['_', '_', '_', 'e', '_', '_', 'e', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +magnifying,"['m', 'a', 'g', 'n', 'i', 'f', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'h', 'j', 'k', 'l', 'o', 'p']",9,0,False +bickering,"['b', 'i', 'c', 'k', 'e', '_', 'i', 'n', 'g']","['a', 'd', 'f', 'h', 'j', 'l', 'm', 'o', 'p', 'q']",8,0,False +besotting,"['b', 'e', '_', 'o', '_', '_', 'i', 'n', 'g']","['a', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",6,0,False +nerveless,"['_', 'e', '_', '_', 'e', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +prudently,"['_', '_', '_', 'd', 'e', '_', '_', 'l', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +construe,"['c', '_', '_', '_', '_', '_', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +breather,"['b', '_', 'e', 'a', '_', 'h', 'e', '_']","['c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",5,0,False +spattering,"['_', '_', 'a', '_', '_', 'e', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'o']",5,0,False +hob,"['h', '_', 'b']","['a', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +passable,"['_', 'a', '_', '_', 'a', 'b', 'l', 'e']","['c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +drained,"['d', '_', 'a', 'i', 'n', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +obsessing,"['o', 'b', '_', 'e', '_', '_', 'i', 'n', 'g']","['a', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",6,0,False +unprofessional,"['_', 'n', 'p', 'r', 'o', 'f', 'e', 's', 's', 'i', 'o', 'n', 'a', 'l']","['b', 'c', 'd', 'g', 'h', 'j', 'k', 'm', 'q', 't']",13,0,False +rifle,"['_', 'i', 'f', 'l', 'e']","['a', 'b', 'c', 'd', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +sellout,"['_', 'e', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +shade,"['_', 'h', 'a', 'd', 'e']","['b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +reaped,"['_', 'e', 'a', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +marrying,"['m', 'a', '_', '_', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'o']",5,0,False +sacrifice,"['_', 'a', 'c', '_', 'i', 'f', 'i', 'c', 'e']","['b', 'd', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",7,0,False +beleaguers,"['b', 'e', 'l', 'e', 'a', 'g', '_', 'e', '_', '_']","['c', 'd', 'f', 'h', 'i', 'j', 'k', 'm', 'n', 'o']",7,0,False +pentagon,"['_', 'e', '_', '_', 'a', 'g', '_', '_']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +kibitzing,"['k', 'i', 'b', 'i', '_', '_', 'i', 'n', 'g']","['a', 'c', 'd', 'e', 'f', 'h', 'j', 'l', 'm', 'o']",7,0,False +substructures,"['_', '_', 'b', '_', '_', '_', '_', 'c', '_', '_', '_', 'e', '_']","['a', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +trimming,"['_', '_', 'i', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",3,0,False +lowing,"['l', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",3,0,False +careen,"['c', 'a', '_', 'e', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +doltish,"['d', '_', 'l', '_', 'i', '_', 'h']","['a', 'b', 'c', 'e', 'f', 'g', 'j', 'k', 'm', 'n']",4,0,False +counteractions,"['c', 'o', '_', 'n', '_', 'e', '_', 'a', 'c', '_', 'i', 'o', 'n', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",9,0,False +incompatibilities,"['i', 'n', 'c', 'o', 'm', 'p', 'a', 't', 'i', 'b', 'i', 'l', 'i', 't', 'i', 'e', 's']","['d', 'f', 'g', 'h', 'j', 'k', 'q', 'r']",17,2,True +protestant,"['_', '_', '_', '_', 'e', '_', '_', 'a', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +caryatides,"['c', 'a', '_', '_', 'a', '_', 'i', 'd', 'e', '_']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +smooch,"['_', '_', '_', '_', 'c', 'h']","['a', 'b', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +remits,"['_', 'e', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +nonsupport,"['_', '_', '_', '_', '_', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +excitation,"['e', '_', 'c', 'i', '_', 'a', '_', 'i', 'o', 'n']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",7,0,False +cabals,"['c', 'a', 'b', 'a', 'l', '_']","['d', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +reined,"['_', 'e', 'i', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +conceive,"['c', '_', '_', 'c', 'e', 'i', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +humming,"['h', '_', 'm', 'm', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'j', 'k', 'l', 'o']",6,0,False +mammograms,"['_', 'a', '_', '_', '_', 'g', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",3,0,False +reveries,"['_', 'e', '_', 'e', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +shingling,"['_', 'h', 'i', 'n', 'g', 'l', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'j', 'k', 'm', 'o']",8,0,False +plods,"['_', '_', '_', 'd', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +granddaughters,"['g', '_', 'a', 'n', 'd', 'd', 'a', '_', 'g', 'h', '_', 'e', '_', '_']","['b', 'c', 'f', 'i', 'j', 'k', 'l', 'm', 'o', 'p']",9,0,False +join,"['j', '_', 'i', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'k', 'l']",2,0,False +flea,"['f', 'l', 'e', 'a']","['b', 'c', 'd', 'g', 'h', 'i', 'j', 'k']",4,2,True +damn,"['d', 'a', '_', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +accumulations,"['a', 'c', 'c', '_', 'm', '_', 'l', 'a', '_', 'i', 'o', 'n', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'p', 'q']",9,0,False +silents,"['_', 'i', 'l', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +bewildering,"['b', 'e', '_', 'i', 'l', 'd', 'e', '_', 'i', 'n', 'g']","['a', 'c', 'f', 'h', 'j', 'k', 'm', 'o', 'p', 'q']",9,0,False +carted,"['c', 'a', '_', '_', 'e', 'd']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +childhood,"['c', 'h', 'i', 'l', 'd', 'h', 'o', 'o', 'd']","['a', 'b', 'e', 'f', 'g', 'j', 'k', 'm', 'n']",9,1,True +unused,"['_', '_', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +braids,"['b', '_', 'a', 'i', 'd', '_']","['c', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",4,0,False +drumstick,"['d', '_', '_', 'm', '_', '_', 'i', 'c', 'k']","['a', 'b', 'e', 'f', 'g', 'h', 'j', 'l', 'n', 'o']",5,0,False +incapacitate,"['i', 'n', 'c', 'a', '_', 'a', 'c', 'i', '_', 'a', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",9,0,False +rubbernecking,"['_', '_', 'b', 'b', 'e', '_', 'n', 'e', 'c', 'k', 'i', 'n', 'g']","['a', 'd', 'f', 'h', 'j', 'l', 'm', 'o', 'p', 'q']",10,0,False +carapaces,"['c', 'a', '_', 'a', '_', 'a', 'c', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",6,0,False +meticulousness,"['m', 'e', '_', 'i', 'c', '_', 'l', 'o', '_', '_', 'n', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'p', 'q']",8,0,False +culminate,"['c', '_', 'l', 'm', 'i', 'n', 'a', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'o', 'p', 'q']",7,0,False +addend,"['a', 'd', 'd', 'e', '_', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",5,0,False +alerting,"['a', 'l', 'e', '_', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o', 'p']",6,0,False +pluralistic,"['_', 'l', '_', '_', 'a', 'l', 'i', '_', '_', 'i', 'c']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",6,0,False +marshalling,"['m', 'a', '_', '_', 'h', 'a', 'l', 'l', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'j', 'k', 'o', 'p', 'q']",9,0,False +urging,"['_', '_', 'g', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",3,0,False +pictorials,"['_', 'i', 'c', '_', '_', '_', 'i', 'a', 'l', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",5,0,False +tomes,"['_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +snowplowing,"['_', '_', '_', '_', '_', 'l', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",3,0,False +inferences,"['i', 'n', 'f', 'e', '_', 'e', 'n', 'c', 'e', '_']","['a', 'b', 'd', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",8,0,False +minded,"['m', 'i', 'n', 'd', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l']",6,1,True +paralyse,"['_', 'a', '_', 'a', 'l', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +seminaries,"['_', 'e', 'm', 'i', 'n', 'a', '_', 'i', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'o']",7,0,False +wiki,"['_', 'i', 'k', 'i']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'l']",3,0,False +brook,"['b', '_', '_', '_', 'k']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'l']",2,0,False +drip,"['d', '_', 'i', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +itemise,"['i', '_', 'e', '_', 'i', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +crackers,"['c', '_', 'a', 'c', 'k', 'e', '_', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'n']",5,0,False +tenet,"['_', 'e', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +bridals,"['b', '_', 'i', 'd', 'a', 'l', '_']","['c', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o']",5,0,False +moodily,"['m', '_', '_', 'd', 'i', 'l', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'n']",4,0,False +rowdies,"['_', '_', '_', 'd', 'i', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +stencils,"['_', '_', 'e', 'n', 'c', 'i', 'l', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",5,0,False +contentions,"['c', '_', '_', '_', 'e', '_', '_', 'i', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +bulk,"['b', '_', 'l', 'k']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'm']",3,0,False +invocations,"['i', '_', '_', '_', 'c', 'a', '_', 'i', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +narcissuses,"['n', 'a', '_', 'c', 'i', '_', '_', '_', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",5,0,False +van,"['_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +wrestles,"['_', '_', 'e', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +scruples,"['_', 'c', '_', '_', '_', 'l', 'e', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +obsequies,"['_', 'b', '_', 'e', '_', '_', 'i', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +hardener,"['h', 'a', '_', 'd', 'e', 'n', 'e', '_']","['b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'o']",6,0,False +ghostlier,"['g', 'h', 'o', '_', '_', 'l', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'j', 'k', 'm', 'n', 'p']",6,0,False +repenting,"['_', 'e', '_', 'e', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +propitiatory,"['_', '_', '_', '_', 'i', '_', 'i', 'a', '_', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +manicures,"['m', 'a', 'n', 'i', 'c', '_', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",6,0,False +horsey,"['h', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +wisher,"['_', 'i', '_', 'h', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",3,0,False +wither,"['_', 'i', '_', 'h', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",3,0,False +consciously,"['c', '_', '_', '_', 'c', 'i', '_', '_', '_', 'l', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",4,0,False +situation,"['_', 'i', '_', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +interceding,"['i', 'n', '_', 'e', '_', 'c', 'e', 'd', 'i', 'n', 'g']","['a', 'b', 'f', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",9,0,False +dictates,"['d', 'i', 'c', '_', 'a', '_', 'e', '_']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",5,0,False +streamers,"['_', '_', '_', 'e', 'a', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +purebred,"['_', '_', '_', 'e', 'b', '_', 'e', 'd']","['a', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +pokeys,"['_', '_', 'k', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'l']",2,0,False +inkblot,"['i', 'n', 'k', 'b', 'l', 'o', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'm', 'p']",6,0,False +insulation,"['i', '_', '_', '_', 'l', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",4,0,False +winteriest,"['_', 'i', '_', '_', 'e', '_', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +goody,"['g', '_', '_', 'd', '_']","['a', 'b', 'c', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",2,0,False +electronically,"['e', 'l', 'e', 'c', '_', '_', 'o', 'n', 'i', 'c', 'a', 'l', 'l', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'p', 'q']",11,0,False +golfers,"['g', '_', 'l', 'f', 'e', '_', '_']","['a', 'b', 'c', 'd', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +axle,"['a', '_', 'l', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +enraging,"['e', 'n', '_', 'a', 'g', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'o']",7,0,False +waterlines,"['_', 'a', '_', 'e', '_', 'l', 'i', 'n', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",6,0,False +coining,"['c', '_', 'i', '_', 'i', '_', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +assignment,"['a', '_', '_', 'i', 'g', 'n', 'm', 'e', 'n', '_']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'o', 'p']",7,0,False +chronometers,"['c', 'h', '_', 'o', 'n', 'o', 'm', 'e', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'p']",8,0,False +achievements,"['a', 'c', 'h', 'i', 'e', '_', 'e', 'm', 'e', 'n', '_', '_']","['b', 'd', 'f', 'g', 'j', 'k', 'l', 'o', 'p', 'q']",9,0,False +painfuller,"['p', 'a', 'i', 'n', 'f', '_', 'l', 'l', 'e', '_']","['b', 'c', 'd', 'g', 'h', 'j', 'k', 'm', 'o', 'q']",8,0,False +robins,"['_', '_', 'b', 'i', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +deterred,"['d', 'e', '_', 'e', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",5,0,False +gamblers,"['g', 'a', 'm', 'b', 'l', 'e', '_', '_']","['c', 'd', 'f', 'h', 'i', 'j', 'k', 'n', 'o', 'p']",6,0,False +truffles,"['_', '_', '_', 'f', 'f', 'l', 'e', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +eaves,"['e', 'a', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +lentil,"['l', 'e', '_', '_', 'i', 'l']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",4,0,False +cottoned,"['c', '_', '_', '_', '_', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +hereafters,"['h', 'e', '_', 'e', 'a', 'f', '_', 'e', '_', '_']","['b', 'c', 'd', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",6,0,False +intends,"['i', '_', '_', 'e', '_', 'd', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +abetter,"['a', 'b', 'e', '_', '_', 'e', '_']","['c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +gasolene,"['g', 'a', '_', 'o', 'l', 'e', 'n', 'e']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'm', 'p']",7,0,False +disparagement,"['d', 'i', 's', 'p', 'a', 'r', 'a', 'g', 'e', 'm', 'e', 'n', 't']","['b', 'c', 'f', 'h', 'j', 'k', 'l', 'o', 'q']",13,1,True +shift,"['_', 'h', 'i', 'f', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'j', 'k', 'l', 'm']",3,0,False +deviousness,"['d', 'e', '_', 'i', '_', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +thundershower,"['_', 'h', '_', '_', 'd', 'e', '_', '_', 'h', '_', '_', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",5,0,False +consecrations,"['c', 'o', 'n', '_', 'e', 'c', '_', 'a', '_', 'i', 'o', 'n', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",9,0,False +geisha,"['g', 'e', 'i', '_', 'h', 'a']","['b', 'c', 'd', 'f', 'j', 'k', 'l', 'm', 'n', 'o']",5,0,False +logarithms,"['l', 'o', 'g', 'a', '_', 'i', '_', 'h', 'm', '_']","['b', 'c', 'd', 'e', 'f', 'j', 'k', 'n', 'p', 'q']",7,0,False +jinxes,"['j', 'i', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'k', 'l', 'm']",3,0,False +chlorinating,"['c', 'h', 'l', 'o', 'r', 'i', 'n', 'a', '_', 'i', 'n', 'g']","['b', 'd', 'e', 'f', 'j', 'k', 'm', 'p', 'q', 's']",11,0,False +farmyard,"['f', 'a', '_', 'm', '_', 'a', '_', 'd']","['b', 'c', 'e', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",5,0,False +moody,"['_', '_', '_', 'd', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +turbines,"['_', '_', '_', 'b', 'i', '_', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +woodenness,"['_', '_', '_', 'd', 'e', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +achy,"['a', 'c', 'h', '_']","['b', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",3,0,False +contemptuous,"['c', '_', '_', '_', 'e', '_', '_', '_', '_', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +foretold,"['f', '_', '_', 'e', '_', '_', 'l', 'd']","['a', 'b', 'c', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +diocesan,"['d', 'i', 'o', 'c', 'e', '_', 'a', 'n']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p', 'q']",7,0,False +denseness,"['d', 'e', '_', '_', 'e', '_', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +institution,"['i', '_', '_', '_', 'i', '_', '_', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",3,0,False +implicating,"['i', 'm', 'p', 'l', 'i', 'c', 'a', '_', 'i', 'n', 'g']","['b', 'd', 'e', 'f', 'h', 'j', 'k', 'o', 'q', 'r']",10,0,False +libretti,"['l', 'i', 'b', '_', 'e', '_', '_', 'i']","['a', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",5,0,False +benefiting,"['b', 'e', 'n', 'e', 'f', 'i', '_', 'i', 'n', 'g']","['a', 'c', 'd', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",9,0,False +agnostics,"['a', 'g', 'n', 'o', '_', '_', 'i', 'c', '_']","['b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",6,0,False +huntsmen,"['h', '_', '_', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +reprobates,"['_', 'e', '_', '_', '_', 'b', 'a', '_', 'e', '_']","['c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +masterstroke,"['m', 'a', '_', '_', 'e', '_', '_', '_', '_', '_', 'k', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'l', 'n']",5,0,False +cutthroats,"['c', '_', '_', '_', 'h', '_', '_', 'a', '_', '_']","['b', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",3,0,False +statesman,"['_', '_', 'a', '_', 'e', '_', '_', 'a', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +inhibitions,"['i', '_', 'h', 'i', 'b', 'i', '_', 'i', '_', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'j', 'k', 'l', 'm']",6,0,False +manics,"['m', 'a', 'n', 'i', 'c', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'o']",5,0,False +autumns,"['a', '_', '_', '_', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +videotaping,"['_', 'i', 'd', 'e', 'o', '_', 'a', 'p', 'i', 'n', 'g']","['b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'q', 'r']",9,0,False +subcontinent,"['_', '_', 'b', 'c', 'o', 'n', '_', 'i', 'n', 'e', 'n', '_']","['a', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",8,0,False +smidgen,"['_', 'm', 'i', 'd', 'g', 'e', 'n']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'o', 'p']",6,0,False +puzzled,"['_', '_', '_', '_', 'l', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +footmen,"['f', '_', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +miniscule,"['m', 'i', 'n', 'i', '_', 'c', '_', 'l', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'o', 'p']",7,0,False +bellyached,"['b', 'e', 'l', 'l', '_', 'a', 'c', 'h', 'e', 'd']","['f', 'g', 'i', 'j', 'k', 'm', 'n', 'o', 'p', 'q']",9,0,False +eschewed,"['e', '_', 'c', 'h', 'e', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",6,0,False +mantle,"['m', 'a', 'n', '_', 'l', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'o']",5,0,False +pothook,"['_', '_', '_', 'h', '_', '_', 'k']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'l']",2,0,False +damaged,"['d', 'a', 'm', 'a', 'g', 'e', 'd']","['b', 'c', 'f', 'h', 'i', 'j', 'k', 'l']",7,2,True +vulcanise,"['_', '_', 'l', 'c', 'a', 'n', 'i', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'o', 'p']",6,0,False +peacetime,"['_', 'e', 'a', 'c', 'e', '_', 'i', 'm', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'n', 'o']",7,0,False +skywriters,"['_', 'k', '_', '_', '_', 'i', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'l', 'm']",3,0,False +collector,"['c', '_', 'l', 'l', 'e', 'c', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +streptomycin,"['_', '_', '_', 'e', 'p', '_', 'o', 'm', '_', 'c', 'i', 'n']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'q']",7,0,False +stereotyping,"['_', '_', 'e', '_', 'e', '_', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +temperature,"['_', 'e', '_', '_', 'e', '_', 'a', '_', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +persistence,"['_', 'e', '_', '_', 'i', '_', '_', 'e', '_', 'c', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +pedals,"['_', 'e', 'd', 'a', 'l', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +envies,"['e', '_', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +potpie,"['_', '_', '_', '_', 'i', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +hokum,"['h', '_', 'k', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'l']",2,0,False +banded,"['b', 'a', 'n', 'd', 'e', 'd']","['c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",6,1,True +ingenuous,"['i', '_', 'g', 'e', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +thoughtful,"['_', 'h', '_', '_', 'g', 'h', '_', 'f', '_', 'l']","['a', 'b', 'c', 'd', 'e', 'i', 'j', 'k', 'm', 'n']",5,0,False +petroleum,"['_', 'e', '_', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +goatherds,"['g', 'o', 'a', '_', 'h', 'e', '_', 'd', '_']","['b', 'c', 'f', 'i', 'j', 'k', 'l', 'm', 'n', 'p']",6,0,False +prostitution,"['_', '_', '_', '_', '_', 'i', '_', '_', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",2,0,False +goggling,"['g', '_', 'g', 'g', 'l', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",6,0,False +wisecracked,"['_', 'i', '_', 'e', 'c', '_', 'a', 'c', 'k', 'e', 'd']","['b', 'f', 'g', 'h', 'j', 'l', 'm', 'n', 'o', 'p']",8,0,False +daringly,"['d', 'a', '_', 'i', 'n', 'g', 'l', '_']","['b', 'c', 'e', 'f', 'h', 'j', 'k', 'm', 'o', 'p']",6,0,False +mammas,"['_', 'a', '_', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +flashbacks,"['f', 'l', 'a', '_', 'h', 'b', 'a', 'c', 'k', '_']","['d', 'e', 'g', 'i', 'j', 'm', 'n', 'o', 'p', 'q']",8,0,False +accord,"['a', 'c', 'c', '_', '_', 'd']","['b', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +madras,"['_', 'a', 'd', '_', 'a', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +spelunker,"['_', '_', 'e', 'l', '_', '_', 'k', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'm']",4,0,False +sentimentalises,"['_', 'e', 'n', '_', 'i', 'm', 'e', 'n', '_', 'a', 'l', 'i', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'o', 'p']",10,0,False +resignations,"['_', 'e', '_', 'i', 'g', 'n', 'a', '_', 'i', 'o', 'n', '_']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",8,0,False +aim,"['a', 'i', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +profligacy,"['p', 'r', 'o', 'f', 'l', 'i', 'g', 'a', 'c', '_']","['b', 'd', 'e', 'h', 'j', 'k', 'm', 'n', 'q', 's']",9,0,False +inauguration,"['i', '_', 'a', '_', 'g', '_', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",5,0,False +select,"['_', 'e', 'l', 'e', 'c', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +masterpieces,"['m', 'a', '_', '_', 'e', '_', '_', 'i', 'e', 'c', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'n', 'o']",7,0,False +corroborates,"['c', '_', '_', '_', '_', 'b', '_', '_', 'a', '_', 'e', '_']","['d', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +scramble,"['_', 'c', '_', 'a', 'm', 'b', 'l', 'e']","['d', 'f', 'g', 'h', 'i', 'j', 'k', 'n', 'o', 'p']",6,0,False +bootless,"['b', '_', '_', '_', 'l', 'e', '_', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +penultimates,"['p', 'e', 'n', '_', 'l', '_', 'i', 'm', 'a', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'o', 'q']",8,0,False +wranglers,"['_', '_', 'a', 'n', 'g', 'l', 'e', '_', '_']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'm', 'o']",5,0,False +flouncing,"['f', 'l', 'o', '_', 'n', 'c', 'i', 'n', 'g']","['a', 'b', 'd', 'e', 'h', 'j', 'k', 'm', 'p', 'q']",8,0,False +resuscitating,"['_', 'e', '_', '_', '_', 'c', 'i', '_', 'a', '_', 'i', 'n', 'g']","['b', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",7,0,False +scoring,"['_', 'c', '_', '_', 'i', '_', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +anteaters,"['a', '_', '_', 'e', 'a', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +preservatives,"['_', '_', 'e', '_', 'e', '_', '_', 'a', '_', 'i', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +bright,"['b', '_', 'i', 'g', 'h', '_']","['a', 'c', 'd', 'e', 'f', 'j', 'k', 'l', 'm', 'n']",4,0,False +taxicabs,"['_', 'a', '_', 'i', 'c', 'a', 'b', '_']","['d', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +birdbrained,"['b', 'i', '_', 'd', 'b', '_', 'a', 'i', 'n', 'e', 'd']","['c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",9,0,False +goddaughters,"['g', 'o', 'd', 'd', 'a', '_', 'g', 'h', '_', 'e', '_', '_']","['b', 'c', 'f', 'i', 'j', 'k', 'l', 'm', 'n', 'p']",8,0,False +exhilaration,"['e', '_', 'h', 'i', 'l', 'a', '_', 'a', '_', 'i', 'o', 'n']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'm', 'p', 'q']",9,0,False +tourmaline,"['_', 'o', '_', '_', 'm', 'a', 'l', 'i', 'n', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'p', 'q']",7,0,False +socialisation,"['_', 'o', 'c', 'i', 'a', 'l', 'i', '_', 'a', '_', 'i', 'o', 'n']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'p']",10,0,False +diocesan,"['d', 'i', 'o', 'c', 'e', '_', 'a', 'n']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p', 'q']",7,0,False +bullring,"['b', '_', 'l', 'l', '_', 'i', 'n', 'g']","['a', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm', 'o']",6,0,False +disgorged,"['d', 'i', '_', 'g', '_', '_', 'g', 'e', 'd']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'n']",6,0,False +titillation,"['_', 'i', '_', 'i', 'l', 'l', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",6,0,False +fez,"['f', 'e', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +disordering,"['d', 'i', '_', 'o', '_', 'd', 'e', '_', 'i', 'n', 'g']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",8,0,False +windfalls,"['_', 'i', 'n', 'd', 'f', 'a', 'l', 'l', '_']","['b', 'c', 'e', 'g', 'h', 'j', 'k', 'm', 'o', 'p']",7,0,False +catnap,"['c', 'a', '_', '_', 'a', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +gunfights,"['g', '_', 'n', 'f', 'i', 'g', 'h', '_', '_']","['a', 'b', 'c', 'd', 'e', 'j', 'k', 'l', 'm', 'o']",6,0,False +jettisoned,"['j', 'e', '_', '_', 'i', '_', 'o', 'n', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'k', 'l', 'm', 'p']",7,0,False +verbalise,"['_', 'e', '_', 'b', 'a', 'l', 'i', '_', 'e']","['c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o']",6,0,False +aqueducts,"['a', '_', '_', 'e', 'd', '_', 'c', '_', '_']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +feeler,"['f', 'e', 'e', 'l', 'e', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +cougar,"['c', '_', '_', 'g', 'a', '_']","['b', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +leukaemia,"['l', 'e', '_', 'k', 'a', 'e', 'm', 'i', 'a']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'n', 'o', 'p']",8,0,False +hostilities,"['h', '_', '_', '_', 'i', 'l', 'i', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'm', 'n']",6,0,False +chamois,"['c', 'h', 'a', 'm', 'o', 'i', '_']","['b', 'd', 'e', 'f', 'g', 'j', 'k', 'l', 'n', 'p']",6,0,False +uncluttered,"['_', 'n', 'c', 'l', '_', '_', '_', 'e', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'o']",6,0,False +burrs,"['b', '_', '_', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +chiding,"['c', 'h', 'i', 'd', 'i', 'n', 'g']","['a', 'b', 'e', 'f', 'j', 'k', 'l', 'm']",7,2,True +tender,"['_', 'e', '_', 'd', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +sox,"['_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +haunts,"['h', 'a', '_', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +underwear,"['_', '_', 'd', 'e', '_', '_', 'e', 'a', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +sublimating,"['_', '_', 'b', 'l', 'i', 'm', 'a', '_', 'i', 'n', 'g']","['c', 'd', 'e', 'f', 'h', 'j', 'k', 'o', 'p', 'q']",8,0,False +dancers,"['d', 'a', 'n', 'c', 'e', '_', '_']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'o']",5,0,False +unveiled,"['_', 'n', '_', 'e', 'i', 'l', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",6,0,False +inhalator,"['i', 'n', 'h', 'a', 'l', 'a', '_', 'o', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'j', 'k', 'm', 'p']",7,0,False +spiniest,"['_', '_', 'i', '_', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +irony,"['i', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",1,0,False +prospective,"['_', '_', '_', '_', '_', 'e', 'c', '_', 'i', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +procure,"['_', '_', '_', 'c', '_', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +aviatrixes,"['a', '_', 'i', 'a', '_', '_', 'i', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +sustaining,"['_', '_', '_', '_', 'a', 'i', '_', 'i', '_', 'g']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +ninjas,"['_', 'i', '_', 'j', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'k', 'l', 'm']",3,0,False +exact,"['e', '_', 'a', 'c', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +quintet,"['_', '_', 'i', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +capsules,"['c', 'a', '_', '_', '_', 'l', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +blossoms,"['b', '_', '_', '_', '_', '_', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +scoots,"['_', 'c', '_', '_', '_', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +passage,"['_', 'a', '_', '_', 'a', 'g', 'e']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +disrespectful,"['d', 'i', '_', '_', 'e', '_', 'p', 'e', 'c', '_', 'f', '_', 'l']","['a', 'b', 'g', 'h', 'j', 'k', 'm', 'n', 'o', 'q']",8,0,False +arise,"['a', '_', 'i', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +shucks,"['_', 'h', '_', 'c', 'k', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'i', 'j', 'l', 'm']",3,0,False +statehouses,"['_', '_', 'a', '_', 'e', 'h', '_', '_', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",4,0,False +sells,"['_', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +canon,"['c', 'a', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +dressiness,"['d', '_', 'e', '_', '_', 'i', '_', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +recessionals,"['_', 'e', 'c', 'e', '_', '_', 'i', 'o', 'n', 'a', 'l', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'p', 'q']",8,0,False +bewitches,"['b', 'e', '_', 'i', '_', 'c', 'h', 'e', '_']","['a', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +undertow,"['_', '_', 'd', 'e', '_', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +watchful,"['_', 'a', '_', 'c', 'h', 'f', '_', 'l']","['b', 'd', 'e', 'g', 'i', 'j', 'k', 'm', 'n', 'o']",5,0,False +anachronistic,"['a', 'n', 'a', 'c', 'h', '_', 'o', 'n', 'i', '_', '_', 'i', 'c']","['b', 'd', 'e', 'f', 'g', 'j', 'k', 'l', 'm', 'p']",10,0,False +smithies,"['_', 'm', 'i', '_', 'h', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'n']",5,0,False +signings,"['_', 'i', 'g', '_', 'i', '_', 'g', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",4,0,False +shag,"['_', 'h', 'a', 'g']","['b', 'c', 'd', 'e', 'f', 'i', 'j', 'k', 'l', 'm']",3,0,False +isolates,"['i', '_', '_', 'l', 'a', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +everyone,"['e', '_', 'e', '_', '_', '_', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +heterodoxy,"['h', 'e', '_', 'e', '_', '_', 'd', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",4,0,False +progressive,"['_', '_', '_', 'g', '_', 'e', '_', '_', 'i', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +picketed,"['_', 'i', 'c', 'k', 'e', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'j', 'l', 'm', 'n', 'o']",6,0,False +doping,"['d', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +booty,"['b', '_', '_', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +uninsured,"['_', '_', 'i', '_', '_', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +ids,"['i', 'd', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +pashas,"['_', 'a', '_', 'h', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",3,0,False +upholding,"['_', 'p', 'h', 'o', 'l', 'd', 'i', 'n', 'g']","['a', 'b', 'c', 'e', 'f', 'j', 'k', 'm', 'q', 'r']",8,0,False +trade,"['_', '_', 'a', 'd', 'e']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +defensiveness,"['d', 'e', 'f', 'e', 'n', '_', 'i', '_', 'e', 'n', 'e', '_', '_']","['a', 'b', 'c', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",9,0,False +reinserting,"['_', 'e', 'i', '_', '_', 'e', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",5,0,False +gingerly,"['g', 'i', 'n', 'g', 'e', '_', 'l', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o']",6,0,False +stubs,"['_', '_', '_', 'b', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +follows,"['f', '_', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k']",1,0,False +implant,"['i', 'm', '_', 'l', 'a', 'n', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'o']",5,0,False +enlightened,"['e', 'n', 'l', 'i', 'g', 'h', '_', 'e', 'n', 'e', 'd']","['a', 'b', 'c', 'f', 'j', 'k', 'm', 'o', 'p', 'q']",10,0,False +overprice,"['_', '_', 'e', '_', '_', '_', 'i', 'c', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +stuffs,"['_', '_', '_', 'f', 'f', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k']",2,0,False +jinns,"['j', 'i', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'k', 'l']",2,0,False +apiary,"['a', '_', 'i', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +perfectible,"['p', 'e', '_', 'f', 'e', 'c', '_', 'i', 'b', 'l', 'e']","['a', 'd', 'g', 'h', 'j', 'k', 'm', 'n', 'o', 'q']",9,0,False +injury,"['i', '_', 'j', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'k', 'l']",2,0,False +deficits,"['d', 'e', 'f', 'i', 'c', 'i', '_', '_']","['a', 'b', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +at,"['a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +undated,"['_', '_', 'd', 'a', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +predicted,"['_', '_', 'e', 'd', 'i', 'c', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",6,0,False +uneasy,"['_', '_', 'e', 'a', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +stampeding,"['_', '_', 'a', 'm', 'p', 'e', 'd', 'i', 'n', 'g']","['b', 'c', 'f', 'h', 'j', 'k', 'l', 'o', 'q', 'r']",8,0,False +outflanks,"['o', '_', '_', 'f', 'l', 'a', 'n', 'k', '_']","['b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'm', 'p']",6,0,False +eider,"['e', 'i', 'd', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +admit,"['a', 'd', 'm', 'i', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'n']",4,0,False +implicated,"['i', 'm', 'p', 'l', 'i', 'c', 'a', '_', 'e', 'd']","['b', 'f', 'g', 'h', 'j', 'k', 'n', 'o', 'q', 'r']",9,0,False +stylising,"['_', '_', '_', 'l', 'i', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",4,0,False +fireman,"['f', 'i', '_', 'e', 'm', 'a', 'n']","['b', 'c', 'd', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",6,0,False +junket,"['j', '_', '_', 'k', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'l', 'm']",3,0,False +profane,"['_', '_', '_', 'f', 'a', '_', 'e']","['b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +diurnal,"['d', 'i', '_', '_', 'n', 'a', 'l']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",5,0,False +nippy,"['_', 'i', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",1,0,False +fettered,"['f', 'e', '_', '_', 'e', '_', 'e', 'd']","['a', 'b', 'c', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",5,0,False +stepson,"['_', '_', 'e', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +dings,"['d', 'i', '_', 'g', '_']","['a', 'b', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +nursing,"['_', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",2,0,False +automatic,"['a', '_', '_', '_', 'm', 'a', '_', 'i', 'c']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'n']",5,0,False +correspond,"['c', '_', '_', '_', 'e', '_', '_', '_', '_', 'd']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +inspecting,"['i', 'n', '_', '_', 'e', 'c', '_', 'i', 'n', 'g']","['a', 'b', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'o']",7,0,False +conveyors,"['c', '_', '_', '_', 'e', '_', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +jagged,"['j', 'a', 'g', 'g', 'e', 'd']","['b', 'c', 'f', 'h', 'i']",6,5,True +disproof,"['d', 'i', '_', '_', '_', '_', '_', 'f']","['a', 'b', 'c', 'e', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +abductor,"['a', 'b', 'd', '_', 'c', '_', '_', '_']","['e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +lankiest,"['l', 'a', 'n', 'k', 'i', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'm', 'o', 'p']",6,0,False +sorcerers,"['_', '_', '_', 'c', 'e', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +acclimatise,"['a', 'c', 'c', 'l', 'i', 'm', 'a', '_', 'i', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'n', 'o', 'p']",9,0,False +taupe,"['_', 'a', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +stiffed,"['_', '_', 'i', 'f', 'f', 'e', 'd']","['a', 'b', 'c', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +cynic,"['c', '_', '_', 'i', 'c']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +loquacity,"['l', '_', '_', '_', 'a', 'c', 'i', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +whippersnappers,"['_', 'h', 'i', '_', '_', 'e', '_', '_', 'n', 'a', '_', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'o']",6,0,False +streamline,"['_', '_', '_', 'e', 'a', 'm', 'l', 'i', 'n', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'o', 'p']",7,0,False +zillions,"['_', 'i', '_', '_', 'i', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",2,0,False +galleon,"['g', 'a', 'l', 'l', 'e', 'o', 'n']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'm']",7,1,True +abrogation,"['a', 'b', '_', 'o', 'g', 'a', '_', 'i', 'o', 'n']","['c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",8,0,False +frayed,"['f', '_', 'a', '_', 'e', 'd']","['b', 'c', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +bulges,"['b', '_', 'l', 'g', 'e', '_']","['a', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +rhododendron,"['_', 'h', '_', 'd', '_', 'd', 'e', '_', 'd', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",5,0,False +dork,"['d', '_', '_', 'k']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'l']",2,0,False +bucketful,"['b', '_', 'c', 'k', 'e', '_', 'f', '_', 'l']","['a', 'd', 'g', 'h', 'i', 'j', 'm', 'n', 'o', 'p']",6,0,False +skydive,"['_', 'k', '_', 'd', 'i', '_', 'e']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'l', 'm', 'n']",4,0,False +client,"['c', 'l', 'i', 'e', 'n', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",5,0,False +wheels,"['_', 'h', 'e', 'e', 'l', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'm']",4,0,False +bongos,"['b', '_', '_', 'g', '_', '_']","['a', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",2,0,False +evils,"['e', '_', 'i', 'l', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +airfields,"['a', 'i', '_', 'f', 'i', 'e', 'l', 'd', '_']","['b', 'c', 'g', 'h', 'j', 'k', 'm', 'n', 'o', 'p']",7,0,False +valleys,"['_', 'a', 'l', 'l', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +strides,"['_', '_', '_', 'i', 'd', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +snowdrift,"['_', '_', '_', '_', 'd', '_', 'i', 'f', '_']","['a', 'b', 'c', 'e', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +roadkill,"['_', 'o', 'a', 'd', 'k', 'i', 'l', 'l']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'm', 'n', 'p']",7,0,False +flautists,"['f', 'l', 'a', '_', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +alkaloid,"['a', 'l', 'k', 'a', 'l', 'o', 'i', 'd']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'm', 'n']",8,1,True +beneath,"['b', 'e', 'n', 'e', 'a', '_', 'h']","['c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'o']",6,0,False +mollified,"['m', 'o', 'l', 'l', 'i', 'f', 'i', 'e', 'd']","['a', 'b', 'c', 'g', 'h', 'j', 'k', 'n']",9,2,True +semiconductor,"['_', 'e', 'm', 'i', 'c', 'o', 'n', 'd', '_', 'c', '_', 'o', '_']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'p', 'q']",9,0,False +call,"['c', 'a', 'l', 'l']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",4,1,True +sewer,"['_', 'e', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +sycamore,"['_', '_', 'c', 'a', 'm', '_', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",4,0,False +sextette,"['_', 'e', '_', '_', 'e', '_', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +alphabetised,"['a', 'l', 'p', 'h', 'a', 'b', 'e', '_', 'i', '_', 'e', 'd']","['c', 'f', 'g', 'j', 'k', 'm', 'n', 'o', 'q', 'r']",10,0,False +deigning,"['d', 'e', 'i', 'g', 'n', 'i', 'n', 'g']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm']",8,1,True +scuffing,"['_', 'c', '_', 'f', 'f', 'i', 'n', 'g']","['a', 'b', 'd', 'e', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +paunchiest,"['p', 'a', '_', 'n', 'c', 'h', 'i', 'e', '_', '_']","['b', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'o', 'q']",7,0,False +digressed,"['d', 'i', 'g', '_', 'e', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'n']",6,0,False +weatherproofed,"['_', 'e', 'a', '_', 'h', 'e', '_', 'p', '_', 'o', 'o', 'f', 'e', 'd']","['b', 'c', 'g', 'i', 'j', 'k', 'l', 'm', 'n', 'q']",10,0,False +shelling,"['_', 'h', 'e', 'l', 'l', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'f', 'j', 'k', 'm', 'o', 'p']",7,0,False +micrometers,"['m', 'i', 'c', '_', '_', 'm', 'e', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'n']",6,0,False +nudging,"['_', '_', 'd', 'g', 'i', '_', 'g']","['a', 'b', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +discomposure,"['d', 'i', '_', 'c', 'o', 'm', 'p', 'o', '_', '_', '_', 'e']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'n', 'q']",8,0,False +multiplexers,"['m', '_', 'l', '_', 'i', '_', 'l', 'e', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'n']",6,0,False +pomades,"['_', '_', 'm', 'a', 'd', 'e', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",4,0,False +splurged,"['_', '_', 'l', '_', '_', 'g', 'e', 'd']","['a', 'b', 'c', 'f', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +sunbonnet,"['_', '_', '_', 'b', '_', '_', '_', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +archbishops,"['a', '_', 'c', 'h', 'b', 'i', '_', 'h', 'o', 'p', '_']","['d', 'e', 'f', 'g', 'j', 'k', 'l', 'm', 'n', 'q']",8,0,False +wombs,"['_', '_', '_', 'b', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +abridgment,"['a', 'b', 'r', 'i', 'd', 'g', 'm', 'e', 'n', '_']","['c', 'f', 'h', 'j', 'k', 'l', 'o', 'p', 'q', 's']",9,0,False +square,"['_', '_', '_', 'a', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +arbitrary,"['a', '_', 'b', 'i', '_', '_', 'a', '_', '_']","['c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +reptiles,"['_', 'e', '_', '_', 'i', 'l', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",4,0,False +ravages,"['_', 'a', '_', 'a', 'g', 'e', '_']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +haltingly,"['h', 'a', 'l', '_', 'i', 'n', 'g', 'l', '_']","['b', 'c', 'd', 'e', 'f', 'j', 'k', 'm', 'o', 'p']",7,0,False +newly,"['_', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +ashrams,"['a', '_', 'h', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",3,0,False +shacks,"['_', 'h', 'a', 'c', 'k', '_']","['b', 'd', 'e', 'f', 'g', 'i', 'j', 'l', 'm', 'n']",4,0,False +trendier,"['_', '_', 'e', '_', 'd', 'i', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +ostentatious,"['_', '_', '_', 'e', '_', '_', 'a', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +affairs,"['a', 'f', 'f', 'a', 'i', '_', '_']","['b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +sidewall,"['_', 'i', 'd', 'e', '_', 'a', 'l', 'l']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o']",6,0,False +browning,"['b', '_', '_', '_', '_', 'i', '_', 'g']","['a', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +flyleaf,"['f', 'l', '_', 'l', 'e', 'a', 'f']","['b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",6,0,False +squirrel,"['_', '_', '_', 'i', '_', '_', 'e', 'l']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +drowned,"['d', '_', '_', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +tincturing,"['_', 'i', '_', 'c', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +gouge,"['g', '_', '_', 'g', 'e']","['a', 'b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l']",3,0,False +leeched,"['l', 'e', 'e', 'c', 'h', 'e', 'd']","['a', 'b', 'f', 'g', 'i', 'j', 'k']",7,3,True +snores,"['_', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +heedless,"['h', 'e', 'e', 'd', 'l', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'i', 'j', 'k', 'm', 'n']",6,0,False +fabulous,"['f', 'a', 'b', '_', 'l', '_', '_', '_']","['c', 'd', 'e', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +hypothesised,"['h', '_', '_', '_', '_', 'h', 'e', '_', 'i', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'j', 'k', 'l', 'm', 'n']",6,0,False +littleness,"['l', 'i', '_', '_', 'l', 'e', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",5,0,False +fleshliest,"['f', 'l', 'e', '_', 'h', 'l', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'g', 'j', 'k', 'm', 'n', 'o']",7,0,False +keenly,"['k', 'e', 'e', '_', 'l', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'm']",4,0,False +detouring,"['d', 'e', '_', 'o', '_', '_', 'i', 'n', 'g']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",6,0,False +suppresses,"['_', '_', '_', '_', '_', 'e', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +negligent,"['n', 'e', 'g', 'l', 'i', 'g', 'e', 'n', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o']",8,0,False +slapped,"['_', 'l', 'a', '_', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +multiplexers,"['m', '_', 'l', '_', 'i', '_', 'l', 'e', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'n']",6,0,False +derogatory,"['d', 'e', '_', '_', 'g', 'a', '_', '_', '_', '_']","['b', 'c', 'f', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +however,"['h', '_', '_', 'e', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l']",3,0,False +pastured,"['_', 'a', '_', '_', '_', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +doff,"['d', '_', 'f', 'f']","['a', 'b', 'c', 'e', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +harking,"['h', 'a', '_', 'k', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'j', 'l', 'm', 'o', 'p']",6,0,False +extinguished,"['e', '_', '_', 'i', 'n', 'g', '_', 'i', '_', 'h', 'e', 'd']","['a', 'b', 'c', 'f', 'j', 'k', 'l', 'm', 'o', 'p']",8,0,False +interrogations,"['i', 'n', '_', 'e', '_', '_', 'o', 'g', 'a', '_', 'i', 'o', 'n', '_']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",9,0,False +guided,"['g', '_', 'i', 'd', 'e', 'd']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +impiously,"['i', '_', '_', 'i', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",2,0,False +seditious,"['_', 'e', 'd', 'i', '_', 'i', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +lilted,"['l', 'i', 'l', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",5,0,False +height,"['h', 'e', 'i', 'g', 'h', '_']","['a', 'b', 'c', 'd', 'f', 'j', 'k', 'l', 'm', 'n']",5,0,False +fork,"['f', '_', '_', 'k']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'l']",2,0,False +chlorine,"['c', 'h', 'l', 'o', '_', 'i', 'n', 'e']","['a', 'b', 'd', 'f', 'g', 'j', 'k', 'm', 'p', 'q']",7,0,False +earnests,"['e', 'a', '_', '_', 'e', '_', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +enabling,"['e', 'n', 'a', 'b', 'l', 'i', 'n', 'g']","['c', 'd', 'f', 'h', 'j', 'k', 'm']",8,3,True +brokerage,"['b', '_', 'o', 'k', 'e', '_', 'a', 'g', 'e']","['c', 'd', 'f', 'h', 'i', 'j', 'l', 'm', 'n', 'p']",7,0,False +disses,"['d', 'i', '_', '_', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +rafted,"['_', 'a', 'f', '_', 'e', 'd']","['b', 'c', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +roll,"['_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +measure,"['_', 'e', 'a', '_', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +nudging,"['_', '_', 'd', 'g', 'i', '_', 'g']","['a', 'b', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +bridges,"['b', '_', 'i', 'd', 'g', 'e', '_']","['a', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",5,0,False +tonsorial,"['_', '_', '_', '_', '_', '_', 'i', 'a', 'l']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +inkiest,"['i', '_', 'k', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'l', 'm']",4,0,False +putties,"['_', '_', '_', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +rendezvous,"['_', 'e', '_', 'd', 'e', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +unleaded,"['_', 'n', 'l', 'e', 'a', 'd', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'o']",7,0,False +trustworthy,"['_', '_', '_', '_', '_', '_', '_', '_', '_', 'h', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k']",1,0,False +media,"['m', 'e', 'd', 'i', 'a']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l']",5,2,True +curdling,"['c', '_', '_', 'd', 'l', 'i', 'n', 'g']","['a', 'b', 'e', 'f', 'h', 'j', 'k', 'm', 'o', 'p']",6,0,False +paddles,"['_', 'a', 'd', 'd', 'l', 'e', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +swisher,"['_', '_', 'i', '_', 'h', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",3,0,False +cuttlefishes,"['c', '_', '_', '_', 'l', 'e', 'f', 'i', '_', 'h', 'e', '_']","['a', 'b', 'd', 'g', 'j', 'k', 'm', 'n', 'o', 'p']",7,0,False +engravers,"['e', '_', 'g', '_', 'a', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +seltzer,"['_', 'e', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +attacker,"['a', '_', '_', 'a', 'c', 'k', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'n']",5,0,False +springboard,"['s', 'p', 'r', 'i', 'n', 'g', 'b', 'o', 'a', 'r', 'd']","['c', 'e', 'f', 'h', 'j', 'k', 'l', 'm', 'q']",11,1,True +radiance,"['_', 'a', 'd', 'i', 'a', 'n', 'c', 'e']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",7,0,False +pads,"['_', 'a', 'd', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +chalices,"['c', 'h', 'a', 'l', 'i', 'c', 'e', '_']","['b', 'd', 'f', 'g', 'j', 'k', 'm', 'n', 'o', 'p']",7,0,False +comprehend,"['c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', 'd']","['a', 'b', 'f', 'g', 'i', 'j', 'k', 'l', 'q']",10,1,True +understatements,"['_', 'n', 'd', 'e', '_', '_', '_', 'a', '_', 'e', 'm', 'e', 'n', '_', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'o']",8,0,False +flowering,"['f', 'l', 'o', '_', 'e', '_', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'h', 'j', 'k', 'm', 'p', 'q']",7,0,False +underfeed,"['_', '_', 'd', 'e', '_', 'f', 'e', 'e', 'd']","['a', 'b', 'c', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",6,0,False +prompters,"['_', '_', '_', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +prefaced,"['_', '_', 'e', 'f', 'a', 'c', 'e', 'd']","['b', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +tradesman,"['_', '_', 'a', 'd', 'e', '_', 'm', 'a', 'n']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'o']",6,0,False +leaked,"['l', 'e', 'a', 'k', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j']",6,3,True +earnestness,"['e', 'a', '_', '_', 'e', '_', '_', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +output,"['_', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +resonant,"['_', 'e', '_', '_', '_', 'a', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +dinettes,"['d', 'i', '_', 'e', '_', '_', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +cosmetologist,"['c', 'o', '_', 'm', 'e', '_', 'o', 'l', 'o', 'g', 'i', '_', '_']","['a', 'b', 'd', 'f', 'h', 'j', 'k', 'n', 'p', 'q']",9,0,False +digging,"['d', 'i', 'g', 'g', 'i', '_', 'g']","['a', 'b', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",6,0,False +sealants,"['_', 'e', 'a', 'l', 'a', '_', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +savouries,"['_', 'a', '_', '_', '_', '_', 'i', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +rafting,"['_', 'a', 'f', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'h', 'j', 'k', 'l', 'm', 'o']",5,0,False +chicest,"['c', 'h', 'i', 'c', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'n']",5,0,False +pheasants,"['_', 'h', 'e', 'a', '_', 'a', '_', '_', '_']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",4,0,False +pegged,"['_', 'e', 'g', 'g', 'e', 'd']","['a', 'b', 'c', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",5,0,False +outsells,"['_', '_', '_', '_', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +crosschecks,"['c', '_', '_', '_', '_', 'c', 'h', 'e', 'c', 'k', '_']","['a', 'b', 'd', 'f', 'g', 'i', 'j', 'l', 'm', 'n']",6,0,False +cynic,"['c', '_', '_', 'i', 'c']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +faze,"['f', 'a', '_', 'e']","['b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +paediatrician,"['p', 'a', 'e', 'd', 'i', 'a', '_', '_', 'i', 'c', 'i', 'a', 'n']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o', 'q']",11,0,False +fatigues,"['f', 'a', '_', 'i', 'g', '_', 'e', '_']","['b', 'c', 'd', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",5,0,False +keyholes,"['k', 'e', '_', 'h', '_', 'l', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'm', 'n']",5,0,False +masturbates,"['m', 'a', '_', '_', '_', '_', 'b', 'a', '_', 'e', '_']","['c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",5,0,False +potent,"['_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +engages,"['e', '_', 'g', 'a', 'g', 'e', '_']","['b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",5,0,False +gruffness,"['g', '_', '_', 'f', 'f', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +haymows,"['h', 'a', '_', '_', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +racist,"['_', 'a', 'c', 'i', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +vulva,"['_', '_', '_', '_', 'a']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +truncation,"['_', '_', '_', '_', 'c', 'a', '_', 'i', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +disconsolately,"['d', 'i', '_', 'c', 'o', 'n', '_', 'o', 'l', 'a', '_', 'e', 'l', '_']","['b', 'f', 'g', 'h', 'j', 'k', 'm', 'p', 'q', 'r']",10,0,False +unveiling,"['_', 'n', '_', 'e', 'i', 'l', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o']",7,0,False +unpremeditated,"['_', 'n', 'p', '_', 'e', 'm', 'e', 'd', 'i', '_', 'a', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'o', 'q']",10,0,False +thorium,"['_', 'h', '_', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'j', 'k', 'l']",2,0,False +burping,"['b', '_', '_', '_', 'i', '_', 'g']","['a', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +break,"['b', '_', 'e', 'a', 'k']","['c', 'd', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'n']",4,0,False +crankcases,"['c', '_', 'a', 'n', 'k', 'c', 'a', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'o']",7,0,False +jerseys,"['j', 'e', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'k', 'l']",3,0,False +relationships,"['r', 'e', 'l', 'a', 't', 'i', 'o', 'n', 's', 'h', 'i', 'p', 's']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'm', 'q']",13,1,True +hefted,"['h', 'e', 'f', '_', 'e', 'd']","['a', 'b', 'c', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",5,0,False +meddles,"['m', 'e', 'd', 'd', 'l', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'n']",6,0,False +frenzy,"['f', '_', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +cashiered,"['c', 'a', '_', 'h', 'i', 'e', '_', 'e', 'd']","['b', 'f', 'g', 'j', 'k', 'l', 'm', 'n', 'o', 'p']",7,0,False +ballyhooed,"['b', 'a', 'l', 'l', '_', 'h', 'o', 'o', 'e', 'd']","['c', 'f', 'g', 'i', 'j', 'k', 'm', 'n', 'p', 'q']",9,0,False +tuberculous,"['_', '_', 'b', 'e', '_', 'c', '_', 'l', '_', '_', '_']","['a', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +onus,"['_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +freebooters,"['f', '_', 'e', 'e', 'b', '_', '_', '_', 'e', '_', '_']","['a', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",5,0,False +cruddy,"['c', '_', '_', 'd', 'd', '_']","['a', 'b', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +annexations,"['a', '_', '_', 'e', '_', 'a', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +narked,"['n', 'a', '_', 'k', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'o']",5,0,False +anyway,"['a', '_', '_', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +escapist,"['e', '_', 'c', 'a', '_', 'i', '_', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",4,0,False +headquarters,"['h', 'e', 'a', 'd', '_', '_', 'a', '_', '_', 'e', '_', '_']","['b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",6,0,False +waved,"['_', 'a', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +argon,"['a', '_', 'g', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",2,0,False +midst,"['_', 'i', 'd', '_', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +sanitaria,"['_', 'a', '_', 'i', '_', 'a', '_', 'i', 'a']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",5,0,False +provocation,"['_', '_', '_', '_', '_', 'c', 'a', '_', 'i', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +moldy,"['_', '_', '_', 'd', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +spoon,"['_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +dressmakers,"['d', '_', 'e', '_', '_', 'm', 'a', 'k', 'e', '_', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'l', 'n', 'o']",6,0,False +levitating,"['l', 'e', '_', 'i', '_', 'a', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o', 'p']",7,0,False +fixable,"['f', 'i', '_', 'a', 'b', 'l', 'e']","['c', 'd', 'g', 'h', 'j', 'k', 'm', 'n', 'o', 'p']",6,0,False +figurative,"['f', 'i', 'g', '_', '_', 'a', '_', 'i', '_', 'e']","['b', 'c', 'd', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +mutinously,"['_', '_', '_', 'i', '_', '_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",1,0,False +poesy,"['_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +jerseys,"['j', 'e', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'k', 'l']",3,0,False +stalker,"['_', '_', 'a', 'l', 'k', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'm', 'n']",4,0,False +emulsion,"['e', 'm', '_', 'l', '_', 'i', 'o', 'n']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'p']",6,0,False +individualistic,"['i', 'n', 'd', 'i', '_', 'i', 'd', '_', 'a', 'l', 'i', '_', '_', 'i', 'c']","['b', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'o', 'p']",11,0,False +overpowered,"['_', '_', 'e', '_', '_', '_', '_', 'e', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +afterwards,"['a', 'f', '_', 'e', '_', '_', 'a', '_', 'd', '_']","['b', 'c', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",5,0,False +quadruples,"['_', '_', 'a', 'd', '_', '_', '_', 'l', 'e', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +outsets,"['_', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +grandparents,"['g', '_', 'a', 'n', 'd', '_', 'a', '_', 'e', 'n', '_', '_']","['b', 'c', 'f', 'h', 'i', 'j', 'k', 'l', 'm', 'o']",7,0,False +cups,"['c', '_', '_', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +talon,"['_', 'a', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +cairns,"['c', 'a', 'i', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +pianofortes,"['p', 'i', 'a', 'n', 'o', 'f', 'o', '_', '_', 'e', '_']","['b', 'c', 'd', 'g', 'h', 'j', 'k', 'l', 'm', 'q']",8,0,False +demoralise,"['d', 'e', 'm', 'o', '_', 'a', 'l', 'i', '_', 'e']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'n', 'p', 'q']",8,0,False +janitorial,"['j', 'a', 'n', 'i', '_', 'o', '_', 'i', 'a', 'l']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'k', 'm', 'p']",8,0,False +stuffs,"['_', '_', '_', 'f', 'f', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k']",2,0,False +tactically,"['_', 'a', 'c', '_', 'i', 'c', 'a', 'l', 'l', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",7,0,False +observed,"['_', 'b', '_', 'e', '_', '_', 'e', 'd']","['a', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +cowbirds,"['c', '_', '_', 'b', 'i', '_', 'd', '_']","['a', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",4,0,False +slaloming,"['_', 'l', 'a', 'l', 'o', 'm', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'p', 'q']",8,0,False +milligram,"['m', 'i', 'l', 'l', 'i', 'g', '_', 'a', 'm']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'n', 'o']",8,0,False +overlying,"['o', '_', 'e', '_', 'l', '_', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'p']",6,0,False +transoceanic,"['_', '_', 'a', 'n', '_', 'o', 'c', 'e', 'a', 'n', 'i', 'c']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",9,0,False +brimming,"['b', '_', 'i', 'm', 'm', 'i', 'n', 'g']","['a', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'o']",7,0,False +canister,"['c', 'a', 'n', 'i', '_', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",5,0,False +expurgated,"['e', '_', '_', '_', '_', 'g', 'a', '_', 'e', 'd']","['b', 'c', 'f', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",5,0,False +commentating,"['c', 'o', 'm', 'm', 'e', 'n', '_', 'a', '_', 'i', 'n', 'g']","['b', 'd', 'f', 'h', 'j', 'k', 'l', 'p', 'q', 'r']",10,0,False +analysis,"['a', '_', 'a', 'l', '_', '_', 'i', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",4,0,False +incurring,"['i', '_', 'c', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +loosest,"['_', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +extenuate,"['e', '_', '_', 'e', '_', '_', 'a', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +rarest,"['_', 'a', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +matte,"['_', 'a', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +pigs,"['_', 'i', 'g', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",2,0,False +occurring,"['_', 'c', 'c', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +resiliency,"['_', 'e', '_', 'i', 'l', 'i', 'e', 'n', 'c', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",7,0,False +article,"['a', '_', '_', 'i', 'c', 'l', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o']",5,0,False +demilitarisation,"['d', 'e', 'm', 'i', 'l', 'i', 't', 'a', 'r', 'i', 's', 'a', 't', 'i', 'o', 'n']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'p', 'q']",16,1,True +syncopate,"['_', '_', '_', 'c', '_', '_', 'a', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +twist,"['_', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",1,0,False +interrogatives,"['i', 'n', '_', 'e', '_', '_', 'o', 'g', 'a', '_', 'i', '_', 'e', '_']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",8,0,False +ransacked,"['_', 'a', 'n', '_', 'a', 'c', 'k', 'e', 'd']","['b', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'o', 'p']",7,0,False +cums,"['c', '_', '_', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +gulps,"['g', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k']",1,0,False +clodhoppers,"['c', 'l', 'o', 'd', 'h', 'o', 'p', 'p', 'e', '_', '_']","['a', 'b', 'f', 'g', 'i', 'j', 'k', 'm', 'n', 'q']",9,0,False +palpably,"['_', 'a', 'l', '_', 'a', 'b', 'l', '_']","['c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +procurator,"['_', '_', '_', 'c', '_', '_', 'a', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +hustlers,"['h', '_', '_', '_', 'l', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'm']",3,0,False +chalks,"['c', 'h', 'a', 'l', 'k', '_']","['b', 'd', 'e', 'f', 'g', 'i', 'j', 'm', 'n', 'o']",5,0,False +riffraff,"['_', 'i', 'f', 'f', '_', 'a', 'f', 'f']","['b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'l', 'm']",6,0,False +loyallest,"['l', '_', '_', 'a', 'l', 'l', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +pleasantly,"['_', 'l', 'e', 'a', '_', 'a', '_', '_', 'l', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +disc,"['d', 'i', '_', 'c']","['a', 'b', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +serpents,"['_', 'e', '_', '_', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +statehouse,"['_', '_', 'a', '_', 'e', 'h', '_', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",4,0,False +guitarist,"['g', '_', 'i', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",4,0,False +varlets,"['_', 'a', '_', 'l', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +cystic,"['c', '_', '_', '_', 'i', 'c']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +counterfeits,"['c', 'o', '_', 'n', '_', 'e', '_', 'f', 'e', 'i', '_', '_']","['a', 'b', 'd', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",7,0,False +magnifying,"['m', 'a', 'g', 'n', 'i', 'f', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'h', 'j', 'k', 'l', 'o', 'p']",9,0,False +exorcise,"['e', '_', '_', '_', 'c', 'i', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +scamper,"['_', 'c', 'a', 'm', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",4,0,False +sympathisers,"['_', '_', 'm', '_', 'a', '_', 'h', 'i', '_', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'n', 'o']",5,0,False +sky,"['_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +millage,"['m', 'i', 'l', 'l', 'a', 'g', 'e']","['b', 'c', 'd', 'f', 'h', 'j', 'k']",7,3,True +anterooms,"['a', '_', '_', 'e', '_', '_', '_', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +palefaces,"['_', 'a', 'l', 'e', 'f', 'a', 'c', 'e', '_']","['b', 'd', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'o']",7,0,False +perennially,"['_', 'e', '_', 'e', 'n', 'n', 'i', 'a', 'l', 'l', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",8,0,False +readiness,"['_', 'e', 'a', 'd', 'i', 'n', 'e', '_', '_']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +annulments,"['a', 'n', 'n', '_', 'l', 'm', 'e', 'n', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'o']",7,0,False +foolhardiest,"['f', 'o', 'o', 'l', 'h', 'a', 'r', 'd', 'i', 'e', 's', 't']","['b', 'c', 'g', 'j', 'k', 'm', 'n', 'p', 'q']",12,1,True +stats,"['_', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +amenable,"['a', 'm', 'e', 'n', 'a', 'b', 'l', 'e']","['c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",8,2,True +gibbet,"['g', 'i', 'b', 'b', 'e', '_']","['a', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +encoder,"['e', '_', 'c', '_', 'd', 'e', '_']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +cloudiest,"['c', 'l', 'o', '_', 'd', 'i', 'e', '_', '_']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p']",6,0,False +sultriest,"['_', '_', 'l', '_', '_', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +endurance,"['e', 'n', 'd', '_', '_', 'a', 'n', 'c', 'e']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'o']",7,0,False +befitted,"['b', 'e', 'f', 'i', '_', '_', 'e', 'd']","['a', 'c', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +masticate,"['m', 'a', '_', '_', 'i', 'c', 'a', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'n', 'o']",6,0,False +snort,"['_', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +dispelled,"['d', 'i', '_', '_', 'e', 'l', 'l', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",7,0,False +eccentricity,"['e', 'c', 'c', 'e', '_', '_', '_', 'i', 'c', 'i', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",7,0,False +silkworm,"['_', 'i', 'l', 'k', '_', '_', '_', 'm']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'n']",4,0,False +laughingstocks,"['l', 'a', 'u', 'g', 'h', 'i', 'n', 'g', 's', 't', 'o', 'c', 'k', 's']","['b', 'd', 'e', 'f', 'j', 'm', 'p', 'q', 'r']",14,1,True +consoling,"['c', 'o', 'n', '_', 'o', 'l', 'i', 'n', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'k', 'm', 'p']",8,0,False +irritation,"['i', '_', '_', 'i', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +jinx,"['j', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'k', 'l']",2,0,False +frolic,"['f', '_', '_', 'l', 'i', 'c']","['a', 'b', 'd', 'e', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +canopied,"['c', 'a', 'n', 'o', 'p', 'i', 'e', 'd']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",8,2,True +paged,"['_', 'a', 'g', 'e', 'd']","['b', 'c', 'f', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +bedrooms,"['b', 'e', 'd', '_', '_', '_', 'm', '_']","['a', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",4,0,False +undercoated,"['_', 'n', 'd', 'e', '_', 'c', 'o', 'a', '_', 'e', 'd']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'p']",8,0,False +footballs,"['f', '_', '_', '_', 'b', 'a', 'l', 'l', '_']","['c', 'd', 'e', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +savannah,"['_', 'a', '_', 'a', '_', '_', 'a', 'h']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",4,0,False +collapses,"['c', '_', 'l', 'l', 'a', '_', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +insinuations,"['i', '_', '_', 'i', '_', '_', 'a', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +tacks,"['_', 'a', 'c', 'k', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'l', 'm']",3,0,False +dichotomies,"['d', 'i', 'c', 'h', 'o', '_', 'o', 'm', 'i', 'e', '_']","['a', 'b', 'f', 'g', 'j', 'k', 'l', 'n', 'p', 'q']",9,0,False +comparably,"['c', 'o', 'm', 'p', 'a', '_', 'a', 'b', 'l', '_']","['d', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'n', 'q']",8,0,False +backfields,"['b', 'a', 'c', 'k', 'f', 'i', 'e', 'l', 'd', 's']","['g', 'h', 'j', 'm', 'n', 'o', 'p', 'q', 'r']",10,1,True +way,"['_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +abductors,"['a', 'b', 'd', '_', 'c', '_', '_', '_', '_']","['e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +magpie,"['m', 'a', 'g', '_', 'i', 'e']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'n', 'o']",5,0,False +inboards,"['i', 'n', 'b', 'o', 'a', '_', 'd', '_']","['c', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",6,0,False +rumouring,"['_', '_', '_', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",2,0,False +axioms,"['a', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +versifies,"['_', 'e', '_', '_', 'i', 'f', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +interesting,"['i', '_', '_', 'e', '_', 'e', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",5,0,False +quadrupling,"['q', '_', 'a', 'd', 'r', '_', 'p', 'l', 'i', 'n', 'g']","['b', 'c', 'e', 'f', 'h', 'j', 'k', 'm', 'o', 's']",9,0,False +nonnegotiable,"['n', 'o', 'n', 'n', 'e', 'g', 'o', '_', 'i', 'a', 'b', 'l', 'e']","['c', 'd', 'f', 'h', 'j', 'k', 'm', 'p', 'q', 'r']",12,0,False +unmoral,"['_', '_', '_', '_', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +photographed,"['p', 'h', 'o', '_', 'o', 'g', '_', 'a', 'p', 'h', 'e', 'd']","['b', 'c', 'f', 'i', 'j', 'k', 'l', 'm', 'n', 'q']",10,0,False +suites,"['_', '_', 'i', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +epicentres,"['e', '_', 'i', 'c', 'e', '_', '_', '_', 'e', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +fungicidal,"['f', '_', 'n', 'g', 'i', 'c', 'i', 'd', 'a', 'l']","['b', 'e', 'h', 'j', 'k', 'm', 'o', 'p', 'q', 'r']",9,0,False +disorganising,"['d', 'i', '_', 'o', '_', 'g', 'a', 'n', 'i', '_', 'i', 'n', 'g']","['b', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",10,0,False +putt,"['_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +disabled,"['d', 'i', '_', 'a', 'b', 'l', 'e', 'd']","['c', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o', 'p']",7,0,False +trustworthier,"['_', '_', '_', '_', '_', '_', '_', '_', '_', 'h', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",3,0,False +gets,"['g', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l']",2,0,False +seclude,"['_', 'e', 'c', 'l', '_', 'd', 'e']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +antithesis,"['a', 'n', '_', 'i', '_', 'h', 'e', '_', 'i', '_']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'o']",6,0,False +prettily,"['_', '_', 'e', '_', '_', 'i', 'l', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +prosecutor,"['_', '_', '_', '_', 'e', 'c', '_', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +grimy,"['g', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",2,0,False +marginally,"['m', 'a', '_', 'g', 'i', 'n', 'a', 'l', 'l', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'o', 'p']",8,0,False +impute,"['i', '_', '_', '_', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +stance,"['_', '_', 'a', '_', 'c', 'e']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +grudge,"['g', '_', '_', 'd', 'g', 'e']","['a', 'b', 'c', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +cripples,"['c', '_', 'i', '_', '_', 'l', 'e', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +recalled,"['_', 'e', 'c', 'a', 'l', 'l', 'e', 'd']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'o']",7,0,False +deputising,"['d', 'e', '_', '_', '_', 'i', '_', 'i', 'n', 'g']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +invitingly,"['i', '_', '_', 'i', '_', 'i', '_', 'g', 'l', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",5,0,False +baked,"['b', 'a', 'k', 'e', 'd']","['c', 'f', 'g', 'h', 'i', 'j']",5,4,True +thumbs,"['_', 'h', '_', '_', 'b', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +inscrutably,"['i', 'n', '_', 'c', '_', '_', '_', 'a', 'b', 'l', '_']","['d', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'o', 'p']",6,0,False +vengeance,"['_', 'e', 'n', 'g', 'e', 'a', 'n', 'c', 'e']","['b', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm', 'o']",8,0,False +amok,"['a', '_', '_', 'k']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'l']",2,0,False +desserts,"['d', 'e', '_', '_', 'e', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +nonpartisans,"['_', '_', '_', '_', 'a', '_', '_', 'i', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +lambasted,"['l', 'a', 'm', 'b', 'a', '_', '_', 'e', 'd']","['c', 'f', 'g', 'h', 'i', 'j', 'k', 'n', 'o', 'p']",7,0,False +educators,"['e', 'd', '_', 'c', 'a', '_', '_', '_', '_']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']",4,0,False +benefice,"['b', 'e', 'n', 'e', 'f', 'i', 'c', 'e']","['a', 'd', 'g', 'h', 'j', 'k', 'l', 'm']",8,2,True +repugnance,"['_', 'e', '_', '_', 'g', 'n', 'a', 'n', 'c', 'e']","['b', 'd', 'f', 'h', 'i', 'j', 'k', 'l', 'm', 'o']",7,0,False +offsets,"['_', 'f', 'f', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +disbanded,"['d', 'i', '_', 'b', 'a', 'n', 'd', 'e', 'd']","['c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",8,0,False +glycogen,"['g', 'l', '_', 'c', 'o', 'g', 'e', 'n']","['a', 'b', 'd', 'f', 'h', 'i', 'j', 'k', 'm', 'p']",7,0,False +sorghum,"['_', '_', '_', 'g', 'h', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'i', 'j', 'k', 'l']",2,0,False +accented,"['a', 'c', 'c', 'e', 'n', '_', 'e', 'd']","['b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'o']",7,0,False +lessee,"['_', 'e', '_', '_', 'e', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +choking,"['c', 'h', 'o', 'k', 'i', 'n', 'g']","['a', 'b', 'd', 'e', 'f', 'j', 'l', 'm']",7,2,True +achievements,"['a', 'c', 'h', 'i', 'e', '_', 'e', 'm', 'e', 'n', '_', '_']","['b', 'd', 'f', 'g', 'j', 'k', 'l', 'o', 'p', 'q']",9,0,False +comeuppance,"['c', 'o', 'm', 'e', '_', 'p', 'p', 'a', 'n', 'c', 'e']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'q']",10,0,False +humor,"['h', '_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k']",1,0,False +intonations,"['i', '_', '_', '_', '_', 'a', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +osprey,"['_', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +phosphates,"['_', 'h', '_', '_', '_', 'h', 'a', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",4,0,False +goats,"['g', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",2,0,False +mastermind,"['m', 'a', '_', '_', 'e', '_', 'm', 'i', 'n', 'd']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",7,0,False +ordeal,"['_', '_', 'd', 'e', 'a', 'l']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +lapse,"['l', 'a', '_', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +guiltier,"['g', '_', 'i', 'l', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'n']",5,0,False +arteriosclerosis,"['a', '_', '_', 'e', '_', 'i', 'o', '_', 'c', 'l', 'e', '_', 'o', '_', 'i', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p']",9,0,False +resemble,"['_', 'e', '_', 'e', 'm', 'b', 'l', 'e']","['a', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'n']",6,0,False +comment,"['c', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +diatoms,"['d', 'i', 'a', '_', '_', 'm', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'n']",4,0,False +depended,"['d', 'e', '_', 'e', '_', 'd', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",6,0,False +metamorphosed,"['m', 'e', '_', 'a', 'm', 'o', '_', 'p', 'h', 'o', '_', 'e', 'd']","['b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'n', 'q']",10,0,False +cutesiest,"['c', '_', '_', 'e', '_', 'i', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +tinting,"['_', 'i', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l']",3,0,False +presidency,"['_', '_', 'e', '_', 'i', 'd', 'e', 'n', 'c', '_']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +invader,"['i', 'n', '_', 'a', 'd', 'e', '_']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",5,0,False +socialism,"['_', 'o', 'c', 'i', 'a', 'l', 'i', '_', 'm']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'n', 'p']",7,0,False +hey,"['h', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l']",2,0,False +alphabetised,"['a', 'l', 'p', 'h', 'a', 'b', 'e', '_', 'i', '_', 'e', 'd']","['c', 'f', 'g', 'j', 'k', 'm', 'n', 'o', 'q', 'r']",10,0,False +biophysicist,"['b', 'i', '_', '_', 'h', '_', '_', 'i', 'c', 'i', '_', '_']","['a', 'd', 'e', 'f', 'g', 'j', 'k', 'l', 'm', 'n']",6,0,False +midriffs,"['m', 'i', 'd', '_', 'i', 'f', 'f', '_']","['a', 'b', 'c', 'e', 'g', 'h', 'j', 'k', 'l', 'n']",6,0,False +trivets,"['_', '_', 'i', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +televises,"['_', 'e', 'l', 'e', '_', 'i', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",5,0,False +demand,"['d', 'e', 'm', 'a', 'n', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",6,1,True +exchequers,"['e', '_', 'c', 'h', 'e', '_', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",5,0,False +normalising,"['n', 'o', '_', 'm', 'a', 'l', 'i', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'p', 'q']",9,0,False +supplemented,"['_', '_', '_', '_', 'l', 'e', 'm', 'e', 'n', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'o']",7,0,False +strap,"['_', '_', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +stockrooms,"['_', '_', '_', 'c', 'k', '_', '_', '_', '_', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'l']",2,0,False +cormorants,"['c', '_', '_', '_', '_', '_', 'a', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +muted,"['_', '_', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +stickpin,"['_', '_', 'i', 'c', 'k', '_', 'i', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'l', 'm']",4,0,False +countersinks,"['c', 'o', '_', 'n', '_', 'e', '_', '_', 'i', 'n', 'k', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'l', 'm', 'p']",7,0,False +opines,"['_', '_', 'i', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +privatisations,"['_', '_', 'i', '_', 'a', '_', 'i', '_', 'a', '_', 'i', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",5,0,False +stabiliser,"['_', '_', 'a', 'b', 'i', 'l', 'i', '_', 'e', '_']","['c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o']",6,0,False +red,"['_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +pick,"['_', 'i', 'c', 'k']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'l', 'm']",3,0,False +forwent,"['f', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +empowered,"['e', '_', '_', '_', '_', 'e', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",4,0,False +mufflers,"['m', '_', 'f', 'f', 'l', 'e', '_', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'i', 'j', 'k', 'n']",5,0,False +blusher,"['b', 'l', '_', '_', 'h', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'm', 'n']",4,0,False +incorrectness,"['i', '_', 'c', '_', '_', '_', 'e', 'c', '_', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +geocentric,"['g', 'e', 'o', 'c', 'e', 'n', '_', '_', 'i', 'c']","['a', 'b', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",8,0,False +firmaments,"['f', 'i', '_', 'm', 'a', 'm', 'e', 'n', '_', '_']","['b', 'c', 'd', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",7,0,False +creepiest,"['c', '_', 'e', 'e', '_', 'i', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +abdomen,"['a', 'b', 'd', 'o', 'm', 'e', 'n']","['c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",7,2,True +halon,"['h', 'a', 'l', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'i', 'j', 'k', 'm']",3,0,False +tamed,"['_', 'a', 'm', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'n']",4,0,False +unsweetened,"['_', '_', '_', '_', 'e', 'e', '_', 'e', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",5,0,False +vagrant,"['_', 'a', 'g', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",3,0,False +baptistries,"['b', 'a', '_', '_', 'i', '_', '_', '_', 'i', 'e', '_']","['c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +tomatoes,"['_', '_', '_', 'a', '_', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +acumen,"['a', 'c', '_', 'm', 'e', 'n']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'o']",5,0,False +rhapsody,"['_', 'h', 'a', '_', '_', '_', 'd', '_']","['b', 'c', 'e', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",3,0,False +slick,"['_', 'l', 'i', 'c', 'k']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'm', 'n']",4,0,False +floundered,"['f', 'l', 'o', '_', 'n', 'd', 'e', '_', 'e', 'd']","['a', 'b', 'c', 'g', 'h', 'i', 'j', 'k', 'm', 'p']",8,0,False +reminisced,"['_', 'e', 'm', 'i', 'n', 'i', '_', 'c', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",8,0,False +intelligently,"['i', 'n', '_', 'e', 'l', 'l', 'i', 'g', 'e', 'n', '_', 'l', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o']",10,0,False +bathing,"['b', 'a', '_', 'h', 'i', 'n', 'g']","['c', 'd', 'e', 'f', 'j', 'k', 'l', 'm', 'o', 'p']",6,0,False +rhapsodies,"['_', 'h', 'a', 'p', '_', 'o', 'd', 'i', 'e', '_']","['b', 'c', 'f', 'g', 'j', 'k', 'l', 'm', 'n', 'q']",7,0,False +jars,"['j', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'k', 'l']",2,0,False +binge,"['b', 'i', 'n', 'g', 'e']","['a', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'm']",5,1,True +gigglers,"['g', 'i', 'g', 'g', 'l', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'n']",6,0,False +weeding,"['_', 'e', 'e', 'd', 'i', 'n', 'g']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +drafting,"['d', '_', 'a', 'f', '_', 'i', 'n', 'g']","['b', 'c', 'e', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",6,0,False +spearheaded,"['_', '_', 'e', 'a', '_', 'h', 'e', 'a', 'd', 'e', 'd']","['b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",8,0,False +purl,"['_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +young,"['_', '_', '_', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k']",1,0,False +binding,"['b', 'i', 'n', 'd', 'i', 'n', 'g']","['a', 'c', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",7,1,True +schoolmistresses,"['_', 'c', 'h', 'o', 'o', 'l', 'm', 'i', '_', '_', '_', 'e', '_', '_', 'e', '_']","['a', 'b', 'd', 'f', 'g', 'j', 'k', 'n', 'p', 'q']",9,0,False +payees,"['_', 'a', '_', 'e', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +drunkest,"['d', '_', '_', '_', 'k', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'l', 'm']",3,0,False +crawfish,"['c', '_', 'a', '_', 'f', 'i', '_', 'h']","['b', 'd', 'e', 'g', 'j', 'k', 'l', 'm', 'n', 'o']",5,0,False +orthopedic,"['o', '_', '_', 'h', 'o', 'p', 'e', 'd', 'i', 'c']","['a', 'b', 'f', 'g', 'j', 'k', 'l', 'm', 'n', 'q']",8,0,False +quanta,"['_', '_', 'a', '_', '_', 'a']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +toothiest,"['_', '_', '_', '_', 'h', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",3,0,False +hayseed,"['h', 'a', '_', '_', 'e', 'e', 'd']","['b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n']",5,0,False +windlass,"['_', 'i', 'n', 'd', 'l', 'a', '_', '_']","['b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'o']",5,0,False +rap,"['_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +napalmed,"['n', 'a', 'p', 'a', 'l', 'm', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'o']",8,1,True +specie,"['_', '_', 'e', 'c', 'i', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +llamas,"['_', '_', 'a', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +sell,"['_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +freeloads,"['f', '_', 'e', 'e', 'l', 'o', 'a', 'd', '_']","['b', 'c', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'p']",7,0,False +sleekest,"['_', 'l', 'e', 'e', 'k', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'm']",5,0,False +visionaries,"['_', 'i', '_', 'i', '_', '_', 'a', '_', 'i', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +chemise,"['c', 'h', 'e', 'm', 'i', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'j', 'k', 'l', 'n', 'o']",6,0,False +avatar,"['a', '_', 'a', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +lawyer,"['l', 'a', '_', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +quarterback,"['_', '_', 'a', '_', '_', 'e', '_', 'b', 'a', 'c', 'k']","['d', 'f', 'g', 'h', 'i', 'j', 'l', 'm', 'n', 'o']",6,0,False +parental,"['_', 'a', '_', 'e', '_', '_', 'a', 'l']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",4,0,False +his,"['h', 'i', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'j', 'k', 'l']",2,0,False +twentieth,"['_', '_', 'e', '_', '_', 'i', 'e', '_', 'h']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm']",4,0,False +croupiest,"['c', '_', '_', '_', '_', 'i', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +resistances,"['_', 'e', '_', 'i', '_', '_', 'a', 'n', 'c', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +precipitous,"['_', '_', 'e', 'c', 'i', '_', 'i', '_', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +lustre,"['_', '_', '_', '_', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +kneeled,"['k', 'n', 'e', 'e', 'l', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'm']",7,1,True +tolerating,"['_', 'o', 'l', 'e', '_', 'a', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'p', 'q']",7,0,False +stocking,"['_', '_', 'o', 'c', 'k', 'i', 'n', 'g']","['a', 'b', 'd', 'e', 'f', 'h', 'j', 'l', 'm', 'p']",6,0,False +undecidable,"['_', 'n', 'd', 'e', 'c', 'i', 'd', 'a', 'b', 'l', 'e']","['f', 'g', 'h', 'j', 'k', 'm', 'o', 'p', 'q', 'r']",10,0,False +suburb,"['_', '_', 'b', '_', '_', 'b']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +malfeasance,"['m', 'a', 'l', 'f', 'e', 'a', '_', 'a', 'n', 'c', 'e']","['b', 'd', 'g', 'h', 'i', 'j', 'k', 'o', 'p', 'q']",10,0,False +length,"['l', 'e', 'n', 'g', '_', 'h']","['a', 'b', 'c', 'd', 'f', 'i', 'j', 'k', 'm', 'o']",5,0,False +pulse,"['_', '_', '_', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +paramedicals,"['p', 'a', 'r', 'a', 'm', 'e', 'd', 'i', 'c', 'a', 'l', 's']","['b', 'f', 'g', 'h', 'j', 'k', 'n', 'o', 'q']",12,1,True +dickey,"['d', 'i', 'c', 'k', 'e', '_']","['a', 'b', 'f', 'g', 'h', 'j', 'l', 'm', 'n', 'o']",5,0,False +indiscreet,"['i', 'n', 'd', 'i', '_', 'c', '_', 'e', 'e', '_']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",7,0,False +slotting,"['_', 'l', '_', '_', '_', 'i', '_', 'g']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm']",3,0,False +burgling,"['b', '_', '_', 'g', 'l', 'i', 'n', 'g']","['a', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm', 'o']",6,0,False +covet,"['c', '_', '_', 'e', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +steamrollers,"['_', '_', 'e', 'a', 'm', '_', '_', 'l', 'l', 'e', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'n']",6,0,False +cornflower,"['c', 'o', '_', 'n', 'f', 'l', 'o', '_', 'e', '_']","['a', 'b', 'd', 'g', 'h', 'i', 'j', 'k', 'm', 'p']",7,0,False +poignant,"['_', '_', 'i', 'g', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm']",3,0,False +lyric,"['l', '_', '_', 'i', 'c']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +combatant,"['c', 'o', 'm', 'b', 'a', '_', 'a', 'n', '_']","['d', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'p']",7,0,False +constitutionality,"['c', 'o', 'n', '_', '_', 'i', '_', '_', '_', 'i', 'o', 'n', 'a', 'l', 'i', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'p']",10,0,False +drones,"['d', '_', '_', '_', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +granddad,"['g', '_', 'a', '_', 'd', 'd', 'a', 'd']","['b', 'c', 'e', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",6,0,False +thousands,"['_', 'h', '_', '_', '_', 'a', '_', 'd', '_']","['b', 'c', 'e', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",3,0,False +resourcefulness,"['_', 'e', '_', 'o', '_', '_', 'c', 'e', 'f', '_', 'l', 'n', 'e', '_', '_']","['a', 'b', 'd', 'g', 'h', 'i', 'j', 'k', 'm', 'p']",8,0,False +greyhound,"['g', '_', 'e', '_', 'h', 'o', '_', 'n', 'd']","['a', 'b', 'c', 'f', 'i', 'j', 'k', 'l', 'm', 'p']",6,0,False +stokers,"['_', '_', '_', 'k', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'l']",2,0,False +destinies,"['d', 'e', '_', '_', 'i', '_', 'i', 'e', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +streptococci,"['_', '_', '_', 'e', '_', '_', '_', 'c', '_', 'c', 'c', 'i']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",5,0,False +harassment,"['h', 'a', '_', 'a', '_', '_', 'm', 'e', 'n', '_']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'o']",6,0,False +deluded,"['d', 'e', 'l', '_', 'd', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",6,0,False +overachieved,"['o', '_', 'e', '_', 'a', 'c', 'h', 'i', 'e', '_', 'e', 'd']","['b', 'f', 'g', 'j', 'k', 'l', 'm', 'n', 'p', 'q']",9,0,False +tormenter,"['_', '_', '_', '_', 'e', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +sills,"['_', 'i', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k']",1,0,False +appearance,"['a', '_', '_', 'e', 'a', '_', 'a', '_', 'c', 'e']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",6,0,False +tangibly,"['_', 'a', 'n', 'g', 'i', 'b', 'l', '_']","['c', 'd', 'e', 'f', 'h', 'j', 'k', 'm', 'o', 'p']",6,0,False +outsmarting,"['o', '_', '_', '_', 'm', 'a', '_', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'p']",6,0,False +seventies,"['_', 'e', '_', 'e', '_', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",4,0,False +shellacked,"['_', 'h', 'e', 'l', 'l', 'a', 'c', 'k', 'e', 'd']","['b', 'f', 'g', 'i', 'j', 'm', 'n', 'o', 'p', 'q']",9,0,False +invited,"['i', '_', '_', 'i', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +compressor,"['c', '_', '_', '_', '_', 'e', '_', '_', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +affirm,"['a', 'f', 'f', 'i', '_', 'm']","['b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'l', 'n']",5,0,False +infinitives,"['i', '_', 'f', 'i', '_', 'i', '_', 'i', '_', 'e', '_']","['a', 'b', 'c', 'd', 'g', 'h', 'j', 'k', 'l', 'm']",6,0,False +guessers,"['g', '_', 'e', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'h', 'i', 'j', 'k', 'l']",3,0,False +curies,"['c', '_', '_', 'i', 'e', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +snowboarded,"['_', 'n', 'o', '_', 'b', 'o', 'a', '_', 'd', 'e', 'd']","['c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'p']",8,0,False +bubbly,"['b', '_', 'b', 'b', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +promotional,"['p', '_', 'o', 'm', 'o', '_', 'i', 'o', 'n', 'a', 'l']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'q']",9,0,False +detained,"['d', 'e', '_', 'a', 'i', 'n', 'e', 'd']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",7,0,False +acolytes,"['a', 'c', '_', 'l', '_', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +ripper,"['_', 'i', '_', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +seeming,"['_', 'e', 'e', 'm', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'o']",6,0,False +tautly,"['_', 'a', '_', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +pointless,"['_', '_', 'i', '_', '_', 'l', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +toll,"['_', '_', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']",0,0,False +beastliest,"['b', 'e', 'a', '_', '_', 'l', 'i', 'e', '_', '_']","['c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'o']",6,0,False +broaches,"['b', '_', 'o', 'a', 'c', 'h', 'e', '_']","['d', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n', 'p']",6,0,False +mechanistic,"['m', 'e', 'c', 'h', 'a', 'n', 'i', '_', '_', 'i', 'c']","['b', 'd', 'f', 'g', 'j', 'k', 'l', 'o', 'p', 'q']",9,0,False +strychnine,"['_', '_', '_', '_', 'c', 'h', 'n', 'i', 'n', 'e']","['a', 'b', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'o']",6,0,False +glaringly,"['g', 'l', 'a', '_', 'i', 'n', 'g', 'l', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm', 'o']",7,0,False +butt,"['b', '_', '_', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +sufficed,"['_', '_', 'f', 'f', 'i', 'c', 'e', 'd']","['a', 'b', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'o']",6,0,False +invisibly,"['i', '_', '_', 'i', '_', 'i', 'b', 'l', '_']","['a', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",5,0,False +heterodox,"['h', 'e', '_', 'e', '_', '_', 'd', '_', '_']","['a', 'b', 'c', 'f', 'g', 'i', 'j', 'k', 'l', 'm']",4,0,False +uncomprehending,"['u', 'n', 'c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', 'd', 'i', 'n', 'g']","['a', 'b', 'f', 'j', 'k', 'l', 'q', 's', 't']",15,1,True +billowier,"['b', 'i', 'l', 'l', '_', '_', 'i', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",6,0,False +mink,"['_', 'i', '_', 'k']","['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'l']",2,0,False +embracing,"['e', 'm', 'b', 'r', 'a', 'c', 'i', 'n', 'g']","['d', 'f', 'h', 'j', 'k', 'l', 'o', 'p', 'q']",9,1,True +revealing,"['_', 'e', '_', 'e', 'a', 'l', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'm', 'o', 'p']",7,0,False +tombstones,"['_', '_', '_', 'b', '_', '_', '_', '_', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +increase,"['i', 'n', 'c', '_', 'e', 'a', '_', 'e']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o']",6,0,False +amnesiac,"['a', 'm', 'n', 'e', '_', 'i', 'a', 'c']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",7,0,False +mistiest,"['_', 'i', '_', '_', 'i', 'e', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +panoramas,"['_', 'a', '_', '_', '_', 'a', '_', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +crashed,"['c', '_', 'a', '_', 'h', 'e', 'd']","['b', 'f', 'g', 'i', 'j', 'k', 'l', 'm', 'n', 'o']",5,0,False +essayist,"['e', '_', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +citations,"['c', 'i', '_', 'a', '_', 'i', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +sorbets,"['_', '_', '_', 'b', 'e', '_', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +gladden,"['g', 'l', 'a', 'd', 'd', 'e', 'n']","['b', 'c', 'f', 'h', 'i', 'j', 'k', 'm']",7,2,True +hags,"['h', 'a', 'g', '_']","['b', 'c', 'd', 'e', 'f', 'i', 'j', 'k', 'l', 'm']",3,0,False +angst,"['a', '_', 'g', '_', '_']","['b', 'c', 'd', 'e', 'f', 'h', 'i', 'j', 'k', 'l']",2,0,False +respondent,"['_', 'e', '_', '_', '_', '_', 'd', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +torpidity,"['_', '_', '_', '_', 'i', 'd', 'i', '_', '_']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +mighty,"['m', 'i', 'g', 'h', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'j', 'k', 'l', 'n']",4,0,False +bloodies,"['b', 'l', 'o', 'o', 'd', 'i', 'e', '_']","['a', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p']",7,0,False +weeper,"['_', 'e', 'e', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",3,0,False +flakiness,"['f', 'l', 'a', 'k', 'i', 'n', 'e', '_', '_']","['b', 'c', 'd', 'g', 'h', 'j', 'm', 'o', 'p', 'q']",7,0,False +obliterated,"['o', 'b', 'l', 'i', '_', 'e', '_', 'a', '_', 'e', 'd']","['c', 'f', 'g', 'h', 'j', 'k', 'm', 'n', 'p', 'q']",8,0,False +dusters,"['d', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +contrive,"['c', '_', '_', '_', '_', 'i', '_', 'e']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +diverging,"['d', 'i', '_', 'e', '_', 'g', 'i', 'n', 'g']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'o']",7,0,False +idol,"['i', 'd', '_', 'l']","['a', 'b', 'c', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +cosily,"['c', '_', '_', 'i', 'l', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +jingoist,"['j', 'i', '_', 'g', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'e', 'f', 'h', 'k', 'l', 'm']",4,0,False +vandalises,"['_', 'a', 'n', 'd', 'a', 'l', 'i', '_', 'e', '_']","['b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'o', 'p']",7,0,False +clefts,"['c', 'l', 'e', 'f', '_', '_']","['a', 'b', 'd', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",4,0,False +voile,"['_', '_', 'i', 'l', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +pagoda,"['_', 'a', 'g', '_', 'd', 'a']","['b', 'c', 'e', 'f', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +unseen,"['_', '_', '_', 'e', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",2,0,False +connoted,"['c', '_', '_', '_', '_', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",3,0,False +plenty,"['_', '_', 'e', '_', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +docility,"['d', '_', 'c', 'i', 'l', 'i', '_', '_']","['a', 'b', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",5,0,False +cathedrals,"['c', 'a', '_', 'h', 'e', 'd', '_', 'a', 'l', '_']","['b', 'f', 'g', 'i', 'j', 'k', 'm', 'n', 'o', 'p']",7,0,False +dentifrices,"['d', 'e', 'n', '_', 'i', 'f', '_', 'i', 'c', 'e', '_']","['a', 'b', 'g', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",8,0,False +creepy,"['c', '_', 'e', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +extremity,"['e', '_', '_', '_', 'e', '_', 'i', '_', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +homie,"['h', '_', 'm', 'i', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'n']",4,0,False +loafs,"['l', '_', 'a', 'f', '_']","['b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k', 'm']",3,0,False +asterisking,"['a', '_', '_', 'e', '_', 'i', '_', 'k', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'l', 'm', 'o', 'p']",7,0,False +pass,"['_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +ecosystems,"['e', 'c', '_', '_', '_', '_', '_', 'e', '_', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",3,0,False +warps,"['_', 'a', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +rearming,"['_', 'e', 'a', '_', 'm', 'i', 'n', 'g']","['b', 'c', 'd', 'f', 'h', 'j', 'k', 'l', 'o', 'p']",6,0,False +anybodies,"['a', 'n', '_', 'b', 'o', 'd', 'i', 'e', '_']","['c', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p', 'q']",7,0,False +horsemanship,"['h', 'o', 'r', 's', 'e', 'm', 'a', 'n', 's', 'h', 'i', 'p']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'q']",12,1,True +limitation,"['l', 'i', 'm', 'i', '_', 'a', '_', 'i', 'o', 'n']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'p']",8,0,False +locution,"['l', '_', 'c', '_', '_', 'i', '_', '_']","['a', 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",3,0,False +respires,"['_', 'e', '_', '_', 'i', '_', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +electorates,"['e', 'l', 'e', 'c', '_', '_', '_', 'a', '_', 'e', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",6,0,False +sheeting,"['_', 'h', 'e', 'e', '_', 'i', 'n', 'g']","['a', 'b', 'c', 'd', 'f', 'j', 'k', 'l', 'm', 'o']",6,0,False +potatoes,"['_', '_', '_', 'a', '_', '_', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +severally,"['_', 'e', '_', 'e', '_', 'a', 'l', 'l', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +seaworthier,"['_', 'e', 'a', '_', '_', '_', '_', 'h', 'i', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'n']",5,0,False +laxly,"['_', 'a', '_', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +severally,"['_', 'e', '_', 'e', '_', 'a', 'l', 'l', '_']","['b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm']",5,0,False +cranks,"['c', '_', 'a', '_', 'k', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'l', 'm']",3,0,False +stormier,"['_', '_', '_', '_', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +mynahes,"['m', '_', 'n', 'a', 'h', 'e', '_']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'o']",5,0,False +utopias,"['_', '_', '_', '_', 'i', 'a', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",2,0,False +projection,"['p', '_', 'o', 'j', 'e', 'c', '_', 'i', 'o', 'n']","['a', 'b', 'd', 'f', 'g', 'h', 'k', 'l', 'm', 'q']",8,0,False +harem,"['h', 'a', '_', 'e', 'm']","['b', 'c', 'd', 'f', 'g', 'i', 'j', 'k', 'l', 'n']",4,0,False +ethics,"['e', '_', 'h', 'i', 'c', '_']","['a', 'b', 'd', 'f', 'g', 'j', 'k', 'l', 'm', 'n']",4,0,False +signalising,"['_', 'i', 'g', 'n', 'a', 'l', 'i', '_', 'i', 'n', 'g']","['b', 'c', 'd', 'e', 'f', 'h', 'j', 'k', 'm', 'o']",9,0,False +televised,"['_', 'e', 'l', 'e', '_', 'i', '_', 'e', 'd']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",6,0,False +defenced,"['d', 'e', 'f', 'e', 'n', 'c', 'e', 'd']","['a', 'b', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",8,1,True +stationary,"['_', '_', 'a', '_', 'i', '_', '_', 'a', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l']",3,0,False +catalepsy,"['c', 'a', '_', 'a', 'l', 'e', '_', '_', '_']","['b', 'd', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n']",5,0,False +columbines,"['c', 'o', 'l', '_', 'm', 'b', 'i', 'n', 'e', '_']","['a', 'd', 'f', 'g', 'h', 'j', 'k', 'p', 'q', 'r']",8,0,False +hypothalami,"['h', '_', 'p', 'o', '_', 'h', 'a', 'l', 'a', 'm', 'i']","['b', 'c', 'd', 'e', 'f', 'g', 'j', 'k', 'n', 'q']",9,0,False +true,"['_', '_', '_', 'e']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'i', 'j', 'k']",1,0,False +battening,"['b', 'a', '_', '_', 'e', 'n', 'i', 'n', 'g']","['c', 'd', 'f', 'h', 'j', 'k', 'l', 'm', 'o', 'p']",7,0,False +tuft,"['_', '_', 'f', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k']",1,0,False +suffix,"['_', '_', 'f', 'f', 'i', '_']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'j', 'k', 'l']",3,0,False +discolours,"['d', 'i', '_', 'c', '_', 'l', '_', '_', '_', '_']","['a', 'b', 'e', 'f', 'g', 'h', 'j', 'k', 'm', 'n']",4,0,False +bonnier,"['b', '_', '_', '_', 'i', 'e', '_']","['a', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +rationalisation,"['_', 'a', '_', 'i', '_', '_', 'a', 'l', 'i', '_', 'a', '_', 'i', '_', '_']","['b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'm']",7,0,False +scrawny,"['_', 'c', '_', 'a', '_', '_', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l']",2,0,False +renditions,"['_', 'e', '_', 'd', 'i', '_', 'i', '_', '_', '_']","['a', 'b', 'c', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",4,0,False +diverge,"['d', 'i', '_', 'e', '_', 'g', 'e']","['a', 'b', 'c', 'f', 'h', 'j', 'k', 'l', 'm', 'n']",5,0,False +directorates,"['d', 'i', '_', 'e', 'c', '_', 'o', '_', 'a', '_', 'e', '_']","['b', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p']",7,0,False +pyromaniacs,"['p', '_', '_', 'o', 'm', 'a', 'n', 'i', 'a', 'c', '_']","['b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'q']",8,0,False +looneyier,"['l', '_', '_', '_', 'e', '_', 'i', 'e', '_']","['a', 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'm']",4,0,False +flanges,"['f', 'l', 'a', 'n', 'g', 'e', '_']","['b', 'c', 'd', 'h', 'i', 'j', 'k', 'm', 'o', 'p']",6,0,False +recitations,"['_', 'e', 'c', 'i', '_', 'a', '_', 'i', 'o', 'n', '_']","['b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'p']",7,0,False +naive,"['_', 'a', 'i', '_', 'e']","['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm']",3,0,False +pouching,"['p', 'o', '_', 'c', 'h', 'i', 'n', 'g']","['a', 'b', 'd', 'e', 'f', 'j', 'k', 'l', 'm', 'q']",7,0,False +runoff,"['_', '_', '_', '_', 'f', 'f']","['a', 'b', 'c', 'd', 'e', 'g', 'h', 'i', 'j', 'k']",2,0,False +incremented,"['i', 'n', 'c', '_', 'e', 'm', 'e', 'n', '_', 'e', 'd']","['a', 'b', 'f', 'g', 'h', 'j', 'k', 'l', 'o', 'p']",9,0,False +metrics,"['m', 'e', '_', '_', 'i', 'c', '_']","['a', 'b', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'n']",4,0,False +matchbook,"['m', 'a', '_', 'c', 'h', 'b', 'o', 'o', 'k']","['d', 'e', 'f', 'g', 'i', 'j', 'l', 'n', 'p', 'q']",8,0,False +adder,"['a', 'd', 'd', 'e', '_']","['b', 'c', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm']",4,0,False +coating,"['c', 'o', 'a', '_', 'i', 'n', 'g']","['b', 'd', 'e', 'f', 'h', 'j', 'k', 'l', 'm', 'p']",6,0,False diff --git a/fixed_order.csv b/fixed_order.csv new file mode 100644 index 0000000..9feee14 --- /dev/null +++ b/fixed_order.csv @@ -0,0 +1,1001 @@ +target,discovered,wrong letters,number of hits,lives remaining,game won +gushed,"['_', 'u', 's', 'h', 'e', 'd']","['t', 'a', 'o', 'i', 'n', 'r', 'l', 'm', 'w', 'c']",5,0,False +marvels,"['m', 'a', 'r', '_', 'e', 'l', 's']","['t', 'o', 'i', 'h', 'n', 'd', 'u', 'w', 'c', 'y']",6,0,False +theist,"['t', 'h', 'e', 'i', 's', 't']","['a', 'o', 'n']",6,7,True +dislocated,"['d', 'i', 's', 'l', 'o', 'c', 'a', 't', 'e', 'd']","['h', 'n', 'r', 'u', 'm', 'w']",10,4,True +groans,"['_', 'r', 'o', 'a', 'n', 's']","['e', 't', 'i', 'h', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +nukes,"['n', 'u', '_', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'r', 'd', 'l', 'm', 'w']",4,0,False +meagerly,"['m', 'e', 'a', '_', 'e', 'r', 'l', '_']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'w', 'c']",6,0,False +mewling,"['m', 'e', 'w', 'l', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'c', 'y']",6,0,False +ageings,"['a', '_', 'e', 'i', 'n', '_', 's']","['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +showered,"['s', 'h', 'o', 'w', 'e', 'r', 'e', 'd']","['t', 'a', 'i', 'n', 'l', 'u', 'm']",8,3,True +explosiveness,"['e', '_', '_', 'l', 'o', 's', 'i', '_', 'e', 'n', 'e', 's', 's']","['t', 'a', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",10,0,False +flyswatter,"['f', 'l', 'y', 's', 'w', 'a', 't', 't', 'e', 'r']","['o', 'i', 'h', 'n', 'd', 'u', 'm', 'c']",10,2,True +lazy,"['l', 'a', '_', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u']",2,0,False +literacy,"['l', 'i', 't', 'e', 'r', 'a', 'c', 'y']","['o', 'h', 'n', 's', 'd', 'u', 'm', 'w']",8,2,True +changeovers,"['c', 'h', 'a', 'n', 'g', 'e', 'o', '_', 'e', 'r', 's']","['t', 'i', 'd', 'l', 'u', 'm', 'w', 'y', 'f', 'p']",10,0,False +bowers,"['_', 'o', 'w', 'e', 'r', 's']","['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'c']",5,0,False +strychnine,"['s', 't', 'r', 'y', 'c', 'h', 'n', 'i', 'n', 'e']","['a', 'o', 'd', 'l', 'u', 'm', 'w']",10,3,True +halting,"['h', 'a', 'l', 't', 'i', 'n', '_']","['e', 'o', 's', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",6,0,False +throat,"['t', 'h', 'r', 'o', 'a', 't']","['e', 'i', 'n', 's']",6,6,True +crazy,"['_', 'r', 'a', '_', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u']",2,0,False +hourglasses,"['h', 'o', 'u', 'r', 'g', 'l', 'a', 's', 's', 'e', 's']","['t', 'i', 'n', 'd', 'm', 'w', 'c', 'y', 'f']",11,1,True +unbiassed,"['u', 'n', '_', 'i', 'a', 's', 's', 'e', 'd']","['t', 'o', 'h', 'r', 'l', 'm', 'w', 'c', 'y', 'f']",8,0,False +snooping,"['s', 'n', 'o', 'o', '_', 'i', 'n', '_']","['e', 't', 'a', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +gradient,"['_', 'r', 'a', 'd', 'i', 'e', 'n', 't']","['o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",7,0,False +mourned,"['m', 'o', 'u', 'r', 'n', 'e', 'd']","['t', 'a', 'i', 'h', 's', 'l']",7,4,True +ingress,"['i', 'n', '_', 'r', 'e', 's', 's']","['t', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +desensitise,"['d', 'e', 's', 'e', 'n', 's', 'i', 't', 'i', 's', 'e']","['a', 'o', 'h', 'r']",11,6,True +histamines,"['h', 'i', 's', 't', 'a', 'm', 'i', 'n', 'e', 's']","['o', 'r', 'd', 'l', 'u']",10,5,True +extravagant,"['e', '_', 't', 'r', 'a', '_', 'a', '_', 'a', 'n', 't']","['o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c']",8,0,False +propagandists,"['p', 'r', 'o', 'p', 'a', 'g', 'a', 'n', 'd', 'i', 's', 't', 's']","['e', 'h', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",13,1,True +spiel,"['s', '_', 'i', 'e', 'l']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",4,0,False +dandiest,"['d', 'a', 'n', 'd', 'i', 'e', 's', 't']","['o', 'h', 'r']",8,7,True +retaliating,"['r', 'e', 't', 'a', 'l', 'i', 'a', 't', 'i', 'n', '_']","['o', 'h', 's', 'd', 'u', 'm', 'w', 'c', 'y', 'f']",10,0,False +tampering,"['t', 'a', 'm', '_', 'e', 'r', 'i', 'n', '_']","['o', 'h', 's', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",7,0,False +regent,"['r', 'e', '_', 'e', 'n', 't']","['a', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w']",5,0,False +obtain,"['o', '_', 't', 'a', 'i', 'n']","['e', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +pothooks,"['_', 'o', 't', 'h', 'o', 'o', '_', 's']","['e', 'a', 'i', 'n', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +innuendo,"['i', 'n', 'n', 'u', 'e', 'n', 'd', 'o']","['t', 'a', 'h', 's', 'r', 'l']",8,4,True +opiates,"['o', '_', 'i', 'a', 't', 'e', 's']","['h', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",6,0,False +mortifying,"['m', 'o', 'r', 't', 'i', 'f', 'y', 'i', 'n', 'g']","['e', 'a', 'h', 's', 'd', 'l', 'u', 'w', 'c']",10,1,True +foil,"['_', 'o', 'i', 'l']","['e', 't', 'a', 'h', 'n', 's', 'r', 'd', 'u', 'm']",3,0,False +faceting,"['_', 'a', 'c', 'e', 't', 'i', 'n', '_']","['o', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w', 'y']",6,0,False +antibody,"['a', 'n', 't', 'i', '_', 'o', 'd', 'y']","['e', 'h', 's', 'r', 'l', 'u', 'm', 'w', 'c', 'f']",7,0,False +retail,"['r', 'e', 't', 'a', 'i', 'l']","['o', 'h', 'n', 's', 'd']",6,5,True +ceramics,"['c', 'e', 'r', 'a', 'm', 'i', 'c', 's']","['t', 'o', 'h', 'n', 'd', 'l', 'u', 'w']",8,2,True +warty,"['_', 'a', 'r', 't', '_']","['e', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +gnus,"['_', 'n', 'u', 's']","['e', 't', 'a', 'o', 'i', 'h', 'r', 'd', 'l', 'm']",3,0,False +backwardness,"['_', 'a', 'c', '_', 'w', 'a', 'r', 'd', 'n', 'e', 's', 's']","['t', 'o', 'i', 'h', 'l', 'u', 'm', 'y', 'f', 'g']",10,0,False +mountaineering,"['m', 'o', 'u', 'n', 't', 'a', 'i', 'n', 'e', 'e', 'r', 'i', 'n', 'g']","['h', 's', 'd', 'l', 'w', 'c', 'y', 'f']",14,2,True +detour,"['d', 'e', 't', 'o', 'u', 'r']","['a', 'i', 'h', 'n', 's', 'l']",6,4,True +champed,"['c', 'h', 'a', 'm', '_', 'e', 'd']","['t', 'o', 'i', 'n', 's', 'r', 'l', 'u', 'w', 'y']",6,0,False +lucked,"['l', 'u', '_', '_', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'm', 'w']",4,0,False +prickling,"['_', 'r', 'i', '_', '_', 'l', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w']",5,0,False +gasses,"['_', 'a', 's', 's', 'e', 's']","['t', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",5,0,False +matins,"['m', 'a', 't', 'i', 'n', 's']","['e', 'o', 'h', 'r', 'd', 'l', 'u']",6,3,True +revamp,"['r', 'e', '_', 'a', 'm', '_']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'w']",4,0,False +spiriting,"['s', '_', 'i', 'r', 'i', 't', 'i', 'n', '_']","['e', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'c']",7,0,False +creaked,"['_', 'r', 'e', 'a', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 's', 'l', 'u', 'm', 'w']",5,0,False +afterlife,"['a', '_', 't', 'e', 'r', 'l', 'i', '_', 'e']","['o', 'h', 'n', 's', 'd', 'u', 'm', 'w', 'c', 'y']",7,0,False +buggies,"['_', 'u', '_', '_', 'i', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",4,0,False +initials,"['i', 'n', 'i', 't', 'i', 'a', 'l', 's']","['e', 'o', 'h', 'r', 'd']",8,5,True +nitwits,"['n', 'i', 't', 'w', 'i', 't', 's']","['e', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",7,1,True +tablecloths,"['t', 'a', '_', 'l', 'e', 'c', 'l', 'o', 't', 'h', 's']","['i', 'n', 'r', 'd', 'u', 'm', 'w', 'y', 'f', 'g']",10,0,False +grape,"['_', 'r', 'a', '_', 'e']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +epistolary,"['e', 'p', 'i', 's', 't', 'o', 'l', 'a', 'r', 'y']","['h', 'n', 'd', 'u', 'm', 'w', 'c', 'f', 'g']",10,1,True +find,"['_', 'i', 'n', 'd']","['e', 't', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'm']",3,0,False +battling,"['_', 'a', 't', 't', 'l', 'i', 'n', '_']","['e', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'c']",6,0,False +paternalism,"['p', 'a', 't', 'e', 'r', 'n', 'a', 'l', 'i', 's', 'm']","['o', 'h', 'd', 'u', 'w', 'c', 'y', 'f', 'g']",11,1,True +knotty,"['_', 'n', 'o', 't', 't', '_']","['e', 'a', 'i', 'h', 's', 'r', 'd', 'l', 'u', 'm']",4,0,False +subsidises,"['s', 'u', '_', 's', 'i', 'd', 'i', 's', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'r', 'l', 'm', 'w', 'c']",9,0,False +analysts,"['a', 'n', 'a', 'l', '_', 's', 't', 's']","['e', 'o', 'i', 'h', 'r', 'd', 'u', 'm', 'w', 'c']",7,0,False +sneeringly,"['s', 'n', 'e', 'e', 'r', 'i', 'n', '_', 'l', 'y']","['t', 'a', 'o', 'h', 'd', 'u', 'm', 'w', 'c', 'f']",9,0,False +commons,"['_', 'o', 'm', 'm', 'o', 'n', 's']","['e', 't', 'a', 'i', 'h', 'r', 'd', 'l', 'u', 'w']",6,0,False +maturity,"['m', 'a', 't', 'u', 'r', 'i', 't', 'y']","['e', 'o', 'h', 'n', 's', 'd', 'l', 'w', 'c']",8,1,True +imprimaturs,"['i', 'm', '_', 'r', 'i', 'm', 'a', 't', 'u', 'r', 's']","['e', 'o', 'h', 'n', 'd', 'l', 'w', 'c', 'y', 'f']",10,0,False +traitor,"['t', 'r', 'a', 'i', 't', 'o', 'r']","['e', 'h', 'n', 's']",7,6,True +inspection,"['i', 'n', 's', '_', 'e', 'c', 't', 'i', 'o', 'n']","['a', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",9,0,False +typo,"['t', '_', '_', 'o']","['e', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'l', 'u']",2,0,False +netting,"['n', 'e', 't', 't', 'i', 'n', '_']","['a', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +denatures,"['d', 'e', 'n', 'a', 't', 'u', 'r', 'e', 's']","['o', 'i', 'h', 'l']",9,6,True +odysseys,"['o', 'd', '_', 's', 's', 'e', '_', 's']","['t', 'a', 'i', 'h', 'n', 'r', 'l', 'u', 'm', 'w']",6,0,False +malting,"['m', 'a', 'l', 't', 'i', 'n', '_']","['e', 'o', 'h', 's', 'r', 'd', 'u', 'w', 'c', 'y']",6,0,False +mammal,"['_', 'a', '_', '_', 'a', 'l']","['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u']",3,0,False +biweeklies,"['_', 'i', 'w', 'e', 'e', '_', 'l', 'i', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'c']",8,0,False +sectional,"['s', 'e', 'c', 't', 'i', 'o', 'n', 'a', 'l']","['h', 'r', 'd', 'u', 'm', 'w']",9,4,True +twists,"['t', '_', 'i', 's', 't', 's']","['e', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",5,0,False +fester,"['_', 'e', 's', 't', 'e', 'r']","['a', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",5,0,False +ensnared,"['e', 'n', 's', 'n', 'a', 'r', 'e', 'd']","['t', 'o', 'i', 'h']",8,6,True +soberly,"['s', 'o', '_', 'e', 'r', 'l', '_']","['t', 'a', 'i', 'h', 'n', 'd', 'u', 'm', 'w', 'c']",5,0,False +concurred,"['c', 'o', 'n', 'c', 'u', 'r', 'r', 'e', 'd']","['t', 'a', 'i', 'h', 's', 'l', 'm', 'w']",9,2,True +pedestals,"['_', 'e', 'd', 'e', 's', 't', 'a', 'l', 's']","['o', 'i', 'h', 'n', 'r', 'u', 'm', 'w', 'c', 'y']",8,0,False +exhibitions,"['e', '_', 'h', 'i', '_', 'i', 't', 'i', 'o', 'n', 's']","['a', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +honors,"['h', 'o', 'n', 'o', 'r', 's']","['e', 't', 'a', 'i']",6,6,True +tunes,"['t', 'u', 'n', 'e', 's']","['a', 'o', 'i', 'h', 'r', 'd', 'l']",5,3,True +exclusivity,"['e', '_', 'c', 'l', 'u', 's', 'i', '_', 'i', 't', 'y']","['a', 'o', 'h', 'n', 'r', 'd', 'm', 'w', 'f', 'g']",9,0,False +caretakers,"['c', 'a', 'r', 'e', 't', 'a', '_', 'e', 'r', 's']","['o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'y']",9,0,False +cerebrum,"['_', 'e', 'r', 'e', '_', 'r', 'u', 'm']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'w']",6,0,False +queasy,"['_', 'u', 'e', 'a', 's', '_']","['t', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",4,0,False +islet,"['i', 's', 'l', 'e', 't']","['a', 'o', 'h', 'n', 'r', 'd']",5,4,True +kneeling,"['_', 'n', 'e', 'e', 'l', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w']",6,0,False +sanders,"['s', 'a', 'n', 'd', 'e', 'r', 's']","['t', 'o', 'i', 'h']",7,6,True +sipped,"['s', 'i', '_', '_', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 'r', 'l', 'u', 'm', 'w']",4,0,False +biannual,"['_', 'i', 'a', 'n', 'n', 'u', 'a', 'l']","['e', 't', 'o', 'h', 's', 'r', 'd', 'm', 'w', 'c']",7,0,False +lavenders,"['l', 'a', '_', 'e', 'n', 'd', 'e', 'r', 's']","['t', 'o', 'i', 'h', 'u', 'm', 'w', 'c', 'y', 'f']",8,0,False +tatters,"['t', 'a', 't', 't', 'e', 'r', 's']","['o', 'i', 'h', 'n']",7,6,True +prepaying,"['_', 'r', 'e', '_', 'a', '_', 'i', 'n', '_']","['t', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +junket,"['_', 'u', 'n', '_', 'e', 't']","['a', 'o', 'i', 'h', 's', 'r', 'd', 'l', 'm', 'w']",4,0,False +seeped,"['s', 'e', 'e', '_', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'l', 'u', 'm']",5,0,False +scummiest,"['s', 'c', 'u', 'm', 'm', 'i', 'e', 's', 't']","['a', 'o', 'h', 'n', 'r', 'd', 'l', 'w']",9,2,True +formulations,"['f', 'o', 'r', 'm', 'u', 'l', 'a', 't', 'i', 'o', 'n', 's']","['e', 'h', 'd', 'w', 'c', 'y']",12,4,True +refinances,"['r', 'e', 'f', 'i', 'n', 'a', 'n', 'c', 'e', 's']","['t', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'y']",10,1,True +furnaces,"['f', 'u', 'r', 'n', 'a', 'c', 'e', 's']","['t', 'o', 'i', 'h', 'd', 'l', 'm', 'w', 'y']",8,1,True +servicemen,"['s', 'e', 'r', '_', 'i', 'c', 'e', 'm', 'e', 'n']","['t', 'a', 'o', 'h', 'd', 'l', 'u', 'w', 'y', 'f']",9,0,False +digestions,"['d', 'i', '_', 'e', 's', 't', 'i', 'o', 'n', 's']","['a', 'h', 'r', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +inebriating,"['i', 'n', 'e', '_', 'r', 'i', 'a', 't', 'i', 'n', '_']","['o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +chapping,"['_', 'h', 'a', '_', '_', 'i', 'n', '_']","['e', 't', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'w']",4,0,False +stalest,"['s', 't', 'a', 'l', 'e', 's', 't']","['o', 'i', 'h', 'n', 'r', 'd']",7,4,True +bonanzas,"['_', 'o', 'n', 'a', 'n', '_', 'a', 's']","['e', 't', 'i', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +misinformed,"['m', 'i', 's', 'i', 'n', 'f', 'o', 'r', 'm', 'e', 'd']","['t', 'a', 'h', 'l', 'u', 'w', 'c', 'y']",11,2,True +terrors,"['t', 'e', 'r', 'r', 'o', 'r', 's']","['a', 'i', 'h', 'n']",7,6,True +garbanzos,"['_', 'a', 'r', '_', 'a', 'n', '_', 'o', 's']","['e', 't', 'i', 'h', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +clampdown,"['c', 'l', 'a', 'm', '_', 'd', 'o', 'w', 'n']","['e', 't', 'i', 'h', 's', 'r', 'u', 'y', 'f', 'g']",8,0,False +outstretching,"['o', 'u', 't', 's', 't', 'r', 'e', 't', 'c', 'h', 'i', 'n', 'g']","['a', 'd', 'l', 'm', 'w', 'y', 'f']",13,3,True +boxcars,"['_', 'o', '_', '_', 'a', 'r', 's']","['e', 't', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",4,0,False +consul,"['c', 'o', 'n', 's', 'u', 'l']","['e', 't', 'a', 'i', 'h', 'r', 'd', 'm', 'w']",6,1,True +ripped,"['r', 'i', '_', '_', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 's', 'l', 'u', 'm', 'w']",4,0,False +majesties,"['m', 'a', '_', 'e', 's', 't', 'i', 'e', 's']","['o', 'h', 'n', 'r', 'd', 'l', 'u', 'w', 'c', 'y']",8,0,False +effervesces,"['e', '_', '_', 'e', 'r', '_', 'e', 's', '_', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm']",7,0,False +tray,"['t', 'r', 'a', '_']","['e', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +screwdriver,"['s', 'c', 'r', 'e', 'w', 'd', 'r', 'i', '_', 'e', 'r']","['t', 'a', 'o', 'h', 'n', 'l', 'u', 'm', 'y', 'f']",10,0,False +megabytes,"['m', 'e', '_', 'a', '_', '_', 't', 'e', 's']","['o', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'w', 'c']",6,0,False +tapping,"['t', 'a', '_', '_', 'i', 'n', '_']","['e', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w']",4,0,False +hillocks,"['h', 'i', 'l', 'l', 'o', 'c', '_', 's']","['e', 't', 'a', 'n', 'r', 'd', 'u', 'm', 'w', 'y']",7,0,False +reflector,"['r', 'e', '_', 'l', 'e', 'c', 't', 'o', 'r']","['a', 'i', 'h', 'n', 's', 'd', 'u', 'm', 'w', 'y']",8,0,False +jelly,"['_', 'e', 'l', 'l', '_']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u']",3,0,False +rafter,"['r', 'a', '_', 't', 'e', 'r']","['o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm', 'w']",5,0,False +creaminess,"['c', 'r', 'e', 'a', 'm', 'i', 'n', 'e', 's', 's']","['t', 'o', 'h', 'd', 'l', 'u', 'w']",10,3,True +numerators,"['n', 'u', 'm', 'e', 'r', 'a', 't', 'o', 'r', 's']","['i', 'h', 'd', 'l']",10,6,True +meddled,"['m', 'e', 'd', 'd', 'l', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'u']",7,1,True +tortilla,"['t', 'o', 'r', 't', 'i', 'l', 'l', 'a']","['e', 'h', 'n', 's', 'd']",8,5,True +fuss,"['_', '_', 's', 's']","['e', 't', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'l']",2,0,False +hosanna,"['h', 'o', 's', 'a', 'n', 'n', 'a']","['e', 't', 'i']",7,7,True +handpicked,"['h', 'a', 'n', 'd', '_', 'i', 'c', '_', 'e', 'd']","['t', 'o', 's', 'r', 'l', 'u', 'm', 'w', 'y', 'f']",8,0,False +cedillas,"['c', 'e', 'd', 'i', 'l', 'l', 'a', 's']","['t', 'o', 'h', 'n', 'r', 'u', 'm', 'w']",8,2,True +wrinkling,"['w', 'r', 'i', 'n', '_', 'l', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'c']",7,0,False +cereal,"['_', 'e', 'r', 'e', 'a', 'l']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'm', 'w']",5,0,False +foray,"['_', 'o', 'r', 'a', '_']","['e', 't', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +nationality,"['n', 'a', 't', 'i', 'o', 'n', 'a', 'l', 'i', 't', 'y']","['e', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'c']",11,1,True +prostitute,"['_', 'r', 'o', 's', 't', 'i', 't', 'u', 't', 'e']","['a', 'h', 'n', 'd', 'l', 'm', 'w', 'c', 'y', 'f']",9,0,False +corruptest,"['c', 'o', 'r', 'r', 'u', '_', 't', 'e', 's', 't']","['a', 'i', 'h', 'n', 'd', 'l', 'm', 'w', 'y', 'f']",9,0,False +honed,"['h', 'o', 'n', 'e', 'd']","['t', 'a', 'i', 's', 'r']",5,5,True +incapacitate,"['i', 'n', 'c', 'a', '_', 'a', 'c', 'i', 't', 'a', 't', 'e']","['o', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w', 'y']",11,0,False +unquoting,"['u', 'n', '_', 'u', 'o', 't', 'i', 'n', '_']","['e', 'a', 'h', 's', 'r', 'd', 'l', 'm', 'w', 'c']",7,0,False +succours,"['s', 'u', '_', '_', 'o', 'u', 'r', 's']","['e', 't', 'a', 'i', 'h', 'n', 'd', 'l', 'm', 'w']",6,0,False +nitrogenous,"['n', 'i', 't', 'r', 'o', 'g', 'e', 'n', 'o', 'u', 's']","['a', 'h', 'd', 'l', 'm', 'w', 'c', 'y', 'f']",11,1,True +roadway,"['r', 'o', 'a', 'd', 'w', 'a', '_']","['e', 't', 'i', 'h', 'n', 's', 'l', 'u', 'm', 'c']",6,0,False +zips,"['_', 'i', '_', 's']","['e', 't', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'u']",2,0,False +carboy,"['_', 'a', 'r', '_', 'o', '_']","['e', 't', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +brooking,"['_', 'r', 'o', 'o', '_', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'd', 'l', 'u', 'm', 'w']",5,0,False +getaway,"['_', 'e', 't', 'a', '_', 'a', '_']","['o', 'i', 'h', 'n', 's', 'r', 'd', 'l', 'u', 'm']",4,0,False +overestimate,"['o', '_', 'e', 'r', 'e', 's', 't', 'i', 'm', 'a', 't', 'e']","['h', 'n', 'd', 'l', 'u', 'w', 'c', 'y', 'f', 'g']",11,0,False +revelation,"['r', 'e', '_', 'e', 'l', 'a', 't', 'i', 'o', 'n']","['h', 's', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g']",9,0,False +timider,"['t', 'i', 'm', 'i', 'd', 'e', 'r']","['a', 'o', 'h', 'n', 's', 'l', 'u']",7,3,True +diction,"['d', 'i', 'c', 't', 'i', 'o', 'n']","['e', 'a', 'h', 's', 'r', 'l', 'u', 'm', 'w']",7,1,True +socking,"['s', 'o', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",4,0,False +suffocates,"['s', 'u', 'f', 'f', 'o', 'c', 'a', 't', 'e', 's']","['i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'y']",10,1,True +oviducts,"['o', '_', 'i', 'd', 'u', 'c', 't', 's']","['e', 'a', 'h', 'n', 'r', 'l', 'm', 'w', 'y', 'f']",7,0,False +chickweed,"['c', 'h', 'i', 'c', '_', 'w', 'e', 'e', 'd']","['t', 'a', 'o', 'n', 's', 'r', 'l', 'u', 'm', 'y']",8,0,False +discountenances,"['d', 'i', 's', 'c', 'o', 'u', 'n', 't', 'e', 'n', 'a', 'n', 'c', 'e', 's']","['h', 'r', 'l', 'm', 'w']",15,5,True +baited,"['_', 'a', 'i', 't', 'e', 'd']","['o', 'h', 'n', 's', 'r', 'l', 'u', 'm', 'w', 'c']",5,0,False +bombarded,"['_', 'o', 'm', '_', 'a', 'r', 'd', 'e', 'd']","['t', 'i', 'h', 'n', 's', 'l', 'u', 'w', 'c', 'y']",7,0,False +canvasing,"['_', 'a', 'n', '_', 'a', 's', 'i', 'n', '_']","['e', 't', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +queened,"['_', 'u', 'e', 'e', 'n', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 's', 'r', 'l', 'm', 'w']",6,0,False +savvied,"['s', 'a', '_', '_', 'i', 'e', 'd']","['t', 'o', 'h', 'n', 'r', 'l', 'u', 'm', 'w', 'c']",5,0,False +overemphasised,"['o', '_', 'e', 'r', 'e', 'm', 'p', 'h', 'a', 's', 'i', 's', 'e', 'd']","['t', 'n', 'l', 'u', 'w', 'c', 'y', 'f', 'g', 'b']",13,0,False +zirconium,"['_', 'i', 'r', 'c', 'o', 'n', 'i', 'u', 'm']","['e', 't', 'a', 'h', 's', 'd', 'l', 'w', 'y', 'f']",8,0,False +inflexions,"['i', 'n', '_', 'l', 'e', '_', 'i', 'o', 'n', 's']","['t', 'a', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",8,0,False +glimmers,"['_', 'l', 'i', 'm', 'm', 'e', 'r', 's']","['t', 'a', 'o', 'h', 'n', 'd', 'u', 'w', 'c', 'y']",7,0,False +pretentiously,"['p', 'r', 'e', 't', 'e', 'n', 't', 'i', 'o', 'u', 's', 'l', 'y']","['a', 'h', 'd', 'm', 'w', 'c', 'f', 'g']",13,2,True +wiz,"['_', 'i', '_']","['e', 't', 'a', 'o', 'h', 'n', 's', 'r', 'd', 'l']",1,0,False +czarina,"['_', '_', 'a', 'r', 'i', 'n', 'a']","['e', 't', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w']",5,0,False +hounded,"['h', 'o', 'u', 'n', 'd', 'e', 'd']","['t', 'a', 'i', 's', 'r', 'l']",7,4,True +domineered,"['d', 'o', 'm', 'i', 'n', 'e', 'e', 'r', 'e', 'd']","['t', 'a', 'h', 's', 'l', 'u']",10,4,True +uncomfortably,"['u', 'n', 'c', 'o', 'm', 'f', 'o', 'r', 't', 'a', 'b', 'l', 'y']","['e', 'i', 'h', 's', 'd', 'w', 'g', 'p']",13,2,True +interpretation,"['i', 'n', 't', 'e', 'r', '_', 'r', 'e', 't', 'a', 't', 'i', 'o', 'n']","['h', 's', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",13,0,False +sidewall,"['s', 'i', 'd', 'e', 'w', 'a', 'l', 'l']","['t', 'o', 'h', 'n', 'r', 'u', 'm']",8,3,True +homeroom,"['h', 'o', 'm', 'e', 'r', 'o', 'o', 'm']","['t', 'a', 'i', 'n', 's', 'd', 'l', 'u']",8,2,True +spoken,"['s', '_', 'o', '_', 'e', 'n']","['t', 'a', 'i', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",4,0,False +liquoring,"['l', 'i', '_', 'u', 'o', 'r', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'd', 'm', 'w', 'c', 'y']",7,0,False +texture,"['t', 'e', '_', 't', 'u', 'r', 'e']","['a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm', 'w']",6,0,False +inefficiently,"['i', 'n', 'e', 'f', 'f', 'i', 'c', 'i', 'e', 'n', 't', 'l', 'y']","['a', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w']",13,1,True +backed,"['_', 'a', '_', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 's', 'r', 'l', 'u', 'm']",3,0,False +anthropomorphism,"['a', 'n', 't', 'h', 'r', 'o', 'p', 'o', 'm', 'o', 'r', 'p', 'h', 'i', 's', 'm']","['e', 'd', 'l', 'u', 'w', 'c', 'y', 'f', 'g']",16,1,True +suavest,"['s', 'u', 'a', '_', 'e', 's', 't']","['o', 'i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c']",6,0,False +kingpins,"['_', 'i', 'n', '_', '_', 'i', 'n', 's']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",5,0,False +jello,"['_', 'e', 'l', 'l', 'o']","['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', 'm']",4,0,False +ambassadorship,"['a', 'm', '_', 'a', 's', 's', 'a', 'd', 'o', 'r', 's', 'h', 'i', '_']","['e', 't', 'n', 'l', 'u', 'w', 'c', 'y', 'f', 'g']",12,0,False +imperially,"['i', 'm', '_', 'e', 'r', 'i', 'a', 'l', 'l', 'y']","['t', 'o', 'h', 'n', 's', 'd', 'u', 'w', 'c', 'f']",9,0,False +special,"['s', '_', 'e', 'c', 'i', 'a', 'l']","['t', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'y']",6,0,False +burglarises,"['_', 'u', 'r', '_', 'l', 'a', 'r', 'i', 's', 'e', 's']","['t', 'o', 'h', 'n', 'd', 'm', 'w', 'c', 'y', 'f']",9,0,False +zincs,"['_', 'i', 'n', '_', 's']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",3,0,False +balanced,"['_', 'a', 'l', 'a', 'n', 'c', 'e', 'd']","['t', 'o', 'i', 'h', 's', 'r', 'u', 'm', 'w', 'y']",7,0,False +reassembling,"['r', 'e', 'a', 's', 's', 'e', 'm', '_', 'l', 'i', 'n', 'g']","['t', 'o', 'h', 'd', 'u', 'w', 'c', 'y', 'f', 'p']",11,0,False +damson,"['d', 'a', 'm', 's', 'o', 'n']","['e', 't', 'i', 'h', 'r', 'l', 'u']",6,3,True +individualist,"['i', 'n', 'd', 'i', '_', 'i', 'd', 'u', 'a', 'l', 'i', 's', 't']","['e', 'o', 'h', 'r', 'm', 'w', 'c', 'y', 'f', 'g']",12,0,False +chatterer,"['c', 'h', 'a', 't', 't', 'e', 'r', 'e', 'r']","['o', 'i', 'n', 's', 'd', 'l', 'u', 'm', 'w']",9,1,True +kinematics,"['_', 'i', 'n', 'e', 'm', 'a', 't', 'i', 'c', 's']","['o', 'h', 'r', 'd', 'l', 'u', 'w', 'y', 'f', 'g']",9,0,False +collarbones,"['c', 'o', 'l', 'l', 'a', 'r', '_', 'o', 'n', 'e', 's']","['t', 'i', 'h', 'd', 'u', 'm', 'w', 'y', 'f', 'g']",10,0,False +decelerating,"['d', 'e', 'c', 'e', 'l', 'e', 'r', 'a', 't', 'i', 'n', 'g']","['o', 'h', 's', 'u', 'm', 'w', 'y', 'f']",12,2,True +illegibly,"['i', 'l', 'l', 'e', '_', 'i', '_', 'l', '_']","['t', 'a', 'o', 'h', 'n', 's', 'r', 'd', 'u', 'm']",6,0,False +craze,"['_', 'r', 'a', '_', 'e']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +solicitude,"['s', 'o', 'l', 'i', 'c', 'i', 't', 'u', 'd', 'e']","['a', 'h', 'n', 'r', 'm', 'w']",10,4,True +dissipates,"['d', 'i', 's', 's', 'i', '_', 'a', 't', 'e', 's']","['o', 'h', 'n', 'r', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +mutinies,"['m', 'u', 't', 'i', 'n', 'i', 'e', 's']","['a', 'o', 'h', 'r', 'd', 'l']",8,4,True +hikers,"['h', 'i', '_', 'e', 'r', 's']","['t', 'a', 'o', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +rediscovery,"['r', 'e', 'd', 'i', 's', 'c', 'o', '_', 'e', 'r', 'y']","['t', 'a', 'h', 'n', 'l', 'u', 'm', 'w', 'f', 'g']",10,0,False +probably,"['_', 'r', 'o', '_', 'a', '_', 'l', '_']","['e', 't', 'i', 'h', 'n', 's', 'd', 'u', 'm', 'w']",4,0,False +hastened,"['h', 'a', 's', 't', 'e', 'n', 'e', 'd']","['o', 'i', 'r']",8,7,True +whodunnit,"['w', 'h', 'o', 'd', 'u', 'n', 'n', 'i', 't']","['e', 'a', 's', 'r', 'l', 'm']",9,4,True +bagginess,"['_', 'a', '_', '_', 'i', 'n', 'e', 's', 's']","['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +pokeys,"['_', 'o', '_', 'e', '_', 's']","['t', 'a', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",3,0,False +arithmetically,"['a', 'r', 'i', 't', 'h', 'm', 'e', 't', 'i', 'c', 'a', 'l', 'l', 'y']","['o', 'n', 's', 'd', 'u', 'w']",14,4,True +preshrunk,"['_', 'r', 'e', 's', 'h', 'r', 'u', 'n', '_']","['t', 'a', 'o', 'i', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +laminates,"['l', 'a', 'm', 'i', 'n', 'a', 't', 'e', 's']","['o', 'h', 'r', 'd', 'u']",9,5,True +camp,"['_', 'a', '_', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'l']",1,0,False +cheer,"['_', 'h', 'e', 'e', 'r']","['t', 'a', 'o', 'i', 'n', 's', 'd', 'l', 'u', 'm']",4,0,False +portrayed,"['_', 'o', 'r', 't', 'r', 'a', 'y', 'e', 'd']","['i', 'h', 'n', 's', 'l', 'u', 'm', 'w', 'c', 'f']",8,0,False +nefarious,"['n', 'e', 'f', 'a', 'r', 'i', 'o', 'u', 's']","['t', 'h', 'd', 'l', 'm', 'w', 'c', 'y']",9,2,True +killdeers,"['_', 'i', 'l', 'l', 'd', 'e', 'e', 'r', 's']","['t', 'a', 'o', 'h', 'n', 'u', 'm', 'w', 'c', 'y']",8,0,False +pantheons,"['_', 'a', 'n', 't', 'h', 'e', 'o', 'n', 's']","['i', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",8,0,False +orderlies,"['o', 'r', 'd', 'e', 'r', 'l', 'i', 'e', 's']","['t', 'a', 'h', 'n']",9,6,True +chinos,"['c', 'h', 'i', 'n', 'o', 's']","['e', 't', 'a', 'r', 'd', 'l', 'u', 'm', 'w']",6,1,True +neuter,"['n', 'e', 'u', 't', 'e', 'r']","['a', 'o', 'i', 'h', 's', 'd', 'l']",6,3,True +gastronomic,"['g', 'a', 's', 't', 'r', 'o', 'n', 'o', 'm', 'i', 'c']","['e', 'h', 'd', 'l', 'u', 'w', 'y', 'f']",11,2,True +halve,"['h', 'a', 'l', '_', 'e']","['t', 'o', 'i', 'n', 's', 'r', 'd', 'u', 'm', 'w']",4,0,False +cupola,"['_', 'u', '_', 'o', 'l', 'a']","['e', 't', 'i', 'h', 'n', 's', 'r', 'd', 'm', 'w']",4,0,False +peddling,"['_', 'e', 'd', 'd', 'l', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'r', 'u', 'm', 'w', 'c']",6,0,False +ridging,"['r', 'i', 'd', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'l', 'u', 'm', 'w']",5,0,False +erupts,"['e', 'r', 'u', '_', 't', 's']","['a', 'o', 'i', 'h', 'n', 'd', 'l', 'm', 'w', 'c']",5,0,False +separable,"['s', 'e', '_', 'a', 'r', 'a', '_', 'l', 'e']","['t', 'o', 'i', 'h', 'n', 'd', 'u', 'm', 'w', 'c']",7,0,False +missives,"['m', 'i', 's', 's', 'i', '_', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'w']",7,0,False +gusset,"['_', 'u', 's', 's', 'e', 't']","['a', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",5,0,False +nitwits,"['n', 'i', 't', 'w', 'i', 't', 's']","['e', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",7,1,True +pronounces,"['_', 'r', 'o', 'n', 'o', 'u', 'n', 'c', 'e', 's']","['t', 'a', 'i', 'h', 'd', 'l', 'm', 'w', 'y', 'f']",9,0,False +satirised,"['s', 'a', 't', 'i', 'r', 'i', 's', 'e', 'd']","['o', 'h', 'n']",9,7,True +spindliest,"['s', '_', 'i', 'n', 'd', 'l', 'i', 'e', 's', 't']","['a', 'o', 'h', 'r', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +eagerness,"['e', 'a', '_', 'e', 'r', 'n', 'e', 's', 's']","['t', 'o', 'i', 'h', 'd', 'l', 'u', 'm', 'w', 'c']",8,0,False +fully,"['_', '_', '_', '_', '_']","['e', 't', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'd']",0,0,False +democratised,"['d', 'e', 'm', 'o', 'c', 'r', 'a', 't', 'i', 's', 'e', 'd']","['h', 'n', 'l', 'u', 'w']",12,5,True +penology,"['_', 'e', 'n', 'o', 'l', 'o', '_', '_']","['t', 'a', 'i', 'h', 's', 'r', 'd', 'u', 'm', 'w']",5,0,False +balsam,"['_', 'a', 'l', 's', 'a', 'm']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'w']",5,0,False +legging,"['l', 'e', '_', '_', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w']",4,0,False +unselfishly,"['u', 'n', 's', 'e', 'l', 'f', 'i', 's', 'h', 'l', 'y']","['t', 'a', 'o', 'r', 'd', 'm', 'w', 'c']",11,2,True +cavils,"['_', 'a', '_', 'i', 'l', 's']","['e', 't', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",4,0,False +descry,"['d', 'e', 's', '_', 'r', '_']","['t', 'a', 'o', 'i', 'h', 'n', 'l', 'u', 'm', 'w']",4,0,False +flexibly,"['_', 'l', 'e', '_', 'i', '_', 'l', '_']","['t', 'a', 'o', 'h', 'n', 's', 'r', 'd', 'u', 'm']",4,0,False +birdie,"['_', 'i', 'r', 'd', 'i', 'e']","['t', 'a', 'o', 'h', 'n', 's', 'l', 'u', 'm', 'w']",5,0,False +namesake,"['n', 'a', 'm', 'e', 's', 'a', '_', 'e']","['t', 'o', 'i', 'h', 'r', 'd', 'l', 'u', 'w', 'c']",7,0,False +corrugations,"['c', 'o', 'r', 'r', 'u', 'g', 'a', 't', 'i', 'o', 'n', 's']","['e', 'h', 'd', 'l', 'm', 'w', 'y', 'f']",12,2,True +haemorrhaging,"['h', 'a', 'e', 'm', 'o', 'r', 'r', 'h', 'a', 'g', 'i', 'n', 'g']","['t', 's', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",13,1,True +slot,"['s', 'l', 'o', 't']","['e', 'a', 'i', 'h', 'n', 'r', 'd']",4,3,True +doting,"['d', 'o', 't', 'i', 'n', '_']","['e', 'a', 'h', 's', 'r', 'l', 'u', 'm', 'w', 'c']",5,0,False +translations,"['t', 'r', 'a', 'n', 's', 'l', 'a', 't', 'i', 'o', 'n', 's']","['e', 'h', 'd']",12,7,True +shortbread,"['s', 'h', 'o', 'r', 't', '_', 'r', 'e', 'a', 'd']","['i', 'n', 'l', 'u', 'm', 'w', 'c', 'y', 'f', 'g']",9,0,False +unison,"['u', 'n', 'i', 's', 'o', 'n']","['e', 't', 'a', 'h', 'r', 'd', 'l']",6,3,True +yearbooks,"['_', 'e', 'a', 'r', '_', 'o', 'o', '_', 's']","['t', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +referring,"['r', 'e', '_', 'e', 'r', 'r', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w']",7,0,False +woo,"['_', 'o', 'o']","['e', 't', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'l']",2,0,False +storeroom,"['s', 't', 'o', 'r', 'e', 'r', 'o', 'o', 'm']","['a', 'i', 'h', 'n', 'd', 'l', 'u']",9,3,True +cogitates,"['c', 'o', '_', 'i', 't', 'a', 't', 'e', 's']","['h', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",8,0,False +fungicides,"['f', 'u', 'n', 'g', 'i', 'c', 'i', 'd', 'e', 's']","['t', 'a', 'o', 'h', 'r', 'l', 'm', 'w', 'y']",10,1,True +leaseholds,"['l', 'e', 'a', 's', 'e', 'h', 'o', 'l', 'd', 's']","['t', 'i', 'n', 'r']",10,6,True +snuggled,"['s', 'n', 'u', '_', '_', 'l', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 'r', 'm', 'w', 'c', 'y']",6,0,False +limitless,"['l', 'i', 'm', 'i', 't', 'l', 'e', 's', 's']","['a', 'o', 'h', 'n', 'r', 'd', 'u']",9,3,True +petard,"['_', 'e', 't', 'a', 'r', 'd']","['o', 'i', 'h', 'n', 's', 'l', 'u', 'm', 'w', 'c']",5,0,False +grilling,"['_', 'r', 'i', 'l', 'l', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w']",6,0,False +authenticates,"['a', 'u', 't', 'h', 'e', 'n', 't', 'i', 'c', 'a', 't', 'e', 's']","['o', 'r', 'd', 'l', 'm', 'w']",13,4,True +mopped,"['m', 'o', '_', '_', 'e', 'd']","['t', 'a', 'i', 'h', 'n', 's', 'r', 'l', 'u', 'w']",4,0,False +lawsuit,"['l', 'a', 'w', 's', 'u', 'i', 't']","['e', 'o', 'h', 'n', 'r', 'd', 'm']",7,3,True +persuasiveness,"['_', 'e', 'r', 's', 'u', 'a', 's', 'i', '_', 'e', 'n', 'e', 's', 's']","['t', 'o', 'h', 'd', 'l', 'm', 'w', 'c', 'y', 'f']",12,0,False +announcing,"['a', 'n', 'n', 'o', 'u', 'n', 'c', 'i', 'n', '_']","['e', 't', 'h', 's', 'r', 'd', 'l', 'm', 'w', 'y']",9,0,False +submerses,"['s', 'u', '_', 'm', 'e', 'r', 's', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'w', 'c']",8,0,False +billings,"['_', 'i', 'l', 'l', 'i', 'n', '_', 's']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'u', 'm', 'w']",6,0,False +intrusting,"['i', 'n', 't', 'r', 'u', 's', 't', 'i', 'n', '_']","['e', 'a', 'o', 'h', 'd', 'l', 'm', 'w', 'c', 'y']",9,0,False +jeweller,"['_', 'e', '_', 'e', 'l', 'l', 'e', 'r']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'm']",6,0,False +pedagogical,"['_', 'e', 'd', 'a', '_', 'o', '_', 'i', 'c', 'a', 'l']","['t', 'h', 'n', 's', 'r', 'u', 'm', 'w', 'y', 'f']",8,0,False +shipwreck,"['s', 'h', 'i', '_', 'w', 'r', 'e', 'c', '_']","['t', 'a', 'o', 'n', 'd', 'l', 'u', 'm', 'y', 'f']",7,0,False +mistimed,"['m', 'i', 's', 't', 'i', 'm', 'e', 'd']","['a', 'o', 'h', 'n', 'r', 'l', 'u']",8,3,True +sailboats,"['s', 'a', 'i', 'l', '_', 'o', 'a', 't', 's']","['e', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",8,0,False +organisational,"['o', 'r', 'g', 'a', 'n', 'i', 's', 'a', 't', 'i', 'o', 'n', 'a', 'l']","['e', 'h', 'd', 'u', 'm', 'w', 'c', 'y', 'f']",14,1,True +deeps,"['d', 'e', 'e', '_', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'l', 'u', 'm']",4,0,False +blinkers,"['_', 'l', 'i', 'n', '_', 'e', 'r', 's']","['t', 'a', 'o', 'h', 'd', 'u', 'm', 'w', 'c', 'y']",6,0,False +emollient,"['e', 'm', 'o', 'l', 'l', 'i', 'e', 'n', 't']","['a', 'h', 's', 'r', 'd', 'u']",9,4,True +outweighing,"['o', 'u', 't', 'w', 'e', 'i', 'g', 'h', 'i', 'n', 'g']","['a', 's', 'r', 'd', 'l', 'm', 'c', 'y', 'f']",11,1,True +manslaughter,"['m', 'a', 'n', 's', 'l', 'a', 'u', 'g', 'h', 't', 'e', 'r']","['o', 'i', 'd', 'w', 'c', 'y', 'f']",12,3,True +autonomously,"['a', 'u', 't', 'o', 'n', 'o', 'm', 'o', 'u', 's', 'l', 'y']","['e', 'i', 'h', 'r', 'd', 'w', 'c']",12,3,True +slosh,"['s', 'l', 'o', 's', 'h']","['e', 't', 'a', 'i', 'n', 'r', 'd']",5,3,True +blah,"['_', 'l', 'a', 'h']","['e', 't', 'o', 'i', 'n', 's', 'r', 'd', 'u', 'm']",3,0,False +bloodies,"['_', 'l', 'o', 'o', 'd', 'i', 'e', 's']","['t', 'a', 'h', 'n', 'r', 'u', 'm', 'w', 'c', 'y']",7,0,False +intercollegiate,"['i', 'n', 't', 'e', 'r', 'c', 'o', 'l', 'l', 'e', 'g', 'i', 'a', 't', 'e']","['h', 's', 'd', 'u', 'm', 'w', 'y', 'f']",15,2,True +hole,"['h', 'o', 'l', 'e']","['t', 'a', 'i', 'n', 's', 'r', 'd']",4,3,True +humidity,"['h', 'u', 'm', 'i', 'd', 'i', 't', 'y']","['e', 'a', 'o', 'n', 's', 'r', 'l', 'w', 'c']",8,1,True +kingdom,"['_', 'i', 'n', '_', 'd', 'o', 'm']","['e', 't', 'a', 'h', 's', 'r', 'l', 'u', 'w', 'c']",5,0,False +balloonist,"['_', 'a', 'l', 'l', 'o', 'o', 'n', 'i', 's', 't']","['e', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +expounded,"['e', '_', '_', 'o', 'u', 'n', 'd', 'e', 'd']","['t', 'a', 'i', 'h', 's', 'r', 'l', 'm', 'w', 'c']",7,0,False +corned,"['c', 'o', 'r', 'n', 'e', 'd']","['t', 'a', 'i', 'h', 's', 'l', 'u', 'm', 'w']",6,1,True +deceiver,"['d', 'e', '_', 'e', 'i', '_', 'e', 'r']","['t', 'a', 'o', 'h', 'n', 's', 'l', 'u', 'm', 'w']",6,0,False +lyceums,"['l', 'y', 'c', 'e', 'u', 'm', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'w']",7,1,True +logjams,"['l', 'o', '_', '_', 'a', 'm', 's']","['e', 't', 'i', 'h', 'n', 'r', 'd', 'u', 'w', 'c']",5,0,False +commandoes,"['c', 'o', 'm', 'm', 'a', 'n', 'd', 'o', 'e', 's']","['t', 'i', 'h', 'r', 'l', 'u', 'w']",10,3,True +recuperated,"['r', 'e', 'c', 'u', '_', 'e', 'r', 'a', 't', 'e', 'd']","['o', 'i', 'h', 'n', 's', 'l', 'm', 'w', 'y', 'f']",10,0,False +horseback,"['h', 'o', 'r', 's', 'e', '_', 'a', 'c', '_']","['t', 'i', 'n', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",7,0,False +busing,"['_', 'u', 's', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'm', 'w']",4,0,False +jibed,"['_', 'i', '_', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 's', 'r', 'l', 'u', 'm']",3,0,False +excoriation,"['e', '_', 'c', 'o', 'r', 'i', 'a', 't', 'i', 'o', 'n']","['h', 's', 'd', 'l', 'u', 'm', 'w', 'y', 'f', 'g']",10,0,False +aromas,"['a', 'r', 'o', 'm', 'a', 's']","['e', 't', 'i', 'h', 'n', 'd', 'l', 'u']",6,2,True +anaesthetizes,"['a', 'n', 'a', 'e', 's', 't', 'h', 'e', 't', 'i', '_', 'e', 's']","['o', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",12,0,False +lefties,"['l', 'e', '_', 't', 'i', 'e', 's']","['a', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'c']",6,0,False +outward,"['o', 'u', 't', 'w', 'a', 'r', 'd']","['e', 'i', 'h', 'n', 's', 'l', 'm']",7,3,True +earthshaking,"['e', 'a', 'r', 't', 'h', 's', 'h', 'a', '_', 'i', 'n', 'g']","['o', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f', 'p']",11,0,False +mustering,"['m', 'u', 's', 't', 'e', 'r', 'i', 'n', 'g']","['a', 'o', 'h', 'd', 'l', 'w', 'c', 'y', 'f']",9,1,True +modernise,"['m', 'o', 'd', 'e', 'r', 'n', 'i', 's', 'e']","['t', 'a', 'h', 'l', 'u']",9,5,True +motherlands,"['m', 'o', 't', 'h', 'e', 'r', 'l', 'a', 'n', 'd', 's']","['i', 'u']",11,8,True +revaluing,"['r', 'e', '_', 'a', 'l', 'u', 'i', 'n', '_']","['t', 'o', 'h', 's', 'd', 'm', 'w', 'c', 'y', 'f']",7,0,False +mismatched,"['m', 'i', 's', 'm', 'a', 't', 'c', 'h', 'e', 'd']","['o', 'n', 'r', 'l', 'u', 'w']",10,4,True +congeal,"['c', 'o', 'n', '_', 'e', 'a', 'l']","['t', 'i', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'y']",6,0,False +departures,"['d', 'e', '_', 'a', 'r', 't', 'u', 'r', 'e', 's']","['o', 'i', 'h', 'n', 'l', 'm', 'w', 'c', 'y', 'f']",9,0,False +acidify,"['a', '_', 'i', 'd', 'i', '_', '_']","['e', 't', 'o', 'h', 'n', 's', 'r', 'l', 'u', 'm']",4,0,False +implanting,"['i', 'm', '_', 'l', 'a', 'n', 't', 'i', 'n', '_']","['e', 'o', 'h', 's', 'r', 'd', 'u', 'w', 'c', 'y']",8,0,False +birding,"['_', 'i', 'r', 'd', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'l', 'u', 'm', 'w']",5,0,False +padlocked,"['_', 'a', 'd', 'l', 'o', 'c', '_', 'e', 'd']","['t', 'i', 'h', 'n', 's', 'r', 'u', 'm', 'w', 'y']",7,0,False +damps,"['d', 'a', 'm', '_', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'l', 'u', 'w']",4,0,False +headland,"['h', 'e', 'a', 'd', 'l', 'a', 'n', 'd']","['t', 'o', 'i', 's', 'r']",8,5,True +phalli,"['_', 'h', 'a', 'l', 'l', 'i']","['e', 't', 'o', 'n', 's', 'r', 'd', 'u', 'm', 'w']",5,0,False +inclosed,"['i', 'n', 'c', 'l', 'o', 's', 'e', 'd']","['t', 'a', 'h', 'r', 'u', 'm', 'w']",8,3,True +idyllic,"['i', 'd', '_', 'l', 'l', 'i', '_']","['e', 't', 'a', 'o', 'h', 'n', 's', 'r', 'u', 'm']",5,0,False +leapfrogs,"['l', 'e', 'a', '_', '_', 'r', 'o', '_', 's']","['t', 'i', 'h', 'n', 'd', 'u', 'm', 'w', 'c', 'y']",6,0,False +flanks,"['_', 'l', 'a', 'n', '_', 's']","['e', 't', 'o', 'i', 'h', 'r', 'd', 'u', 'm', 'w']",4,0,False +sagas,"['s', 'a', '_', 'a', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",4,0,False +quarterly,"['_', 'u', 'a', 'r', 't', 'e', 'r', 'l', 'y']","['o', 'i', 'h', 'n', 's', 'd', 'm', 'w', 'c', 'f']",8,0,False +internally,"['i', 'n', 't', 'e', 'r', 'n', 'a', 'l', 'l', 'y']","['o', 'h', 's', 'd', 'u', 'm', 'w', 'c']",10,2,True +chinstrap,"['c', 'h', 'i', 'n', 's', 't', 'r', 'a', '_']","['e', 'o', 'd', 'l', 'u', 'm', 'w', 'y', 'f', 'g']",8,0,False +grossly,"['_', 'r', 'o', 's', 's', 'l', '_']","['e', 't', 'a', 'i', 'h', 'n', 'd', 'u', 'm', 'w']",5,0,False +expansiveness,"['e', '_', '_', 'a', 'n', 's', 'i', '_', 'e', 'n', 'e', 's', 's']","['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",10,0,False +scrimshaw,"['s', 'c', 'r', 'i', 'm', 's', 'h', 'a', 'w']","['e', 't', 'o', 'n', 'd', 'l', 'u']",9,3,True +exhausted,"['e', '_', 'h', 'a', 'u', 's', 't', 'e', 'd']","['o', 'i', 'n', 'r', 'l', 'm', 'w', 'c', 'y', 'f']",8,0,False +defaming,"['d', 'e', '_', 'a', 'm', 'i', 'n', '_']","['t', 'o', 'h', 's', 'r', 'l', 'u', 'w', 'c', 'y']",6,0,False +litchi,"['l', 'i', 't', '_', 'h', 'i']","['e', 'a', 'o', 'n', 's', 'r', 'd', 'u', 'm', 'w']",5,0,False +doffing,"['d', 'o', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'r', 'l', 'u', 'm', 'w']",4,0,False +dissipation,"['d', 'i', 's', 's', 'i', '_', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'r', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",10,0,False +skateboarder,"['s', '_', 'a', 't', 'e', '_', 'o', 'a', 'r', 'd', 'e', 'r']","['i', 'h', 'n', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",10,0,False +therewith,"['t', 'h', 'e', 'r', 'e', 'w', 'i', 't', 'h']","['a', 'o', 'n', 's', 'd', 'l', 'u', 'm']",9,2,True +chrysalis,"['c', 'h', 'r', 'y', 's', 'a', 'l', 'i', 's']","['e', 't', 'o', 'n', 'd', 'u', 'm', 'w']",9,2,True +villa,"['_', 'i', 'l', 'l', 'a']","['e', 't', 'o', 'h', 'n', 's', 'r', 'd', 'u', 'm']",4,0,False +hewer,"['h', 'e', '_', 'e', 'r']","['t', 'a', 'o', 'i', 'n', 's', 'd', 'l', 'u', 'm']",4,0,False +abominations,"['a', '_', 'o', 'm', 'i', 'n', 'a', 't', 'i', 'o', 'n', 's']","['e', 'h', 'r', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",11,0,False +fascination,"['f', 'a', 's', 'c', 'i', 'n', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'y']",11,1,True +genteel,"['_', 'e', 'n', 't', 'e', 'e', 'l']","['a', 'o', 'i', 'h', 's', 'r', 'd', 'u', 'm', 'w']",6,0,False +assailant,"['a', 's', 's', 'a', 'i', 'l', 'a', 'n', 't']","['e', 'o', 'h', 'r', 'd']",9,5,True +survivors,"['s', 'u', 'r', '_', 'i', '_', 'o', 'r', 's']","['e', 't', 'a', 'h', 'n', 'd', 'l', 'm', 'w', 'c']",7,0,False +plumps,"['_', 'l', 'u', 'm', '_', 's']","['e', 't', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'w']",4,0,False +genetically,"['g', 'e', 'n', 'e', 't', 'i', 'c', 'a', 'l', 'l', 'y']","['o', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'f']",11,1,True +moralise,"['m', 'o', 'r', 'a', 'l', 'i', 's', 'e']","['t', 'h', 'n', 'd', 'u']",8,5,True +experience,"['e', '_', '_', 'e', 'r', 'i', 'e', 'n', '_', 'e']","['t', 'a', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w']",7,0,False +revel,"['r', 'e', '_', 'e', 'l']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'm']",4,0,False +digresses,"['d', 'i', '_', 'r', 'e', 's', 's', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'l', 'u', 'm', 'w', 'c']",8,0,False +pepping,"['_', 'e', '_', '_', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'm']",3,0,False +stiff,"['s', 't', 'i', '_', '_']","['e', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",3,0,False +temporised,"['t', 'e', 'm', '_', 'o', 'r', 'i', 's', 'e', 'd']","['a', 'h', 'n', 'l', 'u', 'w', 'c', 'y', 'f', 'g']",9,0,False +consecrations,"['c', 'o', 'n', 's', 'e', 'c', 'r', 'a', 't', 'i', 'o', 'n', 's']","['h', 'd', 'l', 'u', 'm', 'w']",13,4,True +bagel,"['_', 'a', '_', 'e', 'l']","['t', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u', 'm']",3,0,False +scorers,"['s', '_', 'o', 'r', 'e', 'r', 's']","['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",6,0,False +comfortingly,"['c', 'o', 'm', 'f', 'o', 'r', 't', 'i', 'n', 'g', 'l', 'y']","['e', 'a', 'h', 's', 'd', 'u', 'w']",12,3,True +enable,"['e', 'n', 'a', '_', 'l', 'e']","['t', 'o', 'i', 'h', 's', 'r', 'd', 'u', 'm', 'w']",5,0,False +hellebore,"['h', 'e', 'l', 'l', 'e', '_', 'o', 'r', 'e']","['t', 'a', 'i', 'n', 's', 'd', 'u', 'm', 'w', 'c']",8,0,False +caught,"['_', 'a', 'u', '_', 'h', 't']","['e', 'o', 'i', 'n', 's', 'r', 'd', 'l', 'm', 'w']",4,0,False +partakes,"['_', 'a', 'r', 't', 'a', '_', 'e', 's']","['o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +attribution,"['a', 't', 't', 'r', 'i', '_', 'u', 't', 'i', 'o', 'n']","['e', 'h', 's', 'd', 'l', 'm', 'w', 'c', 'y', 'f']",10,0,False +flunkies,"['_', 'l', 'u', 'n', '_', 'i', 'e', 's']","['t', 'a', 'o', 'h', 'r', 'd', 'm', 'w', 'c', 'y']",6,0,False +defender,"['d', 'e', '_', 'e', 'n', 'd', 'e', 'r']","['t', 'a', 'o', 'i', 'h', 's', 'l', 'u', 'm', 'w']",7,0,False +polyesters,"['_', 'o', 'l', 'y', 'e', 's', 't', 'e', 'r', 's']","['a', 'i', 'h', 'n', 'd', 'u', 'm', 'w', 'c', 'f']",9,0,False +expository,"['e', '_', '_', 'o', 's', 'i', 't', 'o', 'r', 'y']","['a', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c', 'f']",8,0,False +wrongheadedness,"['w', 'r', 'o', 'n', 'g', 'h', 'e', 'a', 'd', 'e', 'd', 'n', 'e', 's', 's']","['t', 'i', 'l', 'u', 'm', 'c', 'y', 'f']",15,2,True +laws,"['l', 'a', '_', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'm']",3,0,False +selves,"['s', 'e', 'l', '_', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'm']",5,0,False +shakily,"['s', 'h', 'a', '_', 'i', 'l', '_']","['e', 't', 'o', 'n', 'r', 'd', 'u', 'm', 'w', 'c']",5,0,False +unceremoniously,"['u', 'n', 'c', 'e', 'r', 'e', 'm', 'o', 'n', 'i', 'o', 'u', 's', 'l', 'y']","['t', 'a', 'h', 'd', 'w']",15,5,True +spicing,"['s', '_', 'i', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",4,0,False +preemptive,"['_', 'r', 'e', 'e', 'm', '_', 't', 'i', '_', 'e']","['a', 'o', 'h', 'n', 's', 'd', 'l', 'u', 'w', 'c']",7,0,False +reproducing,"['r', 'e', 'p', 'r', 'o', 'd', 'u', 'c', 'i', 'n', 'g']","['t', 'a', 'h', 's', 'l', 'm', 'w', 'y', 'f']",11,1,True +incenses,"['i', 'n', '_', 'e', 'n', 's', 'e', 's']","['t', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",7,0,False +accomplishments,"['a', 'c', 'c', 'o', 'm', 'p', 'l', 'i', 's', 'h', 'm', 'e', 'n', 't', 's']","['r', 'd', 'u', 'w', 'y', 'f', 'g']",15,3,True +octagonal,"['o', 'c', 't', 'a', '_', 'o', 'n', 'a', 'l']","['e', 'i', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'y']",8,0,False +waiver,"['w', 'a', 'i', '_', 'e', 'r']","['t', 'o', 'h', 'n', 's', 'd', 'l', 'u', 'm', 'c']",5,0,False +silk,"['s', 'i', 'l', '_']","['e', 't', 'a', 'o', 'h', 'n', 'r', 'd', 'u', 'm']",3,0,False +terminologies,"['t', 'e', 'r', 'm', 'i', 'n', 'o', 'l', 'o', 'g', 'i', 'e', 's']","['a', 'h', 'd', 'u', 'w', 'c', 'y', 'f']",13,2,True +dales,"['d', 'a', 'l', 'e', 's']","['t', 'o', 'i', 'h', 'n', 'r']",5,4,True +rotational,"['r', 'o', 't', 'a', 't', 'i', 'o', 'n', 'a', 'l']","['e', 'h', 's', 'd']",10,6,True +crawlspace,"['c', 'r', 'a', 'w', 'l', 's', '_', 'a', 'c', 'e']","['t', 'o', 'i', 'h', 'n', 'd', 'u', 'm', 'y', 'f']",9,0,False +paths,"['_', 'a', 't', 'h', 's']","['e', 'o', 'i', 'n', 'r', 'd', 'l', 'u', 'm', 'w']",4,0,False +bossed,"['_', 'o', 's', 's', 'e', 'd']","['t', 'a', 'i', 'h', 'n', 'r', 'l', 'u', 'm', 'w']",5,0,False +complication,"['c', 'o', 'm', '_', 'l', 'i', 'c', 'a', 't', 'i', 'o', 'n']","['e', 'h', 's', 'r', 'd', 'u', 'w', 'y', 'f', 'g']",11,0,False +refuge,"['r', 'e', '_', 'u', '_', 'e']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm']",4,0,False +spieled,"['s', '_', 'i', 'e', 'l', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 'r', 'u', 'm', 'w', 'c']",6,0,False +imprecise,"['i', 'm', '_', 'r', 'e', 'c', 'i', 's', 'e']","['t', 'a', 'o', 'h', 'n', 'd', 'l', 'u', 'w', 'y']",8,0,False +denatured,"['d', 'e', 'n', 'a', 't', 'u', 'r', 'e', 'd']","['o', 'i', 'h', 's', 'l']",9,5,True +junkyards,"['_', 'u', 'n', '_', 'y', 'a', 'r', 'd', 's']","['e', 't', 'o', 'i', 'h', 'l', 'm', 'w', 'c', 'f']",7,0,False +keeled,"['_', 'e', 'e', 'l', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'u', 'm']",5,0,False +hologram,"['h', 'o', 'l', 'o', '_', 'r', 'a', 'm']","['e', 't', 'i', 'n', 's', 'd', 'u', 'w', 'c', 'y']",7,0,False +nation,"['n', 'a', 't', 'i', 'o', 'n']","['e', 'h']",6,8,True +witness,"['w', 'i', 't', 'n', 'e', 's', 's']","['a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",7,2,True +bellboy,"['_', 'e', 'l', 'l', '_', 'o', '_']","['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', 'm']",4,0,False +baptistry,"['_', 'a', '_', 't', 'i', 's', 't', 'r', '_']","['e', 'o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +thanksgiving,"['t', 'h', 'a', 'n', '_', 's', '_', 'i', '_', 'i', 'n', '_']","['e', 'o', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +realised,"['r', 'e', 'a', 'l', 'i', 's', 'e', 'd']","['t', 'o', 'h', 'n']",8,6,True +unacceptability,"['u', 'n', 'a', 'c', 'c', 'e', 'p', 't', 'a', 'b', 'i', 'l', 'i', 't', 'y']","['o', 'h', 's', 'r', 'd', 'm', 'w', 'f', 'g']",15,1,True +skater,"['s', '_', 'a', 't', 'e', 'r']","['o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +swines,"['s', 'w', 'i', 'n', 'e', 's']","['t', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",6,1,True +curtain,"['c', 'u', 'r', 't', 'a', 'i', 'n']","['e', 'o', 'h', 's', 'd', 'l', 'm', 'w']",7,2,True +laundry,"['l', 'a', 'u', 'n', 'd', 'r', 'y']","['e', 't', 'o', 'i', 'h', 's', 'm', 'w', 'c']",7,1,True +beauteously,"['_', 'e', 'a', 'u', 't', 'e', 'o', 'u', 's', 'l', 'y']","['i', 'h', 'n', 'r', 'd', 'm', 'w', 'c', 'f', 'g']",10,0,False +runnels,"['r', 'u', 'n', 'n', 'e', 'l', 's']","['t', 'a', 'o', 'i', 'h', 'd']",7,4,True +ventilators,"['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'o', 'r', 's']","['h', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g', 'p']",10,0,False +boa,"['_', 'o', 'a']","['e', 't', 'i', 'h', 'n', 's', 'r', 'd', 'l', 'u']",2,0,False +captivate,"['_', 'a', '_', 't', 'i', '_', 'a', 't', 'e']","['o', 'h', 'n', 's', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +scaliest,"['s', 'c', 'a', 'l', 'i', 'e', 's', 't']","['o', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",8,2,True +phototypesetter,"['_', 'h', 'o', 't', 'o', 't', 'y', '_', 'e', 's', 'e', 't', 't', 'e', 'r']","['a', 'i', 'n', 'd', 'l', 'u', 'm', 'w', 'c', 'f']",13,0,False +rhythms,"['r', 'h', '_', 't', 'h', 'm', 's']","['e', 'a', 'o', 'i', 'n', 'd', 'l', 'u', 'w', 'c']",6,0,False +demagnetising,"['d', 'e', 'm', 'a', 'g', 'n', 'e', 't', 'i', 's', 'i', 'n', 'g']","['o', 'h', 'r', 'l', 'u', 'w', 'c', 'y', 'f']",13,1,True +usual,"['u', 's', 'u', 'a', 'l']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd']",5,2,True +resupplied,"['r', 'e', 's', 'u', '_', '_', 'l', 'i', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 'm', 'w', 'c', 'y', 'f']",8,0,False +grouches,"['_', 'r', 'o', 'u', 'c', 'h', 'e', 's']","['t', 'a', 'i', 'n', 'd', 'l', 'm', 'w', 'y', 'f']",7,0,False +persuasions,"['_', 'e', 'r', 's', 'u', 'a', 's', 'i', 'o', 'n', 's']","['t', 'h', 'd', 'l', 'm', 'w', 'c', 'y', 'f', 'g']",10,0,False +widowing,"['w', 'i', 'd', 'o', 'w', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'r', 'l', 'u', 'm', 'c']",7,0,False +tablecloths,"['t', 'a', '_', 'l', 'e', 'c', 'l', 'o', 't', 'h', 's']","['i', 'n', 'r', 'd', 'u', 'm', 'w', 'y', 'f', 'g']",10,0,False +transact,"['t', 'r', 'a', 'n', 's', 'a', 'c', 't']","['e', 'o', 'i', 'h', 'd', 'l', 'u', 'm', 'w']",8,1,True +caress,"['_', 'a', 'r', 'e', 's', 's']","['t', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",5,0,False +subconsciously,"['s', 'u', '_', 'c', 'o', 'n', 's', 'c', 'i', 'o', 'u', 's', 'l', 'y']","['e', 't', 'a', 'h', 'r', 'd', 'm', 'w', 'f', 'g']",13,0,False +recopied,"['r', 'e', 'c', 'o', '_', 'i', 'e', 'd']","['t', 'a', 'h', 'n', 's', 'l', 'u', 'm', 'w', 'y']",7,0,False +wealthier,"['w', 'e', 'a', 'l', 't', 'h', 'i', 'e', 'r']","['o', 'n', 's', 'd', 'u', 'm']",9,4,True +stewed,"['s', 't', 'e', 'w', 'e', 'd']","['a', 'o', 'i', 'h', 'n', 'r', 'l', 'u', 'm']",6,1,True +duskier,"['d', 'u', 's', '_', 'i', 'e', 'r']","['t', 'a', 'o', 'h', 'n', 'l', 'm', 'w', 'c', 'y']",6,0,False +vising,"['_', 'i', 's', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",4,0,False +recaptured,"['r', 'e', 'c', 'a', '_', 't', 'u', 'r', 'e', 'd']","['o', 'i', 'h', 'n', 's', 'l', 'm', 'w', 'y', 'f']",9,0,False +blunderbusses,"['_', 'l', 'u', 'n', 'd', 'e', 'r', '_', 'u', 's', 's', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'm', 'w', 'c', 'y', 'f']",11,0,False +entertaining,"['e', 'n', 't', 'e', 'r', 't', 'a', 'i', 'n', 'i', 'n', '_']","['o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",11,0,False +serf,"['s', 'e', 'r', '_']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm']",3,0,False +mackinaws,"['m', 'a', 'c', '_', 'i', 'n', 'a', 'w', 's']","['e', 't', 'o', 'h', 'r', 'd', 'l', 'u', 'y', 'f']",8,0,False +lay,"['l', 'a', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u']",2,0,False +browsers,"['_', 'r', 'o', 'w', 's', 'e', 'r', 's']","['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'c']",7,0,False +underbelly,"['u', 'n', 'd', 'e', 'r', '_', 'e', 'l', 'l', 'y']","['t', 'a', 'o', 'i', 'h', 's', 'm', 'w', 'c', 'f']",9,0,False +germs,"['_', 'e', 'r', 'm', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'w']",4,0,False +fretful,"['_', 'r', 'e', 't', '_', 'u', 'l']","['a', 'o', 'i', 'h', 'n', 's', 'd', 'm', 'w', 'c']",5,0,False +sanctions,"['s', 'a', 'n', 'c', 't', 'i', 'o', 'n', 's']","['e', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",9,2,True +typecasting,"['t', 'y', 'p', 'e', 'c', 'a', 's', 't', 'i', 'n', 'g']","['o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'f']",11,1,True +bifurcates,"['_', 'i', 'f', 'u', 'r', 'c', 'a', 't', 'e', 's']","['o', 'h', 'n', 'd', 'l', 'm', 'w', 'y', 'g', 'p']",9,0,False +droller,"['d', 'r', 'o', 'l', 'l', 'e', 'r']","['t', 'a', 'i', 'h', 'n', 's']",7,4,True +incarnates,"['i', 'n', 'c', 'a', 'r', 'n', 'a', 't', 'e', 's']","['o', 'h', 'd', 'l', 'u', 'm', 'w']",10,3,True +boggles,"['_', 'o', '_', '_', 'l', 'e', 's']","['t', 'a', 'i', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",4,0,False +farthings,"['f', 'a', 'r', 't', 'h', 'i', 'n', 'g', 's']","['e', 'o', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",9,1,True +separated,"['s', 'e', '_', 'a', 'r', 'a', 't', 'e', 'd']","['o', 'i', 'h', 'n', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +roundest,"['r', 'o', 'u', 'n', 'd', 'e', 's', 't']","['a', 'i', 'h', 'l']",8,6,True +belabouring,"['_', 'e', 'l', 'a', '_', 'o', 'u', 'r', 'i', 'n', 'g']","['t', 'h', 's', 'd', 'm', 'w', 'c', 'y', 'f', 'p']",9,0,False +smashing,"['s', 'm', 'a', 's', 'h', 'i', 'n', '_']","['e', 't', 'o', 'r', 'd', 'l', 'u', 'w', 'c', 'y']",7,0,False +skivvying,"['s', '_', 'i', '_', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",4,0,False +viewpoints,"['_', 'i', 'e', 'w', '_', 'o', 'i', 'n', 't', 's']","['a', 'h', 'r', 'd', 'l', 'u', 'm', 'c', 'y', 'f']",8,0,False +sensuality,"['s', 'e', 'n', 's', 'u', 'a', 'l', 'i', 't', 'y']","['o', 'h', 'r', 'd', 'm', 'w', 'c']",10,3,True +triennial,"['t', 'r', 'i', 'e', 'n', 'n', 'i', 'a', 'l']","['o', 'h', 's', 'd']",9,6,True +legislating,"['l', 'e', '_', 'i', 's', 'l', 'a', 't', 'i', 'n', '_']","['o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +dioxide,"['d', 'i', 'o', '_', 'i', 'd', 'e']","['t', 'a', 'h', 'n', 's', 'r', 'l', 'u', 'm', 'w']",6,0,False +macadam,"['_', 'a', '_', 'a', 'd', 'a', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'l', 'u']",4,0,False +audition,"['a', 'u', 'd', 'i', 't', 'i', 'o', 'n']","['e', 'h', 's', 'r', 'l']",8,5,True +ferry,"['_', 'e', 'r', 'r', '_']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u']",3,0,False +nodule,"['n', 'o', 'd', 'u', 'l', 'e']","['t', 'a', 'i', 'h', 's', 'r']",6,4,True +attaining,"['a', 't', 't', 'a', 'i', 'n', 'i', 'n', '_']","['e', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w']",8,0,False +policeman,"['_', 'o', 'l', 'i', 'c', 'e', 'm', 'a', 'n']","['t', 'h', 's', 'r', 'd', 'u', 'w', 'y', 'f', 'g']",8,0,False +successive,"['s', 'u', '_', '_', 'e', 's', 's', 'i', '_', 'e']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",7,0,False +exuberant,"['e', '_', 'u', '_', 'e', 'r', 'a', 'n', 't']","['o', 'i', 'h', 's', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +aquaplanes,"['a', '_', 'u', 'a', '_', 'l', 'a', 'n', 'e', 's']","['t', 'o', 'i', 'h', 'r', 'd', 'm', 'w', 'c', 'y']",8,0,False +angler,"['a', 'n', '_', 'l', 'e', 'r']","['t', 'o', 'i', 'h', 's', 'd', 'u', 'm', 'w', 'c']",5,0,False +rambler,"['r', 'a', 'm', '_', 'l', 'e', 'r']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'w', 'c']",6,0,False +scabbed,"['s', '_', 'a', '_', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 'r', 'l', 'u', 'm', 'w']",4,0,False +sheepishness,"['s', 'h', 'e', 'e', '_', 'i', 's', 'h', 'n', 'e', 's', 's']","['t', 'a', 'o', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",11,0,False +supper,"['s', 'u', '_', '_', 'e', 'r']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'm', 'w']",4,0,False +radioed,"['r', 'a', 'd', 'i', 'o', 'e', 'd']","['t', 'h', 'n', 's']",7,6,True +pawned,"['_', 'a', 'w', 'n', 'e', 'd']","['t', 'o', 'i', 'h', 's', 'r', 'l', 'u', 'm', 'c']",5,0,False +billion,"['_', 'i', 'l', 'l', 'i', 'o', 'n']","['e', 't', 'a', 'h', 's', 'r', 'd', 'u', 'm', 'w']",6,0,False +notionally,"['n', 'o', 't', 'i', 'o', 'n', 'a', 'l', 'l', 'y']","['e', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'c']",10,1,True +haunting,"['h', 'a', 'u', 'n', 't', 'i', 'n', '_']","['e', 'o', 's', 'r', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +rotundity,"['r', 'o', 't', 'u', 'n', 'd', 'i', 't', 'y']","['e', 'a', 'h', 's', 'l', 'm', 'w', 'c']",9,2,True +formalisation,"['f', 'o', 'r', 'm', 'a', 'l', 'i', 's', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'd', 'u', 'w', 'c', 'y']",13,3,True +inventories,"['i', 'n', '_', 'e', 'n', 't', 'o', 'r', 'i', 'e', 's']","['a', 'h', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",10,0,False +spideriest,"['s', '_', 'i', 'd', 'e', 'r', 'i', 'e', 's', 't']","['a', 'o', 'h', 'n', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +uniform,"['u', 'n', 'i', '_', 'o', 'r', 'm']","['e', 't', 'a', 'h', 's', 'd', 'l', 'w', 'c', 'y']",6,0,False +disengage,"['d', 'i', 's', 'e', 'n', '_', 'a', '_', 'e']","['t', 'o', 'h', 'r', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +pickiest,"['_', 'i', '_', '_', 'i', 'e', 's', 't']","['a', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'w']",5,0,False +quaffing,"['_', 'u', 'a', '_', '_', 'i', 'n', '_']","['e', 't', 'o', 'h', 's', 'r', 'd', 'l', 'm', 'w']",4,0,False +inverses,"['i', 'n', '_', 'e', 'r', 's', 'e', 's']","['t', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'c']",7,0,False +obstruction,"['o', '_', 's', 't', 'r', 'u', 'c', 't', 'i', 'o', 'n']","['e', 'a', 'h', 'd', 'l', 'm', 'w', 'y', 'f', 'g']",10,0,False +checks,"['_', 'h', 'e', '_', '_', 's']","['t', 'a', 'o', 'i', 'n', 'r', 'd', 'l', 'u', 'm']",3,0,False +qualifications,"['_', 'u', 'a', 'l', 'i', 'f', 'i', 'c', 'a', 't', 'i', 'o', 'n', 's']","['e', 'h', 'r', 'd', 'm', 'w', 'y', 'g', 'p', 'b']",13,0,False +elderly,"['e', 'l', 'd', 'e', 'r', 'l', '_']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'u', 'm', 'w']",6,0,False +abler,"['a', '_', 'l', 'e', 'r']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'm', 'w']",4,0,False +justification,"['_', 'u', 's', 't', 'i', 'f', 'i', 'c', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'r', 'd', 'l', 'm', 'w', 'y', 'g', 'p']",12,0,False +doorways,"['d', 'o', 'o', 'r', 'w', 'a', 'y', 's']","['e', 't', 'i', 'h', 'n', 'l', 'u', 'm', 'c']",8,1,True +nuanced,"['n', 'u', 'a', 'n', 'c', 'e', 'd']","['t', 'o', 'i', 'h', 's', 'r', 'l', 'm', 'w']",7,1,True +interbred,"['i', 'n', 't', 'e', 'r', '_', 'r', 'e', 'd']","['a', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +haloes,"['h', 'a', 'l', 'o', 'e', 's']","['t', 'i', 'n', 'r', 'd']",6,5,True +skulking,"['s', '_', 'u', 'l', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'm', 'w', 'c']",5,0,False +disabuses,"['d', 'i', 's', 'a', '_', 'u', 's', 'e', 's']","['t', 'o', 'h', 'n', 'r', 'l', 'm', 'w', 'c', 'y']",8,0,False +plebeian,"['_', 'l', 'e', '_', 'e', 'i', 'a', 'n']","['t', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'c']",6,0,False +chemicals,"['c', 'h', 'e', 'm', 'i', 'c', 'a', 'l', 's']","['t', 'o', 'n', 'r', 'd', 'u', 'w']",9,3,True +nuthatches,"['n', 'u', 't', 'h', 'a', 't', 'c', 'h', 'e', 's']","['o', 'i', 'r', 'd', 'l', 'm', 'w']",10,3,True +loader,"['l', 'o', 'a', 'd', 'e', 'r']","['t', 'i', 'h', 'n', 's']",6,5,True +ticketed,"['t', 'i', '_', '_', 'e', 't', 'e', 'd']","['a', 'o', 'h', 'n', 's', 'r', 'l', 'u', 'm', 'w']",6,0,False +unsuspected,"['u', 'n', 's', 'u', 's', '_', 'e', 'c', 't', 'e', 'd']","['a', 'o', 'i', 'h', 'r', 'l', 'm', 'w', 'y', 'f']",10,0,False +dragooned,"['d', 'r', 'a', '_', 'o', 'o', 'n', 'e', 'd']","['t', 'i', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +anodynes,"['a', 'n', 'o', 'd', 'y', 'n', 'e', 's']","['t', 'i', 'h', 'r', 'l', 'u', 'm', 'w', 'c']",8,1,True +antiaircraft,"['a', 'n', 't', 'i', 'a', 'i', 'r', 'c', 'r', 'a', '_', 't']","['e', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y']",11,0,False +institutes,"['i', 'n', 's', 't', 'i', 't', 'u', 't', 'e', 's']","['a', 'o', 'h', 'r', 'd', 'l']",10,4,True +fillets,"['_', 'i', 'l', 'l', 'e', 't', 's']","['a', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'c']",6,0,False +quadruped,"['_', 'u', 'a', 'd', 'r', 'u', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 's', 'l', 'm', 'w', 'c']",7,0,False +nonpayment,"['n', 'o', 'n', '_', 'a', 'y', 'm', 'e', 'n', 't']","['i', 'h', 's', 'r', 'd', 'l', 'u', 'w', 'c', 'f']",9,0,False +treadling,"['t', 'r', 'e', 'a', 'd', 'l', 'i', 'n', 'g']","['o', 'h', 's', 'u', 'm', 'w', 'c', 'y', 'f']",9,1,True +blenched,"['_', 'l', 'e', 'n', 'c', 'h', 'e', 'd']","['t', 'a', 'o', 'i', 's', 'r', 'u', 'm', 'w', 'y']",7,0,False +teenagers,"['t', 'e', 'e', 'n', 'a', '_', 'e', 'r', 's']","['o', 'i', 'h', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +oafs,"['o', 'a', '_', 's']","['e', 't', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",3,0,False +rowdiness,"['r', 'o', 'w', 'd', 'i', 'n', 'e', 's', 's']","['t', 'a', 'h', 'l', 'u', 'm']",9,4,True +wrongdoing,"['w', 'r', 'o', 'n', '_', 'd', 'o', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'l', 'u', 'm', 'c', 'y']",8,0,False +saucing,"['s', 'a', 'u', 'c', 'i', 'n', '_']","['e', 't', 'o', 'h', 'r', 'd', 'l', 'm', 'w', 'y']",6,0,False +scraping,"['s', 'c', 'r', 'a', '_', 'i', 'n', '_']","['e', 't', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'y']",6,0,False +inhibitions,"['i', 'n', 'h', 'i', '_', 'i', 't', 'i', 'o', 'n', 's']","['e', 'a', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",10,0,False +orbiting,"['o', 'r', '_', 'i', 't', 'i', 'n', '_']","['e', 'a', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +pursuers,"['_', 'u', 'r', 's', 'u', 'e', 'r', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'm', 'w']",7,0,False +hocked,"['h', 'o', '_', '_', 'e', 'd']","['t', 'a', 'i', 'n', 's', 'r', 'l', 'u', 'm', 'w']",4,0,False +essayists,"['e', 's', 's', 'a', '_', 'i', 's', 't', 's']","['o', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",8,0,False +metabolised,"['m', 'e', 't', 'a', '_', 'o', 'l', 'i', 's', 'e', 'd']","['h', 'n', 'r', 'u', 'w', 'c', 'y', 'f', 'g', 'p']",10,0,False +noonday,"['n', 'o', 'o', 'n', 'd', 'a', '_']","['e', 't', 'i', 'h', 's', 'r', 'l', 'u', 'm', 'w']",6,0,False +desalinating,"['d', 'e', 's', 'a', 'l', 'i', 'n', 'a', 't', 'i', 'n', 'g']","['o', 'h', 'r', 'u', 'm', 'w', 'c', 'y', 'f']",12,1,True +symbioses,"['s', '_', 'm', '_', 'i', 'o', 's', 'e', 's']","['t', 'a', 'h', 'n', 'r', 'd', 'l', 'u', 'w', 'c']",7,0,False +crape,"['_', 'r', 'a', '_', 'e']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +miscreant,"['m', 'i', 's', 'c', 'r', 'e', 'a', 'n', 't']","['o', 'h', 'd', 'l', 'u', 'w']",9,4,True +philanthropy,"['p', 'h', 'i', 'l', 'a', 'n', 't', 'h', 'r', 'o', 'p', 'y']","['e', 's', 'd', 'u', 'm', 'w', 'c', 'f', 'g']",12,1,True +inhaler,"['i', 'n', 'h', 'a', 'l', 'e', 'r']","['t', 'o', 's', 'd']",7,6,True +aggravated,"['a', '_', '_', 'r', 'a', '_', 'a', 't', 'e', 'd']","['o', 'i', 'h', 'n', 's', 'l', 'u', 'm', 'w', 'c']",7,0,False +chaotically,"['c', 'h', 'a', 'o', 't', 'i', 'c', 'a', 'l', 'l', 'y']","['e', 'n', 's', 'r', 'd', 'u', 'm', 'w']",11,2,True +announces,"['a', 'n', 'n', 'o', 'u', 'n', 'c', 'e', 's']","['t', 'i', 'h', 'r', 'd', 'l', 'm', 'w']",9,2,True +fully,"['_', '_', '_', '_', '_']","['e', 't', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'd']",0,0,False +pipelines,"['_', 'i', '_', 'e', 'l', 'i', 'n', 'e', 's']","['t', 'a', 'o', 'h', 'r', 'd', 'u', 'm', 'w', 'c']",7,0,False +purgatorial,"['_', 'u', 'r', '_', 'a', 't', 'o', 'r', 'i', 'a', 'l']","['e', 'h', 'n', 's', 'd', 'm', 'w', 'c', 'y', 'f']",9,0,False +pinholes,"['_', 'i', 'n', 'h', 'o', 'l', 'e', 's']","['t', 'a', 'r', 'd', 'u', 'm', 'w', 'c', 'y', 'f']",7,0,False +h,['h'],"['e', 't', 'a', 'o', 'i']",1,5,True +abeyance,"['a', '_', 'e', '_', 'a', 'n', '_', 'e']","['t', 'o', 'i', 'h', 's', 'r', 'd', 'l', 'u', 'm']",5,0,False +claims,"['c', 'l', 'a', 'i', 'm', 's']","['e', 't', 'o', 'h', 'n', 'r', 'd', 'u', 'w']",6,1,True +blip,"['_', 'l', 'i', '_']","['e', 't', 'a', 'o', 'h', 'n', 's', 'r', 'd', 'u']",2,0,False +aggregation,"['a', '_', '_', 'r', 'e', '_', 'a', 't', 'i', 'o', 'n']","['h', 's', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",8,0,False +unvarnished,"['u', 'n', '_', 'a', 'r', 'n', 'i', 's', 'h', 'e', 'd']","['t', 'o', 'l', 'm', 'w', 'c', 'y', 'f', 'g', 'p']",10,0,False +biologists,"['_', 'i', 'o', 'l', 'o', '_', 'i', 's', 't', 's']","['e', 'a', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'c']",8,0,False +anacondas,"['a', 'n', 'a', 'c', 'o', 'n', 'd', 'a', 's']","['e', 't', 'i', 'h', 'r', 'l', 'u', 'm', 'w']",9,1,True +animal,"['a', 'n', 'i', 'm', 'a', 'l']","['e', 't', 'o', 'h', 's', 'r', 'd', 'u']",6,2,True +exploit,"['e', '_', '_', 'l', 'o', 'i', 't']","['a', 'h', 'n', 's', 'r', 'd', 'u', 'm', 'w', 'c']",5,0,False +software,"['s', 'o', 'f', 't', 'w', 'a', 'r', 'e']","['i', 'h', 'n', 'd', 'l', 'u', 'm', 'c', 'y']",8,1,True +mussiest,"['m', 'u', 's', 's', 'i', 'e', 's', 't']","['a', 'o', 'h', 'n', 'r', 'd', 'l']",8,3,True +habits,"['h', 'a', '_', 'i', 't', 's']","['e', 'o', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",5,0,False +inoffensive,"['i', 'n', 'o', '_', '_', 'e', 'n', 's', 'i', '_', 'e']","['t', 'a', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",8,0,False +socks,"['s', 'o', '_', '_', 's']","['e', 't', 'a', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",3,0,False +excitation,"['e', '_', 'c', 'i', 't', 'a', 't', 'i', 'o', 'n']","['h', 's', 'r', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",9,0,False +orthodontics,"['o', 'r', 't', 'h', 'o', 'd', 'o', 'n', 't', 'i', 'c', 's']","['e', 'a', 'l', 'u', 'm', 'w']",12,4,True +clotures,"['c', 'l', 'o', 't', 'u', 'r', 'e', 's']","['a', 'i', 'h', 'n', 'd', 'm', 'w']",8,3,True +thresher,"['t', 'h', 'r', 'e', 's', 'h', 'e', 'r']","['a', 'o', 'i', 'n']",8,6,True +heeded,"['h', 'e', 'e', 'd', 'e', 'd']","['t', 'a', 'o', 'i', 'n', 's', 'r']",6,3,True +anathemas,"['a', 'n', 'a', 't', 'h', 'e', 'm', 'a', 's']","['o', 'i', 'r', 'd', 'l', 'u']",9,4,True +upsurges,"['u', '_', 's', 'u', 'r', '_', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'd', 'l', 'm', 'w']",6,0,False +misplace,"['m', 'i', 's', '_', 'l', 'a', 'c', 'e']","['t', 'o', 'h', 'n', 'r', 'd', 'u', 'w', 'y', 'f']",7,0,False +impoverished,"['i', 'm', '_', 'o', '_', 'e', 'r', 'i', 's', 'h', 'e', 'd']","['t', 'a', 'n', 'l', 'u', 'w', 'c', 'y', 'f', 'g']",10,0,False +slicked,"['s', 'l', 'i', 'c', '_', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 'r', 'u', 'm', 'w', 'y']",6,0,False +borrowed,"['_', 'o', 'r', 'r', 'o', 'w', 'e', 'd']","['t', 'a', 'i', 'h', 'n', 's', 'l', 'u', 'm', 'c']",7,0,False +throatiest,"['t', 'h', 'r', 'o', 'a', 't', 'i', 'e', 's', 't']",['n'],10,9,True +primordial,"['_', 'r', 'i', 'm', 'o', 'r', 'd', 'i', 'a', 'l']","['e', 't', 'h', 'n', 's', 'u', 'w', 'c', 'y', 'f']",9,0,False +deludes,"['d', 'e', 'l', 'u', 'd', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r']",7,3,True +pleating,"['_', 'l', 'e', 'a', 't', 'i', 'n', '_']","['o', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",6,0,False +transfiguration,"['t', 'r', 'a', 'n', 's', 'f', 'i', 'g', 'u', 'r', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'd', 'l', 'm', 'w', 'c', 'y']",15,2,True +spasm,"['s', '_', 'a', 's', '_']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",3,0,False +deans,"['d', 'e', 'a', 'n', 's']","['t', 'o', 'i', 'h', 'r']",5,5,True +racketeered,"['r', 'a', 'c', '_', 'e', 't', 'e', 'e', 'r', 'e', 'd']","['o', 'i', 'h', 'n', 's', 'l', 'u', 'm', 'w', 'y']",10,0,False +merriest,"['m', 'e', 'r', 'r', 'i', 'e', 's', 't']","['a', 'o', 'h', 'n', 'd', 'l', 'u']",8,3,True +jackknifing,"['_', 'a', '_', '_', '_', 'n', 'i', '_', 'i', 'n', '_']","['e', 't', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'm']",5,0,False +stringency,"['s', 't', 'r', 'i', 'n', 'g', 'e', 'n', 'c', 'y']","['a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'f']",10,1,True +drunkard,"['d', 'r', 'u', 'n', '_', 'a', 'r', 'd']","['e', 't', 'o', 'i', 'h', 's', 'l', 'm', 'w', 'c']",7,0,False +brazening,"['_', 'r', 'a', '_', 'e', 'n', 'i', 'n', '_']","['t', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +poverty,"['_', 'o', '_', 'e', 'r', 't', '_']","['a', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm', 'w']",4,0,False +acceding,"['a', 'c', 'c', 'e', 'd', 'i', 'n', '_']","['t', 'o', 'h', 's', 'r', 'l', 'u', 'm', 'w', 'y']",7,0,False +tillage,"['t', 'i', 'l', 'l', 'a', '_', 'e']","['o', 'h', 'n', 's', 'r', 'd', 'u', 'm', 'w', 'c']",6,0,False +obscenity,"['o', '_', 's', 'c', 'e', 'n', 'i', 't', 'y']","['a', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'f', 'g']",8,0,False +keels,"['_', 'e', 'e', 'l', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'm']",4,0,False +weaned,"['w', 'e', 'a', 'n', 'e', 'd']","['t', 'o', 'i', 'h', 's', 'r', 'l', 'u', 'm']",6,1,True +uniformly,"['u', 'n', 'i', 'f', 'o', 'r', 'm', 'l', 'y']","['e', 't', 'a', 'h', 's', 'd', 'w', 'c']",9,2,True +offshore,"['o', '_', '_', 's', 'h', 'o', 'r', 'e']","['t', 'a', 'i', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +carcinogen,"['c', 'a', 'r', 'c', 'i', 'n', 'o', '_', 'e', 'n']","['t', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",9,0,False +hooded,"['h', 'o', 'o', 'd', 'e', 'd']","['t', 'a', 'i', 'n', 's', 'r']",6,4,True +introspection,"['i', 'n', 't', 'r', 'o', 's', '_', 'e', 'c', 't', 'i', 'o', 'n']","['a', 'h', 'd', 'l', 'u', 'm', 'w', 'y', 'f', 'g']",12,0,False +lept,"['l', 'e', '_', 't']","['a', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u', 'm']",3,0,False +naturalistic,"['n', 'a', 't', 'u', 'r', 'a', 'l', 'i', 's', 't', 'i', 'c']","['e', 'o', 'h', 'd', 'm', 'w']",12,4,True +area,"['a', 'r', 'e', 'a']","['t', 'o', 'i', 'h', 'n', 's']",4,4,True +outshone,"['o', 'u', 't', 's', 'h', 'o', 'n', 'e']","['a', 'i', 'r', 'd', 'l']",8,5,True +sympathiser,"['s', 'y', 'm', 'p', 'a', 't', 'h', 'i', 's', 'e', 'r']","['o', 'n', 'd', 'l', 'u', 'w', 'c', 'f', 'g']",11,1,True +floras,"['_', 'l', 'o', 'r', 'a', 's']","['e', 't', 'i', 'h', 'n', 'd', 'u', 'm', 'w', 'c']",5,0,False +agriculture,"['a', 'g', 'r', 'i', 'c', 'u', 'l', 't', 'u', 'r', 'e']","['o', 'h', 'n', 's', 'd', 'm', 'w', 'y', 'f']",11,1,True +slopped,"['s', 'l', 'o', '_', '_', 'e', 'd']","['t', 'a', 'i', 'h', 'n', 'r', 'u', 'm', 'w', 'c']",5,0,False +predators,"['_', 'r', 'e', 'd', 'a', 't', 'o', 'r', 's']","['i', 'h', 'n', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",8,0,False +empathises,"['e', 'm', '_', 'a', 't', 'h', 'i', 's', 'e', 's']","['o', 'n', 'r', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",9,0,False +parry,"['_', 'a', 'r', 'r', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u']",3,0,False +cracking,"['_', 'r', 'a', '_', '_', 'i', 'n', '_']","['e', 't', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w']",4,0,False +roamers,"['r', 'o', 'a', 'm', 'e', 'r', 's']","['t', 'i', 'h', 'n', 'd', 'l', 'u']",7,3,True +profusion,"['_', 'r', 'o', '_', 'u', 's', 'i', 'o', 'n']","['e', 't', 'a', 'h', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +feels,"['_', 'e', 'e', 'l', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'm']",4,0,False +granulating,"['_', 'r', 'a', 'n', 'u', 'l', 'a', 't', 'i', 'n', '_']","['e', 'o', 'h', 's', 'd', 'm', 'w', 'c', 'y', 'f']",9,0,False +demagogy,"['d', 'e', 'm', 'a', '_', 'o', '_', '_']","['t', 'i', 'h', 'n', 's', 'r', 'l', 'u', 'w', 'c']",5,0,False +discharges,"['d', 'i', 's', 'c', 'h', 'a', 'r', 'g', 'e', 's']","['t', 'o', 'n', 'l', 'u', 'm', 'w', 'y', 'f']",10,1,True +wiretaps,"['w', 'i', 'r', 'e', 't', 'a', '_', 's']","['o', 'h', 'n', 'd', 'l', 'u', 'm', 'c', 'y', 'f']",7,0,False +accommodation,"['a', 'c', 'c', 'o', 'm', 'm', 'o', 'd', 'a', 't', 'i', 'o', 'n']","['e', 'h', 's', 'r', 'l', 'u', 'w']",13,3,True +unionised,"['u', 'n', 'i', 'o', 'n', 'i', 's', 'e', 'd']","['t', 'a', 'h', 'r', 'l']",9,5,True +stylishly,"['s', 't', '_', 'l', 'i', 's', 'h', 'l', '_']","['e', 'a', 'o', 'n', 'r', 'd', 'u', 'm', 'w', 'c']",7,0,False +experimentally,"['e', '_', 'p', 'e', 'r', 'i', 'm', 'e', 'n', 't', 'a', 'l', 'l', 'y']","['o', 'h', 's', 'd', 'u', 'w', 'c', 'f', 'g', 'b']",13,0,False +inaction,"['i', 'n', 'a', 'c', 't', 'i', 'o', 'n']","['e', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w']",8,1,True +apportionment,"['a', '_', '_', 'o', 'r', 't', 'i', 'o', 'n', 'm', 'e', 'n', 't']","['h', 's', 'd', 'l', 'u', 'w', 'c', 'y', 'f', 'g']",11,0,False +tabus,"['t', 'a', '_', 'u', 's']","['e', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",4,0,False +finals,"['_', 'i', 'n', 'a', 'l', 's']","['e', 't', 'o', 'h', 'r', 'd', 'u', 'm', 'w', 'c']",5,0,False +bluffing,"['_', 'l', 'u', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'm', 'w']",4,0,False +amphibian,"['a', 'm', '_', 'h', 'i', '_', 'i', 'a', 'n']","['e', 't', 'o', 's', 'r', 'd', 'l', 'u', 'w', 'c']",7,0,False +waspish,"['w', 'a', 's', '_', 'i', 's', 'h']","['e', 't', 'o', 'n', 'r', 'd', 'l', 'u', 'm', 'c']",6,0,False +farmhands,"['f', 'a', 'r', 'm', 'h', 'a', 'n', 'd', 's']","['e', 't', 'o', 'i', 'l', 'u', 'w', 'c', 'y']",9,1,True +gratitude,"['_', 'r', 'a', 't', 'i', 't', 'u', 'd', 'e']","['o', 'h', 'n', 's', 'l', 'm', 'w', 'c', 'y', 'f']",8,0,False +phoneme,"['_', 'h', 'o', 'n', 'e', 'm', 'e']","['t', 'a', 'i', 's', 'r', 'd', 'l', 'u', 'w', 'c']",6,0,False +inset,"['i', 'n', 's', 'e', 't']","['a', 'o', 'h']",5,7,True +shadings,"['s', 'h', 'a', 'd', 'i', 'n', '_', 's']","['e', 't', 'o', 'r', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +swastika,"['s', 'w', 'a', 's', 't', 'i', '_', 'a']","['e', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'c']",7,0,False +fits,"['_', 'i', 't', 's']","['e', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",3,0,False +profundities,"['p', 'r', 'o', 'f', 'u', 'n', 'd', 'i', 't', 'i', 'e', 's']","['a', 'h', 'l', 'm', 'w', 'c', 'y', 'g']",12,2,True +firecracker,"['_', 'i', 'r', 'e', '_', 'r', 'a', '_', '_', 'e', 'r']","['t', 'o', 'h', 'n', 's', 'd', 'l', 'u', 'm', 'w']",7,0,False +propulsion,"['_', 'r', 'o', '_', 'u', 'l', 's', 'i', 'o', 'n']","['e', 't', 'a', 'h', 'd', 'm', 'w', 'c', 'y', 'f']",8,0,False +renounces,"['r', 'e', 'n', 'o', 'u', 'n', 'c', 'e', 's']","['t', 'a', 'i', 'h', 'd', 'l', 'm', 'w']",9,2,True +moneybag,"['m', 'o', 'n', 'e', '_', '_', 'a', '_']","['t', 'i', 'h', 's', 'r', 'd', 'l', 'u', 'w', 'c']",5,0,False +ricotta,"['r', 'i', 'c', 'o', 't', 't', 'a']","['e', 'h', 'n', 's', 'd', 'l', 'u', 'm', 'w']",7,1,True +darkroom,"['d', 'a', 'r', '_', 'r', 'o', 'o', 'm']","['e', 't', 'i', 'h', 'n', 's', 'l', 'u', 'w', 'c']",7,0,False +retinae,"['r', 'e', 't', 'i', 'n', 'a', 'e']","['o', 'h', 's']",7,7,True +cap,"['_', 'a', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'l']",1,0,False +dickered,"['d', 'i', '_', '_', 'e', 'r', 'e', 'd']","['t', 'a', 'o', 'h', 'n', 's', 'l', 'u', 'm', 'w']",6,0,False +busies,"['_', 'u', 's', 'i', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",5,0,False +redecorates,"['r', 'e', 'd', 'e', 'c', 'o', 'r', 'a', 't', 'e', 's']","['i', 'h', 'n', 'l', 'u', 'm', 'w']",11,3,True +peseta,"['_', 'e', 's', 'e', 't', 'a']","['o', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'w']",5,0,False +shallow,"['s', 'h', 'a', 'l', 'l', 'o', 'w']","['e', 't', 'i', 'n', 'r', 'd', 'u', 'm']",7,2,True +inadequate,"['i', 'n', 'a', 'd', 'e', '_', 'u', 'a', 't', 'e']","['o', 'h', 's', 'r', 'l', 'm', 'w', 'c', 'y', 'f']",9,0,False +chunkier,"['c', 'h', 'u', 'n', '_', 'i', 'e', 'r']","['t', 'a', 'o', 's', 'd', 'l', 'm', 'w', 'y', 'f']",7,0,False +sold,"['s', 'o', 'l', 'd']","['e', 't', 'a', 'i', 'h', 'n', 'r']",4,3,True +tactically,"['t', 'a', '_', 't', 'i', '_', 'a', 'l', 'l', '_']","['e', 'o', 'h', 'n', 's', 'r', 'd', 'u', 'm', 'w']",7,0,False +misapplication,"['m', 'i', 's', 'a', 'p', 'p', 'l', 'i', 'c', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'r', 'd', 'u', 'w', 'y', 'f', 'g']",14,1,True +desists,"['d', 'e', 's', 'i', 's', 't', 's']","['a', 'o', 'h', 'n', 'r']",7,5,True +imaginably,"['i', 'm', 'a', '_', 'i', 'n', 'a', '_', 'l', '_']","['e', 't', 'o', 'h', 's', 'r', 'd', 'u', 'w', 'c']",7,0,False +quarterback,"['_', 'u', 'a', 'r', 't', 'e', 'r', '_', 'a', 'c', '_']","['o', 'i', 'h', 'n', 's', 'd', 'l', 'm', 'w', 'y']",8,0,False +intermingling,"['i', 'n', 't', 'e', 'r', 'm', 'i', 'n', '_', 'l', 'i', 'n', '_']","['a', 'o', 'h', 's', 'd', 'u', 'w', 'c', 'y', 'f']",11,0,False +noncontagious,"['n', 'o', 'n', 'c', 'o', 'n', 't', 'a', 'g', 'i', 'o', 'u', 's']","['e', 'h', 'r', 'd', 'l', 'm', 'w', 'y', 'f']",13,1,True +extendible,"['e', '_', 't', 'e', 'n', 'd', 'i', '_', 'l', 'e']","['a', 'o', 'h', 's', 'r', 'u', 'm', 'w', 'c', 'y']",8,0,False +lofts,"['l', 'o', '_', 't', 's']","['e', 'a', 'i', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",4,0,False +glades,"['_', 'l', 'a', 'd', 'e', 's']","['t', 'o', 'i', 'h', 'n', 'r', 'u', 'm', 'w', 'c']",5,0,False +uncooperative,"['u', 'n', 'c', 'o', 'o', 'p', 'e', 'r', 'a', 't', 'i', '_', 'e']","['h', 's', 'd', 'l', 'm', 'w', 'y', 'f', 'g', 'b']",12,0,False +depopulated,"['d', 'e', '_', 'o', '_', 'u', 'l', 'a', 't', 'e', 'd']","['i', 'h', 'n', 's', 'r', 'm', 'w', 'c', 'y', 'f']",9,0,False +periscope,"['_', 'e', 'r', 'i', 's', 'c', 'o', '_', 'e']","['t', 'a', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'y']",7,0,False +accented,"['a', 'c', 'c', 'e', 'n', 't', 'e', 'd']","['o', 'i', 'h', 's', 'r', 'l', 'u', 'm', 'w']",8,1,True +fabricates,"['f', 'a', '_', 'r', 'i', 'c', 'a', 't', 'e', 's']","['o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'y', 'g']",9,0,False +debuts,"['d', 'e', '_', 'u', 't', 's']","['a', 'o', 'i', 'h', 'n', 'r', 'l', 'm', 'w', 'c']",5,0,False +runnel,"['r', 'u', 'n', 'n', 'e', 'l']","['t', 'a', 'o', 'i', 'h', 's', 'd']",6,3,True +unguarded,"['u', 'n', '_', 'u', 'a', 'r', 'd', 'e', 'd']","['t', 'o', 'i', 'h', 's', 'l', 'm', 'w', 'c', 'y']",8,0,False +disjointing,"['d', 'i', 's', '_', 'o', 'i', 'n', 't', 'i', 'n', '_']","['e', 'a', 'h', 'r', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +start,"['s', 't', 'a', 'r', 't']","['e', 'o', 'i', 'h', 'n']",5,5,True +episode,"['e', '_', 'i', 's', 'o', 'd', 'e']","['t', 'a', 'h', 'n', 'r', 'l', 'u', 'm', 'w', 'c']",6,0,False +gift,"['_', 'i', '_', 't']","['e', 'a', 'o', 'h', 'n', 's', 'r', 'd', 'l', 'u']",2,0,False +wizard,"['w', 'i', '_', 'a', 'r', 'd']","['e', 't', 'o', 'h', 'n', 's', 'l', 'u', 'm', 'c']",5,0,False +wattage,"['_', 'a', 't', 't', 'a', '_', 'e']","['o', 'i', 'h', 'n', 's', 'r', 'd', 'l', 'u', 'm']",5,0,False +perceivable,"['_', 'e', 'r', 'c', 'e', 'i', '_', 'a', '_', 'l', 'e']","['t', 'o', 'h', 'n', 's', 'd', 'u', 'm', 'w', 'y']",8,0,False +laboured,"['l', 'a', '_', 'o', 'u', 'r', 'e', 'd']","['t', 'i', 'h', 'n', 's', 'm', 'w', 'c', 'y', 'f']",7,0,False +extincting,"['e', '_', 't', 'i', 'n', '_', 't', 'i', 'n', '_']","['a', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'm', 'w']",7,0,False +utilitarianism,"['u', 't', 'i', 'l', 'i', 't', 'a', 'r', 'i', 'a', 'n', 'i', 's', 'm']","['e', 'o', 'h', 'd']",14,6,True +periwinkle,"['_', 'e', 'r', 'i', 'w', 'i', 'n', '_', 'l', 'e']","['t', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'c', 'y']",8,0,False +mustered,"['m', 'u', 's', 't', 'e', 'r', 'e', 'd']","['a', 'o', 'i', 'h', 'n', 'l']",8,4,True +storekeeper,"['s', 't', 'o', 'r', 'e', '_', 'e', 'e', '_', 'e', 'r']","['a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",9,0,False +assumption,"['a', 's', 's', 'u', 'm', '_', 't', 'i', 'o', 'n']","['e', 'h', 'r', 'd', 'l', 'w', 'c', 'y', 'f', 'g']",9,0,False +toilette,"['t', 'o', 'i', 'l', 'e', 't', 't', 'e']","['a', 'h', 'n', 's', 'r', 'd']",8,4,True +sweetest,"['s', '_', 'e', 'e', 't', 'e', 's', 't']","['a', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",7,0,False +mobilising,"['m', 'o', '_', 'i', 'l', 'i', 's', 'i', 'n', '_']","['e', 't', 'a', 'h', 'r', 'd', 'u', 'w', 'c', 'y']",8,0,False +verdicts,"['_', 'e', 'r', 'd', 'i', 'c', 't', 's']","['a', 'o', 'h', 'n', 'l', 'u', 'm', 'w', 'y', 'f']",7,0,False +wearied,"['w', 'e', 'a', 'r', 'i', 'e', 'd']","['t', 'o', 'h', 'n', 's', 'l', 'u', 'm']",7,2,True +salesman,"['s', 'a', 'l', 'e', 's', 'm', 'a', 'n']","['t', 'o', 'i', 'h', 'r', 'd', 'u']",8,3,True +exes,"['e', '_', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",3,0,False +blisters,"['_', 'l', 'i', 's', 't', 'e', 'r', 's']","['a', 'o', 'h', 'n', 'd', 'u', 'm', 'w', 'c', 'y']",7,0,False +spheroids,"['s', '_', 'h', 'e', 'r', 'o', 'i', 'd', 's']","['t', 'a', 'n', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",8,0,False +scrambler,"['s', 'c', 'r', 'a', 'm', '_', 'l', 'e', 'r']","['t', 'o', 'i', 'h', 'n', 'd', 'u', 'w', 'y', 'f']",8,0,False +clew,"['_', 'l', 'e', '_']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'u']",2,0,False +copying,"['_', 'o', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'r', 'd', 'l', 'u', 'm']",3,0,False +deviates,"['d', 'e', '_', 'i', 'a', 't', 'e', 's']","['o', 'h', 'n', 'r', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +suspending,"['s', 'u', 's', '_', 'e', 'n', 'd', 'i', 'n', '_']","['t', 'a', 'o', 'h', 'r', 'l', 'm', 'w', 'c', 'y']",8,0,False +effaces,"['e', '_', '_', 'a', '_', 'e', 's']","['t', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",4,0,False +grapevine,"['_', 'r', 'a', '_', 'e', '_', 'i', 'n', 'e']","['t', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +adds,"['a', 'd', 'd', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r']",4,3,True +insulted,"['i', 'n', 's', 'u', 'l', 't', 'e', 'd']","['a', 'o', 'h', 'r']",8,6,True +permanent,"['_', 'e', 'r', 'm', 'a', 'n', 'e', 'n', 't']","['o', 'i', 'h', 's', 'd', 'l', 'u', 'w', 'c', 'y']",8,0,False +nuttiest,"['n', 'u', 't', 't', 'i', 'e', 's', 't']","['a', 'o', 'h', 'r', 'd', 'l']",8,4,True +poacher,"['_', 'o', 'a', 'c', 'h', 'e', 'r']","['t', 'i', 'n', 's', 'd', 'l', 'u', 'm', 'w', 'y']",6,0,False +hooted,"['h', 'o', 'o', 't', 'e', 'd']","['a', 'i', 'n', 's', 'r']",6,5,True +annex,"['a', 'n', 'n', 'e', '_']","['t', 'o', 'i', 'h', 's', 'r', 'd', 'l', 'u', 'm']",4,0,False +authoritarians,"['a', 'u', 't', 'h', 'o', 'r', 'i', 't', 'a', 'r', 'i', 'a', 'n', 's']","['e', 'd', 'l']",14,7,True +gentries,"['_', 'e', 'n', 't', 'r', 'i', 'e', 's']","['a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +friendships,"['f', 'r', 'i', 'e', 'n', 'd', 's', 'h', 'i', '_', 's']","['t', 'a', 'o', 'l', 'u', 'm', 'w', 'c', 'y', 'g']",10,0,False +disestablishing,"['d', 'i', 's', 'e', 's', 't', 'a', 'b', 'l', 'i', 's', 'h', 'i', 'n', 'g']","['o', 'r', 'u', 'm', 'w', 'c', 'y', 'f', 'p']",15,1,True +reenlist,"['r', 'e', 'e', 'n', 'l', 'i', 's', 't']","['a', 'o', 'h', 'd']",8,6,True +incises,"['i', 'n', '_', 'i', 's', 'e', 's']","['t', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +upbeats,"['u', '_', '_', 'e', 'a', 't', 's']","['o', 'i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c']",5,0,False +redolent,"['r', 'e', 'd', 'o', 'l', 'e', 'n', 't']","['a', 'i', 'h', 's']",8,6,True +staunchly,"['s', 't', 'a', 'u', 'n', 'c', 'h', 'l', 'y']","['e', 'o', 'i', 'r', 'd', 'm', 'w']",9,3,True +overreacting,"['o', '_', 'e', 'r', 'r', 'e', 'a', 'c', 't', 'i', 'n', 'g']","['h', 's', 'd', 'l', 'u', 'm', 'w', 'y', 'f', 'p']",11,0,False +stockpile,"['s', 't', 'o', 'c', '_', '_', 'i', 'l', 'e']","['a', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'y', 'f']",7,0,False +wintered,"['w', 'i', 'n', 't', 'e', 'r', 'e', 'd']","['a', 'o', 'h', 's', 'l', 'u', 'm']",8,3,True +vernacular,"['_', 'e', 'r', 'n', 'a', 'c', 'u', 'l', 'a', 'r']","['t', 'o', 'i', 'h', 's', 'd', 'm', 'w', 'y', 'f']",9,0,False +mils,"['m', 'i', 'l', 's']","['e', 't', 'a', 'o', 'h', 'n', 'r', 'd', 'u']",4,1,True +internally,"['i', 'n', 't', 'e', 'r', 'n', 'a', 'l', 'l', 'y']","['o', 'h', 's', 'd', 'u', 'm', 'w', 'c']",10,2,True +instructively,"['i', 'n', 's', 't', 'r', 'u', 'c', 't', 'i', '_', 'e', 'l', 'y']","['a', 'o', 'h', 'd', 'm', 'w', 'f', 'g', 'p', 'b']",12,0,False +snottier,"['s', 'n', 'o', 't', 't', 'i', 'e', 'r']","['a', 'h']",8,8,True +renegotiated,"['r', 'e', 'n', 'e', 'g', 'o', 't', 'i', 'a', 't', 'e', 'd']","['h', 's', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",12,1,True +afforest,"['a', '_', '_', 'o', 'r', 'e', 's', 't']","['i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",6,0,False +ligature,"['l', 'i', '_', 'a', 't', 'u', 'r', 'e']","['o', 'h', 'n', 's', 'd', 'm', 'w', 'c', 'y', 'f']",7,0,False +blackish,"['_', 'l', 'a', 'c', '_', 'i', 's', 'h']","['e', 't', 'o', 'n', 'r', 'd', 'u', 'm', 'w', 'y']",6,0,False +esoteric,"['e', 's', 'o', 't', 'e', 'r', 'i', 'c']","['a', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",8,2,True +tautology,"['t', 'a', 'u', 't', 'o', 'l', 'o', '_', '_']","['e', 'i', 'h', 'n', 's', 'r', 'd', 'm', 'w', 'c']",7,0,False +leafless,"['l', 'e', 'a', '_', 'l', 'e', 's', 's']","['t', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",7,0,False +posteriors,"['_', 'o', 's', 't', 'e', 'r', 'i', 'o', 'r', 's']","['a', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +nickel,"['n', 'i', '_', '_', 'e', 'l']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w']",4,0,False +wholesome,"['w', 'h', 'o', 'l', 'e', 's', 'o', 'm', 'e']","['t', 'a', 'i', 'n', 'r', 'd', 'u']",9,3,True +harelip,"['h', 'a', 'r', 'e', 'l', 'i', '_']","['t', 'o', 'n', 's', 'd', 'u', 'm', 'w', 'c', 'y']",6,0,False +drawled,"['d', 'r', 'a', 'w', 'l', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 's', 'u', 'm']",7,2,True +golfer,"['_', 'o', 'l', '_', 'e', 'r']","['t', 'a', 'i', 'h', 'n', 's', 'd', 'u', 'm', 'w']",4,0,False +cottonwoods,"['c', 'o', 't', 't', 'o', 'n', 'w', 'o', 'o', 'd', 's']","['e', 'a', 'i', 'h', 'r', 'l', 'u', 'm']",11,2,True +contrasts,"['c', 'o', 'n', 't', 'r', 'a', 's', 't', 's']","['e', 'i', 'h', 'd', 'l', 'u', 'm', 'w']",9,2,True +beautifiers,"['_', 'e', 'a', 'u', 't', 'i', 'f', 'i', 'e', 'r', 's']","['o', 'h', 'n', 'd', 'l', 'm', 'w', 'c', 'y', 'g']",10,0,False +heifers,"['h', 'e', 'i', '_', 'e', 'r', 's']","['t', 'a', 'o', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +legrooms,"['l', 'e', '_', 'r', 'o', 'o', 'm', 's']","['t', 'a', 'i', 'h', 'n', 'd', 'u', 'w', 'c', 'y']",7,0,False +salmonellas,"['s', 'a', 'l', 'm', 'o', 'n', 'e', 'l', 'l', 'a', 's']","['t', 'i', 'h', 'r', 'd', 'u']",11,4,True +uncovered,"['u', 'n', 'c', 'o', '_', 'e', 'r', 'e', 'd']","['t', 'a', 'i', 'h', 's', 'l', 'm', 'w', 'y', 'f']",8,0,False +contacts,"['c', 'o', 'n', 't', 'a', 'c', 't', 's']","['e', 'i', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",8,1,True +croci,"['_', 'r', 'o', '_', 'i']","['e', 't', 'a', 'h', 'n', 's', 'd', 'l', 'u', 'm']",3,0,False +scholars,"['s', 'c', 'h', 'o', 'l', 'a', 'r', 's']","['e', 't', 'i', 'n', 'd', 'u', 'm', 'w']",8,2,True +attempt,"['a', 't', 't', 'e', 'm', '_', 't']","['o', 'i', 'h', 'n', 's', 'r', 'd', 'l', 'u', 'w']",6,0,False +mogul,"['m', 'o', '_', 'u', 'l']","['e', 't', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'w']",4,0,False +heathen,"['h', 'e', 'a', 't', 'h', 'e', 'n']","['o', 'i']",7,8,True +awoke,"['a', '_', 'o', '_', 'e']","['t', 'i', 'h', 'n', 's', 'r', 'd', 'l', 'u', 'm']",3,0,False +knocks,"['_', 'n', 'o', '_', '_', 's']","['e', 't', 'a', 'i', 'h', 'r', 'd', 'l', 'u', 'm']",3,0,False +bawdiness,"['_', 'a', 'w', 'd', 'i', 'n', 'e', 's', 's']","['t', 'o', 'h', 'r', 'l', 'u', 'm', 'c', 'y', 'f']",8,0,False +optimistically,"['o', 'p', 't', 'i', 'm', 'i', 's', 't', 'i', 'c', 'a', 'l', 'l', 'y']","['e', 'h', 'n', 'r', 'd', 'u', 'w', 'f', 'g']",14,1,True +braining,"['_', 'r', 'a', 'i', 'n', 'i', 'n', '_']","['e', 't', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w']",6,0,False +mousetrapping,"['m', 'o', 'u', 's', 'e', 't', 'r', 'a', 'p', 'p', 'i', 'n', 'g']","['h', 'd', 'l', 'w', 'c', 'y', 'f']",13,3,True +upper,"['u', '_', '_', 'e', 'r']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm']",3,0,False +detracts,"['d', 'e', 't', 'r', 'a', 'c', 't', 's']","['o', 'i', 'h', 'n', 'l', 'u', 'm', 'w']",8,2,True +readout,"['r', 'e', 'a', 'd', 'o', 'u', 't']","['i', 'h', 'n', 's', 'l']",7,5,True +historical,"['h', 'i', 's', 't', 'o', 'r', 'i', 'c', 'a', 'l']","['e', 'n', 'd', 'u', 'm', 'w']",10,4,True +destining,"['d', 'e', 's', 't', 'i', 'n', 'i', 'n', '_']","['a', 'o', 'h', 'r', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +dares,"['d', 'a', 'r', 'e', 's']","['t', 'o', 'i', 'h', 'n']",5,5,True +glamorous,"['_', 'l', 'a', 'm', 'o', 'r', 'o', 'u', 's']","['e', 't', 'i', 'h', 'n', 'd', 'w', 'c', 'y', 'f']",8,0,False +beverages,"['_', 'e', '_', 'e', 'r', 'a', '_', 'e', 's']","['t', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",6,0,False +recant,"['r', 'e', 'c', 'a', 'n', 't']","['o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w']",6,1,True +rhinestones,"['r', 'h', 'i', 'n', 'e', 's', 't', 'o', 'n', 'e', 's']",['a'],11,9,True +abbreviates,"['a', '_', '_', 'r', 'e', '_', 'i', 'a', 't', 'e', 's']","['o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",8,0,False +camera,"['_', 'a', 'm', 'e', 'r', 'a']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'w']",5,0,False +advisor,"['a', 'd', '_', 'i', 's', 'o', 'r']","['e', 't', 'h', 'n', 'l', 'u', 'm', 'w', 'c', 'y']",6,0,False +wolverine,"['w', 'o', 'l', '_', 'e', 'r', 'i', 'n', 'e']","['t', 'a', 'h', 's', 'd', 'u', 'm', 'c', 'y', 'f']",8,0,False +pluralised,"['_', 'l', 'u', 'r', 'a', 'l', 'i', 's', 'e', 'd']","['t', 'o', 'h', 'n', 'm', 'w', 'c', 'y', 'f', 'g']",9,0,False +reassert,"['r', 'e', 'a', 's', 's', 'e', 'r', 't']","['o', 'i', 'h', 'n']",8,6,True +mercantile,"['m', 'e', 'r', 'c', 'a', 'n', 't', 'i', 'l', 'e']","['o', 'h', 's', 'd', 'u', 'w']",10,4,True +kickbacks,"['_', 'i', '_', '_', '_', 'a', '_', '_', 's']","['e', 't', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",3,0,False +ovulates,"['o', '_', 'u', 'l', 'a', 't', 'e', 's']","['i', 'h', 'n', 'r', 'd', 'm', 'w', 'c', 'y', 'f']",7,0,False +banked,"['_', 'a', 'n', '_', 'e', 'd']","['t', 'o', 'i', 'h', 's', 'r', 'l', 'u', 'm', 'w']",4,0,False +filings,"['_', 'i', 'l', 'i', 'n', '_', 's']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'u', 'm', 'w']",5,0,False +trustees,"['t', 'r', 'u', 's', 't', 'e', 'e', 's']","['a', 'o', 'i', 'h', 'n', 'd', 'l']",8,3,True +optimised,"['o', '_', 't', 'i', 'm', 'i', 's', 'e', 'd']","['a', 'h', 'n', 'r', 'l', 'u', 'w', 'c', 'y', 'f']",8,0,False +lifeline,"['l', 'i', '_', 'e', 'l', 'i', 'n', 'e']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'm', 'w']",7,0,False +impassivity,"['i', 'm', '_', 'a', 's', 's', 'i', '_', 'i', 't', '_']","['e', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'w', 'c']",8,0,False +brinksmanship,"['_', 'r', 'i', 'n', '_', 's', 'm', 'a', 'n', 's', 'h', 'i', '_']","['e', 't', 'o', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",10,0,False +buffoon,"['_', 'u', '_', '_', 'o', 'o', 'n']","['e', 't', 'a', 'i', 'h', 's', 'r', 'd', 'l', 'm']",4,0,False +speaker,"['s', '_', 'e', 'a', '_', 'e', 'r']","['t', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",5,0,False +softly,"['s', 'o', '_', 't', 'l', '_']","['e', 'a', 'i', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",4,0,False +coruscates,"['c', 'o', 'r', 'u', 's', 'c', 'a', 't', 'e', 's']","['i', 'h', 'n', 'd', 'l', 'm', 'w']",10,3,True +pucks,"['_', '_', '_', '_', 's']","['e', 't', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'l']",1,0,False +unclasped,"['u', 'n', 'c', 'l', 'a', 's', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'r', 'm', 'w', 'y', 'f', 'g']",8,0,False +hatch,"['h', 'a', 't', '_', 'h']","['e', 'o', 'i', 'n', 's', 'r', 'd', 'l', 'u', 'm']",4,0,False +inhibiting,"['i', 'n', 'h', 'i', '_', 'i', 't', 'i', 'n', '_']","['e', 'a', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'w']",8,0,False +brainwashed,"['_', 'r', 'a', 'i', 'n', 'w', 'a', 's', 'h', 'e', 'd']","['t', 'o', 'l', 'u', 'm', 'c', 'y', 'f', 'g', 'p']",10,0,False +lamas,"['l', 'a', 'm', 'a', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'u']",5,1,True +evocation,"['e', '_', 'o', 'c', 'a', 't', 'i', 'o', 'n']","['h', 's', 'r', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",8,0,False +gimmickry,"['_', 'i', '_', '_', 'i', '_', '_', 'r', '_']","['e', 't', 'a', 'o', 'h', 'n', 's', 'd', 'l', 'u']",3,0,False +crashes,"['c', 'r', 'a', 's', 'h', 'e', 's']","['t', 'o', 'i', 'n', 'd', 'l', 'u', 'm', 'w']",7,1,True +reemerging,"['r', 'e', 'e', 'm', 'e', 'r', '_', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'd', 'l', 'u', 'w', 'c']",8,0,False +disfigures,"['d', 'i', 's', '_', 'i', '_', 'u', 'r', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'l', 'm', 'w', 'c', 'y']",8,0,False +debaters,"['d', 'e', '_', 'a', 't', 'e', 'r', 's']","['o', 'i', 'h', 'n', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +sniffs,"['s', 'n', 'i', '_', '_', 's']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm']",4,0,False +fungicidal,"['f', 'u', 'n', 'g', 'i', 'c', 'i', 'd', 'a', 'l']","['e', 't', 'o', 'h', 's', 'r', 'm', 'w', 'y']",10,1,True +porters,"['_', 'o', 'r', 't', 'e', 'r', 's']","['a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +prognostication,"['p', 'r', 'o', 'g', 'n', 'o', 's', 't', 'i', 'c', 'a', 't', 'i', 'o', 'n']","['e', 'h', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",15,1,True +entertained,"['e', 'n', 't', 'e', 'r', 't', 'a', 'i', 'n', 'e', 'd']","['o', 'h', 's']",11,7,True +dishonouring,"['d', 'i', 's', 'h', 'o', 'n', 'o', 'u', 'r', 'i', 'n', 'g']","['e', 't', 'a', 'l', 'm', 'w', 'c', 'y', 'f']",12,1,True +reedier,"['r', 'e', 'e', 'd', 'i', 'e', 'r']","['t', 'a', 'o', 'h', 'n', 's']",7,4,True +sparked,"['s', '_', 'a', 'r', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 'l', 'u', 'm', 'w', 'c']",5,0,False +tumblers,"['t', 'u', 'm', '_', 'l', 'e', 'r', 's']","['a', 'o', 'i', 'h', 'n', 'd', 'w', 'c', 'y', 'f']",7,0,False +oblivious,"['o', '_', 'l', 'i', '_', 'i', 'o', 'u', 's']","['e', 't', 'a', 'h', 'n', 'r', 'd', 'm', 'w', 'c']",7,0,False +spewing,"['s', '_', 'e', 'w', 'i', 'n', '_']","['t', 'a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'c']",5,0,False +matins,"['m', 'a', 't', 'i', 'n', 's']","['e', 'o', 'h', 'r', 'd', 'l', 'u']",6,3,True +browbeat,"['_', 'r', 'o', 'w', '_', 'e', 'a', 't']","['i', 'h', 'n', 's', 'd', 'l', 'u', 'm', 'c', 'y']",6,0,False +absurdities,"['a', '_', 's', 'u', 'r', 'd', 'i', 't', 'i', 'e', 's']","['o', 'h', 'n', 'l', 'm', 'w', 'c', 'y', 'f', 'g']",10,0,False +preoccupy,"['_', 'r', 'e', 'o', '_', '_', 'u', '_', '_']","['t', 'a', 'i', 'h', 'n', 's', 'd', 'l', 'm', 'w']",4,0,False +quakes,"['_', 'u', 'a', '_', 'e', 's']","['t', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'm', 'w']",4,0,False +verbalises,"['_', 'e', 'r', '_', 'a', 'l', 'i', 's', 'e', 's']","['t', 'o', 'h', 'n', 'd', 'u', 'm', 'w', 'c', 'y']",8,0,False +taproom,"['t', 'a', '_', 'r', 'o', 'o', 'm']","['e', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'w', 'c']",6,0,False +escalations,"['e', 's', 'c', 'a', 'l', 'a', 't', 'i', 'o', 'n', 's']","['h', 'r', 'd', 'u', 'm', 'w']",11,4,True +select,"['s', 'e', 'l', 'e', '_', 't']","['a', 'o', 'i', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",5,0,False +gumming,"['_', 'u', 'm', 'm', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'l', 'w']",5,0,False +blunder,"['_', 'l', 'u', 'n', 'd', 'e', 'r']","['t', 'a', 'o', 'i', 'h', 's', 'm', 'w', 'c', 'y']",6,0,False +skivvies,"['s', '_', 'i', '_', '_', 'i', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'l', 'u', 'm']",5,0,False +analogue,"['a', 'n', 'a', 'l', 'o', '_', 'u', 'e']","['t', 'i', 'h', 's', 'r', 'd', 'm', 'w', 'c', 'y']",7,0,False +entourage,"['e', 'n', 't', 'o', 'u', 'r', 'a', '_', 'e']","['i', 'h', 's', 'd', 'l', 'm', 'w', 'c', 'y', 'f']",8,0,False +decoration,"['d', 'e', 'c', 'o', 'r', 'a', 't', 'i', 'o', 'n']","['h', 's', 'l', 'u', 'm', 'w']",10,4,True +birching,"['_', 'i', 'r', '_', 'h', 'i', 'n', '_']","['e', 't', 'a', 'o', 's', 'd', 'l', 'u', 'm', 'w']",5,0,False +catastrophically,"['c', 'a', 't', 'a', 's', 't', 'r', 'o', 'p', 'h', 'i', 'c', 'a', 'l', 'l', 'y']","['e', 'n', 'd', 'u', 'm', 'w', 'f', 'g']",16,2,True +caddish,"['c', 'a', 'd', 'd', 'i', 's', 'h']","['e', 't', 'o', 'n', 'r', 'l', 'u', 'm', 'w']",7,1,True +retentive,"['r', 'e', 't', 'e', 'n', 't', 'i', '_', 'e']","['a', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c']",8,0,False +candelabras,"['c', 'a', 'n', 'd', 'e', 'l', 'a', '_', 'r', 'a', 's']","['t', 'o', 'i', 'h', 'u', 'm', 'w', 'y', 'f', 'g']",10,0,False +burritos,"['_', 'u', 'r', 'r', 'i', 't', 'o', 's']","['e', 'a', 'h', 'n', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +mislaid,"['m', 'i', 's', 'l', 'a', 'i', 'd']","['e', 't', 'o', 'h', 'n', 'r', 'u']",7,3,True +eminence,"['e', 'm', 'i', 'n', 'e', 'n', '_', 'e']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'l', 'u', 'w']",7,0,False +bondsman,"['_', 'o', 'n', 'd', 's', 'm', 'a', 'n']","['e', 't', 'i', 'h', 'r', 'l', 'u', 'w', 'c', 'y']",7,0,False +roils,"['r', 'o', 'i', 'l', 's']","['e', 't', 'a', 'h', 'n', 'd']",5,4,True +rouged,"['r', 'o', 'u', '_', 'e', 'd']","['t', 'a', 'i', 'h', 'n', 's', 'l', 'm', 'w', 'c']",5,0,False +sang,"['s', 'a', 'n', '_']","['e', 't', 'o', 'i', 'h', 'r', 'd', 'l', 'u', 'm']",3,0,False +foundation,"['f', 'o', 'u', 'n', 'd', 'a', 't', 'i', 'o', 'n']","['e', 'h', 's', 'r', 'l', 'm', 'w', 'c', 'y']",10,1,True +draughtiness,"['d', 'r', 'a', 'u', 'g', 'h', 't', 'i', 'n', 'e', 's', 's']","['o', 'l', 'm', 'w', 'c', 'y', 'f']",12,3,True +anteed,"['a', 'n', 't', 'e', 'e', 'd']","['o', 'i', 'h', 's', 'r']",6,5,True +bums,"['_', '_', '_', 's']","['e', 't', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'l']",1,0,False +encouragingly,"['e', 'n', 'c', 'o', 'u', 'r', 'a', 'g', 'i', 'n', 'g', 'l', 'y']","['t', 'h', 's', 'd', 'm', 'w', 'f']",13,3,True +soviets,"['s', 'o', '_', 'i', 'e', 't', 's']","['a', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +equine,"['e', '_', 'u', 'i', 'n', 'e']","['t', 'a', 'o', 'h', 's', 'r', 'd', 'l', 'm', 'w']",5,0,False +virgules,"['_', 'i', 'r', '_', 'u', 'l', 'e', 's']","['t', 'a', 'o', 'h', 'n', 'd', 'm', 'w', 'c', 'y']",6,0,False +bullocks,"['_', 'u', 'l', 'l', 'o', '_', '_', 's']","['e', 't', 'a', 'i', 'h', 'n', 'r', 'd', 'm', 'w']",5,0,False +securing,"['s', 'e', 'c', 'u', 'r', 'i', 'n', '_']","['t', 'a', 'o', 'h', 'd', 'l', 'm', 'w', 'y', 'f']",7,0,False +sanatorium,"['s', 'a', 'n', 'a', 't', 'o', 'r', 'i', 'u', 'm']","['e', 'h', 'd', 'l']",10,6,True +deprive,"['d', 'e', '_', 'r', 'i', '_', 'e']","['t', 'a', 'o', 'h', 'n', 's', 'l', 'u', 'm', 'w']",5,0,False +spitefully,"['s', '_', 'i', 't', 'e', 'f', 'u', 'l', 'l', 'y']","['a', 'o', 'h', 'n', 'r', 'd', 'm', 'w', 'c', 'g']",9,0,False +polluting,"['_', 'o', 'l', 'l', 'u', 't', 'i', 'n', '_']","['e', 'a', 'h', 's', 'r', 'd', 'm', 'w', 'c', 'y']",7,0,False +tornado,"['t', 'o', 'r', 'n', 'a', 'd', 'o']","['e', 'i', 'h', 's']",7,6,True +invigoration,"['i', 'n', '_', 'i', '_', 'o', 'r', 'a', 't', 'i', 'o', 'n']","['e', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",10,0,False +bend,"['_', 'e', 'n', 'd']","['t', 'a', 'o', 'i', 'h', 's', 'r', 'l', 'u', 'm']",3,0,False +intermission,"['i', 'n', 't', 'e', 'r', 'm', 'i', 's', 's', 'i', 'o', 'n']","['a', 'h', 'd', 'l', 'u']",12,5,True +sad,"['s', 'a', 'd']","['e', 't', 'o', 'i', 'h', 'n', 'r']",3,3,True +cedilla,"['c', 'e', 'd', 'i', 'l', 'l', 'a']","['t', 'o', 'h', 'n', 's', 'r', 'u', 'm', 'w']",7,1,True +uvulas,"['u', '_', 'u', 'l', 'a', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'm', 'w']",5,0,False +jobs,"['_', 'o', '_', 's']","['e', 't', 'a', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",2,0,False +monickers,"['m', 'o', 'n', 'i', 'c', '_', 'e', 'r', 's']","['t', 'a', 'h', 'd', 'l', 'u', 'w', 'y', 'f', 'g']",8,0,False +gunned,"['_', 'u', 'n', 'n', 'e', 'd']","['t', 'a', 'o', 'i', 'h', 's', 'r', 'l', 'm', 'w']",5,0,False +parleyed,"['_', 'a', 'r', 'l', 'e', '_', 'e', 'd']","['t', 'o', 'i', 'h', 'n', 's', 'u', 'm', 'w', 'c']",6,0,False +nerving,"['n', 'e', 'r', '_', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'd', 'l', 'u', 'm', 'w']",5,0,False +twerps,"['t', 'w', 'e', 'r', '_', 's']","['a', 'o', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'c']",5,0,False +crackerjack,"['_', 'r', 'a', '_', '_', 'e', 'r', '_', 'a', '_', '_']","['t', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u', 'm']",5,0,False +bordellos,"['_', 'o', 'r', 'd', 'e', 'l', 'l', 'o', 's']","['t', 'a', 'i', 'h', 'n', 'u', 'm', 'w', 'c', 'y']",8,0,False +shunning,"['s', 'h', 'u', 'n', 'n', 'i', 'n', '_']","['e', 't', 'a', 'o', 'r', 'd', 'l', 'm', 'w', 'c']",7,0,False +protagonist,"['_', 'r', 'o', 't', 'a', '_', 'o', 'n', 'i', 's', 't']","['e', 'h', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +mightiest,"['m', 'i', '_', 'h', 't', 'i', 'e', 's', 't']","['a', 'o', 'n', 'r', 'd', 'l', 'u', 'w', 'c', 'y']",8,0,False +dowelling,"['d', 'o', 'w', 'e', 'l', 'l', 'i', 'n', '_']","['t', 'a', 'h', 's', 'r', 'u', 'm', 'c', 'y', 'f']",8,0,False +snugging,"['s', 'n', 'u', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 'r', 'd', 'l', 'm', 'w']",5,0,False +buzzing,"['_', 'u', '_', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'l', 'm']",3,0,False +woodcutter,"['w', 'o', 'o', 'd', 'c', 'u', 't', 't', 'e', 'r']","['a', 'i', 'h', 'n', 's', 'l', 'm']",10,3,True +matriarchies,"['m', 'a', 't', 'r', 'i', 'a', 'r', 'c', 'h', 'i', 'e', 's']","['o', 'n', 'd', 'l', 'u', 'w']",12,4,True +eyes,"['e', '_', 'e', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",3,0,False +bystander,"['_', 'y', 's', 't', 'a', 'n', 'd', 'e', 'r']","['o', 'i', 'h', 'l', 'u', 'm', 'w', 'c', 'f', 'g']",8,0,False +deviously,"['d', 'e', '_', 'i', 'o', 'u', 's', 'l', 'y']","['t', 'a', 'h', 'n', 'r', 'm', 'w', 'c', 'f', 'g']",8,0,False +restoration,"['r', 'e', 's', 't', 'o', 'r', 'a', 't', 'i', 'o', 'n']",['h'],11,9,True +mourns,"['m', 'o', 'u', 'r', 'n', 's']","['e', 't', 'a', 'i', 'h', 'd', 'l']",6,3,True +cabana,"['_', 'a', '_', 'a', 'n', 'a']","['e', 't', 'o', 'i', 'h', 's', 'r', 'd', 'l', 'u']",4,0,False +intent,"['i', 'n', 't', 'e', 'n', 't']","['a', 'o', 'h']",6,7,True +freelance,"['_', 'r', 'e', 'e', 'l', 'a', 'n', 'c', 'e']","['t', 'o', 'i', 'h', 's', 'd', 'u', 'm', 'w', 'y']",8,0,False +drinker,"['d', 'r', 'i', 'n', '_', 'e', 'r']","['t', 'a', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c']",6,0,False +colliers,"['c', 'o', 'l', 'l', 'i', 'e', 'r', 's']","['t', 'a', 'h', 'n', 'd', 'u', 'm', 'w']",8,2,True +arrange,"['a', 'r', 'r', 'a', 'n', '_', 'e']","['t', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w']",6,0,False +fancy,"['_', 'a', 'n', '_', '_']","['e', 't', 'o', 'i', 'h', 's', 'r', 'd', 'l', 'u']",2,0,False +khakis,"['_', 'h', 'a', '_', 'i', 's']","['e', 't', 'o', 'n', 'r', 'd', 'l', 'u', 'm', 'w']",4,0,False +timbers,"['t', 'i', 'm', '_', 'e', 'r', 's']","['a', 'o', 'h', 'n', 'd', 'l', 'u', 'w', 'c', 'y']",6,0,False +presentations,"['_', 'r', 'e', 's', 'e', 'n', 't', 'a', 't', 'i', 'o', 'n', 's']","['h', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f', 'g']",12,0,False +joggled,"['_', 'o', '_', '_', 'l', 'e', 'd']","['t', 'a', 'i', 'h', 'n', 's', 'r', 'u', 'm', 'w']",4,0,False +lion,"['l', 'i', 'o', 'n']","['e', 't', 'a', 'h', 's', 'r', 'd']",4,3,True +nonsense,"['n', 'o', 'n', 's', 'e', 'n', 's', 'e']","['t', 'a', 'i', 'h']",8,6,True +capitals,"['c', 'a', '_', 'i', 't', 'a', 'l', 's']","['e', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'y']",7,0,False +redeem,"['r', 'e', 'd', 'e', 'e', 'm']","['t', 'a', 'o', 'i', 'h', 'n', 's', 'l', 'u']",6,1,True +undergoing,"['u', 'n', 'd', 'e', 'r', '_', 'o', 'i', 'n', '_']","['t', 'a', 'h', 's', 'l', 'm', 'w', 'c', 'y', 'f']",8,0,False +bays,"['_', 'a', '_', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'u']",2,0,False +factories,"['f', 'a', 'c', 't', 'o', 'r', 'i', 'e', 's']","['h', 'n', 'd', 'l', 'u', 'm', 'w', 'y']",9,2,True +degenerate,"['d', 'e', '_', 'e', 'n', 'e', 'r', 'a', 't', 'e']","['o', 'i', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +woodcutter,"['w', 'o', 'o', 'd', 'c', 'u', 't', 't', 'e', 'r']","['a', 'i', 'h', 'n', 's', 'l', 'm']",10,3,True +revolutions,"['r', 'e', '_', 'o', 'l', 'u', 't', 'i', 'o', 'n', 's']","['a', 'h', 'd', 'm', 'w', 'c', 'y', 'f', 'g', 'p']",10,0,False +filigree,"['_', 'i', 'l', 'i', '_', 'r', 'e', 'e']","['t', 'a', 'o', 'h', 'n', 's', 'd', 'u', 'm', 'w']",6,0,False +cohering,"['c', 'o', 'h', 'e', 'r', 'i', 'n', '_']","['t', 'a', 's', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",7,0,False +contrail,"['c', 'o', 'n', 't', 'r', 'a', 'i', 'l']","['e', 'h', 's', 'd', 'u', 'm', 'w']",8,3,True +thatching,"['t', 'h', 'a', 't', 'c', 'h', 'i', 'n', '_']","['e', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'w', 'y']",8,0,False +noncooperation,"['n', 'o', 'n', 'c', 'o', 'o', '_', 'e', 'r', 'a', 't', 'i', 'o', 'n']","['h', 's', 'd', 'l', 'u', 'm', 'w', 'y', 'f', 'g']",13,0,False +ecologist,"['e', 'c', 'o', 'l', 'o', '_', 'i', 's', 't']","['a', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'y', 'f']",8,0,False +meanness,"['m', 'e', 'a', 'n', 'n', 'e', 's', 's']","['t', 'o', 'i', 'h', 'r', 'd', 'l', 'u']",8,2,True +ultraconservative,"['u', 'l', 't', 'r', 'a', 'c', 'o', 'n', 's', 'e', 'r', 'v', 'a', 't', 'i', 'v', 'e']","['h', 'd', 'm', 'w', 'y', 'f', 'g', 'p', 'b']",17,1,True +psychedelic,"['_', 's', 'y', 'c', 'h', 'e', 'd', 'e', 'l', 'i', 'c']","['t', 'a', 'o', 'n', 'r', 'u', 'm', 'w', 'f', 'g']",10,0,False +quahaugs,"['_', 'u', 'a', 'h', 'a', 'u', '_', 's']","['e', 't', 'o', 'i', 'n', 'r', 'd', 'l', 'm', 'w']",6,0,False +chortling,"['c', 'h', 'o', 'r', 't', 'l', 'i', 'n', 'g']","['e', 'a', 's', 'd', 'u', 'm', 'w', 'y', 'f']",9,1,True +vilest,"['_', 'i', 'l', 'e', 's', 't']","['a', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w', 'c']",5,0,False +adjutant,"['a', 'd', '_', 'u', 't', 'a', 'n', 't']","['e', 'o', 'i', 'h', 's', 'r', 'l', 'm', 'w', 'c']",7,0,False +unlatching,"['u', 'n', 'l', 'a', 't', 'c', 'h', 'i', 'n', 'g']","['e', 'o', 's', 'r', 'd', 'm', 'w', 'y', 'f']",10,1,True +ahem,"['a', 'h', 'e', 'm']","['t', 'o', 'i', 'n', 's', 'r', 'd', 'l', 'u']",4,1,True +stingier,"['s', 't', 'i', 'n', '_', 'i', 'e', 'r']","['a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +apprehended,"['a', '_', '_', 'r', 'e', 'h', 'e', 'n', 'd', 'e', 'd']","['t', 'o', 'i', 's', 'l', 'u', 'm', 'w', 'c', 'y']",9,0,False +letups,"['l', 'e', 't', 'u', '_', 's']","['a', 'o', 'i', 'h', 'n', 'r', 'd', 'm', 'w', 'c']",5,0,False +cutlet,"['_', 'u', 't', 'l', 'e', 't']","['a', 'o', 'i', 'h', 'n', 's', 'r', 'd', 'm', 'w']",5,0,False +geometries,"['_', 'e', 'o', 'm', 'e', 't', 'r', 'i', 'e', 's']","['a', 'h', 'n', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",9,0,False +otherworldly,"['o', 't', 'h', 'e', 'r', 'w', 'o', 'r', 'l', 'd', 'l', 'y']","['a', 'i', 'n', 's', 'u', 'm', 'c']",12,3,True +womanlike,"['w', 'o', 'm', 'a', 'n', 'l', 'i', '_', 'e']","['t', 'h', 's', 'r', 'd', 'u', 'c', 'y', 'f', 'g']",8,0,False +fleecier,"['_', 'l', 'e', 'e', '_', 'i', 'e', 'r']","['t', 'a', 'o', 'h', 'n', 's', 'd', 'u', 'm', 'w']",6,0,False +fumbling,"['_', 'u', 'm', '_', 'l', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'w', 'c']",5,0,False +pulsated,"['_', 'u', 'l', 's', 'a', 't', 'e', 'd']","['o', 'i', 'h', 'n', 'r', 'm', 'w', 'c', 'y', 'f']",7,0,False +rolling,"['r', 'o', 'l', 'l', 'i', 'n', '_']","['e', 't', 'a', 'h', 's', 'd', 'u', 'm', 'w', 'c']",6,0,False +godsend,"['_', 'o', 'd', 's', 'e', 'n', 'd']","['t', 'a', 'i', 'h', 'r', 'l', 'u', 'm', 'w', 'c']",6,0,False +adulate,"['a', 'd', 'u', 'l', 'a', 't', 'e']","['o', 'i', 'h', 'n', 's', 'r']",7,4,True +costars,"['c', 'o', 's', 't', 'a', 'r', 's']","['e', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w']",7,1,True +jaggedest,"['_', 'a', '_', '_', 'e', 'd', 'e', 's', 't']","['o', 'i', 'h', 'n', 'r', 'l', 'u', 'm', 'w', 'c']",6,0,False +costed,"['c', 'o', 's', 't', 'e', 'd']","['a', 'i', 'h', 'n', 'r', 'l', 'u', 'm', 'w']",6,1,True +amnesiac,"['a', 'm', 'n', 'e', 's', 'i', 'a', 'c']","['t', 'o', 'h', 'r', 'd', 'l', 'u', 'w']",8,2,True +dactyls,"['d', 'a', 'c', 't', 'y', 'l', 's']","['e', 'o', 'i', 'h', 'n', 'r', 'u', 'm', 'w']",7,1,True +restlessly,"['r', 'e', 's', 't', 'l', 'e', 's', 's', 'l', '_']","['a', 'o', 'i', 'h', 'n', 'd', 'u', 'm', 'w', 'c']",9,0,False +guavas,"['_', 'u', 'a', '_', 'a', 's']","['e', 't', 'o', 'i', 'h', 'n', 'r', 'd', 'l', 'm']",4,0,False +mishandle,"['m', 'i', 's', 'h', 'a', 'n', 'd', 'l', 'e']","['t', 'o', 'r', 'u']",9,6,True +approximation,"['a', '_', '_', 'r', 'o', '_', 'i', 'm', 'a', 't', 'i', 'o', 'n']","['e', 'h', 's', 'd', 'l', 'u', 'w', 'c', 'y', 'f']",10,0,False +draping,"['d', 'r', 'a', '_', 'i', 'n', '_']","['e', 't', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c']",5,0,False +relationship,"['r', 'e', 'l', 'a', 't', 'i', 'o', 'n', 's', 'h', 'i', 'p']","['d', 'u', 'm', 'w', 'c', 'y', 'f', 'g']",12,2,True +tungsten,"['t', 'u', 'n', '_', 's', 't', 'e', 'n']","['a', 'o', 'i', 'h', 'r', 'd', 'l', 'm', 'w', 'c']",7,0,False +pallid,"['_', 'a', 'l', 'l', 'i', 'd']","['e', 't', 'o', 'h', 'n', 's', 'r', 'u', 'm', 'w']",5,0,False +his,"['h', 'i', 's']","['e', 't', 'a', 'o', 'n']",3,5,True +fortress,"['_', 'o', 'r', 't', 'r', 'e', 's', 's']","['a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",7,0,False +handkerchief,"['h', 'a', 'n', 'd', '_', 'e', 'r', 'c', 'h', 'i', 'e', 'f']","['t', 'o', 's', 'l', 'u', 'm', 'w', 'y', 'g', 'p']",11,0,False +fluently,"['_', 'l', 'u', 'e', 'n', 't', 'l', '_']","['a', 'o', 'i', 'h', 's', 'r', 'd', 'm', 'w', 'c']",6,0,False +upperclassmen,"['u', 'p', 'p', 'e', 'r', 'c', 'l', 'a', 's', 's', 'm', 'e', 'n']","['t', 'o', 'i', 'h', 'd', 'w', 'y', 'f', 'g']",13,1,True +inserts,"['i', 'n', 's', 'e', 'r', 't', 's']","['a', 'o', 'h']",7,7,True +dignity,"['d', 'i', '_', 'n', 'i', 't', '_']","['e', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'm', 'w']",5,0,False +enslaving,"['e', 'n', 's', 'l', 'a', '_', 'i', 'n', '_']","['t', 'o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",7,0,False +sappiest,"['s', 'a', '_', '_', 'i', 'e', 's', 't']","['o', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +giggle,"['_', 'i', '_', '_', 'l', 'e']","['t', 'a', 'o', 'h', 'n', 's', 'r', 'd', 'u', 'm']",3,0,False +episcopacy,"['e', '_', 'i', 's', 'c', 'o', '_', 'a', 'c', 'y']","['t', 'h', 'n', 'r', 'd', 'l', 'u', 'm', 'w', 'f']",8,0,False +whisks,"['_', 'h', 'i', 's', '_', 's']","['e', 't', 'a', 'o', 'n', 'r', 'd', 'l', 'u', 'm']",4,0,False +anaesthetize,"['a', 'n', 'a', 'e', 's', 't', 'h', 'e', 't', 'i', '_', 'e']","['o', 'r', 'd', 'l', 'u', 'm', 'w', 'c', 'y', 'f']",11,0,False +vesicle,"['_', 'e', 's', 'i', '_', 'l', 'e']","['t', 'a', 'o', 'h', 'n', 'r', 'd', 'u', 'm', 'w']",5,0,False +wholesaler,"['w', 'h', 'o', 'l', 'e', 's', 'a', 'l', 'e', 'r']","['t', 'i', 'n', 'd', 'u', 'm']",10,4,True +assigns,"['a', 's', 's', 'i', '_', 'n', 's']","['e', 't', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w']",6,0,False +alighting,"['a', 'l', 'i', '_', 'h', 't', 'i', 'n', '_']","['e', 'o', 's', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",7,0,False +bookworm,"['_', 'o', 'o', '_', '_', 'o', 'r', '_']","['e', 't', 'a', 'i', 'h', 'n', 's', 'd', 'l', 'u']",4,0,False +gondolas,"['_', 'o', 'n', 'd', 'o', 'l', 'a', 's']","['e', 't', 'i', 'h', 'r', 'u', 'm', 'w', 'c', 'y']",7,0,False +vary,"['_', 'a', 'r', '_']","['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'u']",2,0,False +characterisations,"['c', 'h', 'a', 'r', 'a', 'c', 't', 'e', 'r', 'i', 's', 'a', 't', 'i', 'o', 'n', 's']","['d', 'l', 'u', 'm', 'w']",17,5,True +quadrangle,"['_', 'u', 'a', 'd', 'r', 'a', 'n', '_', 'l', 'e']","['t', 'o', 'i', 'h', 's', 'm', 'w', 'c', 'y', 'f']",8,0,False +pollinating,"['_', 'o', 'l', 'l', 'i', 'n', 'a', 't', 'i', 'n', '_']","['e', 'h', 's', 'r', 'd', 'u', 'm', 'w', 'c', 'y']",9,0,False +chow,"['_', 'h', 'o', '_']","['e', 't', 'a', 'i', 'n', 's', 'r', 'd', 'l', 'u']",2,0,False +macrocosms,"['m', 'a', 'c', 'r', 'o', 'c', 'o', 's', 'm', 's']","['e', 't', 'i', 'h', 'n', 'd', 'l', 'u', 'w']",10,1,True +feeds,"['_', 'e', 'e', 'd', 's']","['t', 'a', 'o', 'i', 'h', 'n', 'r', 'l', 'u', 'm']",4,0,False +dramas,"['d', 'r', 'a', 'm', 'a', 's']","['e', 't', 'o', 'i', 'h', 'n', 'l', 'u']",6,2,True +pantry,"['_', 'a', 'n', 't', 'r', '_']","['e', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w']",4,0,False +tethered,"['t', 'e', 't', 'h', 'e', 'r', 'e', 'd']","['a', 'o', 'i', 'n', 's']",8,5,True +frizziest,"['_', 'r', 'i', '_', '_', 'i', 'e', 's', 't']","['a', 'o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', 'c']",6,0,False +recurrent,"['r', 'e', 'c', 'u', 'r', 'r', 'e', 'n', 't']","['a', 'o', 'i', 'h', 's', 'd', 'l', 'm', 'w']",9,1,True +truce,"['t', 'r', 'u', '_', 'e']","['a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm', 'w']",4,0,False +panhandlers,"['_', 'a', 'n', 'h', 'a', 'n', 'd', 'l', 'e', 'r', 's']","['t', 'o', 'i', 'u', 'm', 'w', 'c', 'y', 'f', 'g']",10,0,False +heehawing,"['h', 'e', 'e', 'h', 'a', 'w', 'i', 'n', '_']","['t', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'c', 'y']",8,0,False +catafalques,"['c', 'a', 't', 'a', 'f', 'a', 'l', '_', 'u', 'e', 's']","['o', 'i', 'h', 'n', 'r', 'd', 'm', 'w', 'y', 'g']",10,0,False +deeming,"['d', 'e', 'e', 'm', 'i', 'n', '_']","['t', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'w', 'c']",6,0,False +hoof,"['h', 'o', 'o', '_']","['e', 't', 'a', 'i', 'n', 's', 'r', 'd', 'l', 'u']",3,0,False +takeouts,"['t', 'a', '_', 'e', 'o', 'u', 't', 's']","['i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +commencing,"['c', 'o', 'm', 'm', 'e', 'n', 'c', 'i', 'n', '_']","['t', 'a', 'h', 's', 'r', 'd', 'l', 'u', 'w', 'y']",9,0,False +ventilates,"['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'e', 's']","['o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', 'f']",9,0,False +ventilators,"['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'o', 'r', 's']","['h', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g', 'p']",10,0,False +silkworms,"['s', 'i', 'l', '_', 'w', 'o', 'r', 'm', 's']","['e', 't', 'a', 'h', 'n', 'd', 'u', 'c', 'y', 'f']",8,0,False +schemers,"['s', 'c', 'h', 'e', 'm', 'e', 'r', 's']","['t', 'a', 'o', 'i', 'n', 'd', 'l', 'u', 'w']",8,1,True +glorious,"['_', 'l', 'o', 'r', 'i', 'o', 'u', 's']","['e', 't', 'a', 'h', 'n', 'd', 'm', 'w', 'c', 'y']",7,0,False +primogeniture,"['p', 'r', 'i', 'm', 'o', 'g', 'e', 'n', 'i', 't', 'u', 'r', 'e']","['a', 'h', 's', 'd', 'l', 'w', 'c', 'y', 'f']",13,1,True +vowel,"['_', 'o', '_', 'e', 'l']","['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', 'm']",3,0,False +bulging,"['_', 'u', 'l', '_', 'i', 'n', '_']","['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'm', 'w']",4,0,False +regarding,"['r', 'e', '_', 'a', 'r', 'd', 'i', 'n', '_']","['t', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y']",7,0,False +intensify,"['i', 'n', 't', 'e', 'n', 's', 'i', '_', '_']","['a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', 'c']",7,0,False +interception,"['i', 'n', 't', 'e', 'r', 'c', 'e', '_', 't', 'i', 'o', 'n']","['a', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",11,0,False +kohlrabi,"['_', 'o', 'h', 'l', 'r', 'a', '_', 'i']","['e', 't', 'n', 's', 'd', 'u', 'm', 'w', 'c', 'y']",6,0,False +putrefies,"['_', 'u', 't', 'r', 'e', '_', 'i', 'e', 's']","['a', 'o', 'h', 'n', 'd', 'l', 'm', 'w', 'c', 'y']",7,0,False +moneybags,"['m', 'o', 'n', 'e', 'y', '_', 'a', '_', 's']","['t', 'i', 'h', 'r', 'd', 'l', 'u', 'w', 'c', 'f']",7,0,False +comrade,"['c', 'o', 'm', 'r', 'a', 'd', 'e']","['t', 'i', 'h', 'n', 's', 'l', 'u', 'w']",7,2,True +encircle,"['e', 'n', 'c', 'i', 'r', 'c', 'l', 'e']","['t', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w']",8,1,True +choppiness,"['c', 'h', 'o', '_', '_', 'i', 'n', 'e', 's', 's']","['t', 'a', 'r', 'd', 'l', 'u', 'm', 'w', 'y', 'f']",8,0,False +showed,"['s', 'h', 'o', 'w', 'e', 'd']","['t', 'a', 'i', 'n', 'r', 'l', 'u', 'm']",6,2,True diff --git a/hangman-logging.ipynb b/hangman-logging.ipynb new file mode 100644 index 0000000..afb30d2 --- /dev/null +++ b/hangman-logging.ipynb @@ -0,0 +1,3772 @@ +{ + "metadata": { + "name": "", + "signature": "sha256:445c0bbd851ff7b6a03c242b95a838b45261c92eee2d71a86721d2ce663cdb27" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import re\n", + "import random\n", + "import string\n", + "import collections\n", + "import csv" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 23 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "WORDS = [w.strip() for w in open('/usr/share/dict/british-english').readlines() \n", + " if re.match(r'^[a-z]*$', w.strip())]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 24 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "LETTER_COUNTS = collections.Counter(l.lower() for l in open('sherlock-holmes.txt').read() \n", + " if l in string.ascii_letters)\n", + "LETTERS_IN_ORDER = [p[0] for p in LETTER_COUNTS.most_common()]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 25 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "DICT_COUNTS = collections.Counter(l.lower() for l in open('/usr/share/dict/british-english').read() \n", + " if l in string.ascii_letters)\n", + "DICT_LETTERS_IN_ORDER = [p[0] for p in DICT_COUNTS.most_common()]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 26 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "STARTING_LIVES = 10" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 27 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class Game:\n", + " def __init__(self, target, player=None, lives=STARTING_LIVES):\n", + " self.lives = lives\n", + " self.player = player\n", + " self.target = target\n", + " self.discovered = list('_' * len(target))\n", + " self.wrong_letters = []\n", + " self.game_finished = False\n", + " self.game_won = False\n", + " self.game_lost = False\n", + " \n", + " def find_all(self, letter):\n", + " locations = []\n", + " starting=0\n", + " location = self.target.find(letter)\n", + " while location > -1:\n", + " locations += [location]\n", + " starting = location + 1\n", + " location = self.target.find(letter, starting)\n", + " return locations\n", + " \n", + " def update_discovered_word(self, guessed_letter):\n", + " locations = self.find_all(guessed_letter)\n", + " for location in locations:\n", + " self.discovered[location] = guessed_letter\n", + " return self.discovered\n", + " \n", + " def do_turn(self):\n", + " if self.player:\n", + " guess = self.player.guess(self.discovered, self.wrong_letters, self.lives)\n", + " else:\n", + " guess = self.ask_for_guess()\n", + " if guess in self.target:\n", + " self.update_discovered_word(guess)\n", + " else:\n", + " self.lives -= 1\n", + " if guess not in self.wrong_letters:\n", + " self.wrong_letters += [guess]\n", + " if self.lives == 0:\n", + " self.game_finished = True\n", + " self.game_lost = True\n", + " if '_' not in self.discovered:\n", + " self.game_finished = True\n", + " self.game_won = True\n", + " \n", + " def ask_for_guess(self):\n", + " print('Word:', ' '.join(self.discovered), \n", + " ' : Lives =', self.lives, \n", + " ', wrong guesses:', ' '.join(sorted(self.wrong_letters)))\n", + " guess = input('Enter letter: ').strip().lower()[0]\n", + " return guess\n", + " \n", + " def play_game(self, csvwriter=None):\n", + " while not self.game_finished:\n", + " self.do_turn()\n", + " if not self.player:\n", + " self.report_on_game()\n", + " if csvwriter:\n", + " csvwriter.writerow([self.target, self.discovered, self.wrong_letters, \n", + " len([l for l in self.discovered if l != '_']),\n", + " self.lives, self.game_won])\n", + " return self.game_won\n", + " \n", + " def report_on_game(self):\n", + " if self.game_won:\n", + " print('You won! The word was', self.target)\n", + " else:\n", + " print('You lost. The word was', self.target)\n", + " return self.game_won" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 70 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerFixedOrder:\n", + " def __init__(self, ordered_letters):\n", + " self.ordered_letters = ordered_letters\n", + " \n", + " def guess(self, discovered, missed, lives):\n", + " guessed_letters = [l.lower() for l in discovered + missed if l in string.ascii_letters]\n", + " self.ordered_subtract(guessed_letters)\n", + " return self.ordered_letters[0]\n", + "\n", + " def ordered_subtract(self, to_remove):\n", + " for r in to_remove:\n", + " if r in self.ordered_letters:\n", + " ri = self.ordered_letters.index(r)\n", + " self.ordered_letters = self.ordered_letters[:ri] + self.ordered_letters[ri+1:]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 29 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerAlphabetical(PlayerFixedOrder):\n", + " def __init__(self):\n", + " super().__init__(string.ascii_lowercase)\n", + "\n", + "class PlayerFreqOrdered(PlayerFixedOrder):\n", + " def __init__(self):\n", + " super().__init__(LETTERS_IN_ORDER)\n" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 30 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerAdaptive:\n", + " def __init__(self, words):\n", + " self.candidate_words = words\n", + " \n", + " def guess(self, discovered, missed, lives):\n", + " self.filter_candidate_words(discovered, missed)\n", + " self.set_ordered_letters()\n", + " guessed_letters = [l.lower() for l in discovered + missed if l in string.ascii_letters]\n", + " self.ordered_subtract(guessed_letters)\n", + " return self.ordered_letters[0]\n", + "\n", + " def ordered_subtract(self, to_remove):\n", + " for r in to_remove:\n", + " if r in self.ordered_letters:\n", + " ri = self.ordered_letters.index(r)\n", + " self.ordered_letters = self.ordered_letters[:ri] + self.ordered_letters[ri+1:]\n", + " \n", + " def filter_candidate_words(self, discovered, missed):\n", + " pass\n", + " \n", + " def set_ordered_letters(self):\n", + " counts = collections.Counter(l.lower() \n", + " for l in ''.join(self.candidate_words) + string.ascii_lowercase \n", + " if l in string.ascii_letters)\n", + " self.ordered_letters = [p[0] for p in counts.most_common()]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 31 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerAdaptiveLength(PlayerAdaptive):\n", + " def __init__(self, words):\n", + " super().__init__(words)\n", + " self.word_len = None\n", + " self.ordered_letters = None\n", + " \n", + " def filter_candidate_words(self, discovered, missed):\n", + " if not self.word_len:\n", + " self.word_len = len(discovered)\n", + " self.candidate_words = [w for w in self.candidate_words if len(w) == self.word_len]\n", + " \n", + " def set_ordered_letters(self):\n", + " if not self.ordered_letters:\n", + " super().set_ordered_letters()" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 32 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerAdaptiveIncludedLetters(PlayerAdaptive):\n", + " def filter_candidate_words(self, discovered, missed):\n", + " exp = re.compile('^' + ''.join(discovered).replace('_', '.') + '$')\n", + " self.candidate_words = [w for w in self.candidate_words if exp.match(w)]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 33 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerAdaptiveExcludedLetters(PlayerAdaptive):\n", + " def filter_candidate_words(self, discovered, missed):\n", + " if missed:\n", + " exp = re.compile('^[^' + ''.join(missed) + ']*$')\n", + " self.candidate_words = [w for w in self.candidate_words if exp.match(w)] " + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 34 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "class PlayerAdaptivePattern(PlayerAdaptive):\n", + " def filter_candidate_words(self, discovered, missed):\n", + " attempted_letters = [l for l in discovered if l != '_'] + missed\n", + " if attempted_letters:\n", + " exclusion_pattern = '[^' + ''.join(attempted_letters) + ']'\n", + " else:\n", + " exclusion_pattern = '.'\n", + " exp = re.compile('^' + ''.join(discovered).replace('_', exclusion_pattern) + '$')\n", + " self.candidate_words = [w for w in self.candidate_words if exp.match(w)]" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 35 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "g = Game(random.choice(WORDS), player=PlayerAdaptive(WORDS))\n", + "g.play_game()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 37, + "text": [ + "True" + ] + } + ], + "prompt_number": 37 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "with open('fixed_alphabetical.csv', 'w', newline='') as csvfile:\n", + " gamewriter = csv.writer(csvfile)\n", + " gamewriter.writerow([\"target\", \"discovered\", \"wrong letters\", \"number of hits\", \"lives remaining\", \"game won\"])\n", + " for _ in range(100):\n", + " g = Game(random.choice(WORDS), player=PlayerAlphabetical())\n", + " g.play_game(gamewriter)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 72 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "players = [(PlayerAlphabetical, None, 'fixed_alphabetical.csv'), \n", + " (PlayerFreqOrdered, None, 'fixed_order.csv'),\n", + " (PlayerAdaptiveIncludedLetters, WORDS, 'adaptive_included.csv'),\n", + " (PlayerAdaptiveExcludedLetters, WORDS, 'adaptive_excluded.csv'),\n", + " (PlayerAdaptivePattern, WORDS, 'adaptive_pattern.csv')]\n", + "\n", + "games_per_player = 1000\n", + "\n", + "for p, a, f in players:\n", + " with open(f, 'w', newline='') as csvfile:\n", + " gamewriter = csv.writer(csvfile)\n", + " gamewriter.writerow([\"target\", \"discovered\", \"wrong letters\", \"number of hits\", \"lives remaining\", \"game won\"])\n", + " for _ in range(games_per_player):\n", + " if a:\n", + " g = Game(random.choice(WORDS), player=p(a))\n", + " else:\n", + " g = Game(random.choice(WORDS), player=p())\n", + " g.play_game(gamewriter)" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 73 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import pandas as pd\n", + "import matplotlib as mpl\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline" + ], + "language": "python", + "metadata": {}, + "outputs": [], + "prompt_number": 86 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "fixed_order = pd.read_csv('fixed_order.csv')\n", + "fixed_order" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
targetdiscoveredwrong lettersnumber of hitslives remaininggame won
0 gushed ['_', 'u', 's', 'h', 'e', 'd'] ['t', 'a', 'o', 'i', 'n', 'r', 'l', 'm', 'w', ... 5 0 False
1 marvels ['m', 'a', 'r', '_', 'e', 'l', 's'] ['t', 'o', 'i', 'h', 'n', 'd', 'u', 'w', 'c', ... 6 0 False
2 theist ['t', 'h', 'e', 'i', 's', 't'] ['a', 'o', 'n'] 6 7 True
3 dislocated ['d', 'i', 's', 'l', 'o', 'c', 'a', 't', 'e', ... ['h', 'n', 'r', 'u', 'm', 'w'] 10 4 True
4 groans ['_', 'r', 'o', 'a', 'n', 's'] ['e', 't', 'i', 'h', 'd', 'l', 'u', 'm', 'w', ... 5 0 False
5 nukes ['n', 'u', '_', 'e', 's'] ['t', 'a', 'o', 'i', 'h', 'r', 'd', 'l', 'm', ... 4 0 False
6 meagerly ['m', 'e', 'a', '_', 'e', 'r', 'l', '_'] ['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'w', ... 6 0 False
7 mewling ['m', 'e', 'w', 'l', 'i', 'n', '_'] ['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'c', ... 6 0 False
8 ageings ['a', '_', 'e', 'i', 'n', '_', 's'] ['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 5 0 False
9 showered ['s', 'h', 'o', 'w', 'e', 'r', 'e', 'd'] ['t', 'a', 'i', 'n', 'l', 'u', 'm'] 8 3 True
10 explosiveness ['e', '_', '_', 'l', 'o', 's', 'i', '_', 'e', ... ['t', 'a', 'h', 'r', 'd', 'u', 'm', 'w', 'c', ... 10 0 False
11 flyswatter ['f', 'l', 'y', 's', 'w', 'a', 't', 't', 'e', ... ['o', 'i', 'h', 'n', 'd', 'u', 'm', 'c'] 10 2 True
12 lazy ['l', 'a', '_', '_'] ['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', ... 2 0 False
13 literacy ['l', 'i', 't', 'e', 'r', 'a', 'c', 'y'] ['o', 'h', 'n', 's', 'd', 'u', 'm', 'w'] 8 2 True
14 changeovers ['c', 'h', 'a', 'n', 'g', 'e', 'o', '_', 'e', ... ['t', 'i', 'd', 'l', 'u', 'm', 'w', 'y', 'f', ... 10 0 False
15 bowers ['_', 'o', 'w', 'e', 'r', 's'] ['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', ... 5 0 False
16 strychnine ['s', 't', 'r', 'y', 'c', 'h', 'n', 'i', 'n', ... ['a', 'o', 'd', 'l', 'u', 'm', 'w'] 10 3 True
17 halting ['h', 'a', 'l', 't', 'i', 'n', '_'] ['e', 'o', 's', 'r', 'd', 'u', 'm', 'w', 'c', ... 6 0 False
18 throat ['t', 'h', 'r', 'o', 'a', 't'] ['e', 'i', 'n', 's'] 6 6 True
19 crazy ['_', 'r', 'a', '_', '_'] ['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', ... 2 0 False
20 hourglasses ['h', 'o', 'u', 'r', 'g', 'l', 'a', 's', 's', ... ['t', 'i', 'n', 'd', 'm', 'w', 'c', 'y', 'f'] 11 1 True
21 unbiassed ['u', 'n', '_', 'i', 'a', 's', 's', 'e', 'd'] ['t', 'o', 'h', 'r', 'l', 'm', 'w', 'c', 'y', ... 8 0 False
22 snooping ['s', 'n', 'o', 'o', '_', 'i', 'n', '_'] ['e', 't', 'a', 'h', 'r', 'd', 'l', 'u', 'm', ... 6 0 False
23 gradient ['_', 'r', 'a', 'd', 'i', 'e', 'n', 't'] ['o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y', ... 7 0 False
24 mourned ['m', 'o', 'u', 'r', 'n', 'e', 'd'] ['t', 'a', 'i', 'h', 's', 'l'] 7 4 True
25 ingress ['i', 'n', '_', 'r', 'e', 's', 's'] ['t', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', ... 6 0 False
26 desensitise ['d', 'e', 's', 'e', 'n', 's', 'i', 't', 'i', ... ['a', 'o', 'h', 'r'] 11 6 True
27 histamines ['h', 'i', 's', 't', 'a', 'm', 'i', 'n', 'e', ... ['o', 'r', 'd', 'l', 'u'] 10 5 True
28 extravagant ['e', '_', 't', 'r', 'a', '_', 'a', '_', 'a', ... ['o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w', ... 8 0 False
29 propagandists ['p', 'r', 'o', 'p', 'a', 'g', 'a', 'n', 'd', ... ['e', 'h', 'l', 'u', 'm', 'w', 'c', 'y', 'f'] 13 1 True
.....................
970 pantry ['_', 'a', 'n', 't', 'r', '_'] ['e', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', ... 4 0 False
971 tethered ['t', 'e', 't', 'h', 'e', 'r', 'e', 'd'] ['a', 'o', 'i', 'n', 's'] 8 5 True
972 frizziest ['_', 'r', 'i', '_', '_', 'i', 'e', 's', 't'] ['a', 'o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', ... 6 0 False
973 recurrent ['r', 'e', 'c', 'u', 'r', 'r', 'e', 'n', 't'] ['a', 'o', 'i', 'h', 's', 'd', 'l', 'm', 'w'] 9 1 True
974 truce ['t', 'r', 'u', '_', 'e'] ['a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm', ... 4 0 False
975 panhandlers ['_', 'a', 'n', 'h', 'a', 'n', 'd', 'l', 'e', ... ['t', 'o', 'i', 'u', 'm', 'w', 'c', 'y', 'f', ... 10 0 False
976 heehawing ['h', 'e', 'e', 'h', 'a', 'w', 'i', 'n', '_'] ['t', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'c', ... 8 0 False
977 catafalques ['c', 'a', 't', 'a', 'f', 'a', 'l', '_', 'u', ... ['o', 'i', 'h', 'n', 'r', 'd', 'm', 'w', 'y', ... 10 0 False
978 deeming ['d', 'e', 'e', 'm', 'i', 'n', '_'] ['t', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'w', ... 6 0 False
979 hoof ['h', 'o', 'o', '_'] ['e', 't', 'a', 'i', 'n', 's', 'r', 'd', 'l', ... 3 0 False
980 takeouts ['t', 'a', '_', 'e', 'o', 'u', 't', 's'] ['i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c', ... 7 0 False
981 commencing ['c', 'o', 'm', 'm', 'e', 'n', 'c', 'i', 'n', ... ['t', 'a', 'h', 's', 'r', 'd', 'l', 'u', 'w', ... 9 0 False
982 ventilates ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'e', ... ['o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', ... 9 0 False
983 ventilators ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'o', ... ['h', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g', ... 10 0 False
984 silkworms ['s', 'i', 'l', '_', 'w', 'o', 'r', 'm', 's'] ['e', 't', 'a', 'h', 'n', 'd', 'u', 'c', 'y', ... 8 0 False
985 schemers ['s', 'c', 'h', 'e', 'm', 'e', 'r', 's'] ['t', 'a', 'o', 'i', 'n', 'd', 'l', 'u', 'w'] 8 1 True
986 glorious ['_', 'l', 'o', 'r', 'i', 'o', 'u', 's'] ['e', 't', 'a', 'h', 'n', 'd', 'm', 'w', 'c', ... 7 0 False
987 primogeniture ['p', 'r', 'i', 'm', 'o', 'g', 'e', 'n', 'i', ... ['a', 'h', 's', 'd', 'l', 'w', 'c', 'y', 'f'] 13 1 True
988 vowel ['_', 'o', '_', 'e', 'l'] ['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', ... 3 0 False
989 bulging ['_', 'u', 'l', '_', 'i', 'n', '_'] ['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'm', ... 4 0 False
990 regarding ['r', 'e', '_', 'a', 'r', 'd', 'i', 'n', '_'] ['t', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c', ... 7 0 False
991 intensify ['i', 'n', 't', 'e', 'n', 's', 'i', '_', '_'] ['a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 7 0 False
992 interception ['i', 'n', 't', 'e', 'r', 'c', 'e', '_', 't', ... ['a', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y', ... 11 0 False
993 kohlrabi ['_', 'o', 'h', 'l', 'r', 'a', '_', 'i'] ['e', 't', 'n', 's', 'd', 'u', 'm', 'w', 'c', ... 6 0 False
994 putrefies ['_', 'u', 't', 'r', 'e', '_', 'i', 'e', 's'] ['a', 'o', 'h', 'n', 'd', 'l', 'm', 'w', 'c', ... 7 0 False
995 moneybags ['m', 'o', 'n', 'e', 'y', '_', 'a', '_', 's'] ['t', 'i', 'h', 'r', 'd', 'l', 'u', 'w', 'c', ... 7 0 False
996 comrade ['c', 'o', 'm', 'r', 'a', 'd', 'e'] ['t', 'i', 'h', 'n', 's', 'l', 'u', 'w'] 7 2 True
997 encircle ['e', 'n', 'c', 'i', 'r', 'c', 'l', 'e'] ['t', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w'] 8 1 True
998 choppiness ['c', 'h', 'o', '_', '_', 'i', 'n', 'e', 's', ... ['t', 'a', 'r', 'd', 'l', 'u', 'm', 'w', 'y', ... 8 0 False
999 showed ['s', 'h', 'o', 'w', 'e', 'd'] ['t', 'a', 'i', 'n', 'r', 'l', 'u', 'm'] 6 2 True
\n", + "

1000 rows \u00d7 6 columns

\n", + "
" + ], + "metadata": {}, + "output_type": "pyout", + "prompt_number": 79, + "text": [ + " target discovered \\\n", + "0 gushed ['_', 'u', 's', 'h', 'e', 'd'] \n", + "1 marvels ['m', 'a', 'r', '_', 'e', 'l', 's'] \n", + "2 theist ['t', 'h', 'e', 'i', 's', 't'] \n", + "3 dislocated ['d', 'i', 's', 'l', 'o', 'c', 'a', 't', 'e', ... \n", + "4 groans ['_', 'r', 'o', 'a', 'n', 's'] \n", + "5 nukes ['n', 'u', '_', 'e', 's'] \n", + "6 meagerly ['m', 'e', 'a', '_', 'e', 'r', 'l', '_'] \n", + "7 mewling ['m', 'e', 'w', 'l', 'i', 'n', '_'] \n", + "8 ageings ['a', '_', 'e', 'i', 'n', '_', 's'] \n", + "9 showered ['s', 'h', 'o', 'w', 'e', 'r', 'e', 'd'] \n", + "10 explosiveness ['e', '_', '_', 'l', 'o', 's', 'i', '_', 'e', ... \n", + "11 flyswatter ['f', 'l', 'y', 's', 'w', 'a', 't', 't', 'e', ... \n", + "12 lazy ['l', 'a', '_', '_'] \n", + "13 literacy ['l', 'i', 't', 'e', 'r', 'a', 'c', 'y'] \n", + "14 changeovers ['c', 'h', 'a', 'n', 'g', 'e', 'o', '_', 'e', ... \n", + "15 bowers ['_', 'o', 'w', 'e', 'r', 's'] \n", + "16 strychnine ['s', 't', 'r', 'y', 'c', 'h', 'n', 'i', 'n', ... \n", + "17 halting ['h', 'a', 'l', 't', 'i', 'n', '_'] \n", + "18 throat ['t', 'h', 'r', 'o', 'a', 't'] \n", + "19 crazy ['_', 'r', 'a', '_', '_'] \n", + "20 hourglasses ['h', 'o', 'u', 'r', 'g', 'l', 'a', 's', 's', ... \n", + "21 unbiassed ['u', 'n', '_', 'i', 'a', 's', 's', 'e', 'd'] \n", + "22 snooping ['s', 'n', 'o', 'o', '_', 'i', 'n', '_'] \n", + "23 gradient ['_', 'r', 'a', 'd', 'i', 'e', 'n', 't'] \n", + "24 mourned ['m', 'o', 'u', 'r', 'n', 'e', 'd'] \n", + "25 ingress ['i', 'n', '_', 'r', 'e', 's', 's'] \n", + "26 desensitise ['d', 'e', 's', 'e', 'n', 's', 'i', 't', 'i', ... \n", + "27 histamines ['h', 'i', 's', 't', 'a', 'm', 'i', 'n', 'e', ... \n", + "28 extravagant ['e', '_', 't', 'r', 'a', '_', 'a', '_', 'a', ... \n", + "29 propagandists ['p', 'r', 'o', 'p', 'a', 'g', 'a', 'n', 'd', ... \n", + ".. ... ... \n", + "970 pantry ['_', 'a', 'n', 't', 'r', '_'] \n", + "971 tethered ['t', 'e', 't', 'h', 'e', 'r', 'e', 'd'] \n", + "972 frizziest ['_', 'r', 'i', '_', '_', 'i', 'e', 's', 't'] \n", + "973 recurrent ['r', 'e', 'c', 'u', 'r', 'r', 'e', 'n', 't'] \n", + "974 truce ['t', 'r', 'u', '_', 'e'] \n", + "975 panhandlers ['_', 'a', 'n', 'h', 'a', 'n', 'd', 'l', 'e', ... \n", + "976 heehawing ['h', 'e', 'e', 'h', 'a', 'w', 'i', 'n', '_'] \n", + "977 catafalques ['c', 'a', 't', 'a', 'f', 'a', 'l', '_', 'u', ... \n", + "978 deeming ['d', 'e', 'e', 'm', 'i', 'n', '_'] \n", + "979 hoof ['h', 'o', 'o', '_'] \n", + "980 takeouts ['t', 'a', '_', 'e', 'o', 'u', 't', 's'] \n", + "981 commencing ['c', 'o', 'm', 'm', 'e', 'n', 'c', 'i', 'n', ... \n", + "982 ventilates ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'e', ... \n", + "983 ventilators ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'o', ... \n", + "984 silkworms ['s', 'i', 'l', '_', 'w', 'o', 'r', 'm', 's'] \n", + "985 schemers ['s', 'c', 'h', 'e', 'm', 'e', 'r', 's'] \n", + "986 glorious ['_', 'l', 'o', 'r', 'i', 'o', 'u', 's'] \n", + "987 primogeniture ['p', 'r', 'i', 'm', 'o', 'g', 'e', 'n', 'i', ... \n", + "988 vowel ['_', 'o', '_', 'e', 'l'] \n", + "989 bulging ['_', 'u', 'l', '_', 'i', 'n', '_'] \n", + "990 regarding ['r', 'e', '_', 'a', 'r', 'd', 'i', 'n', '_'] \n", + "991 intensify ['i', 'n', 't', 'e', 'n', 's', 'i', '_', '_'] \n", + "992 interception ['i', 'n', 't', 'e', 'r', 'c', 'e', '_', 't', ... \n", + "993 kohlrabi ['_', 'o', 'h', 'l', 'r', 'a', '_', 'i'] \n", + "994 putrefies ['_', 'u', 't', 'r', 'e', '_', 'i', 'e', 's'] \n", + "995 moneybags ['m', 'o', 'n', 'e', 'y', '_', 'a', '_', 's'] \n", + "996 comrade ['c', 'o', 'm', 'r', 'a', 'd', 'e'] \n", + "997 encircle ['e', 'n', 'c', 'i', 'r', 'c', 'l', 'e'] \n", + "998 choppiness ['c', 'h', 'o', '_', '_', 'i', 'n', 'e', 's', ... \n", + "999 showed ['s', 'h', 'o', 'w', 'e', 'd'] \n", + "\n", + " wrong letters number of hits \\\n", + "0 ['t', 'a', 'o', 'i', 'n', 'r', 'l', 'm', 'w', ... 5 \n", + "1 ['t', 'o', 'i', 'h', 'n', 'd', 'u', 'w', 'c', ... 6 \n", + "2 ['a', 'o', 'n'] 6 \n", + "3 ['h', 'n', 'r', 'u', 'm', 'w'] 10 \n", + "4 ['e', 't', 'i', 'h', 'd', 'l', 'u', 'm', 'w', ... 5 \n", + "5 ['t', 'a', 'o', 'i', 'h', 'r', 'd', 'l', 'm', ... 4 \n", + "6 ['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'w', ... 6 \n", + "7 ['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'c', ... 6 \n", + "8 ['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 5 \n", + "9 ['t', 'a', 'i', 'n', 'l', 'u', 'm'] 8 \n", + "10 ['t', 'a', 'h', 'r', 'd', 'u', 'm', 'w', 'c', ... 10 \n", + "11 ['o', 'i', 'h', 'n', 'd', 'u', 'm', 'c'] 10 \n", + "12 ['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', ... 2 \n", + "13 ['o', 'h', 'n', 's', 'd', 'u', 'm', 'w'] 8 \n", + "14 ['t', 'i', 'd', 'l', 'u', 'm', 'w', 'y', 'f', ... 10 \n", + "15 ['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', ... 5 \n", + "16 ['a', 'o', 'd', 'l', 'u', 'm', 'w'] 10 \n", + "17 ['e', 'o', 's', 'r', 'd', 'u', 'm', 'w', 'c', ... 6 \n", + "18 ['e', 'i', 'n', 's'] 6 \n", + "19 ['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', ... 2 \n", + "20 ['t', 'i', 'n', 'd', 'm', 'w', 'c', 'y', 'f'] 11 \n", + "21 ['t', 'o', 'h', 'r', 'l', 'm', 'w', 'c', 'y', ... 8 \n", + "22 ['e', 't', 'a', 'h', 'r', 'd', 'l', 'u', 'm', ... 6 \n", + "23 ['o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y', ... 7 \n", + "24 ['t', 'a', 'i', 'h', 's', 'l'] 7 \n", + "25 ['t', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', ... 6 \n", + "26 ['a', 'o', 'h', 'r'] 11 \n", + "27 ['o', 'r', 'd', 'l', 'u'] 10 \n", + "28 ['o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w', ... 8 \n", + "29 ['e', 'h', 'l', 'u', 'm', 'w', 'c', 'y', 'f'] 13 \n", + ".. ... ... \n", + "970 ['e', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', ... 4 \n", + "971 ['a', 'o', 'i', 'n', 's'] 8 \n", + "972 ['a', 'o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', ... 6 \n", + "973 ['a', 'o', 'i', 'h', 's', 'd', 'l', 'm', 'w'] 9 \n", + "974 ['a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm', ... 4 \n", + "975 ['t', 'o', 'i', 'u', 'm', 'w', 'c', 'y', 'f', ... 10 \n", + "976 ['t', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'c', ... 8 \n", + "977 ['o', 'i', 'h', 'n', 'r', 'd', 'm', 'w', 'y', ... 10 \n", + "978 ['t', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'w', ... 6 \n", + "979 ['e', 't', 'a', 'i', 'n', 's', 'r', 'd', 'l', ... 3 \n", + "980 ['i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c', ... 7 \n", + "981 ['t', 'a', 'h', 's', 'r', 'd', 'l', 'u', 'w', ... 9 \n", + "982 ['o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', ... 9 \n", + "983 ['h', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g', ... 10 \n", + "984 ['e', 't', 'a', 'h', 'n', 'd', 'u', 'c', 'y', ... 8 \n", + "985 ['t', 'a', 'o', 'i', 'n', 'd', 'l', 'u', 'w'] 8 \n", + "986 ['e', 't', 'a', 'h', 'n', 'd', 'm', 'w', 'c', ... 7 \n", + "987 ['a', 'h', 's', 'd', 'l', 'w', 'c', 'y', 'f'] 13 \n", + "988 ['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', ... 3 \n", + "989 ['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'm', ... 4 \n", + "990 ['t', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c', ... 7 \n", + "991 ['a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 7 \n", + "992 ['a', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y', ... 11 \n", + "993 ['e', 't', 'n', 's', 'd', 'u', 'm', 'w', 'c', ... 6 \n", + "994 ['a', 'o', 'h', 'n', 'd', 'l', 'm', 'w', 'c', ... 7 \n", + "995 ['t', 'i', 'h', 'r', 'd', 'l', 'u', 'w', 'c', ... 7 \n", + "996 ['t', 'i', 'h', 'n', 's', 'l', 'u', 'w'] 7 \n", + "997 ['t', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w'] 8 \n", + "998 ['t', 'a', 'r', 'd', 'l', 'u', 'm', 'w', 'y', ... 8 \n", + "999 ['t', 'a', 'i', 'n', 'r', 'l', 'u', 'm'] 6 \n", + "\n", + " lives remaining game won \n", + "0 0 False \n", + "1 0 False \n", + "2 7 True \n", + "3 4 True \n", + "4 0 False \n", + "5 0 False \n", + "6 0 False \n", + "7 0 False \n", + "8 0 False \n", + "9 3 True \n", + "10 0 False \n", + "11 2 True \n", + "12 0 False \n", + "13 2 True \n", + "14 0 False \n", + "15 0 False \n", + "16 3 True \n", + "17 0 False \n", + "18 6 True \n", + "19 0 False \n", + "20 1 True \n", + "21 0 False \n", + "22 0 False \n", + "23 0 False \n", + "24 4 True \n", + "25 0 False \n", + "26 6 True \n", + "27 5 True \n", + "28 0 False \n", + "29 1 True \n", + ".. ... ... \n", + "970 0 False \n", + "971 5 True \n", + "972 0 False \n", + "973 1 True \n", + "974 0 False \n", + "975 0 False \n", + "976 0 False \n", + "977 0 False \n", + "978 0 False \n", + "979 0 False \n", + "980 0 False \n", + "981 0 False \n", + "982 0 False \n", + "983 0 False \n", + "984 0 False \n", + "985 1 True \n", + "986 0 False \n", + "987 1 True \n", + "988 0 False \n", + "989 0 False \n", + "990 0 False \n", + "991 0 False \n", + "992 0 False \n", + "993 0 False \n", + "994 0 False \n", + "995 0 False \n", + "996 2 True \n", + "997 1 True \n", + "998 0 False \n", + "999 2 True \n", + "\n", + "[1000 rows x 6 columns]" + ] + } + ], + "prompt_number": 79 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "len(fixed_order['discovered'][0].split(','))" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 82, + "text": [ + "6" + ] + } + ], + "prompt_number": 82 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "fixed_order['word length'] = fixed_order.apply(lambda r: len(r['target']), axis=1)\n", + "fixed_order" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
targetdiscoveredwrong lettersnumber of hitslives remaininggame wonword length
0 gushed ['_', 'u', 's', 'h', 'e', 'd'] ['t', 'a', 'o', 'i', 'n', 'r', 'l', 'm', 'w', ... 5 0 False 6
1 marvels ['m', 'a', 'r', '_', 'e', 'l', 's'] ['t', 'o', 'i', 'h', 'n', 'd', 'u', 'w', 'c', ... 6 0 False 7
2 theist ['t', 'h', 'e', 'i', 's', 't'] ['a', 'o', 'n'] 6 7 True 6
3 dislocated ['d', 'i', 's', 'l', 'o', 'c', 'a', 't', 'e', ... ['h', 'n', 'r', 'u', 'm', 'w'] 10 4 True 10
4 groans ['_', 'r', 'o', 'a', 'n', 's'] ['e', 't', 'i', 'h', 'd', 'l', 'u', 'm', 'w', ... 5 0 False 6
5 nukes ['n', 'u', '_', 'e', 's'] ['t', 'a', 'o', 'i', 'h', 'r', 'd', 'l', 'm', ... 4 0 False 5
6 meagerly ['m', 'e', 'a', '_', 'e', 'r', 'l', '_'] ['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'w', ... 6 0 False 8
7 mewling ['m', 'e', 'w', 'l', 'i', 'n', '_'] ['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'c', ... 6 0 False 7
8 ageings ['a', '_', 'e', 'i', 'n', '_', 's'] ['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 5 0 False 7
9 showered ['s', 'h', 'o', 'w', 'e', 'r', 'e', 'd'] ['t', 'a', 'i', 'n', 'l', 'u', 'm'] 8 3 True 8
10 explosiveness ['e', '_', '_', 'l', 'o', 's', 'i', '_', 'e', ... ['t', 'a', 'h', 'r', 'd', 'u', 'm', 'w', 'c', ... 10 0 False 13
11 flyswatter ['f', 'l', 'y', 's', 'w', 'a', 't', 't', 'e', ... ['o', 'i', 'h', 'n', 'd', 'u', 'm', 'c'] 10 2 True 10
12 lazy ['l', 'a', '_', '_'] ['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', ... 2 0 False 4
13 literacy ['l', 'i', 't', 'e', 'r', 'a', 'c', 'y'] ['o', 'h', 'n', 's', 'd', 'u', 'm', 'w'] 8 2 True 8
14 changeovers ['c', 'h', 'a', 'n', 'g', 'e', 'o', '_', 'e', ... ['t', 'i', 'd', 'l', 'u', 'm', 'w', 'y', 'f', ... 10 0 False 11
15 bowers ['_', 'o', 'w', 'e', 'r', 's'] ['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', ... 5 0 False 6
16 strychnine ['s', 't', 'r', 'y', 'c', 'h', 'n', 'i', 'n', ... ['a', 'o', 'd', 'l', 'u', 'm', 'w'] 10 3 True 10
17 halting ['h', 'a', 'l', 't', 'i', 'n', '_'] ['e', 'o', 's', 'r', 'd', 'u', 'm', 'w', 'c', ... 6 0 False 7
18 throat ['t', 'h', 'r', 'o', 'a', 't'] ['e', 'i', 'n', 's'] 6 6 True 6
19 crazy ['_', 'r', 'a', '_', '_'] ['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', ... 2 0 False 5
20 hourglasses ['h', 'o', 'u', 'r', 'g', 'l', 'a', 's', 's', ... ['t', 'i', 'n', 'd', 'm', 'w', 'c', 'y', 'f'] 11 1 True 11
21 unbiassed ['u', 'n', '_', 'i', 'a', 's', 's', 'e', 'd'] ['t', 'o', 'h', 'r', 'l', 'm', 'w', 'c', 'y', ... 8 0 False 9
22 snooping ['s', 'n', 'o', 'o', '_', 'i', 'n', '_'] ['e', 't', 'a', 'h', 'r', 'd', 'l', 'u', 'm', ... 6 0 False 8
23 gradient ['_', 'r', 'a', 'd', 'i', 'e', 'n', 't'] ['o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y', ... 7 0 False 8
24 mourned ['m', 'o', 'u', 'r', 'n', 'e', 'd'] ['t', 'a', 'i', 'h', 's', 'l'] 7 4 True 7
25 ingress ['i', 'n', '_', 'r', 'e', 's', 's'] ['t', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', ... 6 0 False 7
26 desensitise ['d', 'e', 's', 'e', 'n', 's', 'i', 't', 'i', ... ['a', 'o', 'h', 'r'] 11 6 True 11
27 histamines ['h', 'i', 's', 't', 'a', 'm', 'i', 'n', 'e', ... ['o', 'r', 'd', 'l', 'u'] 10 5 True 10
28 extravagant ['e', '_', 't', 'r', 'a', '_', 'a', '_', 'a', ... ['o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w', ... 8 0 False 11
29 propagandists ['p', 'r', 'o', 'p', 'a', 'g', 'a', 'n', 'd', ... ['e', 'h', 'l', 'u', 'm', 'w', 'c', 'y', 'f'] 13 1 True 13
........................
970 pantry ['_', 'a', 'n', 't', 'r', '_'] ['e', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', ... 4 0 False 6
971 tethered ['t', 'e', 't', 'h', 'e', 'r', 'e', 'd'] ['a', 'o', 'i', 'n', 's'] 8 5 True 8
972 frizziest ['_', 'r', 'i', '_', '_', 'i', 'e', 's', 't'] ['a', 'o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', ... 6 0 False 9
973 recurrent ['r', 'e', 'c', 'u', 'r', 'r', 'e', 'n', 't'] ['a', 'o', 'i', 'h', 's', 'd', 'l', 'm', 'w'] 9 1 True 9
974 truce ['t', 'r', 'u', '_', 'e'] ['a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm', ... 4 0 False 5
975 panhandlers ['_', 'a', 'n', 'h', 'a', 'n', 'd', 'l', 'e', ... ['t', 'o', 'i', 'u', 'm', 'w', 'c', 'y', 'f', ... 10 0 False 11
976 heehawing ['h', 'e', 'e', 'h', 'a', 'w', 'i', 'n', '_'] ['t', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'c', ... 8 0 False 9
977 catafalques ['c', 'a', 't', 'a', 'f', 'a', 'l', '_', 'u', ... ['o', 'i', 'h', 'n', 'r', 'd', 'm', 'w', 'y', ... 10 0 False 11
978 deeming ['d', 'e', 'e', 'm', 'i', 'n', '_'] ['t', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'w', ... 6 0 False 7
979 hoof ['h', 'o', 'o', '_'] ['e', 't', 'a', 'i', 'n', 's', 'r', 'd', 'l', ... 3 0 False 4
980 takeouts ['t', 'a', '_', 'e', 'o', 'u', 't', 's'] ['i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c', ... 7 0 False 8
981 commencing ['c', 'o', 'm', 'm', 'e', 'n', 'c', 'i', 'n', ... ['t', 'a', 'h', 's', 'r', 'd', 'l', 'u', 'w', ... 9 0 False 10
982 ventilates ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'e', ... ['o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', ... 9 0 False 10
983 ventilators ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'o', ... ['h', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g', ... 10 0 False 11
984 silkworms ['s', 'i', 'l', '_', 'w', 'o', 'r', 'm', 's'] ['e', 't', 'a', 'h', 'n', 'd', 'u', 'c', 'y', ... 8 0 False 9
985 schemers ['s', 'c', 'h', 'e', 'm', 'e', 'r', 's'] ['t', 'a', 'o', 'i', 'n', 'd', 'l', 'u', 'w'] 8 1 True 8
986 glorious ['_', 'l', 'o', 'r', 'i', 'o', 'u', 's'] ['e', 't', 'a', 'h', 'n', 'd', 'm', 'w', 'c', ... 7 0 False 8
987 primogeniture ['p', 'r', 'i', 'm', 'o', 'g', 'e', 'n', 'i', ... ['a', 'h', 's', 'd', 'l', 'w', 'c', 'y', 'f'] 13 1 True 13
988 vowel ['_', 'o', '_', 'e', 'l'] ['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', ... 3 0 False 5
989 bulging ['_', 'u', 'l', '_', 'i', 'n', '_'] ['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'm', ... 4 0 False 7
990 regarding ['r', 'e', '_', 'a', 'r', 'd', 'i', 'n', '_'] ['t', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c', ... 7 0 False 9
991 intensify ['i', 'n', 't', 'e', 'n', 's', 'i', '_', '_'] ['a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 7 0 False 9
992 interception ['i', 'n', 't', 'e', 'r', 'c', 'e', '_', 't', ... ['a', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y', ... 11 0 False 12
993 kohlrabi ['_', 'o', 'h', 'l', 'r', 'a', '_', 'i'] ['e', 't', 'n', 's', 'd', 'u', 'm', 'w', 'c', ... 6 0 False 8
994 putrefies ['_', 'u', 't', 'r', 'e', '_', 'i', 'e', 's'] ['a', 'o', 'h', 'n', 'd', 'l', 'm', 'w', 'c', ... 7 0 False 9
995 moneybags ['m', 'o', 'n', 'e', 'y', '_', 'a', '_', 's'] ['t', 'i', 'h', 'r', 'd', 'l', 'u', 'w', 'c', ... 7 0 False 9
996 comrade ['c', 'o', 'm', 'r', 'a', 'd', 'e'] ['t', 'i', 'h', 'n', 's', 'l', 'u', 'w'] 7 2 True 7
997 encircle ['e', 'n', 'c', 'i', 'r', 'c', 'l', 'e'] ['t', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w'] 8 1 True 8
998 choppiness ['c', 'h', 'o', '_', '_', 'i', 'n', 'e', 's', ... ['t', 'a', 'r', 'd', 'l', 'u', 'm', 'w', 'y', ... 8 0 False 10
999 showed ['s', 'h', 'o', 'w', 'e', 'd'] ['t', 'a', 'i', 'n', 'r', 'l', 'u', 'm'] 6 2 True 6
\n", + "

1000 rows \u00d7 7 columns

\n", + "
" + ], + "metadata": {}, + "output_type": "pyout", + "prompt_number": 84, + "text": [ + " target discovered \\\n", + "0 gushed ['_', 'u', 's', 'h', 'e', 'd'] \n", + "1 marvels ['m', 'a', 'r', '_', 'e', 'l', 's'] \n", + "2 theist ['t', 'h', 'e', 'i', 's', 't'] \n", + "3 dislocated ['d', 'i', 's', 'l', 'o', 'c', 'a', 't', 'e', ... \n", + "4 groans ['_', 'r', 'o', 'a', 'n', 's'] \n", + "5 nukes ['n', 'u', '_', 'e', 's'] \n", + "6 meagerly ['m', 'e', 'a', '_', 'e', 'r', 'l', '_'] \n", + "7 mewling ['m', 'e', 'w', 'l', 'i', 'n', '_'] \n", + "8 ageings ['a', '_', 'e', 'i', 'n', '_', 's'] \n", + "9 showered ['s', 'h', 'o', 'w', 'e', 'r', 'e', 'd'] \n", + "10 explosiveness ['e', '_', '_', 'l', 'o', 's', 'i', '_', 'e', ... \n", + "11 flyswatter ['f', 'l', 'y', 's', 'w', 'a', 't', 't', 'e', ... \n", + "12 lazy ['l', 'a', '_', '_'] \n", + "13 literacy ['l', 'i', 't', 'e', 'r', 'a', 'c', 'y'] \n", + "14 changeovers ['c', 'h', 'a', 'n', 'g', 'e', 'o', '_', 'e', ... \n", + "15 bowers ['_', 'o', 'w', 'e', 'r', 's'] \n", + "16 strychnine ['s', 't', 'r', 'y', 'c', 'h', 'n', 'i', 'n', ... \n", + "17 halting ['h', 'a', 'l', 't', 'i', 'n', '_'] \n", + "18 throat ['t', 'h', 'r', 'o', 'a', 't'] \n", + "19 crazy ['_', 'r', 'a', '_', '_'] \n", + "20 hourglasses ['h', 'o', 'u', 'r', 'g', 'l', 'a', 's', 's', ... \n", + "21 unbiassed ['u', 'n', '_', 'i', 'a', 's', 's', 'e', 'd'] \n", + "22 snooping ['s', 'n', 'o', 'o', '_', 'i', 'n', '_'] \n", + "23 gradient ['_', 'r', 'a', 'd', 'i', 'e', 'n', 't'] \n", + "24 mourned ['m', 'o', 'u', 'r', 'n', 'e', 'd'] \n", + "25 ingress ['i', 'n', '_', 'r', 'e', 's', 's'] \n", + "26 desensitise ['d', 'e', 's', 'e', 'n', 's', 'i', 't', 'i', ... \n", + "27 histamines ['h', 'i', 's', 't', 'a', 'm', 'i', 'n', 'e', ... \n", + "28 extravagant ['e', '_', 't', 'r', 'a', '_', 'a', '_', 'a', ... \n", + "29 propagandists ['p', 'r', 'o', 'p', 'a', 'g', 'a', 'n', 'd', ... \n", + ".. ... ... \n", + "970 pantry ['_', 'a', 'n', 't', 'r', '_'] \n", + "971 tethered ['t', 'e', 't', 'h', 'e', 'r', 'e', 'd'] \n", + "972 frizziest ['_', 'r', 'i', '_', '_', 'i', 'e', 's', 't'] \n", + "973 recurrent ['r', 'e', 'c', 'u', 'r', 'r', 'e', 'n', 't'] \n", + "974 truce ['t', 'r', 'u', '_', 'e'] \n", + "975 panhandlers ['_', 'a', 'n', 'h', 'a', 'n', 'd', 'l', 'e', ... \n", + "976 heehawing ['h', 'e', 'e', 'h', 'a', 'w', 'i', 'n', '_'] \n", + "977 catafalques ['c', 'a', 't', 'a', 'f', 'a', 'l', '_', 'u', ... \n", + "978 deeming ['d', 'e', 'e', 'm', 'i', 'n', '_'] \n", + "979 hoof ['h', 'o', 'o', '_'] \n", + "980 takeouts ['t', 'a', '_', 'e', 'o', 'u', 't', 's'] \n", + "981 commencing ['c', 'o', 'm', 'm', 'e', 'n', 'c', 'i', 'n', ... \n", + "982 ventilates ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'e', ... \n", + "983 ventilators ['_', 'e', 'n', 't', 'i', 'l', 'a', 't', 'o', ... \n", + "984 silkworms ['s', 'i', 'l', '_', 'w', 'o', 'r', 'm', 's'] \n", + "985 schemers ['s', 'c', 'h', 'e', 'm', 'e', 'r', 's'] \n", + "986 glorious ['_', 'l', 'o', 'r', 'i', 'o', 'u', 's'] \n", + "987 primogeniture ['p', 'r', 'i', 'm', 'o', 'g', 'e', 'n', 'i', ... \n", + "988 vowel ['_', 'o', '_', 'e', 'l'] \n", + "989 bulging ['_', 'u', 'l', '_', 'i', 'n', '_'] \n", + "990 regarding ['r', 'e', '_', 'a', 'r', 'd', 'i', 'n', '_'] \n", + "991 intensify ['i', 'n', 't', 'e', 'n', 's', 'i', '_', '_'] \n", + "992 interception ['i', 'n', 't', 'e', 'r', 'c', 'e', '_', 't', ... \n", + "993 kohlrabi ['_', 'o', 'h', 'l', 'r', 'a', '_', 'i'] \n", + "994 putrefies ['_', 'u', 't', 'r', 'e', '_', 'i', 'e', 's'] \n", + "995 moneybags ['m', 'o', 'n', 'e', 'y', '_', 'a', '_', 's'] \n", + "996 comrade ['c', 'o', 'm', 'r', 'a', 'd', 'e'] \n", + "997 encircle ['e', 'n', 'c', 'i', 'r', 'c', 'l', 'e'] \n", + "998 choppiness ['c', 'h', 'o', '_', '_', 'i', 'n', 'e', 's', ... \n", + "999 showed ['s', 'h', 'o', 'w', 'e', 'd'] \n", + "\n", + " wrong letters number of hits \\\n", + "0 ['t', 'a', 'o', 'i', 'n', 'r', 'l', 'm', 'w', ... 5 \n", + "1 ['t', 'o', 'i', 'h', 'n', 'd', 'u', 'w', 'c', ... 6 \n", + "2 ['a', 'o', 'n'] 6 \n", + "3 ['h', 'n', 'r', 'u', 'm', 'w'] 10 \n", + "4 ['e', 't', 'i', 'h', 'd', 'l', 'u', 'm', 'w', ... 5 \n", + "5 ['t', 'a', 'o', 'i', 'h', 'r', 'd', 'l', 'm', ... 4 \n", + "6 ['t', 'o', 'i', 'h', 'n', 's', 'd', 'u', 'w', ... 6 \n", + "7 ['t', 'a', 'o', 'h', 's', 'r', 'd', 'u', 'c', ... 6 \n", + "8 ['t', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 5 \n", + "9 ['t', 'a', 'i', 'n', 'l', 'u', 'm'] 8 \n", + "10 ['t', 'a', 'h', 'r', 'd', 'u', 'm', 'w', 'c', ... 10 \n", + "11 ['o', 'i', 'h', 'n', 'd', 'u', 'm', 'c'] 10 \n", + "12 ['e', 't', 'o', 'i', 'h', 'n', 's', 'r', 'd', ... 2 \n", + "13 ['o', 'h', 'n', 's', 'd', 'u', 'm', 'w'] 8 \n", + "14 ['t', 'i', 'd', 'l', 'u', 'm', 'w', 'y', 'f', ... 10 \n", + "15 ['t', 'a', 'i', 'h', 'n', 'd', 'l', 'u', 'm', ... 5 \n", + "16 ['a', 'o', 'd', 'l', 'u', 'm', 'w'] 10 \n", + "17 ['e', 'o', 's', 'r', 'd', 'u', 'm', 'w', 'c', ... 6 \n", + "18 ['e', 'i', 'n', 's'] 6 \n", + "19 ['e', 't', 'o', 'i', 'h', 'n', 's', 'd', 'l', ... 2 \n", + "20 ['t', 'i', 'n', 'd', 'm', 'w', 'c', 'y', 'f'] 11 \n", + "21 ['t', 'o', 'h', 'r', 'l', 'm', 'w', 'c', 'y', ... 8 \n", + "22 ['e', 't', 'a', 'h', 'r', 'd', 'l', 'u', 'm', ... 6 \n", + "23 ['o', 'h', 's', 'l', 'u', 'm', 'w', 'c', 'y', ... 7 \n", + "24 ['t', 'a', 'i', 'h', 's', 'l'] 7 \n", + "25 ['t', 'a', 'o', 'h', 'd', 'l', 'u', 'm', 'w', ... 6 \n", + "26 ['a', 'o', 'h', 'r'] 11 \n", + "27 ['o', 'r', 'd', 'l', 'u'] 10 \n", + "28 ['o', 'i', 'h', 's', 'd', 'l', 'u', 'm', 'w', ... 8 \n", + "29 ['e', 'h', 'l', 'u', 'm', 'w', 'c', 'y', 'f'] 13 \n", + ".. ... ... \n", + "970 ['e', 'o', 'i', 'h', 's', 'd', 'l', 'u', 'm', ... 4 \n", + "971 ['a', 'o', 'i', 'n', 's'] 8 \n", + "972 ['a', 'o', 'h', 'n', 'd', 'l', 'u', 'm', 'w', ... 6 \n", + "973 ['a', 'o', 'i', 'h', 's', 'd', 'l', 'm', 'w'] 9 \n", + "974 ['a', 'o', 'i', 'h', 'n', 's', 'd', 'l', 'm', ... 4 \n", + "975 ['t', 'o', 'i', 'u', 'm', 'w', 'c', 'y', 'f', ... 10 \n", + "976 ['t', 'o', 's', 'r', 'd', 'l', 'u', 'm', 'c', ... 8 \n", + "977 ['o', 'i', 'h', 'n', 'r', 'd', 'm', 'w', 'y', ... 10 \n", + "978 ['t', 'a', 'o', 'h', 's', 'r', 'l', 'u', 'w', ... 6 \n", + "979 ['e', 't', 'a', 'i', 'n', 's', 'r', 'd', 'l', ... 3 \n", + "980 ['i', 'h', 'n', 'r', 'd', 'l', 'm', 'w', 'c', ... 7 \n", + "981 ['t', 'a', 'h', 's', 'r', 'd', 'l', 'u', 'w', ... 9 \n", + "982 ['o', 'h', 'r', 'd', 'u', 'm', 'w', 'c', 'y', ... 9 \n", + "983 ['h', 'd', 'u', 'm', 'w', 'c', 'y', 'f', 'g', ... 10 \n", + "984 ['e', 't', 'a', 'h', 'n', 'd', 'u', 'c', 'y', ... 8 \n", + "985 ['t', 'a', 'o', 'i', 'n', 'd', 'l', 'u', 'w'] 8 \n", + "986 ['e', 't', 'a', 'h', 'n', 'd', 'm', 'w', 'c', ... 7 \n", + "987 ['a', 'h', 's', 'd', 'l', 'w', 'c', 'y', 'f'] 13 \n", + "988 ['t', 'a', 'i', 'h', 'n', 's', 'r', 'd', 'u', ... 3 \n", + "989 ['e', 't', 'a', 'o', 'h', 's', 'r', 'd', 'm', ... 4 \n", + "990 ['t', 'o', 'h', 's', 'l', 'u', 'm', 'w', 'c', ... 7 \n", + "991 ['a', 'o', 'h', 'r', 'd', 'l', 'u', 'm', 'w', ... 7 \n", + "992 ['a', 'h', 's', 'd', 'l', 'u', 'm', 'w', 'y', ... 11 \n", + "993 ['e', 't', 'n', 's', 'd', 'u', 'm', 'w', 'c', ... 6 \n", + "994 ['a', 'o', 'h', 'n', 'd', 'l', 'm', 'w', 'c', ... 7 \n", + "995 ['t', 'i', 'h', 'r', 'd', 'l', 'u', 'w', 'c', ... 7 \n", + "996 ['t', 'i', 'h', 'n', 's', 'l', 'u', 'w'] 7 \n", + "997 ['t', 'a', 'o', 'h', 's', 'd', 'u', 'm', 'w'] 8 \n", + "998 ['t', 'a', 'r', 'd', 'l', 'u', 'm', 'w', 'y', ... 8 \n", + "999 ['t', 'a', 'i', 'n', 'r', 'l', 'u', 'm'] 6 \n", + "\n", + " lives remaining game won word length \n", + "0 0 False 6 \n", + "1 0 False 7 \n", + "2 7 True 6 \n", + "3 4 True 10 \n", + "4 0 False 6 \n", + "5 0 False 5 \n", + "6 0 False 8 \n", + "7 0 False 7 \n", + "8 0 False 7 \n", + "9 3 True 8 \n", + "10 0 False 13 \n", + "11 2 True 10 \n", + "12 0 False 4 \n", + "13 2 True 8 \n", + "14 0 False 11 \n", + "15 0 False 6 \n", + "16 3 True 10 \n", + "17 0 False 7 \n", + "18 6 True 6 \n", + "19 0 False 5 \n", + "20 1 True 11 \n", + "21 0 False 9 \n", + "22 0 False 8 \n", + "23 0 False 8 \n", + "24 4 True 7 \n", + "25 0 False 7 \n", + "26 6 True 11 \n", + "27 5 True 10 \n", + "28 0 False 11 \n", + "29 1 True 13 \n", + ".. ... ... ... \n", + "970 0 False 6 \n", + "971 5 True 8 \n", + "972 0 False 9 \n", + "973 1 True 9 \n", + "974 0 False 5 \n", + "975 0 False 11 \n", + "976 0 False 9 \n", + "977 0 False 11 \n", + "978 0 False 7 \n", + "979 0 False 4 \n", + "980 0 False 8 \n", + "981 0 False 10 \n", + "982 0 False 10 \n", + "983 0 False 11 \n", + "984 0 False 9 \n", + "985 1 True 8 \n", + "986 0 False 8 \n", + "987 1 True 13 \n", + "988 0 False 5 \n", + "989 0 False 7 \n", + "990 0 False 9 \n", + "991 0 False 9 \n", + "992 0 False 12 \n", + "993 0 False 8 \n", + "994 0 False 9 \n", + "995 0 False 9 \n", + "996 2 True 7 \n", + "997 1 True 8 \n", + "998 0 False 10 \n", + "999 2 True 6 \n", + "\n", + "[1000 rows x 7 columns]" + ] + } + ], + "prompt_number": 84 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "fixed_order['lives remaining'].hist()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 87, + "text": [ + "" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXgAAAEACAYAAAC57G0KAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAE1JJREFUeJzt3X+sVGl9x/E3Lkv9scteiM1dQJJhFdyStEUt1FaNsxSI\nNgr7V4Npm4tt/Ye22pgq0KZF/yilJI3+0fQfW73XVGipGsKaQIHKrKs2sHUZi4u3gPWmXpGrW/zB\nrk3Kyu0fzzM8s1cuzJydmefMzPuVTM55zvw4T7+9+70Pnzn3CJIkSZIkSZIkSZIkSZIkSUPrtcC5\npscPgfcCS4GTwEXgBDDS9J49wCVgEtjSy8lKkop5CfAdYCVwAPhgPL4L2B/31wJ14F6gAlyO75Mk\nldgW4Im4PwmMxv0H4xjC6n1X03uOA2/syewkSbe0u7LeDhyK+6PATNyfITX75cB003umgRVFJyhJ\nKqadBr8IeCfwz7d5bjY+5nOn5yRJXbCwjde+HfgK8L04niFEM1eBZcB34/FvEzL6hlfFY7csX758\n9sqVK0XmK0nD7BvAa1p9cTsr+HeR4hmAo8BY3B8DjjQd305Y8a8CVgNnmz/oypUrzM7O+pidZe/e\nvdnnUJaHtbAW1uLOD+DVbfTsllfwrwA2Ae9pOrYfOAz8LjAF/EY8fiEevwA8D+zEiGZeU1NTuadQ\nGtYisRaJtSiu1Qb/HPDKOceuEZr+7eyLD0lSJl6fntmOHTtyT6E0rEViLRJrUdyCTOedjXmSJKlF\nCxYsgDb6djtX0XTU448/3vNzrly5koceeqjn572TWq1GtVrNPY1SsBaJtUisRXHZGvy2bX/e0/M9\n//wPWbNmMU899YWenleScskW0fT+wpovsXbtB3n66S/1+LyS1BntRjR+ySpJA8oGn1mtVss9hdKw\nFom1SKxFcTZ4SRpQZvCS1CfM4CVJgA0+O/PFxFok1iKxFsXZ4CVpQJnBS1KfMIOXJAE2+OzMFxNr\nkViLxFoUZ4OXpAFlBi9JfcIMXpIE2OCzM19MrEViLRJrUZwNXpIGlBm8JPUJM3hJEmCDz858MbEW\nibVIrEVxrTb4EeDTwNeBC8AvA0uBk8BF4ER8TcMe4BIwCWzp1GQlSa1rNcuZAB4HPk74H+p+BfCn\nwDPAAWAXsATYDawFDgLrgRXAKWANcLPp88zgJalN3cjgHwDeQmjuAM8DPwS2Eho/cfto3N8GHAJu\nAFPAZWBDqxOSJHVGKw1+FfA94BPAU8DHCCv4UWAmvmYmjgGWA9NN758mrOR1G+aLibVIrEViLYpb\n2OJrXg/8AfAk8FFCFNNsljtnLrd5bgdQifsjwDqgGse1uO3k+PytMzd+YKrVquMSjRvKMp+c43q9\nXqr55BzX6/VSzaeX41qtxvj4OACVSoV2tZLlPAj8G2ElD/BmwpeoDwGPAFeBZcBp4GFS898ft8eB\nvcCZps80g5ekNnUjg78KfIvwRSnAJuBp4DFgLB4bA47E/aPAdmAR4ZfCauBsqxOSJHVGq5dJ/iHw\nKeCrwC8Af0FYoW8mXCa5kbRivwAcjttjwE56v1zvG3PjiWFmLRJrkViL4lrJ4CE09vW3Ob5pntfv\niw9JUibei0aS+oT3opEkATb47MwXE2uRWIvEWhRng5ekAWUGL0l9wgxekgTY4LMzX0ysRWItEmtR\nnA1ekgaUGbwk9QkzeEkSYIPPznwxsRaJtUisRXE2eEkaUGbwktQnzOAlSYANPjvzxcRaJNYisRbF\n2eAlaUCZwUtSnzCDlyQBNvjszBcTa5FYi8RaFGeDl6QBZQYvSX3CDF6SBNjgszNfTKxFYi0Sa1Fc\nqw1+CvgP4BxwNh5bCpwELgIngJGm1+8BLgGTwJZOTFSS1J5Ws5xvAm8ArjUdOwA8E7e7gCXAbmAt\ncBBYD6wATgFrgJtN7zWDl6Q2dTODn/uhW4GJuD8BPBr3twGHgBuElf9lYEMb55EkdUCrDX6WsBL/\nd+A98dgoMBP3Z+IYYDkw3fTeacJKXrdhvphYi8RaJNaiuIUtvu5NwHeAnyXk7pNznp/lzpnLbZ7b\nAVTi/giwDqjGcS1uOzk+f+vMjR+YarXquETjhrLMJ+e4Xq+Xaj45x/V6vVTz6eW4VqsxPj4OQKVS\noV1FroPfCzxLWMlXgavAMuA08DAhhwfYH7fH43vONH2GGbwktakbGfzLgfvj/isIV8WcB44CY/H4\nGHAk7h8FtgOLgFXAatKVN5KkHmmlwY8CTwB1wir8c4TLIvcDmwmXSW4krdgvAIfj9hiwk94v1/vG\n3HhimFmLxFok1qK4VjL4bxIC8rmuAZvmec+++JAkZeK9aCSpT3gvGkkSYIPPznwxsRaJtUisRXE2\neEkaUGbwktQnzOAlSYANPjvzxcRaJNYisRbF2eAlaUCZwUtSnzCDlyQBNvjszBcTa5FYi8RaFGeD\nl6QBZQYvSX3CDF6SBNjgszNfTKxFYi0Sa1GcDV6SBpQZvCT1CTN4SRJgg8/OfDGxFom1SKxFcTZ4\nSRpQZvCS1CfM4CVJgA0+O/PFxFok1iKxFsW12uDvAc4Bj8XxUuAkcBE4AYw0vXYPcAmYBLZ0ZpqS\npHa1muW8H3gDcD+wFTgAPBO3u4AlwG5gLXAQWA+sAE4Ba4Cbcz7PDF6S2tSNDP5VwK8Df9f0wVuB\nibg/ATwa97cBh4AbwBRwGdjQ6mQkSZ3TSoP/CPABXrgKHwVm4v5MHAMsB6abXjdNWMlrHuaLibVI\nrEViLYpbeJfn3wF8l5C/V+d5zSx3zlvmeW4HUIn7I8C6plPU4raT4/O3ztz4galWq45LNG4oy3xy\njuv1eqnmk3Ncr9dLNZ9ejmu1GuPj4wBUKhXadbcsZx/w28DzwEuBxcBnCRl7FbgKLANOAw8TcniA\n/XF7HNgLnJnzuWbwktSmTmfwfwKsBFYB24HPExr+UWAsvmYMOBL3j8bXLYrvWQ2cbXUykqTOafc6\n+Mayez+wmXCZ5EbSiv0CcDhujwE76f1Sva/MjSeGmbVIrEViLYq7Wwbf7PH4ALgGbJrndfviQ5KU\nkfeikaQ+4b1oJEmADT4788XEWiTWIrEWxdngJWlAmcFLUp8wg5ckATb47MwXE2uRWIvEWhRng5ek\nAWUGL0l9wgxekgTY4LMzX0ysRWItEmtRnA1ekgaUGbwk9QkzeEkSYIPPznwxsRaJtUisRXE2eEka\nUGbwktQnzOAlSYANPjvzxcRaJNYisRbF2eAlaUCZwUtSnzCDlyQBNvjszBcTa5FYi8RaFHe3Bv9S\n4AxQBy4AfxmPLwVOAheBE8BI03v2AJeASWBLJycrSWpdK1nOy4EfAwuBLwJ/DGwFngEOALuAJcBu\nYC1wEFgPrABOAWuAm3M+0wxektrUjQz+x3G7CLgH+D6hwU/E4xPAo3F/G3AIuAFMAZeBDa1ORpLU\nOa00+JcQIpoZ4DTwNDAax8TtaNxfDkw3vXeasJLXPMwXE2uRWIvEWhS3sIXX3ATWAQ8A/wI8Muf5\nWe6ct8zz3A6gEvdH4imqcVyL206Oz986c+MHplqtOi7RuKEs88k5rtfrpZpPznG9Xi/VfHo5rtVq\njI+PA1CpVGhXu9fB/xnwv8DvEbrnVWAZYWX/MCGHB9gft8eBvYQvapuZwUtSmzqdwb+SdIXMy4DN\nwDngKDAWj48BR+L+UWA7Ia9fBawGzrY6GUlS59ytwS8DPk/I4M8AjwH/SlihbyZcJrmRtGK/AByO\n22PATnq/VO8rc+OJYWYtEmuRWIvi7pbBnwdef5vj14BN87xnX3xIkjLyXjSS1Ce8F40kCbDBZ2e+\nmFiLxFok1qI4G7wkDSgzeEnqE2bwkiTABp+d+WJiLRJrkViL4mzwkjSgzOAlqU+YwUuSABt8duaL\nibVIrEViLYqzwUvSgDKDl6Q+YQYvSQJs8NmZLybWIrEWibUozgYvSQPKDF6S+oQZvCQJsMFnZ76Y\nWIvEWiTWojgbvCQNKDN4SeoTZvCSJMAGn535YmItEmuRWIviWmnwK4HTwNPA14D3xuNLgZPAReAE\nMNL0nj3AJWAS2NKpyUqSWtdKlvNgfNSB+4CvAI8C7waeAQ4Au4AlwG5gLXAQWA+sAE4Ba4CbTZ9p\nBi9JbepGBn+V0NwBngW+TmjcW4GJeHyC0PQBtgGHgBvAFHAZ2NDqhCRJndFuBl8BXgecAUaBmXh8\nJo4BlgPTTe+ZJvxC0G2YLybWIrEWibUobmEbr70P+AzwPuD6nOdmuXPmcpvndhB+X0CI79cB1Tiu\nxW0nx+dvnbnxA1OtVh2XaNxQlvnkHNfr9VLNJ+e4Xq+Xaj69HNdqNcbHxwGoVCq0q9Us517gc8Ax\n4KPx2CShg14FlhG+iH2YkMMD7I/b48Bewqq/wQxektrUjQx+AfD3wAVScwc4CozF/THgSNPx7cAi\nYBWwGjjb6oQkSZ3RSoN/E/BbwCPAufh4G2GFvplwmeRG0or9AnA4bo8BO+n9cr1vzI0nhpm1SKxF\nYi2KayWD/yLz/yLYNM/xffEhScrEe9FIUp/wXjSSJMAGn535YmItEmuRWIvibPCSNKDM4CWpT5jB\nS5IAG3x25ouJtUisRWItirPBS9KAMoOXpD5hBi9JAmzw2ZkvJtYisRaJtSjOBi9JA8oMXpL6hBm8\nJAmwwWdnvphYi8RaJNaiOBu8JA0oM3hJ6hNm8JIkwAafnfliYi0Sa5FYi+Js8JI0oMzgJalPmMFL\nkgAbfHbmi4m1SKxFYi2Ka6XBfxyYAc43HVsKnAQuAieAkabn9gCXgElgS2emKUlqVytZzluAZ4FP\nAj8fjx0AnonbXcASYDewFjgIrAdWAKeANcDNOZ9pBi9JbepGBv8E8P05x7YCE3F/Ang07m8DDgE3\ngCngMrCh1clIkjqnaAY/SohtiNvRuL8cmG563TRhJa95mC8m1iKxFom1KG5hBz5jljvnLfM8twOo\nxP0RYB1QjeNa3HZynL5CaPzAVKtVxyUaN5RlPjnH9Xq9VPPJOa7X66WaTy/HtVqN8fFxACqVCu1q\nNcupAI+RMvhJQve8CiwDTgMPE3J4gP1xexzYC5yZ83lm8JLUpl5dB38UGIv7Y8CRpuPbgUXAKmA1\ncLbgOSRJL0IrDf4Q8GXgtcC3gHcTVuibCZdJbiSt2C8Ah+P2GLCT3i/V+8rceGKYWYvEWiTWorhW\nMvh3zXN80zzH98VH6UxOfqXxT5yeuv/+JfzoR9d6fl5Jw22o7kUDbybPPygWMDvrP2QkvTjei0aS\nBNjgszNfTKxFYi0Sa1GcDV6SBpQZfE+YwUt68czgJUmADT4788XEWiTWIrEWxdngJWlAmcH3RL4M\nfvHipVy/Pvduz93nH3dJndduBt+Ju0mqxEJz7/0vl+vXc60dJDUY0fTEQhYsWJDl0U/MWhNrkViL\n4mzwPfE86bb5cx+n7/BcJx6ShpUZfE8syHTenOf22n+p08zgVRILvXOnlJkRTXa13BPokjvFUt2L\nq3JcMdQN5s6JtSjOBi9JA8oMvieGM4M3+5c6ywxeQ87sX2owosmulnsCJVLrwGcUyf5f/OP69etZ\n/s5h8eKlHahZuZnBF2eDlzqi079YWvvCeVC+VFZ3mMH3hBm85+3eef3OYXh4P3hJEtC9Bv82YBK4\nBOzq0jkGRC33BEqklnsCJVLLPYHSMIMvrhsN/h7gbwhNfi3wLuDnunCeAVHPPYESsRZJq7XIcyO7\nXn65W6/7c1FUNy6T3ABcBqbi+B+BbcDXu3CuAfCD3BMoEWuRtFqLxpe7vdXL20H/4Af+XBTVjRX8\nCuBbTePpeEyS1EPdWMG3tJxYvPidXTj1/H7yk2s891xPT9miqdwTKJGp3BMokancE7iL3v5B2Yc/\n/OG4dy9wo2fnbejXP2Trxv+H3gh8iJDBA+wBbgJ/1fSay8Cru3BuSRpk3wBek3MCC+MkKsAiwrdF\nfskqSQPi7cB/ElbqezLPRZIkSdKL4R9BBSsJNxx5Gvga8N6808nuHuAc8FjuiZTACPBpwqXFFwjf\naw2jPYT/Ps4DB4GfyTudnvs4MEP4v79hKXASuAicIPyslMY9hNimQvg6fJjz+QeBdXH/PkKkNay1\nAHg/8CngaO6JlMAE8DtxfyHwQMa55FIB/ovU1P8JGMs2mzzeAryOFzb4A8AH4/4uYH+vJ3UnvwIc\nbxrvjg/BEeDXck8ik1cBp4BHcAX/AKGxDbulhEXPEsIvuceATVlnlEeFFzb4SWA07j8Yx/Pq9c3G\n/COo26sQflOfyTyPXD4CfIBwOe2wWwV8D/gE8BTwMeDlWWeUxzXgr4H/Bq4Q/rT3VNYZlcMoIbYh\nbkfv8NqeN3jva/rT7iPkre8Dns08lxzeAXyXkL/nun11mSwEXg/8bdw+x3D+K/fVwB8RFj/LCf+d\n/GbOCZVQ438YYF69bvDfJny52LCSsIofVvcCnwH+gRDRDKNfBbYC3wQOARuBT2adUV7T8fFkHH+a\n0OiHzS8BXwb+h3DDnc8SflaG3QwhmgFYRlgclYZ/BJUsIDSyj+SeSIm8FTN4gC8Aa+L+h3jhX4EP\ni18kXF32MsJ/KxPA72edUR4VfvpL1sbVh7sp2Zes4B9BNbyZkDnXCfHEOdLtHYbVW/EqGgjN7Ung\nq4SV6zBeRQPhapHGZZIThH/xDpNDhO8f/o/w3eW7CV8+n6Kkl0lKkiRJkiRJkiRJkiRJkiRJkiRJ\n0k/5f6/qmUyY1iRsAAAAAElFTkSuQmCC\n", + "text": [ + "" + ] + } + ], + "prompt_number": 87 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "fixed_order.groupby('lives remaining').size()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 93, + "text": [ + "lives remaining\n", + "0 676\n", + "1 88\n", + "2 54\n", + "3 60\n", + "4 44\n", + "5 31\n", + "6 28\n", + "7 12\n", + "8 4\n", + "9 3\n", + "dtype: int64" + ] + } + ], + "prompt_number": 93 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "adaptive_pattern = pd.read_csv('adaptive_pattern.csv')\n", + "adaptive_pattern" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
targetdiscoveredwrong lettersnumber of hitslives remaininggame won
0 begrudges ['b', 'e', 'g', 'r', 'u', 'd', 'g', 'e', 's'] [] 9 10 True
1 omegas ['o', 'm', 'e', 'g', 'a', 's'] [] 6 10 True
2 caliphate ['c', 'a', 'l', 'i', 'p', 'h', 'a', 't', 'e'] [] 9 10 True
3 sarsaparillas ['s', 'a', 'r', 's', 'a', 'p', 'a', 'r', 'i', ... ['e'] 13 9 True
4 retook ['r', 'e', 't', 'o', 'o', 'k'] ['a', 'i'] 6 8 True
5 rafter ['r', 'a', 'f', 't', 'e', 'r'] ['d', 's', 'o'] 6 7 True
6 declassify ['d', 'e', 'c', 'l', 'a', 's', 's', 'i', 'f', ... ['n'] 10 9 True
7 hyaenas ['h', 'y', 'a', 'e', 'n', 'a', 's'] ['t', 'd'] 7 8 True
8 limping ['l', 'i', 'm', 'p', 'i', 'n', 'g'] ['e', 't'] 7 8 True
9 cocoanut ['c', 'o', 'c', 'o', 'a', 'n', 'u', 't'] ['e', 'i', 's', 'l'] 8 6 True
10 prematurely ['p', 'r', 'e', 'm', 'a', 't', 'u', 'r', 'e', ... ['s', 'i'] 11 8 True
11 lentils ['l', 'e', 'n', 't', 'i', 'l', 's'] [] 7 10 True
12 releases ['r', 'e', 'l', 'e', 'a', 's', 'e', 's'] ['d'] 8 9 True
13 doddering ['d', 'o', 'd', 'd', 'e', 'r', 'i', 'n', 'g'] ['t', 'm'] 9 8 True
14 dozens ['d', 'o', 'z', 'e', 'n', 's'] ['r', 'l', 'y', 't', 'm'] 6 5 True
15 sprawled ['s', 'p', 'r', 'a', 'w', 'l', 'e', 'd'] ['t', 'c', 'i', 'g'] 8 6 True
16 upgrades ['u', 'p', 'g', 'r', 'a', 'd', 'e', 's'] ['i', 'o'] 8 8 True
17 bleakness ['b', 'l', 'e', 'a', 'k', 'n', 'e', 's', 's'] [] 9 10 True
18 ampler ['a', 'm', 'p', 'l', 'e', 'r'] ['d', 's', 'i', 't', 'g'] 6 5 True
19 smithy ['s', 'm', 'i', 't', 'h', 'y'] ['e', 'a', 'n'] 6 7 True
20 ranger ['r', 'a', 'n', 'g', 'e', 'r'] ['d', 's', 'o', 't', 'p'] 6 5 True
21 prenatal ['p', 'r', 'e', 'n', 'a', 't', 'a', 'l'] ['i', 's'] 8 8 True
22 shopkeeper ['s', 'h', 'o', 'p', 'k', 'e', 'e', 'p', 'e', ... [] 10 10 True
23 wriggled ['w', 'r', 'i', 'g', 'g', 'l', 'e', 'd'] ['s', 'p', 'z', 'c'] 8 6 True
24 revivify ['r', 'e', 'v', 'i', 'v', 'i', 'f', 'y'] ['n', 's', 't'] 8 7 True
25 snaffles ['s', 'n', 'a', 'f', 'f', 'l', 'e', 's'] ['i', 't', 'u'] 8 7 True
26 compels ['c', 'o', 'm', 'p', 'e', 'l', 's'] ['r', 't'] 7 8 True
27 hunchback ['h', 'u', 'n', 'c', 'h', 'b', 'a', 'c', 'k'] ['e', 'i', 'o', 's'] 9 6 True
28 ridging ['r', 'i', 'd', 'g', 'i', 'n', 'g'] ['e'] 7 9 True
29 foghorn ['f', 'o', 'g', 'h', 'o', 'r', 'n'] ['e', 'i', 'a', 's', 'c'] 7 5 True
.....................
970 absurdly ['a', 'b', 's', 'u', 'r', 'd', 'l', 'y'] ['e', 'i', 'o'] 8 7 True
971 insincere ['i', 'n', 's', 'i', 'n', 'c', 'e', 'r', 'e'] [] 9 10 True
972 preempts ['p', 'r', 'e', 'e', 'm', 'p', 't', 's'] ['i'] 8 9 True
973 fullest ['f', 'u', 'l', 'l', 'e', 's', 't'] ['i', 'a', 'o', 'm', 'n'] 7 5 True
974 prerecording ['p', 'r', 'e', 'r', 'e', 'c', 'o', 'r', 'd', ... [] 12 10 True
975 disinters ['d', 'i', 's', 'i', 'n', 't', 'e', 'r', 's'] ['o'] 9 9 True
976 entreated ['e', 'n', 't', 'r', 'e', 'a', 't', 'e', 'd'] ['s'] 9 9 True
977 podcast ['p', 'o', 'd', 'c', 'a', 's', 't'] ['e', 'i', 'm'] 7 7 True
978 corporal ['c', 'o', 'r', 'p', 'o', 'r', 'a', 'l'] ['e', 'i'] 8 8 True
979 couples ['c', 'o', 'u', 'p', 'l', 'e', 's'] ['i', 'b', 'd', 'g', 't'] 7 5 True
980 thirsting ['t', 'h', 'i', 'r', 's', 't', 'i', 'n', 'g'] ['e', 'l'] 9 8 True
981 rums ['r', 'u', 'm', 's'] ['e', 'a', 'o', 'i', 'b', 'g', 't', 'h'] 4 2 True
982 unaltered ['u', 'n', 'a', 'l', 't', 'e', 'r', 'e', 'd'] [] 9 10 True
983 mottoes ['m', 'o', 't', 't', 'o', 'e', 's'] ['i', 'l', 'a'] 7 7 True
984 multipurpose ['m', 'u', 'l', 't', 'i', 'p', 'u', 'r', 'p', ... [] 12 10 True
985 cuddly ['c', 'u', 'd', 'd', 'l', 'y'] ['e', 's', 'i', 'a', 'o', 'b'] 6 4 True
986 staggered ['s', 't', 'a', 'g', 'g', 'e', 'r', 'e', 'd'] [] 9 10 True
987 sociability ['s', 'o', 'c', 'i', 'a', 'b', 'i', 'l', 'i', ... ['e'] 11 9 True
988 broaches ['b', 'r', 'o', 'a', 'c', 'h', 'e', 's'] ['i'] 8 9 True
989 rushes ['r', 'u', 's', 'h', 'e', 's'] ['d', 't', 'g', 'm', 'l', 'p'] 6 4 True
990 dualism ['d', 'u', 'a', 'l', 'i', 's', 'm'] ['e', 'n', 'h', 't', 'o'] 7 5 True
991 playgrounds ['p', 'l', 'a', 'y', 'g', 'r', 'o', 'u', 'n', ... ['e', 'i'] 11 8 True
992 trespasses ['t', 'r', 'e', 's', 'p', 'a', 's', 's', 'e', ... [] 10 10 True
993 smooched ['s', 'm', 'o', 'o', 'c', 'h', 'e', 'd'] ['r', 'l', 't', 'i'] 8 6 True
994 faceting ['f', 'a', 'c', 'e', 't', 'i', 'n', 'g'] ['r'] 8 9 True
995 marinading ['m', 'a', 'r', 'i', 'n', 'a', 'd', 'i', 'n', ... ['e', 't'] 10 8 True
996 detract ['d', 'e', 't', 'r', 'a', 'c', 't'] ['n'] 7 9 True
997 comprehensibility ['c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', ... [] 17 10 True
998 humaneness ['h', 'u', 'm', 'a', 'n', 'e', 'n', 'e', 's', ... [] 10 10 True
999 troubleshoots ['t', 'r', 'o', 'u', 'b', 'l', 'e', 's', 'h', ... ['i'] 13 9 True
\n", + "

1000 rows \u00d7 6 columns

\n", + "
" + ], + "metadata": {}, + "output_type": "pyout", + "prompt_number": 88, + "text": [ + " target discovered \\\n", + "0 begrudges ['b', 'e', 'g', 'r', 'u', 'd', 'g', 'e', 's'] \n", + "1 omegas ['o', 'm', 'e', 'g', 'a', 's'] \n", + "2 caliphate ['c', 'a', 'l', 'i', 'p', 'h', 'a', 't', 'e'] \n", + "3 sarsaparillas ['s', 'a', 'r', 's', 'a', 'p', 'a', 'r', 'i', ... \n", + "4 retook ['r', 'e', 't', 'o', 'o', 'k'] \n", + "5 rafter ['r', 'a', 'f', 't', 'e', 'r'] \n", + "6 declassify ['d', 'e', 'c', 'l', 'a', 's', 's', 'i', 'f', ... \n", + "7 hyaenas ['h', 'y', 'a', 'e', 'n', 'a', 's'] \n", + "8 limping ['l', 'i', 'm', 'p', 'i', 'n', 'g'] \n", + "9 cocoanut ['c', 'o', 'c', 'o', 'a', 'n', 'u', 't'] \n", + "10 prematurely ['p', 'r', 'e', 'm', 'a', 't', 'u', 'r', 'e', ... \n", + "11 lentils ['l', 'e', 'n', 't', 'i', 'l', 's'] \n", + "12 releases ['r', 'e', 'l', 'e', 'a', 's', 'e', 's'] \n", + "13 doddering ['d', 'o', 'd', 'd', 'e', 'r', 'i', 'n', 'g'] \n", + "14 dozens ['d', 'o', 'z', 'e', 'n', 's'] \n", + "15 sprawled ['s', 'p', 'r', 'a', 'w', 'l', 'e', 'd'] \n", + "16 upgrades ['u', 'p', 'g', 'r', 'a', 'd', 'e', 's'] \n", + "17 bleakness ['b', 'l', 'e', 'a', 'k', 'n', 'e', 's', 's'] \n", + "18 ampler ['a', 'm', 'p', 'l', 'e', 'r'] \n", + "19 smithy ['s', 'm', 'i', 't', 'h', 'y'] \n", + "20 ranger ['r', 'a', 'n', 'g', 'e', 'r'] \n", + "21 prenatal ['p', 'r', 'e', 'n', 'a', 't', 'a', 'l'] \n", + "22 shopkeeper ['s', 'h', 'o', 'p', 'k', 'e', 'e', 'p', 'e', ... \n", + "23 wriggled ['w', 'r', 'i', 'g', 'g', 'l', 'e', 'd'] \n", + "24 revivify ['r', 'e', 'v', 'i', 'v', 'i', 'f', 'y'] \n", + "25 snaffles ['s', 'n', 'a', 'f', 'f', 'l', 'e', 's'] \n", + "26 compels ['c', 'o', 'm', 'p', 'e', 'l', 's'] \n", + "27 hunchback ['h', 'u', 'n', 'c', 'h', 'b', 'a', 'c', 'k'] \n", + "28 ridging ['r', 'i', 'd', 'g', 'i', 'n', 'g'] \n", + "29 foghorn ['f', 'o', 'g', 'h', 'o', 'r', 'n'] \n", + ".. ... ... \n", + "970 absurdly ['a', 'b', 's', 'u', 'r', 'd', 'l', 'y'] \n", + "971 insincere ['i', 'n', 's', 'i', 'n', 'c', 'e', 'r', 'e'] \n", + "972 preempts ['p', 'r', 'e', 'e', 'm', 'p', 't', 's'] \n", + "973 fullest ['f', 'u', 'l', 'l', 'e', 's', 't'] \n", + "974 prerecording ['p', 'r', 'e', 'r', 'e', 'c', 'o', 'r', 'd', ... \n", + "975 disinters ['d', 'i', 's', 'i', 'n', 't', 'e', 'r', 's'] \n", + "976 entreated ['e', 'n', 't', 'r', 'e', 'a', 't', 'e', 'd'] \n", + "977 podcast ['p', 'o', 'd', 'c', 'a', 's', 't'] \n", + "978 corporal ['c', 'o', 'r', 'p', 'o', 'r', 'a', 'l'] \n", + "979 couples ['c', 'o', 'u', 'p', 'l', 'e', 's'] \n", + "980 thirsting ['t', 'h', 'i', 'r', 's', 't', 'i', 'n', 'g'] \n", + "981 rums ['r', 'u', 'm', 's'] \n", + "982 unaltered ['u', 'n', 'a', 'l', 't', 'e', 'r', 'e', 'd'] \n", + "983 mottoes ['m', 'o', 't', 't', 'o', 'e', 's'] \n", + "984 multipurpose ['m', 'u', 'l', 't', 'i', 'p', 'u', 'r', 'p', ... \n", + "985 cuddly ['c', 'u', 'd', 'd', 'l', 'y'] \n", + "986 staggered ['s', 't', 'a', 'g', 'g', 'e', 'r', 'e', 'd'] \n", + "987 sociability ['s', 'o', 'c', 'i', 'a', 'b', 'i', 'l', 'i', ... \n", + "988 broaches ['b', 'r', 'o', 'a', 'c', 'h', 'e', 's'] \n", + "989 rushes ['r', 'u', 's', 'h', 'e', 's'] \n", + "990 dualism ['d', 'u', 'a', 'l', 'i', 's', 'm'] \n", + "991 playgrounds ['p', 'l', 'a', 'y', 'g', 'r', 'o', 'u', 'n', ... \n", + "992 trespasses ['t', 'r', 'e', 's', 'p', 'a', 's', 's', 'e', ... \n", + "993 smooched ['s', 'm', 'o', 'o', 'c', 'h', 'e', 'd'] \n", + "994 faceting ['f', 'a', 'c', 'e', 't', 'i', 'n', 'g'] \n", + "995 marinading ['m', 'a', 'r', 'i', 'n', 'a', 'd', 'i', 'n', ... \n", + "996 detract ['d', 'e', 't', 'r', 'a', 'c', 't'] \n", + "997 comprehensibility ['c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', ... \n", + "998 humaneness ['h', 'u', 'm', 'a', 'n', 'e', 'n', 'e', 's', ... \n", + "999 troubleshoots ['t', 'r', 'o', 'u', 'b', 'l', 'e', 's', 'h', ... \n", + "\n", + " wrong letters number of hits \\\n", + "0 [] 9 \n", + "1 [] 6 \n", + "2 [] 9 \n", + "3 ['e'] 13 \n", + "4 ['a', 'i'] 6 \n", + "5 ['d', 's', 'o'] 6 \n", + "6 ['n'] 10 \n", + "7 ['t', 'd'] 7 \n", + "8 ['e', 't'] 7 \n", + "9 ['e', 'i', 's', 'l'] 8 \n", + "10 ['s', 'i'] 11 \n", + "11 [] 7 \n", + "12 ['d'] 8 \n", + "13 ['t', 'm'] 9 \n", + "14 ['r', 'l', 'y', 't', 'm'] 6 \n", + "15 ['t', 'c', 'i', 'g'] 8 \n", + "16 ['i', 'o'] 8 \n", + "17 [] 9 \n", + "18 ['d', 's', 'i', 't', 'g'] 6 \n", + "19 ['e', 'a', 'n'] 6 \n", + "20 ['d', 's', 'o', 't', 'p'] 6 \n", + "21 ['i', 's'] 8 \n", + "22 [] 10 \n", + "23 ['s', 'p', 'z', 'c'] 8 \n", + "24 ['n', 's', 't'] 8 \n", + "25 ['i', 't', 'u'] 8 \n", + "26 ['r', 't'] 7 \n", + "27 ['e', 'i', 'o', 's'] 9 \n", + "28 ['e'] 7 \n", + "29 ['e', 'i', 'a', 's', 'c'] 7 \n", + ".. ... ... \n", + "970 ['e', 'i', 'o'] 8 \n", + "971 [] 9 \n", + "972 ['i'] 8 \n", + "973 ['i', 'a', 'o', 'm', 'n'] 7 \n", + "974 [] 12 \n", + "975 ['o'] 9 \n", + "976 ['s'] 9 \n", + "977 ['e', 'i', 'm'] 7 \n", + "978 ['e', 'i'] 8 \n", + "979 ['i', 'b', 'd', 'g', 't'] 7 \n", + "980 ['e', 'l'] 9 \n", + "981 ['e', 'a', 'o', 'i', 'b', 'g', 't', 'h'] 4 \n", + "982 [] 9 \n", + "983 ['i', 'l', 'a'] 7 \n", + "984 [] 12 \n", + "985 ['e', 's', 'i', 'a', 'o', 'b'] 6 \n", + "986 [] 9 \n", + "987 ['e'] 11 \n", + "988 ['i'] 8 \n", + "989 ['d', 't', 'g', 'm', 'l', 'p'] 6 \n", + "990 ['e', 'n', 'h', 't', 'o'] 7 \n", + "991 ['e', 'i'] 11 \n", + "992 [] 10 \n", + "993 ['r', 'l', 't', 'i'] 8 \n", + "994 ['r'] 8 \n", + "995 ['e', 't'] 10 \n", + "996 ['n'] 7 \n", + "997 [] 17 \n", + "998 [] 10 \n", + "999 ['i'] 13 \n", + "\n", + " lives remaining game won \n", + "0 10 True \n", + "1 10 True \n", + "2 10 True \n", + "3 9 True \n", + "4 8 True \n", + "5 7 True \n", + "6 9 True \n", + "7 8 True \n", + "8 8 True \n", + "9 6 True \n", + "10 8 True \n", + "11 10 True \n", + "12 9 True \n", + "13 8 True \n", + "14 5 True \n", + "15 6 True \n", + "16 8 True \n", + "17 10 True \n", + "18 5 True \n", + "19 7 True \n", + "20 5 True \n", + "21 8 True \n", + "22 10 True \n", + "23 6 True \n", + "24 7 True \n", + "25 7 True \n", + "26 8 True \n", + "27 6 True \n", + "28 9 True \n", + "29 5 True \n", + ".. ... ... \n", + "970 7 True \n", + "971 10 True \n", + "972 9 True \n", + "973 5 True \n", + "974 10 True \n", + "975 9 True \n", + "976 9 True \n", + "977 7 True \n", + "978 8 True \n", + "979 5 True \n", + "980 8 True \n", + "981 2 True \n", + "982 10 True \n", + "983 7 True \n", + "984 10 True \n", + "985 4 True \n", + "986 10 True \n", + "987 9 True \n", + "988 9 True \n", + "989 4 True \n", + "990 5 True \n", + "991 8 True \n", + "992 10 True \n", + "993 6 True \n", + "994 9 True \n", + "995 8 True \n", + "996 9 True \n", + "997 10 True \n", + "998 10 True \n", + "999 9 True \n", + "\n", + "[1000 rows x 6 columns]" + ] + } + ], + "prompt_number": 88 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "adaptive_pattern['word length'] = fixed_order.apply(lambda r: len(r['target']), axis=1)\n", + "adaptive_pattern" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
targetdiscoveredwrong lettersnumber of hitslives remaininggame wonword length
0 begrudges ['b', 'e', 'g', 'r', 'u', 'd', 'g', 'e', 's'] [] 9 10 True 6
1 omegas ['o', 'm', 'e', 'g', 'a', 's'] [] 6 10 True 7
2 caliphate ['c', 'a', 'l', 'i', 'p', 'h', 'a', 't', 'e'] [] 9 10 True 6
3 sarsaparillas ['s', 'a', 'r', 's', 'a', 'p', 'a', 'r', 'i', ... ['e'] 13 9 True 10
4 retook ['r', 'e', 't', 'o', 'o', 'k'] ['a', 'i'] 6 8 True 6
5 rafter ['r', 'a', 'f', 't', 'e', 'r'] ['d', 's', 'o'] 6 7 True 5
6 declassify ['d', 'e', 'c', 'l', 'a', 's', 's', 'i', 'f', ... ['n'] 10 9 True 8
7 hyaenas ['h', 'y', 'a', 'e', 'n', 'a', 's'] ['t', 'd'] 7 8 True 7
8 limping ['l', 'i', 'm', 'p', 'i', 'n', 'g'] ['e', 't'] 7 8 True 7
9 cocoanut ['c', 'o', 'c', 'o', 'a', 'n', 'u', 't'] ['e', 'i', 's', 'l'] 8 6 True 8
10 prematurely ['p', 'r', 'e', 'm', 'a', 't', 'u', 'r', 'e', ... ['s', 'i'] 11 8 True 13
11 lentils ['l', 'e', 'n', 't', 'i', 'l', 's'] [] 7 10 True 10
12 releases ['r', 'e', 'l', 'e', 'a', 's', 'e', 's'] ['d'] 8 9 True 4
13 doddering ['d', 'o', 'd', 'd', 'e', 'r', 'i', 'n', 'g'] ['t', 'm'] 9 8 True 8
14 dozens ['d', 'o', 'z', 'e', 'n', 's'] ['r', 'l', 'y', 't', 'm'] 6 5 True 11
15 sprawled ['s', 'p', 'r', 'a', 'w', 'l', 'e', 'd'] ['t', 'c', 'i', 'g'] 8 6 True 6
16 upgrades ['u', 'p', 'g', 'r', 'a', 'd', 'e', 's'] ['i', 'o'] 8 8 True 10
17 bleakness ['b', 'l', 'e', 'a', 'k', 'n', 'e', 's', 's'] [] 9 10 True 7
18 ampler ['a', 'm', 'p', 'l', 'e', 'r'] ['d', 's', 'i', 't', 'g'] 6 5 True 6
19 smithy ['s', 'm', 'i', 't', 'h', 'y'] ['e', 'a', 'n'] 6 7 True 5
20 ranger ['r', 'a', 'n', 'g', 'e', 'r'] ['d', 's', 'o', 't', 'p'] 6 5 True 11
21 prenatal ['p', 'r', 'e', 'n', 'a', 't', 'a', 'l'] ['i', 's'] 8 8 True 9
22 shopkeeper ['s', 'h', 'o', 'p', 'k', 'e', 'e', 'p', 'e', ... [] 10 10 True 8
23 wriggled ['w', 'r', 'i', 'g', 'g', 'l', 'e', 'd'] ['s', 'p', 'z', 'c'] 8 6 True 8
24 revivify ['r', 'e', 'v', 'i', 'v', 'i', 'f', 'y'] ['n', 's', 't'] 8 7 True 7
25 snaffles ['s', 'n', 'a', 'f', 'f', 'l', 'e', 's'] ['i', 't', 'u'] 8 7 True 7
26 compels ['c', 'o', 'm', 'p', 'e', 'l', 's'] ['r', 't'] 7 8 True 11
27 hunchback ['h', 'u', 'n', 'c', 'h', 'b', 'a', 'c', 'k'] ['e', 'i', 'o', 's'] 9 6 True 10
28 ridging ['r', 'i', 'd', 'g', 'i', 'n', 'g'] ['e'] 7 9 True 11
29 foghorn ['f', 'o', 'g', 'h', 'o', 'r', 'n'] ['e', 'i', 'a', 's', 'c'] 7 5 True 13
........................
970 absurdly ['a', 'b', 's', 'u', 'r', 'd', 'l', 'y'] ['e', 'i', 'o'] 8 7 True 6
971 insincere ['i', 'n', 's', 'i', 'n', 'c', 'e', 'r', 'e'] [] 9 10 True 8
972 preempts ['p', 'r', 'e', 'e', 'm', 'p', 't', 's'] ['i'] 8 9 True 9
973 fullest ['f', 'u', 'l', 'l', 'e', 's', 't'] ['i', 'a', 'o', 'm', 'n'] 7 5 True 9
974 prerecording ['p', 'r', 'e', 'r', 'e', 'c', 'o', 'r', 'd', ... [] 12 10 True 5
975 disinters ['d', 'i', 's', 'i', 'n', 't', 'e', 'r', 's'] ['o'] 9 9 True 11
976 entreated ['e', 'n', 't', 'r', 'e', 'a', 't', 'e', 'd'] ['s'] 9 9 True 9
977 podcast ['p', 'o', 'd', 'c', 'a', 's', 't'] ['e', 'i', 'm'] 7 7 True 11
978 corporal ['c', 'o', 'r', 'p', 'o', 'r', 'a', 'l'] ['e', 'i'] 8 8 True 7
979 couples ['c', 'o', 'u', 'p', 'l', 'e', 's'] ['i', 'b', 'd', 'g', 't'] 7 5 True 4
980 thirsting ['t', 'h', 'i', 'r', 's', 't', 'i', 'n', 'g'] ['e', 'l'] 9 8 True 8
981 rums ['r', 'u', 'm', 's'] ['e', 'a', 'o', 'i', 'b', 'g', 't', 'h'] 4 2 True 10
982 unaltered ['u', 'n', 'a', 'l', 't', 'e', 'r', 'e', 'd'] [] 9 10 True 10
983 mottoes ['m', 'o', 't', 't', 'o', 'e', 's'] ['i', 'l', 'a'] 7 7 True 11
984 multipurpose ['m', 'u', 'l', 't', 'i', 'p', 'u', 'r', 'p', ... [] 12 10 True 9
985 cuddly ['c', 'u', 'd', 'd', 'l', 'y'] ['e', 's', 'i', 'a', 'o', 'b'] 6 4 True 8
986 staggered ['s', 't', 'a', 'g', 'g', 'e', 'r', 'e', 'd'] [] 9 10 True 8
987 sociability ['s', 'o', 'c', 'i', 'a', 'b', 'i', 'l', 'i', ... ['e'] 11 9 True 13
988 broaches ['b', 'r', 'o', 'a', 'c', 'h', 'e', 's'] ['i'] 8 9 True 5
989 rushes ['r', 'u', 's', 'h', 'e', 's'] ['d', 't', 'g', 'm', 'l', 'p'] 6 4 True 7
990 dualism ['d', 'u', 'a', 'l', 'i', 's', 'm'] ['e', 'n', 'h', 't', 'o'] 7 5 True 9
991 playgrounds ['p', 'l', 'a', 'y', 'g', 'r', 'o', 'u', 'n', ... ['e', 'i'] 11 8 True 9
992 trespasses ['t', 'r', 'e', 's', 'p', 'a', 's', 's', 'e', ... [] 10 10 True 12
993 smooched ['s', 'm', 'o', 'o', 'c', 'h', 'e', 'd'] ['r', 'l', 't', 'i'] 8 6 True 8
994 faceting ['f', 'a', 'c', 'e', 't', 'i', 'n', 'g'] ['r'] 8 9 True 9
995 marinading ['m', 'a', 'r', 'i', 'n', 'a', 'd', 'i', 'n', ... ['e', 't'] 10 8 True 9
996 detract ['d', 'e', 't', 'r', 'a', 'c', 't'] ['n'] 7 9 True 7
997 comprehensibility ['c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', ... [] 17 10 True 8
998 humaneness ['h', 'u', 'm', 'a', 'n', 'e', 'n', 'e', 's', ... [] 10 10 True 10
999 troubleshoots ['t', 'r', 'o', 'u', 'b', 'l', 'e', 's', 'h', ... ['i'] 13 9 True 6
\n", + "

1000 rows \u00d7 7 columns

\n", + "
" + ], + "metadata": {}, + "output_type": "pyout", + "prompt_number": 89, + "text": [ + " target discovered \\\n", + "0 begrudges ['b', 'e', 'g', 'r', 'u', 'd', 'g', 'e', 's'] \n", + "1 omegas ['o', 'm', 'e', 'g', 'a', 's'] \n", + "2 caliphate ['c', 'a', 'l', 'i', 'p', 'h', 'a', 't', 'e'] \n", + "3 sarsaparillas ['s', 'a', 'r', 's', 'a', 'p', 'a', 'r', 'i', ... \n", + "4 retook ['r', 'e', 't', 'o', 'o', 'k'] \n", + "5 rafter ['r', 'a', 'f', 't', 'e', 'r'] \n", + "6 declassify ['d', 'e', 'c', 'l', 'a', 's', 's', 'i', 'f', ... \n", + "7 hyaenas ['h', 'y', 'a', 'e', 'n', 'a', 's'] \n", + "8 limping ['l', 'i', 'm', 'p', 'i', 'n', 'g'] \n", + "9 cocoanut ['c', 'o', 'c', 'o', 'a', 'n', 'u', 't'] \n", + "10 prematurely ['p', 'r', 'e', 'm', 'a', 't', 'u', 'r', 'e', ... \n", + "11 lentils ['l', 'e', 'n', 't', 'i', 'l', 's'] \n", + "12 releases ['r', 'e', 'l', 'e', 'a', 's', 'e', 's'] \n", + "13 doddering ['d', 'o', 'd', 'd', 'e', 'r', 'i', 'n', 'g'] \n", + "14 dozens ['d', 'o', 'z', 'e', 'n', 's'] \n", + "15 sprawled ['s', 'p', 'r', 'a', 'w', 'l', 'e', 'd'] \n", + "16 upgrades ['u', 'p', 'g', 'r', 'a', 'd', 'e', 's'] \n", + "17 bleakness ['b', 'l', 'e', 'a', 'k', 'n', 'e', 's', 's'] \n", + "18 ampler ['a', 'm', 'p', 'l', 'e', 'r'] \n", + "19 smithy ['s', 'm', 'i', 't', 'h', 'y'] \n", + "20 ranger ['r', 'a', 'n', 'g', 'e', 'r'] \n", + "21 prenatal ['p', 'r', 'e', 'n', 'a', 't', 'a', 'l'] \n", + "22 shopkeeper ['s', 'h', 'o', 'p', 'k', 'e', 'e', 'p', 'e', ... \n", + "23 wriggled ['w', 'r', 'i', 'g', 'g', 'l', 'e', 'd'] \n", + "24 revivify ['r', 'e', 'v', 'i', 'v', 'i', 'f', 'y'] \n", + "25 snaffles ['s', 'n', 'a', 'f', 'f', 'l', 'e', 's'] \n", + "26 compels ['c', 'o', 'm', 'p', 'e', 'l', 's'] \n", + "27 hunchback ['h', 'u', 'n', 'c', 'h', 'b', 'a', 'c', 'k'] \n", + "28 ridging ['r', 'i', 'd', 'g', 'i', 'n', 'g'] \n", + "29 foghorn ['f', 'o', 'g', 'h', 'o', 'r', 'n'] \n", + ".. ... ... \n", + "970 absurdly ['a', 'b', 's', 'u', 'r', 'd', 'l', 'y'] \n", + "971 insincere ['i', 'n', 's', 'i', 'n', 'c', 'e', 'r', 'e'] \n", + "972 preempts ['p', 'r', 'e', 'e', 'm', 'p', 't', 's'] \n", + "973 fullest ['f', 'u', 'l', 'l', 'e', 's', 't'] \n", + "974 prerecording ['p', 'r', 'e', 'r', 'e', 'c', 'o', 'r', 'd', ... \n", + "975 disinters ['d', 'i', 's', 'i', 'n', 't', 'e', 'r', 's'] \n", + "976 entreated ['e', 'n', 't', 'r', 'e', 'a', 't', 'e', 'd'] \n", + "977 podcast ['p', 'o', 'd', 'c', 'a', 's', 't'] \n", + "978 corporal ['c', 'o', 'r', 'p', 'o', 'r', 'a', 'l'] \n", + "979 couples ['c', 'o', 'u', 'p', 'l', 'e', 's'] \n", + "980 thirsting ['t', 'h', 'i', 'r', 's', 't', 'i', 'n', 'g'] \n", + "981 rums ['r', 'u', 'm', 's'] \n", + "982 unaltered ['u', 'n', 'a', 'l', 't', 'e', 'r', 'e', 'd'] \n", + "983 mottoes ['m', 'o', 't', 't', 'o', 'e', 's'] \n", + "984 multipurpose ['m', 'u', 'l', 't', 'i', 'p', 'u', 'r', 'p', ... \n", + "985 cuddly ['c', 'u', 'd', 'd', 'l', 'y'] \n", + "986 staggered ['s', 't', 'a', 'g', 'g', 'e', 'r', 'e', 'd'] \n", + "987 sociability ['s', 'o', 'c', 'i', 'a', 'b', 'i', 'l', 'i', ... \n", + "988 broaches ['b', 'r', 'o', 'a', 'c', 'h', 'e', 's'] \n", + "989 rushes ['r', 'u', 's', 'h', 'e', 's'] \n", + "990 dualism ['d', 'u', 'a', 'l', 'i', 's', 'm'] \n", + "991 playgrounds ['p', 'l', 'a', 'y', 'g', 'r', 'o', 'u', 'n', ... \n", + "992 trespasses ['t', 'r', 'e', 's', 'p', 'a', 's', 's', 'e', ... \n", + "993 smooched ['s', 'm', 'o', 'o', 'c', 'h', 'e', 'd'] \n", + "994 faceting ['f', 'a', 'c', 'e', 't', 'i', 'n', 'g'] \n", + "995 marinading ['m', 'a', 'r', 'i', 'n', 'a', 'd', 'i', 'n', ... \n", + "996 detract ['d', 'e', 't', 'r', 'a', 'c', 't'] \n", + "997 comprehensibility ['c', 'o', 'm', 'p', 'r', 'e', 'h', 'e', 'n', ... \n", + "998 humaneness ['h', 'u', 'm', 'a', 'n', 'e', 'n', 'e', 's', ... \n", + "999 troubleshoots ['t', 'r', 'o', 'u', 'b', 'l', 'e', 's', 'h', ... \n", + "\n", + " wrong letters number of hits \\\n", + "0 [] 9 \n", + "1 [] 6 \n", + "2 [] 9 \n", + "3 ['e'] 13 \n", + "4 ['a', 'i'] 6 \n", + "5 ['d', 's', 'o'] 6 \n", + "6 ['n'] 10 \n", + "7 ['t', 'd'] 7 \n", + "8 ['e', 't'] 7 \n", + "9 ['e', 'i', 's', 'l'] 8 \n", + "10 ['s', 'i'] 11 \n", + "11 [] 7 \n", + "12 ['d'] 8 \n", + "13 ['t', 'm'] 9 \n", + "14 ['r', 'l', 'y', 't', 'm'] 6 \n", + "15 ['t', 'c', 'i', 'g'] 8 \n", + "16 ['i', 'o'] 8 \n", + "17 [] 9 \n", + "18 ['d', 's', 'i', 't', 'g'] 6 \n", + "19 ['e', 'a', 'n'] 6 \n", + "20 ['d', 's', 'o', 't', 'p'] 6 \n", + "21 ['i', 's'] 8 \n", + "22 [] 10 \n", + "23 ['s', 'p', 'z', 'c'] 8 \n", + "24 ['n', 's', 't'] 8 \n", + "25 ['i', 't', 'u'] 8 \n", + "26 ['r', 't'] 7 \n", + "27 ['e', 'i', 'o', 's'] 9 \n", + "28 ['e'] 7 \n", + "29 ['e', 'i', 'a', 's', 'c'] 7 \n", + ".. ... ... \n", + "970 ['e', 'i', 'o'] 8 \n", + "971 [] 9 \n", + "972 ['i'] 8 \n", + "973 ['i', 'a', 'o', 'm', 'n'] 7 \n", + "974 [] 12 \n", + "975 ['o'] 9 \n", + "976 ['s'] 9 \n", + "977 ['e', 'i', 'm'] 7 \n", + "978 ['e', 'i'] 8 \n", + "979 ['i', 'b', 'd', 'g', 't'] 7 \n", + "980 ['e', 'l'] 9 \n", + "981 ['e', 'a', 'o', 'i', 'b', 'g', 't', 'h'] 4 \n", + "982 [] 9 \n", + "983 ['i', 'l', 'a'] 7 \n", + "984 [] 12 \n", + "985 ['e', 's', 'i', 'a', 'o', 'b'] 6 \n", + "986 [] 9 \n", + "987 ['e'] 11 \n", + "988 ['i'] 8 \n", + "989 ['d', 't', 'g', 'm', 'l', 'p'] 6 \n", + "990 ['e', 'n', 'h', 't', 'o'] 7 \n", + "991 ['e', 'i'] 11 \n", + "992 [] 10 \n", + "993 ['r', 'l', 't', 'i'] 8 \n", + "994 ['r'] 8 \n", + "995 ['e', 't'] 10 \n", + "996 ['n'] 7 \n", + "997 [] 17 \n", + "998 [] 10 \n", + "999 ['i'] 13 \n", + "\n", + " lives remaining game won word length \n", + "0 10 True 6 \n", + "1 10 True 7 \n", + "2 10 True 6 \n", + "3 9 True 10 \n", + "4 8 True 6 \n", + "5 7 True 5 \n", + "6 9 True 8 \n", + "7 8 True 7 \n", + "8 8 True 7 \n", + "9 6 True 8 \n", + "10 8 True 13 \n", + "11 10 True 10 \n", + "12 9 True 4 \n", + "13 8 True 8 \n", + "14 5 True 11 \n", + "15 6 True 6 \n", + "16 8 True 10 \n", + "17 10 True 7 \n", + "18 5 True 6 \n", + "19 7 True 5 \n", + "20 5 True 11 \n", + "21 8 True 9 \n", + "22 10 True 8 \n", + "23 6 True 8 \n", + "24 7 True 7 \n", + "25 7 True 7 \n", + "26 8 True 11 \n", + "27 6 True 10 \n", + "28 9 True 11 \n", + "29 5 True 13 \n", + ".. ... ... ... \n", + "970 7 True 6 \n", + "971 10 True 8 \n", + "972 9 True 9 \n", + "973 5 True 9 \n", + "974 10 True 5 \n", + "975 9 True 11 \n", + "976 9 True 9 \n", + "977 7 True 11 \n", + "978 8 True 7 \n", + "979 5 True 4 \n", + "980 8 True 8 \n", + "981 2 True 10 \n", + "982 10 True 10 \n", + "983 7 True 11 \n", + "984 10 True 9 \n", + "985 4 True 8 \n", + "986 10 True 8 \n", + "987 9 True 13 \n", + "988 9 True 5 \n", + "989 4 True 7 \n", + "990 5 True 9 \n", + "991 8 True 9 \n", + "992 10 True 12 \n", + "993 6 True 8 \n", + "994 9 True 9 \n", + "995 8 True 9 \n", + "996 9 True 7 \n", + "997 10 True 8 \n", + "998 10 True 10 \n", + "999 9 True 6 \n", + "\n", + "[1000 rows x 7 columns]" + ] + } + ], + "prompt_number": 89 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "adaptive_pattern['lives remaining'].hist()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 91, + "text": [ + "" + ] + }, + { + "metadata": {}, + "output_type": "display_data", + "png": "iVBORw0KGgoAAAANSUhEUgAAAXgAAAEACAYAAAC57G0KAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEN5JREFUeJzt3V2MlNd9x/HvmjUk2IE1TbW8JmPZQQltle1LkNvG8rS1\nXBoltq9wqqpia6s3jmTTqgmQi5LeRBipsqVIvqmVmKY2NUocFzctAVw2aVX5TWUbx4TauKAECODa\nxsE4VU3YXpwznGF5mdlhds+ZZ74faTxznnl2589f7H8efs8za5AkSZIkSZIkSZIkSZIkSeprh4Dv\nA3uB5+O2BcAu4BVgJzDUtP8G4FVgP3DbjFUpSZqyg4SB3mwz8IX4eB2wKT5eAYwDVwM14ABw1fSX\nKEnqxEHgFyZt2w8Mx8cL4xrC0fu6pv12ADdNa3WSpAu0e2Q9AewGXgT+NG4bBo7Hx8dJw34xcLjp\naw8DS66sTEnSVA22ud9vAz8BfpGQu++f9PxEvF3K5Z6TJE2Ddgf8T+L968C3gJWEo/aFwDFgEXAi\n7nMEWNb0tUvjtnMWL148cfTo0Q5LlqS+9RpwY7s7txPRzAU+EB9fQ7gq5iVgO7Ambl8DPBUfbwc+\nC8wGrgc+QrryBoCjR48yMTHhbWKCjRs3Zq+hlJu9sBf24vI34IZ2hzu0dwQ/TDhqb+z/GOGyyBeB\nbcA9hMsoV8d99sXt+4AzwL0Y0VzSoUOHcpdQDHuR2IvEXnSunQF/EBi5yPY3gVsv8TVfjjdJUiZe\nn57Z6Oho7hKKYS8Se5HYi84NZHrdiZgnSVLx5s1bwKlTb+Uuo6Htue0RfGZjY2O5SyiGvUjsRVJC\nL8JwnyjgNjUOeEmqKCMaSWphYGCAMi4GHDj3n3Z4BC9JFeWAz6yEfLEU9iKxF4m96JwDXpIqygxe\nklowg5ckFcUBn5n5YmIvEnuR2IvOOeAlqaLM4CWpBTN4SVJRHPCZmS8m9iKxF4m96JwDXpIqygxe\nklowg5ckFcUBn5n5YmIvEnuR2IvOOeAlqaLM4CWpBTN4SVJRHPCZmS8m9iKxF4m96JwDXpIqygxe\nklowg5ckFcUBn5n5YmIvEnuR2IvOOeAlqaLM4CWpBTN4SVJRHPCZmS8m9iKxF4m96JwDXpIqygxe\nklowg5ckFcUBn5n5YmIvEnuR2IvOOeAlqaLazXJmAS8Ch4HPAAuAJ4APA4eA1cDJuO8G4G7g58B9\nwM6LfD8zeEk9o+oZ/P3APtKfcD2wC1gOPBPXACuAu+L9KuDhKbyGJKmL2hm+S4FPAY+Q3jluB7bE\nx1uAO+PjO4CtwHuEI/sDwMou1VpJ5ouJvUjsRWIvOtfOgH8Q+DxwtmnbMHA8Pj4e1wCLCTFOw2Fg\nyRXWKEnqwGCL5z8NnAD2AvVL7DPB5cOpiz43OjpKrVYDYGhoiJGREer18BKNd+x+WNfr9aLqcV3O\nuqGUenKtG9ty15M01vUZWI8Bj8Z1jalqFdZ/Gfhj4AzwPmAe8CTwifjqx4BFwB7go6QsflO83wFs\nBJ6b9H09ySqpZ1T1JOsXgWXA9cBngX8hDPztwJq4zxrgqfh4e9xvdvyajwDPt1tMP7rw6KB/2YvE\nXiT2onOtIprJGm9hm4BtwD2kyyQhXGmzLd6fAe6ljLc9Seo7/i4aSWqhqhGNJKlHOeAzM19M7EVi\nLxJ70TkHvCRVlBm8JLVgBi9JKooDPjPzxcReJPYisRedc8BLUkWZwUtSC2bwkqSiOOAzM19M7EVi\nLxJ70TkHvCRVlBm8JLVgBi9JKooDPjPzxcReJPYisRedc8BLUkWZwUtSC2bwkqSiOOAzM19M7EVi\nLxJ70TkHvCRVlBm8JLVgBi9JKooDPjPzxcReJPYisRedc8BLUkWZwUtSC2bwkqSiOOAzM19M7EVi\nLxJ70TkHvCRVlBm8JLVgBi9JKooDPjPzxcReJPYisRedc8BLUkWZwUtSC2bwkqSiOOAzM19M7EVi\nLxJ70TkHvCRVVKss533Ad4E5wGzgH4ANwALgCeDDwCFgNXAyfs0G4G7g58B9wM6LfF8zeEk9o1cz\n+HZ2nAu8CwwC/wb8BXA78D/AZmAdcB2wHlgBPA58AlgC7AaWA2cnfU8HvKSe0asDvp2I5t14PxuY\nBbxFGPBb4vYtwJ3x8R3AVuA9wpH9AWBlu8X0I/PFxF4k9iKxF51rZ8BfBYwDx4E9wMvAcFwT74fj\n48XA4aavPUw4kpckzbCpXAc/H/gOIWN/khDLNLxJyOW/AjwLPBa3PwL8U9y/mRGNpJ7RqxHN4BS+\n89vAt4FfJxy1LwSOAYuAE3GfI8Cypq9ZGrddYHR0lFqtBsDQ0BAjIyPU63Ug/ZPMtWvXrktZJ411\nfQbWY8CjcV1jqlq9E3wQOEO4Qub9hCP4vwJ+H3gDeIBwcnWI80+yriSdZL2RC9/6PIKPxsbGzv1F\n6nf2IrEXSQm9qOoR/CLCSdSr4u3rwDPAXmAbcA/pMkmAfXH7PsIbw72U0RVJ6jv+LhpJaqFXj+D9\nJKskVZQDPrMLT+D0L3uR2IvEXnTOAS9JFWUGL0ktmMFLkorigM/MfDGxF4m9SOxF5xzwklRRZvCS\n1IIZvCSpKA74zMwXE3uR2IvEXnTOAS9JFWUGL0ktmMFLkorigM/MfDGxF4m9SOxF5xzwklRRZvCS\n1IIZvCSpKA74zMwXE3uR2IvEXnTOAS9JFWUGL0ktmMFLkorigM/MfDGxF4m9SOxF5xzwklRRZvCS\n1IIZvCSpKA74zMwXE3uR2IvEXnTOAS9JFWUGL0ktmMFLkorigM/MfDGxF4m9SOxF5xzwklRRZvCS\n1IIZvCSpKA74zMwXE3uR2IvEXnTOAS9JFWUGL0ktVDmDXwbsAV4GfgDcF7cvAHYBrwA7gaGmr9kA\nvArsB25rtxhJUve0M+DfA/4M+CXgJuBzwMeA9YQBvxx4Jq4BVgB3xftVwMNtvk5fMl9M7EViLxJ7\n0bl2Bu8xYDw+fgf4IbAEuB3YErdvAe6Mj+8AthLeGA4BB4CV3SlXktSuqWbwNeC7wC8DPwKua/o+\nb8b1V4Bngcfic48A/wx8s+n7mMFL6hlVzuAbriUM6fuBU5Oem+Dyf/oSOiNJfWWwzf2uJgz3rwNP\nxW3HgYWECGcRcCJuP0I4MduwNG47z+joKLVaDYChoSFGRkao1+tAytz6Yd2cL5ZQT851Y1sp9eRc\nj4+Ps3bt2mLqybl+6KGHipgPSWNdn4H1GPBoXNeYqnYO9QcIGfsbhJOtDZvjtgcIJ1iH4v0K4HFC\n7r4E2A3cyPlH8UY00djY2Lm/SP3OXiT2IimhF70a0bSz4yeB7wHfJ/0JNwDPA9uADxFOpq4GTsbn\nvwjcDZwhRDrfmfQ9HfCSekaVB/x0cMBL6hm9OuC9Pj2zC/O9/mUvEnuR2IvOOeAlqaKMaCSpBSMa\nSVJRHPCZmS8m9iKxF8ncuR9gYGAg661XtftBJ0nK4mc/e4f88UhvDnkzeElFKyP/LqEGMIOXJAEO\n+OzMWhN7kdgLdYMDXpIqygxeUtHM4JuZwUuScMBnZ9aa2IvEXqgbHPCSVFFm8JKKZgbfzAxekoQD\nPjuz1sReJPZC3eCAl6SKMoOXVDQz+GZm8JIkHPDZmbUm9iKxF+oGB7wkVZQZvKSimcE3M4OXJOGA\nz86sNbEXib1QNzjgJamizOAlFc0MvpkZvCQJB3x2Zq2JvUjshbrBAS9JFWUGL6loZvDNppbBD05f\nIZJ62bx5Czh16q3cZegKGNFkZtaa2IukhF6E4T5RwE2dcsBLUkWZwUu6qDKybygj/y6hBvA6eEkS\n0N6A/ypwHHipadsCYBfwCrATGGp6bgPwKrAfuK07ZVZXCVlrKexFYi/UDe0M+K8BqyZtW08Y8MuB\nZ+IaYAVwV7xfBTzc5mtIkrqs3SynBjwN/Epc7wduIRzZLwTGgI8Sjt7PAg/E/XYAXwKenfT9zOCl\nwpnBl1YDzFQGP0wY7sT74fh4MXC4ab/DwJIOX0OSdAW68UGnVherXvS50dFRarUaAENDQ4yMjFCv\n14GUP/bDujlrLaGenOvGtlLqybkeHx9n7dq1WetJGut6pnVjW67Xb6xp8fx0rMeAR+O6xlRdSURT\nB44Bi4A9hIimkcVvivc7gI3Ac5O+nxFNNDY2du4Hq9/Zi6SEXhjRlFYDTDWi6XTAbwbeIGTt6wlX\n0awnnFx9HFhJiGZ2AzdyYWcc8FLhHPCl1QDT8btothJOqH4Q+DHwl4Qj9G3APcAhYHXcd1/cvg84\nA9xLGV2RpL7jJ1kzK+Gf4qWwF0kJvfAIvrQawE+ySpIAj+AlXYJH8KXVAB7BS5IAB3x2/s6RxF4k\n9kLd4ICXpIoyg5cKVM7/Lq+En9MS8u8SaoDp+qBTtzngpcso4wRnCTVAGXWUUAN4krXHmLUm9kLq\nLge8JFWUEY1UICOaZiXUUUINYEQjSQIc8NmZOyf2QuouB7wkVZQZvDSJ16A3lJQ7566jhBrA6+Cl\nK+QJzpJqgDLqKKEG8CRrjzF3TuyF1F0OeEmqKCMaaRIjmpJqgDLqKKEGMKKRJAEO+OzMnRN7IXWX\nA16SKsoMXprEDL6kGqCMOkqoAczgJUmAAz47c+fEXkjd5YCXpIoyg5cmMYMvqQYoo44SaoCpZvCD\n01eINDXl/JIvqRqMaDIzd07CcJ8o4CZVgwNekirKDF7FKCP7hjLyVmtISqijhBrA6+AlSYADPjsz\neEnTxQEvSRVlBp9ZOZcGXg28l7sIysk5c9dhDUkJdZRQA/j/ZO0xnlgsrQYoow5rSEqoo4QaoJQP\nOq0CHgJmAY8AD0zeYdeuXdP00u2ZM2cON998cxywklQ90zHdZgH/BdwKHAFeAP4Q+GHTPhPz5986\nDS/dvtOn/5WDBw+wdOnSrHV4BF9aDVBGHdaQlFBHCTVACUfwK4EDwKG4/nvgDs4f8Lz9dt4j+Guu\n+RBnz57NWoMkTafpuIpmCfDjpvXhuE2SNIOm4wi+rX/HzJv3mWl46fa9++7rrFjxcU6fPpm1Dkma\nLtMx4I8Ay5rWywhH8c1e++lP//GGaXjtKTlz5n9zlxCVcqK3hDpKqAHKqMMakhLqKKEGXstdwGAs\nogbMBsaBj+UsSJLUPX9AuJLmALAhcy2SJEmSrsQqYD/wKrAucy05LQP2AC8DPwDuy1tOdrOAvcDT\nuQspwBDwDcKlxfuAm/KWk80Gws/HS8DjwJy85cy4rwLHCX/+hgXALuAVYCfh70oxZhFimxrhl5/0\ncz6/EBiJj68lRFr92guAPwceA7bnLqQAW4C74+NBYH7GWnKpAf9NGupPAGuyVZPHzcCvcv6A3wx8\nIT5eB2ya6aIu5zeBHU3r9fEmeAr4vdxFZLIU2A38Dh7BzycMtn63gHDQcx3hTe5pwqfj+02N8wf8\nfmA4Pl4Y15c0078u2A9BXVyN8E79XOY6cnkQ+DzgR4vheuB14GvAfwB/A8zNWlEebwJ/DfwIOAqc\nJBwE9LthQmxDvB++zL4zPuBL+GUOpbmWkLfeD7yTuZYcPg2cIOTvRVxonNkg8GvAw/H+NP35r9wb\ngLWEg5/FhJ+TP8pZUIFa/l/iZ3rAt/MhqH5yNfBN4O8IEU0/+i3gduAgsBX4XeBvs1aU1+F4eyGu\nv0EY9P3mN4B/B94AzgBPEv6u9LvjhGgGYBHh4KgYfggqGSAMsgdzF1KQWzCDB/gesDw+/hIX+XXb\nfeDjhKvL3k/4WdkCfC5rRXnUuPAka+Pqw/UUdpIV/BBUwycJmfM4IZ7YS7iEtJ/dglfRQBhuLwD/\nSThy7ceraCBcLdK4THIL4V+8/WQr4fzD/xHOXf4J4eTzbgq9TFKSJEmSJEmSJEmSJEmSJEmSJEmS\nLvD/iY3r8IeErbwAAAAASUVORK5CYII=\n", + "text": [ + "" + ] + } + ], + "prompt_number": 91 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "adaptive_pattern.groupby('lives remaining').size()" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "metadata": {}, + "output_type": "pyout", + "prompt_number": 92, + "text": [ + "lives remaining\n", + "0 8\n", + "1 2\n", + "2 15\n", + "3 16\n", + "4 30\n", + "5 59\n", + "6 79\n", + "7 120\n", + "8 182\n", + "9 232\n", + "10 257\n", + "dtype: int64" + ] + } + ], + "prompt_number": 92 + }, + { + "cell_type": "code", + "collapsed": false, + "input": [], + "language": "python", + "metadata": {}, + "outputs": [] + } + ], + "metadata": {} + } + ] +} \ No newline at end of file diff --git a/programming.html b/programming.html new file mode 100644 index 0000000..64f013f --- /dev/null +++ b/programming.html @@ -0,0 +1,448 @@ + + + + Programming strategy + + + + + + + + + + + + -- 2.34.1